label
stringclasses
2 values
text
stringlengths
31
724k
__index_level_0__
float64
5
14.2k
BAD
Worlds longest journey by pumpkin boat (smithsonianmag.com) Sections The trip down the Missouri River took some 12 hours Michelle Harris Late last month Nebraska resident Duane Hansencelebrated his 60th birthday by setting sail in an 846-pound pumpkin and traveling 38 miles down the Missouri River. The purpose of the trip which began the morning of August 27 at the Bellevue Marina and culminated 12 hours later in Nebraska City at the Riverview Marina was to earn the Guinness World Records title for the longest journey by pumpkin boat per the Omaha World-Herald s Marjie Ducey. Before Hansen the record holder was Rick Swenson who sailed the Red River between Minnesota and North Dakota by pumpkin boat in 2016 according to Guinness World Records. Hansen spent years on the project eventually naming his prize pumpkin Berta he told News Channel Nebraska s Dan Swanson. He was inspired to break the record after attending a three-day pumpkin growing seminar in Portland Oregon five years ago when he met a woman who at the time held the record he sought. I asked her a lot of questions and thats when I decided I wanted to do this he tells News Channel Nebraska. With a circumference of around 146 inches Hansen determined that the pumpkin was large enough for him to fit inside after he carved it out. Dubbed the S.S. Berta the pumpkin was transported to the launching point atop a trailer according to the Washington Post s Mara Luisa Pal. Hansen hopped inside and took off for the day-long journey with family members and friends cheering him on from along the banks. Throughout the next 12 hours he fought to stay afloat as an array of obstaclesincluding rocks sand bars and wavesthreatened to tip him over. Youve got to be on top of it the whole time he tells News Channel Nebraska. To comply with the Guinness World Records rules Hansen had asked non-family members to witness the event. Attendees included Bellevue City officials who took photos and videos along the way to provide evidence . The inspiration for the Guinness Book of Records as it was originally called came about after Sir Hugh Beaver the managing director of Guinness Brewery went on a hunting trip toIreland in 1951. After failing to shoot a golden plover he debated with his hunting party over what the fastest game bird was only to realize that they couldnt find the answer in any reference book. Unnerved by the groups failure to arrive at a consensus during their pub argument Beaver recruited fact-finding researchers twin brothers Norris and Ross McWhirter in 1954 and tasked them with putting together a reference book of facts and figures. The first edition was published on August 27 1955the same day that Hansen set sail for the pumpkin expedition 67 years later. Since then Guinness World Records (it changed its name in 1999) has sold over 150 million books . From the longest human tunnel traveled through by a skateboarding dog to the longest fingernails on a pair of hands over 60000 records exist on the sites database. Hansens record isnt official quite yet. Kylie Galloway a spokesperson for Guinness World Records tells CNN that the organization has received his application and is currently in the process of reviewing it. Get the latest stories in your inbox every weekday. Michelle Harris | READ MORE Michelle Harris is a freelance writer based in New Jersey. Her work has appeared in Atlas Obscura Mental Floss and Audubon Magazine . Explore Subscribe Newsletters Our Partners Terms of Use 2023 Smithsonian Magazine Privacy Statement Cookie Policy Terms of Use Advertising Notice Your Privacy Rights Cookie Settings 2023 Smithsonian Magazine Privacy Statement Cookie Policy Terms of Use Advertising Notice Your Privacy Rights Cookie Settings
13,976
GOOD
Write a First Person Game in 2KB with Rust (grantshandy.github.io) On first glance making a first person game without an engine or a graphics API seems like an almost impossible task. In this post Ill show you how to do that using an algorithm called ray casting. My goal here is to show how something that looks complicated can be broken down into simple pieces and if Ive done my job right it should feel like youve discovered how the game works. First well explore how the algorithm behind the game works then well write it out line by line. Afterwards well take a second look at the code to add some features and optimize it for size. Ive tried to make this as accessible and friendly as possible but a healthy understanding of programming as well as Rust and basic geometry will help. Heres a quick preview of what well be making: If you just want to see the source code you can check out the Github repository . My first experience with games like this (though I didnt know at the time) was in middle school with games like zDoom on my calculator. zDoom (while not actually that fun) was fascinating to me because it could (kind of) create the illusion of depth and perspective something I thought only real games could do. zDoom was only an imitation of the original game Doom in reality it was much closer to Dooms predecessor Wolfenstein 3D. Famously Wolfenstein 3D released in 1992 was one of the first 3D first-person games to run on consumer PCs. Back then computers didnt have hardware 3D acceleration let alone dedicated graphics cards so how was this done? Well I should have said pseudo -3D because no part of the game ran in three dimensions. The core of the game was an algorithm called ray casting 1 a process of projecting a 2D game into a 3D perspective. All the game entities were located at simple x and y positions on the map and could not move vertically. Upon release Im sure that this didnt matter but with our current standards it shows its age. The player could not look up or down let alone crouch or jump. To add to that all the levels were composed of single floors of buildings with no windows. Also all walls were perfectly straight with corners placed at even intervals (something that will absolutely not come up later). These design features were all put here because of some of the essential restrictions of its simple ray-casting algorithm. At the most fundamental level ray casting depends on the simple fact that objects that are further away from us appear smaller while objects that are closer appear larger. Ray casting uses this fact to draw walls at shorter heights the further away they are from the player and at taller heights the closer they are. Just this simple idea alone creates a convincing illusion of depth and allows us to move our player around just as if it were being rendered in actual 3D. Ray casting works by tracing a path from the player to the closest wall for each column in the players view. It then records the distances of each path before converting it into the height of a wall and drawing it on the screen as a vertical line. From what we know so far about the ray casting algorithm we can deduce that we will need to: The hardest part of this is cast a ray from the player and stop at the nearest wall. This seems simple on paper but in practice it can be pretty difficult . If you had to come up with a ray casting implementation yourself how would you approach it? The first idea most people would probably have is to repeatedly extend the ray 2 a small amount and stop when it hits a wall. This is problematic because we might skip over the wall entirely when extending the ray. And if the ray does hit the wall correctly it will have very low accuracy because it wont know exactly where the wall started just that it landed in one. What we need is to find a way that we can guarantee that the ray will intersect with a wall and that it will stop right on the border of that wall. In math land we might be able to do this by extending the ray an infinitely small distance infinitely many times. Sadly were not in math land so we cant do that. The solution to this as you might have guessed from the earlier foreshadowing is to align all the walls to a grid. If we know that the walls fall at predictable intervals we can calculate a reliable distance to extend our ray each time. But how will the ray jump to the wall? If you get out some grid paper and sketch out the lines between the player to various walls youll start to notice some patterns. Ray extensions on their way to walls on horizontal grid lines all share a common width while ray extensions that land on walls at vertical grid lines all share a common height. Once we extend the ray to the first grid line we can calculate these shared extension widths and extension heights. Then we repeatedly extend it by these widths and heights to get the closest vertical wall and horizontal wall then use the smaller of the two distances. I admit this is a bit confusing so Ill explain what this means in more depth: Heres an example diagram of what it looks like when a player looks at a horizontal wall. This diagram is interactive try dragging around the player! In horizontal wall intersections the height between extensions is always one while the width between extensions can be derived from the angle of the ray. We always move up or down by exactly one and right or left by an amount determined by the angle of the ray. You can see this by looking at the diagram the width between $A_x$ and $B_x$ is the same as the width between $B_x$ and $C_x$ and the difference in height between all the points is just one. Using some simple trigonometry we can find the width between horizontal grid intersections from the angle of the player. Im going to save you the work and just give you the definition: $$ \Delta H = \begin{cases} 1 &\text{if facing up} \\ -1 &\text{if facing down} \end{cases} $$ $$ \Delta W = \frac{\Delta H}{\tan(\theta)} $$ Heres another interactive diagram of what it looks like when a ray intersects with a vertical wall. Vertical grid intersections are the same as horizontal grid intersections just rotated 90. In vertical grid intersections the width between our ray extensions is constant while the height is created from the angle of the ray. Like last time Im going to skip ahead and define our variables for you. $$ \Delta W = \begin{cases} 1 &\text{if facing right} \\ -1 &\text{if facing left} \end{cases} $$ $$ \Delta H = \Delta W * \tan(\theta) $$ Now that we know pretty much exactly how well do this we can compile it into a more detailed step-by-step list for our program to execute on each frame. For each column on the screen: Now that we understand how the underlying algorithm works we can write a program that implements it using WASM-4. Wait why WASM-4? The official answer is that we need a way for our program to accept user input and draw to the screen. The real answer is because I like it a lot. WASM-4 is a tiny game engine that runs WebAssembly ( .wasm ) files. Most compiled programming languages (C C++ Rust Zig etc.) can compile to WebAssembly which means games for WASM-4 can be written in any of those languages! WASM-4 is extremely minimal the 4 in WASM-4 is there because you can only draw four colors on screen at once. Ill be using Rust but you could follow along with any language that can compile to WebAssembly. If youre more familiar with JavaScript I recommend AssemblyScript . WASM-4 will let us create tiny games because it provides a simple platform to build off. WASM-4 handles windowing graphics rendering and gamepad input we have to do everything else. Here are the specs for the WASM-4 fantasy console from the website: If you know a bit about computer hardware youll know this is an incredibly restrictive environment for a game to run in. Thats the fun of it though seeing how much you can cram into 160x160px 4 colors and 64KB of disk space. If you want to see what people are able to create with it check out the WASM-4 site for some very impressive games (including a flight simulator!). Ill probably make a more in-depth post on WASM-4 in the future but for now this explanation should be good enough for our case. All you need to run WASM-4 games is to download and install the minimal runtime . Because WASM-4 runs WebAssembly files we have to configure our project to create one. Add this to to Cargo.toml : This will tell cargo that we want to produce a C-like dynamic library ( .wasm ) and optimize the binary for size. We also import libm a library that will provide us with some no_std implementations of functions we need like sin tan and floor . (more on that later) In our crate configuration file .cargo/config.toml lets add: This will tell cargo to use WebAssembly by default and to pass some flags to rustc which tells our program to reserve some memory for the game. Now lets add some simple boilerplate to our source file src/lib.rs : Heres a little explanation of the code here for those who arent familiar with Rust or WASM-4: #![no_std] prohibits the program from accessing the Rust standard library. This is essential in almost all WASM-4 games because the standard library is large and might put our game over the 64KB size limit. GAMEPAD1 is a pointer to the current state of the first gamepad (the arrow keys in our case). The runtime will update this section of memory with the state of our gamepad (keyboard) on each frame. The constants BUTTON_LEFT through BUTTON_DOWN describe the bits in the gamepad which describe each button. We can use these to check if GAMEPAD1 says that a button is down thats what were doing when we call *GAMEPAD1 & BUTTON_UP != 0 . extern C fn vline links our game to an external function WASM-4 provides for us vline . vline draws a vertical line on the window at x y and extends it down len pixels. #[panic_handler] fn phandler is a little bit of boilerplate that Rust requires we provide if we choose to use #![no_std] . This function will run when the program panics. Because WASM-4 is such a restrictive environment the only thing we can really do is call wasm32::unreachable() . unsafe fn update is the main entry point into our program WASM-4 calls this function on each frame. To compile our game we can build it just like any other crate: And to run it we can use w4 run-native : This will launch an empty window and if we press the up arrow on the keyboard a vertical line will appear in all its green Gameboy-ish style. Its alive! One thing I like to do in a situation with commands like this that were going to call often is to put these commands in a simple Makefile so we dont have to re-type the commands or overuse the up arrow. After that all we have to do to build and run the program is type make run . Great now that weve got the workflow down we can get to writing the game. The simplest way to store the map is a grid of wall or no wall. One way we could store the map as [[bool; WIDTH]; HEIGHT] and access it through map[][] . Storing the map this way wouldnt be very elegant because wed have to type out each cell individually as a true or false . Because the boolean value (wall or no wall) can be represented by a single bit we can use the bits inside of a number to represent the map: [u16; HEIGHT] . In this case [u16; HEIGHT] can represent a map with a width of 16 cells and an arbitrary height of our choosing. Using Rusts integer literal syntax we can represent our map pretty simply by writing a 1 where there is a wall and a 0 where there is no wall: The more difficult thing about this way of storing the map is accessing it. To do this we have to write a function that first indexes into the row then into the specific column by masking and then shifting the row. This post is already long as it is so for the sake of time Im not going to go in-depth about how the X coordinate lookup bit operations works in this function. Because our map is surrounded by walls its safe to tell the caller of this function that there is a wall if it calls for a coordinate that is out of bounds. One thing to note about point_in_wall is that the Y axis is flipped meaning $ y = 0 $ is at the top. This is not only faster but reflects the coordinate system software most commonly uses . The map stays constant throughout the runtime of the program but the players position and angle change. Because WASM-4 calls update on each frame the only way to store our game state across frames is via something like Rusts static mut . Because static mut is unsafe we should consolidate our game logic and state in a single struct so we minimize the number of times we modify our state through static mut . Only three variables are required to describe the players view: the X and Y position and viewing angle. Now lets put the State in a static mut : player_x and player_y are both initially set at 1.5 so the player starts in the center of a cell and not inside a wall. Not only is accessing State unsafe behavior most interactions with are WASM-4 are. (dereferencing raw pointers calling external functions etc.) For those not familiar with Rust unsafe is a keyword/block that you give the compiler when you need to get around its memory safety guarantees. Using unsafe tells the Rust compiler I know what Im doing dont bother me about it. The problem is that often we dont know what were doing. Because of this best practice is to keep unsafe usage to a minimum. If we consolidate unsafe behavior into fn update and game logic into State we isolate our state and give some structure to our program. This gives us a pretty clear line: unsafe I/O with WASM-4 in fn update safe game logic in State . One of the easier parts of this game is moving the character. Because accessing our STATE from outside is unsafe lets create a method inside of State to move the character and pass in the inputs on each frame. If youve ever moved a player in a game and know some basic trigonometry this should all look familiar. Note that calls to sinf are negative because our Y-axis is flipped. If the player is asking us to move the player forwards or backward we modify the players x and y positions based on the cosf and sinf values of the players angle multiplied by a constant STEP_SIZE . Just for you Ill give you a magic number that works pretty well. You can change later it if youd like: The last thing that we need to make this function work is to import cosf and sinf from libm . Why sinf/cosf and not sin/cos ? This naming convention comes from Cs libm where sin/cos handles doubles and sinf/cosf handles floats. In Rusts implementation of libm this means fn cos(x: f64) -> f64 and fn cosf(x: f32) -> f32 . Were using f32 and not f64 here because it saves space and we dont need the precision. The last thing we need to do is call our new State::update of course! Before we draw the walls on the screen we need to implement the core of our algorithm: horizontal and vertical intersection checks. First we need to expand our libm import statement from earlier: Using libm::sqrtf we can make a distance function $ D = \sqrt{(\Delta X^2)+(\Delta Y^2)} $: Then lets import the core librarys helpful constants for $\pi$ and $\frac{\pi}{2}$: Because we need to access the players angle and position lets create a method inside of State called horizontal_intersection . This is the most complex function weve written so far but it mirrors the algorithm Ive already described so Im going to keep my comments inside the code for this one. Lets also implement vertical intersections before drawing the walls. Youll notice that this function is almost identical to the last one. Lets add a method inside of State called vertical_intersection to match horizontal_intersection : So far we havent written anything we can interact with. Well we can act on it (move the character) but we cant see what were doing. Lets try drawing the walls. If you remember from the summary we have to draw vertical lines for every column on the window. We can split this up into two separate jobs: getting the heights of the lines and actually drawing them on the screen. Why not do this all at once? Well vline is unsafe so we should keep it in fn update . Lets do this by defining State::get_view which returns a list of all the wall heights. Then on each frame we can call State::get_view from fn update and draw all of those vertical lines we just calculated. State::get_view will work by going through each vertical line on the screen (all 160) calculating the angle offset from the players point of view then finding the distance to the closest horizontal and vertical intersections with walls in the rays path. Then it compares the two distances and turns the smaller of the two into the height of a wall. I know that sounds complicated so lets go ahead and write out what that looks like. First lets create some constants which define our players perspective: WALL_HEIGHT is the height in pixels the wall will appear as when it is one unit away. Now lets add get_view to our existing State impl block: Looks good lets try running it! You can use the arrow keys on your keyboard to move the player around. Wow we were able to create the illusion of depth! This is pretty impressive for our first try. Most tutorials stop here but there are some problems we need to work out. When walking around you might notice that everything looks wrong. Walls bend away from you as if you were looking through a fisheye lens. This is because our algorithms assumption that human vision converges on a single infinitely small point (the player) is wrong. In reality our visual cortex is constantly blending the perspective of both of our eyes to create depth. In this case a much more accurate metaphor is a plane perpendicular to our perspective sending out the rays: Of course this is pretty vague but if you think of it as fisheye correction maybe thatll help. To apply this fisheye correction we have to multiply the distance by the cosine of difference between the rays angle and the players angle: $$ H= \frac{C}{D \times \cos(\Delta \theta)} $$ Where $H$ is the wall height in pixels $D$ is the distance to the wall and $ \Delta\theta$ is the difference between the rays angle and the players angle. All we have to do to apply this is to modify a single line in the State::get_view function: Great! Now the walls are straight. One thing about the current version of the game is that it is difficult to distinguish between different walls. Especially at a distance walls seem to fade into each other and its hard to tell them apart. In real life we can distinguish walls apart by their shadows. We can try to emulate this in the game by coloring walls differently based on their orientation. Luckily for us we already know which walls are east/west facing and which are north/south facing because of what axis our rays intersected with them! Knowing this its fairly easy to assign different colors to walls. WASM-4 has a very unique way of setting which color its functions use to draw. Every time a draw function is called in WASM-4 it decides what color to use based on an index kept a bit of memory called DRAW_COLORS . WASM-4 makes changing DRAW_COLORS easy we can set it by using simple hex notation. Lets add DRAW_COLORS next to GAMEPAD1 at the top of our file: Now in State::get_view we can rewrite it to pass along if the wall should be drawn with a shadow or not: Now lets make these changes in fn update : Lets try running it: Wow that looks much better. Even though shadows in real life dont act like this it adds some good detail and helps create the illusion of depth. If you were to check the size of the program right now say by calling du -bh you might get something like this: This is nowhere near the 2K executable I promised in the title so how are we going to get there? One way you can reduce the size of .wasm files is by using wasm-opt . You can usually get wasm-opt by installing the binaryen package. wasm-opt was specifically designed to optimize .wasm files for size by removing dead code and duplicate instructions that the compiler left behind. Lets put a wasm-opt step in our Makefile and while were at it lets make it tell us what size the .wasm file is: Hmmm not quite enough. If you were to look into the executable youd probably see that most of the space is being taken up by functions we imported from libm . The final step requires we remove libm completely and replace it with our own implementation. Lets start by deleting the old libm import statement and removing it from Cargo.toml . After that we can add an approximation of the sinf function using Bhasksara Is sin approximation and redefine cosf and tanf in terms of it. $$ \sin(x) \approx \frac{16x(\pi-x)}{5\pi^2-4x(\pi-x)} \text{ when } (0 \le x \le \pi) $$ This approximation is extremely good especially for the time it was discovered. And because were operating with wall heights only between integers 0 and 160 any differences between libm::sinf and our sinf will be indistinguishable. First make sure to also import $\tau$ from the core library and define a constant for $5\pi^2$ which Bhaskara Is approximation uses: Then lets add our new sinf 3 : Now we can create cosf and tanf functions from their definitions relating to sinf : $\cos(x) = \sin(x + \frac{\pi}{2})$ $\tan(x) = \frac{\sin(x)}{\cos(x)}$ Alright now that weve replaced the libm trig functions what about sqrtf ceilf floorf and fabsf ? This is where nightly Rust comes into play so make sure youve rustup default nightly ed yourself or build the project with nightly features enabled from now on. Nightly Rust enables us to use an experimental module in the core library named core::intrinsics . core::intrinsics provides us some functions that the compiler knows how to optimize so we dont have to write them ourself. In order to turn on the experimental intrinsics feature add #![feature(core_intrinsics)] to the top of your file: Now we can create some safe wrappers over the unsafe functions that core::intrinsics provides for us: Lets compile to and see if it works and 1.7K is not the smallest you can make this program. You can get this to fit in even smaller sizes and I encourage you to try! There are some sections in this code that Ive even intentionally made more readable at the cost of taking up slightly more instructions than they need to just so you can optimize it. I wrote this post because when I was first writing my raycasted game I couldnt find any resources that explained how the algorithm worked in sane code and plain language. I hope this was interesting and useful for you! Ray casting in FPS games was always a mystery to me before I looked into them I hope youll agree that the algorithm behind it is surprisingly elegant. In this post I call specific the ray casting algorithm used in games like Wolfenstein 3D ray casting for the sake of brevity. This is slightly inaccurate as ray casting has a more general meaning in the field of graphics. See the Wikipedia Article . To say extending the ray is a bit of a misnomer. vector is more accurate in this situation but ray sounds better and is in the name ray casting so I use it in its place. Thanks to Cyborus04 for helping me with this sinf function.
13,987
BAD
Writing Is My Main Freedom. One Day My Work Disappeared (2021) (themarshallproject.org) Back in August six of my essays four of my short stories and a bunch of half-written poems that were perhaps worthy of francine j. harris disappeared from the JPay electronic tablet I use to write and stay in touch with my loved ones. For the most part the JPay system is a relief. Along with sending and receiving messages the tablets allow us to get music games and books from a catalogue on the kiosks that we use to download materials. There are just two kiosks for over 80 people in my unit. When its your turn you pick up where your conversations and jokes left off. You pore over the hard-to-decipher letters your young children write to you. When JPay is working properly it makes connection with the outside world more possible. But there are downsides like losing features. I lost my works-in-progress because the prison and JPay reduced the tools available to men in the so-called security threat group (STG). Those changes also impacted prisoners like me who arent in the STG. Suddenly my box for drafts was gone and the sentences I typed appeared in one long line across the screen. Without line breaks I couldnt create paragraphs in my essays or stanzas in the poems I wrote to my 11-year-old daughter . Essentially my tablet ceased to be a vehicle for my creative writing. It may sound minor but try reading and writing messages on your tablet laptop or phone without line breaks and drafts. Suddenly your writing makes no sense. I was devastated because writing is one of very few freedoms I have at Baraga Correctional Facility in Michigan. Writing is how I make sense of the muddiness within myself and this environment and I love the ritual of honing my work on the tablet and sharing it with other writers. Its like a second chance at life. The change in mailbox features came on top of the usual cost of the electronic stamps we have to buy to communicate with our loved ones. Each page requires a stamp which gets expensive especially during COVID-19 when families are struggling and people are dying. Even worse the power to accept or reject the non-legal material that we read and write falls on whoever the Michigan Department of Corrections appoints. Often its just a corrections officer filling in for another in the mailroom. JPay is considered a privilege rather than a right. And privileges can be taken away. According to Protecting Your Health and Safety: A Litigation Guide For Inmates a book published by the Southern Poverty Law Center the outgoing messages the prison rejects need to be reasonably related to legitimate penological interests. That means we cant send or receive messages that contain escape plans threats of blackmail or other criminal activity. According to the guide officials may not censor incoming or outgoing mail simply because it criticizes the courts jail or prison policies or the officials themselves. And yet Ive had my messages about the killings of George Floyd and Breonna Taylor rejected. The same goes for my journalistic work about prisoners like me on security Level 4 who had been waiting to transfer out of Level 5 housing for two years. To add insult to injury we dont get our stamps back when a message is deemed unsafe or inappropriate. Ultimately it fell on our loved ones and writing communities to get the features restored for non-STG prisoners. They repeatedly called the facility and JPay representatives to complain. About three weeks into the service changes JPay sent a message to everyone at Baraga claiming that they had technical problems that they were trying to solve. A week after that letter prisoners who werent in the security threat group had their features restored. While Im glad that JPay is back to normal Im still upset at the arbitrary nature of the changes. I'll never know what my lost essays poems and letters my main creative outlet and my second chance at life could have become. A spokesperson for the Michigan Department of Corrections stated that transfers from Level 5 to Level 4 have been slowed due to COVID protocol. A spokesperson for JPay said that a software release deployed mid-August inadvertently reverted some facilities to default settings impacting drafting and ease of editing We acknowledge this technology error and commit to better serving our customers. On the subject of censored messages they stated If customers feel their content was wrongfully denied we encourage them to contact customer support refute the decision and request a stamp refund. Demetrius A. Buckley is a poet and fiction writer. His work has been published in The Michigan Quarterly Review RHINO The Periphery and Storyteller. He's currently working on a novel HalfBreed. He is serving a 20-year sentence for second degree murder at Baraga Correctional Facility in Michigan. Well never put our work behind a paywall and well never put a limit on the number of articles you can read. No matter what you can always turn to The Marshall Project as a source of trustworthy journalism about the criminal justice system. Donations from readers like you are essential to sustaining this work. Knowing that youre behind us means so much. Can we count on your support today? Demetrius Buckley Email Demetrius A. Buckley is a poet and creative writer. His work has been published in The Michigan Quarterly Review RHINO Mangoprism Filter The Arkana Journal and Apogee. He's working on a memoir: First 48: The Fall of Winter Kings and is the 2021 Toi Derricotte & Cornelius Eady Chapbook Prize winner for his poetry collection Here is Home. He is serving a 20- to 32-year sentence for a second degree murder at Michigan Reformatory (RMI).
14,013
BAD
Writing a C Compiler (2017) https://norasandler.com/2017/11/29/Write-a-Compiler.html lrsjng Nov 29 2017 This is the first post in a series on writing your own C compiler. Here are some reasons to write a compiler: Ive been working on my own C compiler nqcc for the past several weeks using Abdulaziz Ghuloums An Incremental Approach to Compiler Construction as a roadmap. I really like Ghuloums approach: you start by compiling a tiny trivial subset of your source language all the way down to x86 assembly . Then you add new language features one step at a time. In step one you just return constants; in a later step you handle addition and subtraction; and so on. Every step is small enough to feel manageable and at the end of the every step you have a working compiler. This series is adapted from Ghuloums paper - the original paper is about compiling Scheme so I had to make some adjustments to compile C instead. Ill cover arithmetic operations conditionals local variables function calls and perhaps more. Ive also written some test programs that you can use to validate that each stage of your compiler works correctly. Before you start you need to decide on two things: what language to write your compiler in and how to handle parsing and lexing. You can implement the compiler in whatever language you like but Id recommend using a language with sum types and pattern matching 1 like OCaml Haskell or Rust. It will be SO MUCH EASIER to build and traverse an AST if you do. I started writing nqcc in Python which I know very well then got fed up and switched to OCaml which I didnt know well at all and it was definitely worth it. You also need to decide whether to write your own parser and lexer or use automatic parser and scanner generators (e.g. flex and bison ). In this series of posts Ill show you how to write a lexer (or scanner) and recursive descent parser by hand. Using a parser generator is probably easier but I havent tried it so I could be wrong. You could probably also use a scanner generator for lexing but hand-write your own parser. Basically do whatever you like but Im only going to talk about hand-writing a lexer and parser for the rest of this series so if you want to use bison and flex youre on your own. Theres one more thing you need to decide on: whether to target 32-bit or 64-bit assembly. This series uses 32-bit architecture because thats what Ghuloums paper used. However Ive realized since starting the series that this was a bad call. Because 32-bit architecture is increasingly obsolete compiling and running 32-bit binaries can be a headache. Ive decided to go back and add 64-bit examples to this series when I get the chance. Until I do that you have one of two options: Stick with the 32-bit instruction set Ive used in these posts. This will require a little extra work up front depending on your OS: On Linux youll need to install some extra libraries in order to turn your 32-bit assembly into an executable. This Dockerfile lists the libraries youll need (plus some Scheme-related stuff you can ignore). Many thanks to Jaseem Abid who had previously worked through Ghuloums paper for creating this Dockerfile and telling me about it. 32-bit support is being phased out on macOS and the next version probably wont let you run 32-bit binaries at all. At the moment the gcc binary that ships with XCode wont compile 32-bit applications by default. You can just install GCC from Homebrew and use that instead or you can futz around with XCode and figure out how to make it build 32-bit binaries. I went with the former. This week well compile a program that returns a single integer. Well also set up the three basic passes of our compiler. This will be a lot of work for not that much payoff but the architecture we define now will make it easy to add more language features later on. Heres a program wed like to compile - well call it return_2.c: Well only handle programs with a single function main consisting of a single return statement. The only thing that varies is the value of the integer being returned. We wont handle hex or octal integer literals just decimal. To verify that your compiler works correctly youll need to compile a program run it and check its return code: Your compiler will produce x86 assembly. We wont transform the assembly into an executable ourselves - thats the job of the assembler and linker which are separate programs 2 . To see how this program looks in assembly lets compile it with gcc 3 : Now lets look at the assembly itself. We can ignore the .section .align and .subsections_via_symbols directives - if you delete them you can still assemble and run return_2.s 4 . .globl _main indicates that the _main symbol should be visible to the linker; otherwise it cant find the entry point to the program. (If youre on a Unix-like system other than OS X this symbol will just be main no underscore.) Finally we have our actual assembly instructions: The most important point here is that when a function returns the EAX register 5 will contain its return value. The main functions return value will be the programs exit code. An important side note: throughout this tutorial Ill use AT&T assembly syntax because thats what GCC uses by default. Some online resources might use Intel syntax which has operands in the reverse order from AT&T syntax. Whenever youre reading assembly make sure you know what syntax its using! The only thing that can change in the snippet of assembly above is the return value. So one very simple approach would be to use a regular expression to extract the return value from the source code then plug it into the assembly. Heres a 20-line Python script to do that: But parsing the whole program with one big regular expression isnt a viable long-term strategy. Instead well split up the compiler into three stages: lexing parsing and code generation. As far as I know this is a pretty standard compiler architecture except youd normally want a bunch of optimization passes between parsing and code generation. The lexer (also called the scanner or tokenizer) is the phase of the compiler that breaks up a string (the source code) into a list of tokens. A token is the smallest unit the parser can understand - if a program is like a paragraph tokens are like individual words. (Many tokens are individual words separated by whitespace.) Variable names keywords and constants and punctuation like braces are all examples of tokens. Heres a list of all the tokens in return_2.c: Note that some tokens have a value (e.g. the constant token has value 2) and some dont (like parentheses and braces). Also note that there are no whitespace tokens. (In some languages like Python whitespace is significant and you do need tokens to represent it.) Here are all the tokens your lexer needs to recognize and the regular expression defining each of them: If you want you could just have a keyword token type instead of a different token type for each keyword. Write a lex function that accepts a file and returns a list of tokens. It should work for all stage 1 examples in the test suite including the invalid ones. (The invalid examples should raise errors in the parser not the lexer.) To keep things simple we only lex decimal integers. If you like you can extend your lexer to handle octal and hex integers too. You might notice that we cant lex negative integers. Thats not an accident - C doesnt have negative integer constants. It just has a negation operator which can be applied to positive integers. Well add negation in the next post. The next step is transforming our list of tokens into an abstract syntax tree. An AST is one way to represent the structure of a program. In most programming languages language constructs like conditionals and function declarations are made up of simpler constructs like variables and constants. ASTs capture this relationship; the root of the AST will be the entire program and each node will have children representing its constituent parts. Lets look at a small example: This code snippet is an if statement so well label the root of our AST if statement. It will have three children: Each of these components can be broken down further. For example the condition is a binary < operation with two children: An assignment statement (like c=2; ) also has two children: the variable being updated ( c ) and the expression assigned to it ( 2 ). The if body on the other hand can have an arbitrary number of children - each statement is a child node. In this case it has two children because there are two statements. The children are ordered - c=2; precedes return c; because it comes first in the source code. Heres the full AST for this code snippet: And heres pseudocode for constructing this AST: For now though we dont need to worry about conditionals variable assignments or binary operators. Right now the only AST nodes we need to support are programs function declarations statements and expressions. Heres how well define each of them: Right now a program consists of a single function main . Later on well define a program as a list of functions. A function has a name and a body. Later a function will also have a list of arguments. In a real C compiler wed also need to store the functions return type but right now we only have integer types. A function body is a single statement; later it will be a list of statements. Theres only one type of statement: a return statement. Later well add other types of statements like conditionals and variable declarations. A return statement has one child an expression - this is the value being returned. For now an expression can only be an integer constant. Later well let expressions include arithmetic operations which will allow us to parse statements like return 2+2; . As we add new language constructs well update the definitions of our AST nodes. For example well eventually add a new type of statement: variable assignment. When we do well add a new form to our statement definition: Heres a diagram of the AST for return_2.c: Finally we need a formal grammar which defines how series of tokens can be combined to form language constructs. Well define it here in Backus-Naur Form : Each of the lines above is a production rule defining how a language construct can be built from other language constructs and tokens. Every symbol that appears on the left-hand side of a production rule (i.e. <program> <function> <statement> ) is a non-terminal symbol. Individual tokens (keywords ids punctuation etc.) are terminal symbols. Note that while this grammar tells us what sequence of tokens constitutes a valid C program it doesnt tell us exactly how to transform that program into an AST - for example theres no production rule corresponding to the Constant node in the AST. We could rewrite our grammar to have a production rule for constants but we dont have to in order to parse the program. Right now the grammar is extremely simple; theres only one production rule for each non-terminal symbol. Later some non-terminal symbols will have multiple production rules. For example if we added support for variable declarations we could have the following rule for deriving statements: To transform a list of tokens into an AST well use a technique called recursive descent parsing. Well define a function to parse each non-terminal symbol in the grammar and return a corresponding AST node. The function to parse symbol S should remove tokens from the start of the list until it reaches a valid derivation of S . If before its done parsing it hits a token that isnt in the production rule for S it should fail. If the rule for S contains other non-terminals it should call other functions to parse them. Heres the pseudocode for parsing a statement: Later the production rules will be recursive (e.g. an arithmetic expression can contain other expressions) which means the parsing functions will be recursive too - hence the name recursive descent parser. Write a parse function that accepts a list of tokens and returns an AST rooted at a Program node. The function should build the correct AST for all valid stage 1 examples and raise an error on all invalid stage 1 examples. If you want you can also have your parser fail gracefully if it encounters integers above your systems INT_MAX. There are a lot of ways to represent an AST in code - each type of node could be its own class or its own datatype depending on what language youre writing your compiler in. For example heres how you might define AST nodes as OCaml datatypes: Now that weve built an AST were ready to generate some assembly! Like we saw before we only need to emit four lines of assembly. To emit it well traverse the AST in roughly the order that the program executes. That means well visit in order: Note that we often (though not always) traverse the tree in post-order visiting a child before its parent. For example we need to generate the return value before its referenced in a return statement. In later posts well need to generate the operands of arithmetic expressions before generating the code that operates on them. Heres the assembly we need: Write a generate function that accepts an AST and generates assembly. It can return the assembly as a string or write it directly to a file. It should generate correct assembly for all valid stage 1 examples. Youll probably want a utility function to print out your AST to help with debugging. You can write it now or wait until you need it. Heres what nqccs pretty printer outputs for return_2.c: This example includes some information your AST doesnt need like the return type and list of function parameters. Write a pretty-print funcion that takes an AST and prints it out in a readable way. Write a program that accepts a C source file and outputs an executable. The program should: In this command assembly.s is the name of the assembly file and out is the name of the executable you want to generate. The -m32 option tells GCC to build a 32-bit binary. You can omit that option and build 64-bit binaries if you want but youll need to make some changes to the code generation steps later on (e.g. using 64-bit registers). You can test that your compiler is working properly with the test script here . It will compile a set of test programs using your compiler execute them and make sure they return the right value. To invoke it: In order to test it with the script your compiler needs to follow this spec: The script doesnt check whether your compiler outputs sensible error messages but you can use the invalid test programs to test that manually. In the next post well add three unary operators: - ~ and ! . Stay tuned! If you have any questions corrections or other feedback you can email me or open an issue . 1 If youre not familiar with sum types or pattern matching theres a good introduction here . 2 An assembler converts a bunch of human-readable assembly instructions (like inc ) into binary opcodes (like 1000000 ). A linker combines multiple object files (the files produced by the assembler) into a single executable. Even though return_2.c doesnt reference any external libraries we still need the linker for two reasons: 3 In case youre curious about these GCC options: -S tells GCC to generate an assembly file (return_2.s) instead of an executable. -O3 turns on a bunch of compiler optimizations - this removes a lot of boilerplate and makes the code easier to read - at least for extremely simple programs like this one. -fno-asynchronous-unwind-tables tells it not to generate an unwind table which contains information needed to generate stack traces. Hiding the unwind table also makes the code smaller and more readable. 4 I think these directives will vary between platforms; these were generated using Homebrew gcc 7.2.0 on OS X. Heres what they mean: 5 A register is a very tiny very fast memory cell that sits right on the CPU and has a name you can refer to in assembly.
null
BAD
XFS metadata corruption after upgrade to 6.3.3 kernel https://bugzilla.redhat.com/show_bug.cgi?id=2208553 itvision Hide Forgot
null
GOOD
Xerox scanners randomly alter numbers in scanned documents (2013) https://www.dkriesel.com/en/blog/2013/0802_xerox-workcentres_are_switching_written_numbers_when_scanning gurjeet Home and news Person short CV Imprint FAQ Disclaimer Corona/Covid19-Plots (offline) Neural Networks (MANUSCRIPT) Distributed evolution of Swarms (Master's Thesis) 2015-01-02: Video and Slides of my Xerox Talk at 31C3 English German (more updates) Please see the condensed time line section (the next one) for a time line of how the Xerox saga unfolded. It for example depicts that I did not push the thing to the public right away but gave Xerox a lot of time before I did so. Personally I think this is important. I will post updates and links to the relevant blog posts in there in order not to make total crap out of this article's outline. In this way I keep this article up-to-date for future visitors and also write new blog posts on the topic for RSS users. This FrOSCon Talk (August 2015) is a native english version of the quite popular CCC talk (December 2014) so I embed this instead of the live translation by CCC. Here you can download the slides. Here you can send me feedback on the talk! Thank you! In this article I present in which way scanners / copiers of the Xerox WorkCentre Line randomly alter written numbers in pages that are scanned. This is not an OCR problem (as we switched off OCR on purpose) it is a lot worse patches of the pixel data are randomly replaced in a very subtle and dangerous way: The scanned images look correct at first glance even though numbers may actually be incorrect. Without a fuss this may cause scenarios like: The errors are caused by an eight (!) year old bug in widely used WorkCentre and ColorQube scan copier families of the manufacturer Xerox according to reseller data hundreds of thousands of those machines are used across the planet. As a result anyone having used machines of the named families has to ask himself: Before the bug was covered in my blog it was not discovered or published nor was its montrosity visible to Xerox or me. It unleashed itself across several blog articles I wrote that were then spread further by the mass media. What happened in which order can be seen in the time line below. It has been an interesting time I promise. Originally this blog article was published in the fear the bug would be dangerous enough to put lifes at risk and in the believe Xerox would not take the bug report serious. The rest of the article is organized as follows. Due to the mass of the blog articles I keep getting asked for a comprehensive time line. Here it is. The relevant blog posts are linked (barely visible though hm). This list will be updated as used the current status is always marked with a . We got aware of the problem by scanning some construction plan last Wednesday and printing it again. Construction problems contain a boxed square meter number per room. Now in some rooms we found beautifully lay-outed but utterly wrong square meter numbers. You really have to read the numbers to find out; this is why it is so hard to find out. In the present case we found out because one room in the construction plan was as the copy told us about 22 square meters large whereas the next room a lot larger was assigned a label with 14 square meters. Firstly I present to you a complete original version of the affected construction plan part. After this the wrong numbers will be presented. Click to enlarge. I added the yellow marks myself to show you where the errors will occur. Let us name the upper one place 1 the lower left place 2 and the lower right place 3. Now let us scan the construction plan and get a PDF file from it. No OCR just plain image. Then we get wrong square meter numbers at the three places (Yeah couldn't believe it too). The screen shots of the erroneous places are organized in the below table. There is one additional line in the table for the original patches. The Xerox WorkCentre 7535 always produced the same errors; this is why we only need one line for it in the table. In contrast the WorkCentre 7556 randomly produced different numbers this is why I present three lines for three runs with different errors. I know that the resolution is not too fine but the numbers are clearly readable. Additionally obviously these are no simple wrong pixels but whole image patches are mixed up or copied. I repeat: This is not an OCR problem but of course I can't have a look into the software itself maybe OCR is still fiddling with the data even though we switched it off. Next example: Some cost table scanned on the WorkCentre 7535. As we are used to a correct-looking scan at the first glance but take a closer look. This error was found because usually in such cost tables the numbers are sorted ascending. The 65 became an 85 (second column third line). Edit: I'm getting emails telling me that also a 60 in the upper right region of the image became a 80. Thanks! This is not a simple pixel error either one can clearly see the characteristic dent the 8 has on the left side in contrast to a 6. This scan is several weeks old no one can say how many wrong documents have been produced by the Xerox machines in the mean time. As the saga unfolded itself in this section I built up a hearsay list of affected devices according to mails my readers sent to me. As the bug is confirmed by xerox in the meantime I was able to remove the word hearsay. The letter x can be substituted by arbitrary digits in cases where whole device families are affected. After the cost table I printed some numbers scanned them OCRed them and compared them to the original ones. As the OCR produces errors by itself one obviously has to check by hand for false positives when performing this. I took Arial 7pt as a test font and the WorkCentre 7535 with the newer of the aboved named Software version as a test machine. The scan settings were like above. And again a lot of sixes were replaced by eights: (only a few of the errors are marked yellow for the sake for laziness): Observe how the sixes around the false eights look correct. Also the false eights contain the characteristic dent again so whole image patches have been replaced again. In case you want to have a look for yourself: The error does occur because image segments that are considered as identical by the pattern matching engine of the Xerox scan copiers are only saved once and getting reused across the page. If the pattern matching engine works not accurately image segments get replaced by other segments that are not identical at all e.g. a 6 gets replaced by an 8. In contrast to what Xerox suggests in their PR this may also happen on characters that were perfectly readable on the original even though they were small. It is important to notice that the image format used in the affected PDFs JBIG2 is an image format and not a compression algorithm . It is no instruction of how to compress an image it only defines in what format it should be saved afterwards. So to say it is a de compression instruction. How you compress depends on you. JBIG2 has been created to save images that contain scanned text in an efficient way and in this way it is widely used. That allows us to nevertheless have look at how compression is done usually even though we can't look in the source code of the Xerox or other machines. In particular we will see that encoding can be done lossless or lossy. Consequently the error cause described in the following is a wrong parameter setting during ancoding. The error cause is not JBIG2 itself. Because of a software bug loss of information was introduced where none should have been. JBIG2 the image format used in the affected PDFs usually has lossless and lossy operation modes. Pattern Matching & Substitution (PM&S) is one of the standard operation modes for lossy JBIG2 and Soft Pattern Matching (SPM) for lossless JBIG2 ( Read here or read the papery by Paul Howard et al. 1) ). In the JBIG2 standard the named techniques are called Symbol Matching. PM&S works lossy SPM lossless. Both operation modes have the basics in common: Images are cut into small segments which are grouped by similarity. For every group only a representative segment is is saved that gets reused instead of other group members which may cause character substitution. Different to PM&S SPM corrects such errors by additionally saving difference images containing the differences of the reused symbols in comparison to the original image. This correction step seems to have been left out by Xerox. For PDFs that were scanned with the named Xerox devices during the last 8 years it cannot be proven what characters were on the original sheet of paper at the places that are now defined by reused patches. Therefore these patches have no legal value at all. Please note that it is irrelevant if errors actually occured in a specific scan the legal value is zero once it is proven that lossy jbig 2 is used. More and more known enterprises reach out ot me these days asking theirselves if they have a huge problem with their scanned documents. Others are already certain thay actually have a huge problem some of them in security critical contexts. All have in common that they understandably are afraid of publicity. Affected companies normally have three goals: At a closer look these goals may contradict each other; even large and well-organized enterprises are prone for beginner's mistakes here. Thus in general: Everyone who gets in touch with me requesting help to evaluate their own situation can be certain not to get his identity made public by me. I acted this way across the entire xerox saga and I won't stop this way of acting now. My contact data can be found in the imprint . en/blog/2013/0802_xerox-workcentres_are_switching_written_numbers_when_scanning.txt Last modified: 2015/09/02 12:31 by david
null
BAD
Xylazine a dangerous new drug fuelling Canadas opioid crisis (macleans.ca) 2023 SJC Media. Society Kali Sedgemore a harm-reduction worker in Vancouvers Downtown Eastside has seen its impact firsthand Mathew Silver April 6 2023 Xylazine is known by some users as tranq or zombie drug for its powerful sedative effects (photograph by iStock) Last year there was an average of 20 opioid-related deaths in Canada each day. This year a dangerous new substance xylazine has been further amplifying the toxicity of Canadas drug supply concerning first responders and public-health experts who work on the front lines. Xylazine known by some users as tranq or zombie drug for its powerful sedative effects is a tranquilizer typically administered to large animals (like horses) in veterinary settings and is not approved for use in humans. According to a recent report from Health Canada xylazine was found in 1350 samples of drug seizures most commonly in Ontario and British Columbia. Perhaps most alarmingly the sedative is sometimes combined with fentanyl. But unlike fentanyl whose overdoses are treated with naloxone (or Narcan) xylazine currently has no antidote. READ: Im a family doctor in Halifax. Heres why pay-for-service clinics will burden the public system. To find out more about xylazine its devastating effects on users and what can be done to mitigate them (if anything) we spoke to Kali Sedgemore a long-time harm-reduction expert in Vancouvers Downtown Eastside who also works with Vancouver Coastal Health a regional health authority that provides addictions outreach in British Columbia. How did you get involved with harm-reduction work? I grew up surrounded by substance use. At 11 I started using cocaine and alcohol which turned into a habit as I entered high school. It progressed to crack and later meth. Now Im a daily intravenous meth user. Ive also watched family members use. I know the importance of having clean supplies and treating drug users with respect knowing they need help. For the past 10 years Ive been working to prevent people from overdosing. Right now I work at three safe-injection sites in Vancouvers Downtown Eastside. Whats a typical work day like for you? I usually work from noon to 8 p.m. I arrive at the site which is usually a big room with a bunch of different stations where people can use. We see anywhere from 40 to 100 people a day and all types: construction workers unhoused people lawyers. I sign them in witness their consumption of drugsincluding fentanyl crystal meth hydromorphone cocaine ritalin dexedrineand try to help them as best I can. Some users have seizures or they black out or fall asleep. Some act erratically. Some stop breathing because opiates tell the body to slow down reducing their oxygen supply. If this happens two or three workers will offer them oxygen. If someone goes down which is the term we use for overdosing we give them naloxone which reduces the effects of opioids and restores breathing. Well call 911 if we do that. Vancouver-based harm-reduction worker Kali Sedgemore (photograph courtesy of Sedgemore illustration by Macleans ) How have you seen the opioid crisis evolve over the years? When I started working in harm reduction back in 2011 drug dealers were mixing fentanyl with other drugslike heroin cocaine and methamphetaminebecause its a cheap way to get high. I wasnt really seeing any overdoses until 2015 when fentanyl fully entered the drug supply. We didnt know what was going on at first. By the winter of 2022 we were seeing one or two overdoses a day at the clinic. And by early 2023 we were seeing between five to seven overdoses a day which we attribute to an increased presence of xylazine and benzodiazepines like Xanax Ativan and Valium. So xylazine really emerged earlier this year? In January I started hearing about xylazine through drug warnings on social media. One Instagram account Harm Reduction Saves Lives posts regular updates on the provinces supply. Then outreach workers end up discussing it at testing sites. We dont see xylazine as the new fentanyl exactly; its just another example of how the drug supply is being contaminated. We know that xylazine is a veterinary tranquilizer but were not sure how the drug dealers are getting it from clinics. How does xylazine enter the drug supply? Its used as a filler to create more product and increase its potency which jacks up the price of the drugs. This is a process called cutting. Often the presence of xylazine isnt the fault of individual dealers because the drugs have usually switched hands a few times before they get them. Lately weve been seeing a lot of long-time users overdose. These are people who have a high tolerance and a lot of experience using which is a sign that the drugs are getting more toxic. READ: An impossible job: What its like to work in a pediatric ICU What about xylazine makes it particularly dangerous? First its meant for animals. Its also difficult to tell whether someone has taken drugs cut with xylazine which is usually injected or smoked with tin foil or a bubble pipe. Weve seen different physical responses to it; sometimes it just looks like someone is heavily sedated. Because xylazine is a tranquilizer though it can cause some people to black out for 12 hours. Its also a vasoconstrictor meaning it causes a narrowing of the blood vessels which can cause really bad skin abscesses and leads to amputation in some instances. Most of all we have no readily available way to test the drugs and find out whats in themunless we send them in for testing which we dont have the time or resources to do. In your opinion does xylazine have the potential to wreak as much havoc as fentanyl? Its hard to say. Nobody knows what to do at this point. Is there any action that policymakers can take? We need a regulated safe supply of drugsas in we need dealers to be handing out drugs that are tested properly. Right now dealers can get their supply tested at sites in the Downtown Eastside. The machine used in testing is the Fourier-transform infrared spectrometer and it can detect multiple substances in minutes. We need more people who are trained to operate these machines. We also need to hire more drug users in harm-prevention roles because they understand the impact of opioids. How are you coping with the onslaught of another new drug? Im really numb to it now because Ive dealt with this so many times during my career. We constantly lose members of our community people we care about. Most recently I lost my older brother who died from smoking contaminated crack. It really takes a toll on my mental health so I spend time with friends go for hikes and talk with a counsellor. I also run a drug-user group called the Coalition of Peers Dismantling the Drug War. We have to fight hard every day because things are getting worse. This interview has been edited for length and clarity. 2023 SJC Media.
14,057
BAD
Yellen says government will help SVB depositors but rules out bailout (ft.com) Gain a global perspective on the US and go beyond with curated news and analysis from 600 journalists in 50+ countries covering politics business innovation trends and more. Then $69 per month New customers only Cancel anytime during your trial During your trial you will have complete digital access to FT.com with everything in both of our Standard Digital and Premium Digital packages. Standard Digital includes access to a wealth of global news analysis and expert opinion. Premium Digital includes access to our premier business column Lex as well as 15 curated newsletters covering key business themes with original in-depth reporting. For a full comparison of Standard and Premium Digital click here . Change the plan you will roll onto at any time during your trial by visiting the Settings & Account section. If you do nothing you will be auto-enrolled in our premium digital monthly subscription plan and retain complete access for $69 per month. For cost savings you can change your plan at any time online in the Settings & Account section. If youd like to retain your premium access and save 20% you can opt to pay annually at the end of the trial. You may also opt to downgrade to Standard Digital a robust journalistic offering that fulfils many users needs. Compare Standard and Premium Digital here . Any changes made can be done at any time and will become effective at the end of the trial period allowing you to retain full access for 4 weeks even if you downgrade or cancel. You may change or cancel your subscription or trial at any time online. Simply log into Settings & Account and select Cancel on the right-hand side. You can still enjoy your subscription until the end of your current billing period. We support credit card debit card and PayPal payments. Find the plan that suits you best. Premium access for businesses and educational institutions. Check if your university or organisation offers FT membership to read for free. We use cookies and other data for a number of reasons such as keeping FT Sites reliable and secure personalising content and ads providing social media features and to analyse how our Sites are used. International Edition
14,079
BAD
Yes if: Iterating on our RFC Process (engineering.squarespace.com) [placeholder] We build better systems when we work together. At Squarespace we write a Request for Comments documentan RFCwhen were creating a new system or making a major change. RFCs also called Design Documents are a common industry practice and for good reason. They give us a mechanism for reviewing each others ideas and describing our own. RFCs turn ideas into words. They force clarity: its hard to write an RFC unless youre sure about what problem youre trying to solve and why. They encourage the author to think through all aspects of their design and to make and document decisions. Having a written design allows other engineers to review those decisions. Reviewers may have opinions on whether the problem needs to be solved at all or whether simpler approaches might work just as well. They may notice risks to the project flaws in the design or edge cases that won't work. Or maybe (rarely!) they'll think the design is perfect in every way and leave a comment to say so. Around a year ago we started iterating on the RFC process we use in our Infrastructure organization. We wanted to address the parts of our process that werent working well: Designs didnt always get deep review. Engineers complained about discovering systems that were implemented with subtle flaws or that were more complicated than they needed to be. Authors made decisions that were locally good but that didnt fit into the broader architectural picture. Two teams might solve related or overlapping problems but not find out until they'd implemented systems that didn't work well together. Reviewers werent sure what they should be looking for. They were wary of nitpicking or asking stupid questions about issues that the author had probably considered but hadnt written down. Authors felt that reviewers were piling on criticism. When an author sent a new RFC for review they sometimes got flooded with comments. It was difficult to distinguish between comments that were intended to be blockers and those that were just interesting asides. Reviewers werent clear about whether they liked the overall design. If a reviewer had no objections to make they didnt call out that the design was good; they usually said nothing at all. Authors werent sure when the review period was finished. They didnt know when it was OK to start implementing. We took three steps each of which incrementally improved our process: we wrote an opinionated RFC template created Infrastructure Council and introduced Architecture Review . As a first step we rewrote our RFC template to give more opinionated guidance on what the RFCs should include. Rather than have separate best practices documentation for writing and reviewing designs we want to make it easy and intuitive for people to do the right thing. The new template has an approvers section with space for approvers to sign off on the design. Although we value comments from many people by naming the approvers we are clear about where the decision lies: if the approvers dont say yes we wont start implementing. If I wrote an RFC for this blog post its header might look like this: Primary author(s): Tanya Reilly Collaborators: N/A Created: June 14 2019 Last updated: June 15 2019 Status: First draft. Could you please give me a brutal review and tell me if this topic works at all? Approvers: Other reviewer(s): Laura John Kevin Polina Guislain Ive added Eva and Alex as approvers and I wont continue working on this unless they think its a good idea. Ive also added a few other engineers whose opinions I respect a lot. If they dont have time to review thats OK. I wont block on it. Approvers say yes or not yet. We want to encourage constructive comments so the template doesnt suggest no. Instead of just vetoing an idea its better to be clear on what it would take to approve it. A yes might come with caveats. For example in reviewing the first draft of this post Eva might write Yes if you can show that each iteration was a useable milestone. This sort of yes if approval means that the design author isnt blocked and doesnt need to wait for the approver to read again later. The approver trusts them to do the right thing. Its also more encouraging than a flat no. The approver is working with the author to get the best possible design; theyre not gate-keeping. Note the status field here: its free text and Im using it to be clear about the kind of review I want. For a first draft I might want reviewers to tell me whether this is even a good idea. If its duplicating effort or doesnt seem useful Id prefer to know before I sink a lot of time into it. A different design might already have broad approval and just be looking for rollout risks. By being clear about the status we make sure that the reviewer is leaving comments that are useful at this stage of the design. To make reviewers lives easier we added a few sections to help discover potential sources of conflict or wrong assumptions: Alternatives Considered/Prior Art : List the other approaches you considered and why they didnt work. Are there existing systems that almost worked? Dependencies : What other systems do you depend on? Do they know youre about to depend on them? Operational work : What manual tasks are you adding and who do you expect to do that work? Will other engineering teams or our excellent Customer Operations folks need to do anything to make this design successful? Spell out what you expect. These questions uncover some misunderstandings and assumptions. They also make reviewers feel more comfortable asking questions. If we have Prior art as a section for example were clearly interested in why we couldnt just use those existing systems. It makes it easier for the reviewer to emphasize simple solutions. The templates boilerplate text suggests some categories of approvers: potential users of your system teams that manage systems you depend on maintainers of internal systems you evaluated but chose not to use anyone you expect to do extra work. However we found that teams were still sometimes surprised by RFCs they hadnt noticed going by or that authors had forgotten to include them on. That was the next problem to solve. We needed a way to make sure RFCs were seen by everyone who needed to know about them. There was precedent for this: our colleagues in Product Engineering had a regular meeting Product Backend Council where RFCs were discussed and reviewed by the whole organization. Rather than invent something new we adopted their idea and created Infrastructure Council a meeting every two weeks where we presented and discussed RFCs in front of most of Infrastructure. It proved popular and well attended and we always had a full slate of RFCs to discuss. Infrastructure Council didnt solve all of our problems though. We had three RFCs to get through in an hour so there wasnt much time for deep review. With only a few minutes to comment on an RFC nobody said yes if they just called out their objections. It also still wasnt clear how much weight to give to those objections. If someone didn't like the design was that a veto? If that person hadnt been an approver on the original document did the author really need to block on their concerns? It brought new problems too. Its intimidating to present in front of your entire organization. Engineers werent willing to bring RFCs until they were very polished by which time the author was invested in the idea and major changes werent welcome. It felt unkind to question a design decision in a forum this big particularly when a more senior engineer criticized the work of someone more junior. Nobody enjoys feeling called out in front of a packed room. Using Infrastructure Council for design review made RFC authors feel like they were running a gauntlet. It was intimidating. We needed to do better. We wanted RFCs to have in-depth review but without making the author feel under attack. So we introduced Architecture Review a twice-weekly meeting where a small group of our most senior engineers review an RFC in depth. Each major RFC gets a one hour session and since the same people review them the reviewers build up a picture of everything thats happening in the organization and can notice overlaps or incompatible initiatives. Initially only the reviewers and the document author attended Architecture Review. It didnt feel quite right though. Discussing the RFC in front of the whole organization had felt too public; having only five reviewers had the opposite problem: it felt like decisions were being made secretly in a smoky room. Although we tried to select a group whose knowledge covered the majority of our infrastructure the review members couldnt be experts in all of our systems. We found a balance by inviting a small number of other people to participate in each review. These additional reviewers sometimes include key potential users of the system technology experts in the domain or someone the author suggests will bring an interesting perspective. Big meetings get unwieldy so we aim to have no more than ten people in the room. Architecture review doesnt include a presentation. Attendees are expected to already understand the RFC and they may have already had conversations or comment threads about it. The group spends 50 minutes on deep discussion of the proposal taking detailed notes of objections concerns and caveats that arise use cases that should be included risks that should be mitigated and so on. The final 10 minutes of the meeting are for making the decision. Each person in the room says whether theyre comfortable with the proposal or what would have to change for them to say yes to it. The most common response is Yes if you make sure that. Reviewers can and do say no but just like with our design template these objections are more likely to be framed as not yet. Although some proposals really wont work in any form most ideas are worth exploring more and we sometimes invite authors to iterate and come back for another review. We aim to find rough consensus in our decision: we're looking for general agreement among the group but it doesn't have to be unanimous. After the review we add Architecture Review as an approver on the RFC with a link back to the notes from the meeting. Since the notes include the list of attendees the design now has the documented support of some of the most senior engineers in the organization. The author can feel confident that theyre not going to be surprised by objections after theyve implemented the system. The full notes are open to all of engineering and a summary document shows all of the Architecture Review meetings weve had. Architecture Review has been a success. We've used the model to make big decisions like adopting Go as a first class language for Infrastructure and switching to gRPC for inter-microservice communication. Weve used it to do deep review of several new systems that crossed multiple teams. RFC authors have told us it's been a good experience and our colleagues in Product Engineering and Internal Engineering have begun to use the same model. We still have Infrastructure Council but weve turned it into a forum for building and maintaining community. Authors present RFCs there but now its an opportunity to share knowledge give visibility to good work and practice presentation skills in front of a friendly audience. As well as presenting RFCs we use Infrastructure Council to highlight excellent incident retrospectives and to deliver lightning talks. We build links across Engineering by inviting Product and Internal Engineering teams to present on how they use our infrastructure. We call out wins we welcome new hires and we celebrate people who have done great things. Infrastructure Council and Architecture Review are my favorite meetings. Reviewing each others work makes us write stronger designs and learn from each other as well as contributing to a collaborative and open culture. Well probably always be iterating on how we do design review but I like where weve gotten to so far and I recommend this model for other organizations. Find our RFC template here . Feel free to use it in your own organization. Take a look at our open roles Tanya is a Principal Engineer at Squarespace. Tanya is a Principal Engineer at Squarespace. Tanya is a Principal Engineer at Squarespace. Tanya is a Principal Engineer at Squarespace. Domains Websites Online Stores G Suite Mobile Apps Logos Pricing Feature Index Login About Careers Customers Press & Media Service Status Terms of Service Privacy Policy Contact Us Help & Support Answers Workshops Specialists Developers Circle Squarespace Blog Engineering Blog Instagram Facebook Twitter Google Plus
14,084
BAD
You can't buy a Raspberry Pi right now (jeffgeerling.com) ...or at least not without a lot of patience or a fat wallet. But why ? And are there any signs Raspberry Pis will become available to the general public again soon? To be clear I'm speaking of the mainstream SBC Raspberry Pis like the Pi 4 model B the Compute Module 4 the Pi Zero 2 W and even in many cases the Pi 400. The Pico and Pico W are both readily available at least in most markets where I've looked (local shortages always exist but typically not for months or years like with full-size Pis). A service has even been set up since early this year just to scan different vendors to find when Pis are in stock and alert people via Twitter and other means. Long-time followers of rpilocator.com know how short-lived Raspberry Pis are at official retailers like Adafruit and Pi-Shop even with purchasing limitations in place. Sadly the only reliable way to buy a Pi immediately is to pay scalping prices on eBay or buy bundles that include often-unneeded components to pad out the price of a normally-$35 Pi to $100 and beyond. The big question is: why ? Well two reasons: Raspberry Pi is one of the few SBC vendors (maybe the only one) to tackle the most important feature for adoption and ongoing end-user happiness: support . Instead of throwing hardware at the wall seeing what sticks and relying on developer communities to support their hardware with distributions like Armbian Raspberry Pi actively supports their boards all the way back to the original Pi model B. They ship Raspberry Pi OS. They continually improve their documentation and focus on a great end-user experience for beginners and advanced users. And because of the second point Raspberry Pi can produce a limited number of Pi models based on the Broadcom BCM2711 SoC. This is the same issue plaguing car manufacturers . Even behemoths like Nvidia Intel AMD and Apple are still being affected. Because of the shortages Raspberry Pi have not been able to increase production to meet demand therefore they have to prioritize where the Pis they make go... and right now they are still prioritizing OEM partners over end-user retailers like Adafruit PiShop.us Micro Center and other retailers selling individual units. This is far from ideal and many in the maker/hacker community (myself included) feel betrayed by an organization that grew quickly based on the grassroots adoption of the Raspberry Pi since 2012. How many of the commercial and industrial users of the Pi would be incorporating it into their products (thus depending on Pi stock for their own survival) without the huge community of individual developers makers hobbyists and educators who made the Raspberry Pi as popular as it is today? With all this in mind and since there hasn't been an official update since Eben Upton's post on the Raspberry Pi blog in April I asked directly about the shortage. Eben said basically: And finally they wanted to make clear their main point of differentiation in the SBC space: We value our approach to software support maintenance and quality over and above everything else. You can be confident that our software will run on all Raspberry Pis even those now over ten years old and it is still being updated! Indeed that's why people pay double or even triple the MSRP for a used Raspberry Pi. For some projects getting things running on the Pi (and knowing they'll have software updates for years ) is still much easier than doing the same on another SBC. And though the Pi 4's BCM2711 is getting long in the toothmost competing boards are already far surpassing it in CPU memory and IO performanceit is still a great option for energy-efficient computing and certain edge use cases. But because the Pi is now realistically a $100 computer (for the time being) people have started considering alternatives. If you want a slightly faster and more generic computer buying a used 'one liter' PC (one of those little PCs you see strapped to a monitor at a doctor's office) can get you something on par withor faster thana Pi 4 for less than $80 or cheaper if you get lucky. But these PCs lack some features like GPIO or any kind of HAT compatibility so are only an option if you use the Pi as a generic computer. If you want a comparable SBC with features like GPIO and a faster CPU and GPU with native SATA ports or other more exotic features Khadas Radxa OrangePi and other vendors have made some great hardware over the past two years with many options under $100. But getting started with a Pi clone can be dauntingunlike the first-time experience with a Pi where you have helpful Getting Started Guide and a plethora of blog posts videos and books available you may encounter a sparse documentation page (if anything) pointing you to an ISO download and telling you to flash an image to a microSD card. Where Raspberry Pi assumes nothing and guides you along every step most other manufacturers assume you're familiar with SBCs flashing ISOs and quite possibly debugging problems over a USB serial connection! That's not always the case and I was pleasantly surprised by BigTreeTech's new CB1 board (a clone of the Compute Module 4 running an Allwinner H616 SoC). Check out my experience with that board in my recent livestream: But the CB1 is an outlier in my experience. Almost every non-Pi board I test requires more work than just 'download ISO flash it and the SBC boots and works'. Some images don't have basic functionality like HDMI or networking and sometimes you can't even find an image with a modern and secure Linux OS only Android images (which is unhelpful for general use). I'm not saying you should avoid alternate SBCs but don't expect the same level of user experience and support you get with a Raspberry Pi. In the end I will echo what I've recommended before: Patrick 7 months ago pimoroni.com seems to work quite well. I've been able to get 2 Pi 4b 8gb with case power supply 32Gb card and a micro hdmi to hdmi cable for around $110 shipped from the UK. Both times it took about 2 days. Just put your email in and wait for the notification. Then buy immediately. I agree though. Documentation on alternatives is not the greatest. Had a heck of a time getting one to boot. Kurt 7 months ago In reply to pimoroni.com seems to work by Patrick I can't even get Pimoroni UK to let me order one. I've been back and forth with customer support multiple times and even though their site says they ship to the US - they don't ship to the US ... Kurt 7 months ago In reply to pimoroni.com seems to work by Patrick Scratch that last. Wrong company - Pimoroni DOES ship the the US. OKDo UK doesn't ship to the US. Joe Mama 7 months ago In reply to pimoroni.com seems to work by Patrick did that with thepihut im in the us Razor Burn 7 months ago In reply to pimoroni.com seems to work by Patrick I had a similar experience buying a Pi 4B 8gb kit from them a week ago for under $200 AUD which was insane considering the scarcity and inflated prices buying a similar kit locally. 3 days later it arrived to Australia where I've been having fun setting it up. I've also been looking at some alternative SBCs yet as a relative newbie the thing that's put me off has been what Jeff rightly mentions and that's lack of community support compatible hardware and reliable OS be it Linux based or Android as I'm excited by the RK 3399/3588 chips yet all reports indicate they're still not fully ready so I'll happily wait it out until things improve!? Doug 7 months ago In reply to I had a similar experience by Razor Burn Out of interest what kit? I haven't been able to spot one that's actually available. I'm also in Australia locally the only 8GB kit I've seen is the Ultimate from core electronics but that's AU$311 Bret Weber 7 months ago I'm not sure if you've seen them but I've got some LibreComputer boards on the way to test as they seem to be heavily supporting their boards to the point where they've even made a Raspbian conversion/compatibility tool (available at https://github.com/libre-computer-project/libretech-raspbian-portability ) which lets you modify a Raspbian installation in a way to get it to also run on their hardware. The best bit is that they claim you can put the SD card back into a Raspberry Pi and have it still work. I'm looking forward to testing it as soon as they land! scamp 7 months ago The RPi foundation is not giving you the truth. According to my sources their relationship with Broadcom has become very sour partly due to the Pi Pico. Broadcom now wants to charge them list prices. The we prefer to ship our industrial customers story is a lie. They have multiple million of unfulfilled orders and according to my sources the big distributors are receiving next to nothing for their industrial customers. And just two weeks ago their biggest manufacturing partner RS Components has given up on them cancelled all unfulfilled orders (multiple million pieces) and now is starting to produce millions of Radxa CM3 modules instead and are recommending their customers to move over to that. From all info I have it's not unlikely that RPi will simply die in 2023. QwertyChouskie 7 months ago In reply to The RPi foundation is not by scamp Broadcom would have to be stupid to kill the relationship with RPi given how much lost sales would mean. Even if the RPI <-> Broadcom relationship is soured (I did some research and couldn't find anything to corroborate this) there's no reason this would kill RPi. There are plenty of other ARM SOC vendors that would almost certainly love to work with RPi given how popular the RPi is. kaidenshi 7 months ago In reply to The RPi foundation is not by scamp Would you care to link those sources? I'm not saying you're lying but those are some pretty harsh accusations and some really really big numbers to just throw around without anything to back it up. Ivo 7 months ago In reply to The RPi foundation is not by scamp Time for Eben Upton to suck up to a different arm cpu producer and fix Apple's M1 chip for the next gen Raspberry Pi... ;-) Chippy 7 months ago In reply to The RPi foundation is not by scamp It's fascinating watching people make up complete garbage online and calling it the truth. Ask your sources about RS components again. I heard it was the other way around due to them abusing their license privileges. They got cancelled they didn't cancel the orders. John Bostwick 7 months ago I got lucky and found 4 boards(3 Pi3 and 1 Zero) while I was in the middle of a move a junk drawer out in my garage. DM 7 months ago If you have a rooted Android device and don't need GPIO pins Linux Deploy can cover a lot of use cases. An old Rockchip Android HDMI stick looks a lot like an ARM SBC when that's all you've got laying around. I've got a couple of pre-built images for Linux Deploy: Pi-hole ad-blocking DNS server https://github.com/DesktopECHO/Pi-hole-for-Android NextCloudPi for Android https://github.com/DesktopECHO/nextcloudpi Adam Honse 7 months ago In reply to If you have a rooted Android by DM postmarketOS is also an option if your phone is supported. A growing number of phones have mainline Linux support on pmOS so you can get a better real Linux experience than a chrooted Android OS running some stale manufacturer kernel. Andy K 7 months ago Just wondering if anyone knows if the Raspberry Pi retail shop in Cambridge UK has any stock? Might be worth a trip and a day out in Cambridge. Greg C 7 months ago In reply to Just wondering if anyone by Andy K It does stock of RPI4 across multiple memory sizes and RPI Zero 2 W (at least it did when I bought a zero last week). Jason 7 months ago I had a project I needed to do a few months back that called for a Pi. None to be had. I ended up getting an OrangePi 4 LTS by way of AliExpress got it in 11 days from China (ordered July 2 delivered July 13 in NJ). It's worked out really nicely. Runs Ubuntu Jammy built-in eMMC even. While it was still more than I was used to paying the total was still sub-$100 including a nice metal case. Compare that vs the $150-ish I'm seeing for naked Pi4 4GB boards that are taking 6 weeks on AliExpress to get. Create some fun 7 months ago I have a pi 4 4gb kit for 100 dollars in stock. I have had it for over a year. Carlos 7 months ago I can'twhy? I bought a zero 2 W for my prusa and a 4 model B for the Voron one came from Holland and the other from France. John Doe 7 months ago You can buy them on Alibaba. The prices are crazy but you can definitely get them. ElberGalarga 7 months ago Hi Jeff well for me there is not rush then I can wait for the next year. But each day I feel less interested on something that I can not get. Thomas 7 months ago Jeff first great content keep it up sir! Understandably this could be taken as controversial however. Having experience in US counter insurgency the Raspberry Pi wouldve been a game changer back in the day. Like DJI drones having been shipped by the thousands to Russia/Ukraine to be used as weapons its equally likely Raspberry Pis are meeting the same fate. Any technophile knows yesterdays top secret tech is todays consumer tech. With Pis HQ being located in an allied country coupled with the need for retrofitting dumb artillery for > precision its very probable a significant portion of those 400k pis are being produced for single use only. If keeping companies who require pis to remain in business for example Adafruit then more pis on the open market would do just that. Further evidence for this would include beagleboard shortages as well as the higher end Arduino boards. Melvyn Burchell 7 months ago It is quite clear that at least one of the OEM's being supplied is directly or indirectly reselling Pi Zero 2 W's for 64.95 on the famous auction site a particular seller has many tens if not hundreds listed as I type this! Although they also offer 10 for 520! Verian 7 months ago Just an FYI: The german website heise.de (IT news) mentioned you and your interview with Eben Upton in an article about the chip shortage and Raspberry Pis yesterday. (Link triggers Spam-Detection) Porkecluster 7 months ago That's some fine investigative journalism. Eben Upton says shortages... case closed. Good work Jeff. honky123 7 months ago Years of nothing. About time someone made a compatible plug and play board so we can all move on from this incompetent organisation Mic 7 months ago Wound up getting myself a Banana Pi M2 Zero a while back. Very capable board but as noted - the 'latest' linux iso was an ancient roll of Ubuntu. Old enough that it had fallen off the back of the apt repos and couldn't even do a do-release-upgrade without having to redirect apt to archive URLs. That said - once up and running it works very nicely. With the Coretex-A7 more oomph than the RPi Zero W it imitates. You're right though - not nearly so plug 'n' play as a Raspberry. Bit of a deep-dive into some of the alternatives might make for a good vid though ;) SamJin 7 months ago Where are the RISCV folks? Isnt it their moment to shine? GoingPostal13 6 months ago In reply to Where are the RISCV folks? by SamJin They're at allnetchina The starfive 2nd gen board looks like it might be pretty good - I did try to direct link but it seems Jeff thinks it's spam ;) Try searching for starfive-visionfive-2nd-generation-single-board-computer you should find it okay. James 7 months ago I'm done with Raspberry Pi. The foundation did the exact OPPOSITE of what they should of done given their initial mission statement. To hell with the small businesses that are gobbling up Raspberry PI's to run their companies that is counter to what the Raspberry Pi was intended to do in the first place. As a result of Raspberrypi.org's betrayal of the educational and hobbiest market I very much hope they go under. Steve 7 months ago In reply to I'm done with Raspberry Pi by James It's so adorable when children throw temper tantrums. Evets 6 months ago In reply to It's so adorable when by Steve Their frustration is understandable. Calling someone a child over that seems... well juvenile. Grow up. M 2 months ago In reply to Their frustration is by Evets I think he called him a child because only a child would write should of. TJ17 7 months ago In reply to I'm done with Raspberry Pi by James Unfortunately I am in the same boat and have started investigating alternatives. I hate to say it but I think there is some deeper problem at Raspberry Pi. Plus they really aren't providing any meaningful updates. Bob 6 months ago The sad fact is China's government is weaponizing their insane lockdowns to do exactly this - exacerbate the cost of living and supply crisis in the west as well as extend their power over their own people. No one wants to talk about it but I think we can all see this can't we? It's going to take years to first wake up to this and put in place robust local manufacturing to remove the dependency. None of this is going to be easy and I don't see it happening for a very long time indeed. Still it kind of serves us right doesn't it? A Khan 5 months ago I am gradually transitioning to to compute sticks bit pricier but not by that far after discounting 8GB memory proper casing for embedded use internal storage with really good i/o for the os hdmi cable and power supply. Plus none of gimicky heat dissipation solutions to be wasting time over. After an arduino connected there is nothing left to be missed. Markus 5 months ago If they are so short on stock how come Chinese electronic companies have thousands in stock. Of course they sell it to a price that you drown but they must get it from somewhere or not? PI org is just bullshitting all around. Luke 5 months ago Well I definitely consider the Pi Foundation as actively hostile to the DIY/maker community since at least mid-2021. They knew very well back then and they know now there is zero chance of this issue resolving in 2023 or in 2024. How are they hostile? They know they will never be able to provide the same value they did before but still by claiming the solution is right over the corner they string everyone along. Open source projects don't migrate to alternative hardware people don't choose other solutions because they are being told it is just few more weeks... No it is years. And when they do provide those chips will be a decade old tech. The situation we're in has nothing to do with a chip shortage but all with price gouging by certain well established manufacturers. It is simply a result of too little competition. The only thing that will resolve this is some old fashioned competition but with China essentially shooting itself in the foot with their hyper-idiotic industry-killing covid lock downs still continuing and entire competition of those price-gougers being located there it takes time to build fabs and the whole alternate supply chain elsewhere. My prediction for when this is resolved is 2028 at the earliest 2030 more likely. Look at the fpga industry for an example how it might happen. For last few years if you wanted xilinx or altera/intel fpgas (unless you're military) you couldn't get them at reasonable prices. Now we have Trionright from a new fab located in USA. Is xilinx and altera more available? Nope they are happy to give the low end market to Trion. They weren't making much money on low end devices anyway. Would you rather sell a thousand pieces for a dollar or one piece for $1k?(with ability to provide better service and all that). This whole chip shortage is nothing else but an opportunity to restructure their profit ratios for manufacturers. Coming back to the pi foundation its ability to deliver a product that was pretty fast and well supported was tightly linked to the industrial environment that existed at the time. This is gone and it is not coming back. We have to move forward. If we want cheap hardware there is cheap hardware and some of it is even well documented (but on a very low level). Open source community is involved in a lot of work to improve Linux support on rockchip socs for example. I think we sooner will have everything working out of the box on radxa orange pi rock Pro pine64 etc than have rpis back in stock. A lot of stuff is already doable on those boards. If you're developing your own software and you're willing to run Linux kernels that are slightly older you can get advanced features like video encode etc working. If you just want gpio this is fine even on latest kernel. There is however an issue with hdmi. That is much better on android. However none of my current Raspberry pi uses involves hdmi so for me this doesn't matter. To anyone who considers using RPi product now (unless it is pico based) I say don't. Save yourself some trouble and choose something else. bandit 5 months ago ive a broken pi 3 b+. MxL7704 busted. And theres lots of users with the same problem.you think think the pi foundation. would sell them as spares. As they need programming.pi zero 2 w would be as far id buy And if under 20$ when in stock again. just have to wait it out. Brian 5 months ago I share the frustration but not the betrayal. All those wonderful things you praised are funded by the OEMs that buy thousands and require minimal support per unit. Without them Pi could not be what it is to us makers. JustGotMyRPi4B 4 months ago What??? Cannot get a Raspberry Pi??? Just got a Raspberry Pi 4B on amazon. THR 4 months ago In reply to What??? Cannot get a by JustGotMyRPi4B Article is 3 months old now and the main point wasn't that it's unavailable it's that there's a shortage and as a result the prices are 5x higher than MSRP. Plus how much did you pay? Tommy 1 month ago For an organization who wants to promote hardware hacking & education they sure make it hard for students to buy their stuff. Lukas 1 week ago On March or somthing like that. There was new version liek of pis. And thats Recyberry here in the Czech Republic. I hopefully got oni zero and i was happy. Only for 15$ on the official Czech republic web that is aproved reseller. If i can then heres the link: https://rpishop.cz All content copyright Jeff Geerling. Top of page .
14,099
BAD
You can't tell people anything (2004) (habitatchronicles.com) The Lessons of Lucasfilm's Habitat How to Deconstruct Almost Anything MDC 2004: Habitat Redux 1994: Cyberspace Protocol Requirements A Walk Through Durham Township City Comforts Eric Drexler John Massengale Lawrence Lessig Raph Koster Ron Gilbert Grumpy Gamer Terra Nova The Classicist The Daily WTF The Volokh Conspiracy Virginia Postrel Douglas Crockford's Wrrrld Wide Web Metacrap The E Programming Language This is sort of Morningstars version of Murphys Law. When we were assembling our catalog of the things we had learned over the past decade and a half in this business we almost didnt include this one because it seems so banal. But I keep finding that its often the first thing I say when people ask me what about my experiences (and another thing Ive learned is to pay attention to things I find myself saying; that way Ill know what I really think). And upon reflection I think its actually one of the more important lessons that weve learned. We all spend a lot of our time talking to bosses or investors or marketing people or press or friends or other developers. Im totally convinced that a new idea or a new plan or a new technique is never really understood when you just explain it. People will often think they understand and theyll say they understand but then their actions show that it just aint so. Years ago before Lucasfilm I worked for Project Xanadu (the original hypertext project way before this newfangled World Wide Web thing). One of the things I did was travel around the country trying to evangelize the idea of hypertext. People loved it but nobody got it. Nobody. We provided lots of explanation. We had pictures. We had scenarios little stories that told what it would be like. People would ask astonishing questions like whos going to pay to make all those links? or why would anyone want to put documents online? Alas many things really must be experienced to be understood. We didnt have much of an experience to deliver to them though after all the whole point of all this evangelizing was to get people to give us money to pay for developing the software in the first place! But someone whos spent even 10 minutes using the Web would never think to ask some of the questions we got asked. In 1988 we began consulting to Fujitsu when they licensed Habitat from Lucasfilm to create Fujitsu Habitat in Japan. We started out with a week long seminar at Skywalker Ranch for their team explaining everything we knew about Habitat. We gave them copious documentation and complete source code listings. Following that for the next couple of years they had unlimited access to us via fax phone and email to answer any questions they might have. We made several visits to Japan to advise them. On our visits they often asked questions that seemed a little well odd. We chalked it up to the language barrier but still there were clearly things they werent getting. For example their server ran on five (not four not six five) Fujitsu A60 minicomputers and became hopelessly bogged down after about 80 concurrent users. We were never able to get a clear picture of why. We asked lots of questions and theyd try to answer them but none of the explanations made any sense that we could puzzle out. They were trying to tell us you see but you cant tell people anything. The mystery was solved a few years later when we began the WorldsAway project still consulting to Fujitsu but in a role that was much more hands-on. Our initial plan had been to work from the Fujitsu Habitat code back porting the client to Macs and Windows and cleaning up their server (80 users yeesh). When we took apart their code we finally figured out what had been puzzling us all that time: they had lost the architecture. In spite of all the information we gave them we had completely failed to communicate how things worked. Their guys hadnt understood the whole client-server concept which for that day and place was somewhat exotic so they just implemented what they knew which was a terminal-mainframe architecture. Their client was basically a fancy highly specialized graphics terminal; all the real work was done on the server. For example when you issued a command to an object instead of sending a command message to the object on the server the client would send the X-Y coordinates of your mouse click. The server would then render its own copy of the scene into an internal buffer to figure out what object you had clicked on. Not only was this extremely inefficient but the race conditions inherent a multi-user environment meant that it also sometimes just got the wrong answer. It was amazing Whats going on is that without some kind of direct experience to use as a touchstone people dont have the context that gives them a place in their minds to put the things you are telling them. The things you say often dont stick and the few things that do stick are often distorted. Also most people arent very good at visualizing hypotheticals at imagining what something they havent experienced might be like or even what something they have experienced might be like if it were somewhat different. One of the things I really miss from my days at Lucasfilm is having artists on staff being able to run down the hall and say hey Gary draw me this picture. Eventually people can be educated but what you have to do is find a way give them the experience to put them in the situation. Sometimes this can only happen by making real the thing you are describing but sometimes by dint of clever artifice you can simulate it. With luck eventually there will be an Aha!. If youre really good the Aha! will followed by Oh so thats what you meant. But dont be too surprised or upset if the Aha! is instead followed by Why didnt you tell me that?. At Communities.com we developed a system called Passport (Ill save the astonishing trademark story for a later posting) that let us do some pretty amazing things with web browsers. For example with just a few magic HTML tags we could stick avatars on a web page pretty much any web page. For months Randy kept getting up at management meetings and saying Well be able to put avatars on web pages. Start thinking about what you might do with that. Mostly nobody reacted much. After a couple of months of this we had things working and so he got up and presented a demo of avatars walking around on top of our company home page. People were amazed joyful and enthusiastic. But they also pretty much all said the same thing: why didnt you tell us that we could put avatars on web pages? You cant tell people anything. When people ask me about my lifes ambitions I often joke that my goal is to become independently wealthy so that I can afford to get some work done. Mainly thats about being able to do things without having to explain them first so that the finished product can be the explanation. I think this will be a major labor saving improvement. One final point: I expect none of you to really get what Im talking about here because this principle also applies to itself. But I fully expect Ill get the occasional email saying Oh! so thats what you meant. or Why didnt you tell me that? I did but you cant tell people anything. Lessons Learned | Posted by Chip at 12:05 PM | You can comment . Trackbacks are closed. Great post! I totally know what you mean. You think you write it down or explain it in a way that makes perfect sense but people never understand. Looking forward to more posts :) Posted by: Cory | April 23 2004 2:26 pm Yes I agree until people use and/or make something its very hard to explain what the possibilities are or might be.It is as if in thinking about the process in order to use/make something that the vision of the overall whole is glimpsed. Now that sounds a bit spiritual I dont mean it that way what I do want to say is that with any new way of working the possibilities of a particular way of doing things seems to fall into to place when people try it out. I recently had this experience in an academic arena trying to explain why blogs may be useful research tools. Posted by: sharon boggon | April 26 2004 4:41 pm So your core message is Dont tell them show them right? That fits nicely with the launch early launch often mantra (although that might not be feasible with every idea/project/product). Posted by: Daniel Hepper | November 5 2008 7:09 am ha like trying to explain that meditation has value for the mind to a quantum physicist .. they would rather simply delete your comments .. Posted by: gregorylent | January 31 2009 10:38 pm like trying to explain that meditation ha Buddhist spam strange Posted by: Kevembuangga | February 2 2009 4:49 am Hi Ive the luck of having been educated as a teacher and ending up as a software developer. Therefor what you describe here makes perfect sense to me. It isnt possible to explain anything. First explaining is such a misleading word. The process of knowledge transmission is rather a pull then a push operation. You as the knowledge sender can only do your best to setup the best possible situation for the receivers pull operation to succeed. Second before any knowledge transmission could be possible the receiver must have an appropriate cognitive network in place to connect the newly acquired to. Actually I think that any computer scientist or programmer should have a good knowledge of pedagogy Thank you for your interesting posts and Elko! Posted by: Thomas Koch | October 23 2010 6:14 am And thats why one brain projects where one guy or a small team implement their idea can become a legend while a development against requirements is over time and over budget so many times. Thats why there are so many schools of project management. It all goes back to this problem. And I think it is also a big factor why Apple is so successful: their presentations are demos of the products first place look what you can do with our new i Posted by: VG | June 24 2018 1:35 am Im a public affairs guy for a government research organization so your post explains my job pretty well. You should do a companion post: people hear what they want to hear. Obviously itd be mostly about biases and the usual stuff. But it could also be about what happens to a good percentage of the stuff you can tell people: you pitch it at an empty spot in their brains but it lands in an existing swamp. New tracking feature for the collaboration tool? You pitch it at organization and communication it lands at the intersection of paranoia and a guilty conscience. Posted by: joe f. | June 24 2018 6:21 am whos going to pay to make all those links? or why would anyone want to put documents online? But someone whos spent even 10 minutes using the Web would never think to ask some of the questions we got asked. Its 2018 and I think these are still perfectly reasonable questions. The industrys primary answer apparently is well saturate the pages in advertising which is neither obvious nor desirable. Posted by: Tim | June 24 2018 7:37 am Short: people are stupid. Most of them. Long: they are satisfied with their half-knowledge lazy to learn new things if you teach them they took it as you were said theyre dumb they think they are perfect so they need no education as they never try new things they have no experience discovering new concepts they fear of unusual. But if you teach something for them finally sometimes they are thankful and proud and they know what did you gave them. But they are basically stupid. Posted by: ern0 | October 12 2018 2:57 pm I concoct ideas processes avatars go through the entire process with fresh eyes and a real solution emerges all in my head quickly jot it down lest I might forget then explain it to a smart person who can fill in the blanks I left behind and tells me he completely gets it. With more confidence I try explaining it to someone else and the elegant solution/idea evaporates to a point where I need to be with me and my mind alone to figure it out. Ah. whats the use! Posted by: SuSu | October 15 2018 3:26 pm Ive been on the receiving side of this before. What typically happens is the Dunning-Krueger Effect. This is typically understood as incompetent people are too incompetent to determine that they are incompetent but its lesser-known corollary is that competent people assume everyone else is competent too and thus they dont have to explain themselves. Once you understand this the reason for poor communication becomes clear. The team doesnt bother to explain their presumptions falsely assuming that everyone is on the same page. They feel free to use original concepts they developed internal team slang unexplained acronyms etc. Then theyre baffled why people are so stupid and cant understand their outstanding presentation that obviously went over all the details. I remember once being baffled by a presenter who assumed the whole world had read Heinlein and knew what TAANSTAFL meant thus she didnt have to explain it. That was shortly thereafter running in to someone who thought Starship Troopers was nothing but a crappy movie instead of an outstanding novel that everyone should read. Just because you like an author doesnt mean youve read his entire oeuvre. Posted by: Harland | June 23 2020 11:38 am I just have to point out that the first comment to this post is I totally get what you mean in seemingly all earnesty. Posted by: Travis Briggs | June 23 2020 7:12 pm I would have revised the title to You cant tell people everything .. Posted by: Odero Kennedy | June 23 2020 11:34 pm Often there is a large disconnect between what we write and what people understand. Almost everything Ive published has been in mathematics where there is less of a problem because we write proofs. Usually if all the details are spelled out the reader (another mathematician) will be able to read what you wrote and understand 95% of what you are trying to convey. Other fields generally speaking are not like that. On the other hand when I explain math to students I sometimes see giant misunderstandings. Homework problems help a lot to remove misunderstandings. I recall that it was difficult for students to learn the basics of the orbit of the moon and planets around the sun. I am thinking that if students needed to calculate 1) when the phases of the Moon and Venus occur or 2) when sunrise and sunset would occur then they would actually learn the basics of orbital mechanics but then again they might just learn how to do specific orbital problems without being able to solve random questions about orbits and phases. Posted by: Hein | June 24 2020 5:13 am Cant believe decade old article still getting read and ppl are posting comments.. Posted by: shwetank | June 24 2020 9:07 pm I remember reading this ages ago and I didnt get it. Now I do and my goal is also to be independently wealthy just to be able to get what I want done. Posted by: The future | October 6 2021 10:59 am the better the metaphor the greater the grokking. i dont expect anyone to grok this either because you cant tell people anything so why bother? Posted by: cris | October 6 2021 2:32 pm Reminds me some (Zen?) saying like you can not transmit wisdom only knowledge and Alan Kays explanations on aha moments PoV = 80 IQ points and paradigm shifts Posted by: hmijail | May 18 2022 7:02 pm (If you haven't left a comment here before your comment may need to be approved by the site owners before it will appear. Thanks for waiting.) Click here to cancel reply. Name: Email Address: (will not be published) URL: Your comment: (you may use HTML tags for style) << Getting started | RSS feeds >> 2023 Chip Morningstar and F. Randall Farmer all rights reserved.
14,100
GOOD
You might not need a CRDT (driftingin.space) December 5 2022 Paul Butler Conflict-free replicated data types (CRDTs) are a family of replicated data structures. CRDTs differ from simple leader/follower replication in that they do not designate an authoritative source-of-truth that all writes must pass through. Instead all replicas are treated as equal peers. Each replica may be modified locally and changes to any replica are propagated to the others. In developer discourse the term CRDT sometimes gets thrown around as a synecdoche for a broader set of techniques to enable Figma-like collaborative features. But when we started talking to dozens of companies building ambitious browser-based apps we found it rare for apps to use true CRDTs to power multiplayer collaboration. In this post Ill first give some high-level context on CRDTs and then talk about why we often find other approaches used in practice. The core problem that multiplayer apps need to solve is maintaining shared state. If you and I are both editing the same document I should see your changes in real-time and vice versa. At the code level this means that there is some data structure (say a tree or list) representing the document which exists in multiple locations: one for each user with the document open. Changes made on one copy need to be reflected by the others as quickly as possible. One way to accomplish this is to serialize each change and broadcast it over the network. If you and I are collaborating on a todo list and I mark the fifth item as done my replica emits some serialized event meaning Mark item #5 as done. If you then add an item get groceries in the third position your replica emits an event meaning Insert get groceries before item #3. This works fine as long as enough time passes for each of us to receive the others changes before making our own change. If not things break down. Suppose we start a collaboration session at time 0 with a list of two items Get groceries and Do laundry . At time 1 I mark Do laundry as done and you simultaneously add a new item called Clean kitchen to the middle of the list. When my replica sees your edit at time 2 your change is appropriately applied on top of mine and I see the correct state. But when my change (mark item 2 as done) reaches your replica item 2refers to the item you just added not the one I actually checked. Our lists have diverged. The problem comes down to the interplay of two facts: If we can design a system in which either one of these statements is no longer true we can ensure that our data structure is eventually-consistent. Each of the two items represents a different path we can take. Path #1 represents CRDTs . Broadly you can think of CRDTs (specifically operation-based CRDTs) as a family of useful data structures (lists sets maps counters) carefully designed such that all operations are commutative. I'm brushing over some details but its a useful mental model for understanding the shape of the problem that CRDTs solve. Path #2 in its pure form represents state machine replication . We ensure that each replica receives changes in the same global order and apply change on each replica in that same global order. This ensures that each replica stays in sync even if change operations are not commutative. In practice most of the systems weve looked at could be described as hybrid approaches that borrow ideas from both paths. They represent operations as commutative where possible so that they can apply them immediately on the local replica without worrying about where they appear in the global order but they ultimately depend on a global order for convergence. Both paths will allow us to ensure that each replica converges on the same state but that alone does not guarantee that this state is the correctstate from the point of view of user intent. For example in the to-do example its possible that the server sees your add Clean kitchen change before my check item #1 change and incorrectly marks the new item as checked. A typical solution in this case (applicable to both paths) is to generate a random UUID for each item when it is created so that my change is instead represented as check item 8e503f34 and is applied correctly regardless of where the item I intend to check is in the list by the time my change is applied on a replica. State machine replication is not a silver bullet; we still need to be thoughtful about how change operations apply when the underlying data has changed. Our Aper Rust library is an experiment in seeing how much of this can be generalized into a data structures library. So far our assumption has been that we have a reliable but unordered broadcast channel (in practice it may be a gossip protocol on top of a mesh network). This is a fitting assumption for a true peer-to-peer app where it is difficult to get every peer to come to a consensus about the true ordering of events. CRDTs are complex in both the runtime overhead and cognitive load senses but in a peer-to-peer environment this is a necessary cost. In contrast browsers are inherently not peer-to-peer. To run an application from the web you connect to a server. Since the server is centralized anyway we can have it enforce a global ordering over the events. That is every replica receives events in the same orer. With this we can sidestep the need to pay the CRDT complexity tax. Evan Wallace of Figma writes : Figma isn't using true CRDTs []. CRDTs are designed for decentralized systems where there is no single central authority to decide what the final state should be. There is some unavoidable performance and memory overhead with doing this. Since Figma is centralized (our server is the central authority) we can simplify our system by removing this extra overhead and benefit from a faster and leaner implementation. With a global order we dont need to bend over backwards to ensure that data mutations are commutative we can use the global order to apply them in the same order on every replica. (A modern web application is likely deployed to multiple servers not one which complicates using the serveras a source of truth. Figma solves this by routing messages to a dedicated process for each live document. Plane and Jamsocket generalize that approach.) Generic data structures like lists and maps are often used as a foundation for building more complex data structures like graphs and relational data tables. Its tempting to wonder if we could just swap out their underlying data structures for the equivalent CRDTs and automatically gain a CRDT for our composite data type. Unfortunately these composite data types usually rely on the fact that all changes to the underlying data structure go through a particular code path. This is necessary to enforce invariants that they rely on. For example suppose our document state represents a directed acyclic graph as a list where elements can reference other items by index. Even if each replica ensures that changes made to it dont introduce a cycle two innocent changes made concurrently on two replicas could combine to break the invariant. If we naively try to replicate this tree by replicating the underlying list CRDT we lose control of this invariant. Two concurrent modifications may result in a cycle when they are combined even if neither introduces a cycle in isolation. When we instead have a global order of changes data structures with invariants are easier to reason about. The authoritative server can apply the change locally to detect if invariants are violated. If they are instead of broadcasting the change it can notify the sender that there is a conflict. Developers may find it tempting to treat collaborative applications as any other distributed systems and in many ways thats a useful way to look at them. But they differ in an important way which is that they always have humans-in-the-loop. As a result many edge cases can simply be deferred to the user. For example every multiplayer application has to decide how to handle two users modifying the same object concurrently. In practice this tends to be rare because of something I call social locking : the tendency of reasonable people not to clobber each others work-in-progress even in the absence of software-based locking features. This is especially the case when applications have presence features that provide hints to other users about where their attention is (cursor position selection etc.) In the rare times it does occur the users can sort it out among themselves. A general theme of successful multiplayer approaches weve seen is not overcomplicating things. Weve heard a number of companies confess that their multiplayer approach feels naive especially compared to the academic literature on the topic and yet it works just fine in practice. Although CRDTs arent always the best solution for always-online collaborative apps its still fascinating tech that has real use cases. Ink & Switch the exceedingly capable team behind the popular CRDT library Automerge have a compelling vision for Local-first software which makes heavy use of CRDTs. Apps that need to run offline in general are good candidates for CRDTs. Ive also read some posts lately extolling the virtues of CRDTs for text especially plain text. Im not up on text synchronization except to know that it presents its own challenges so the fact that the people who have given it a lot of thought are landing on CRDTs is a strong signal in their favor. For more like this subscribe to our Browsertech Digest or follow @drifting_corp on Twitter.
14,116
BAD
YouTube Addiction (jntrnr.com) Hi my name is JT. I'm a YouTube addict. I know what you're thinking. That sounds like a joke. That you want a funny punchline to go with it. Me too. Truth is though I've had a problem for a while. I first noticed it back in 2011. Back then I could feel it growing. I would spend something like 3 hours at night on weekdays and maybe around 10 hours total on the weekends on YouTube. I was mostly watching let's plays. Long winding playthroughs of video games with a friendly voice. Each series might in total be something like 40+ hours of content. Of which the most prolific Let's Play-ers have dozens if not hundreds of series. From one creator you'd find another and another. Already back in 2011 watching my little niche it was more content than anyone one person would ever be able to watch in a lifetime. I would nap watching a series and wake up to that same familiar voice. Episode after episode I watched myself go deeper into the rabbit hole. At the time I told my roommate that I thought I might have a problem. He thought the entire concept of being addicted to something like YouTube was laughable. How could someone be addicted to watching some videos on a website? Maybe some of you reading this are thinking the same. Still it felt like the right thing at the time to try to curb this growing habit. I bought a stack of books on things like meditation and self-help and read everything I could. It helped a little. Meditation helped me to see just how much stress I was taking on. At the time my roommate and I were interning at Apple. The pressure was high to do well and get noticed. I made a promise to myself as I got into self-help and meditation that I would stop using YouTube as a way to soothe this stress. That I could find other ways. I remember when I slipped back into it. My favorite YouTube content creator - after not posting for over a year - had posted the start of a new series. By this point I'd been off YouTube for almost a year. I was used to doing other things with my time. And yet when they posted that video and I got a notification I didn't say no. Since then I don't think I've ever taken more than a couple months break from it. When I slip back into it it effortlessly returns to being part of my daily routine. Yesterday I watched 572 minutes of YouTube. That's just over 9.5 hours. The day before it was 444 minutes. Just shy of 7.5 hours. The day before that was 510 minutes. 8.5 hours. Sometimes it's background sound to whatever I'm doing. But if I'm honest most of the time I'm just watching going from video to video. Not doing anything else. At this point I have so many interests I'll watch content for. Climbing videos computing history endless amounts of video game footage music videos concert footage interviews wordless videos of food being prepared in the morning in Japanese restaurants. Anything that could catch my eye I'd watch. It's gotten to the point where I don't really enjoy the video as much as the numb hypnotic state from consuming that much content. It's safe. It's always there. But I noticed something recently. I've been struggling with my mental health during the summertime a time I traditionally have fewer problems. I wasn't recharging like I should. I was waking up tired napping during the day and generally not feeling at all prepared when the day started. I'd tried to dial back on my commitments to see if I could recover. Weeks later and I'm still not recovering. It didn't really hit me until today when talking to a close friend that it might be the amount of YouTube I'm watching. That's when I took my calculator and added it up. I've heard this before. I had an alcoholic roommate years ago describe in detail what it was like for them to be an alcoholic. Why they would reach for it. When they'd reach for it. How they'd plan their life around it. Get the work done and use it to celebrate. I feel like my use of YouTube has basically mirrored their alcoholism at this point. If anything I spend more time in stupor than they did with alcohol. The truth is I don't know how long I've been this bad. I keep clearing my YouTube history. Ostensibly it's so I can get better recommendations. But the truth is probably that I'm also trying to hide how bad it's gotten from myself. My roommate when they finally came out about their struggles let us clean their bedroom. I just remember duffle bag after duffle bag of empty bottles. It took so long to clean out their room because there were so many. I couldn't fathom how anyone could drink so much. It had to be hundreds of bottles. I don't know how long I've been averaging over 8 hours a day but I'm afraid it's been a long time. I remember telling myself years ago that as long as I was getting my work done it didn't really matter what I did. I remember my roommate saying the same thing. I always thought that it's easy to quit something. You just don't do it. So naive. This isn't going to be easy. There are so many temptations to pull me back in that it'll be a challenge to try to put this behind me. I mean I'm a YouTube content creator now approaching 10k subs - a respectable number for a small channel. So much educational content is on YouTube. So much of how I get my name out is via YouTube. So much of what I do is attached to YouTube for good and for bad. It's really all of the above. It's true it has all these nice aspects. But for folks like me who take it to an extreme it very politely chews its way into your life and makes it far too tempting to sink deeper and deeper. I don't want to lose the audience I'm building but I also want to be healthy. I'm afraid for myself and where I'll be five years from now. Will I be worse than I am now if I don't take steps? Will I become more withdrawn stop working altogether and live on my savings until I run out? I think about other things too like How will I fill my days if I stop? I honestly don't know. It's scary to think about having a hole and not being able to fill it with that comfortable zoning out feeling. I'm sure some folks are thinking what if you just limit yourself to 30 minutes a day? That's just it. If I could do that I would have. I don't know if I want to do a 12-step program or whatever. I honestly haven't really figured anything out at this point. But the first thing I wanted to do was come clean and talk about where I'm at. If you're someone reading this with similar patterns you're not alone. I also wanted to write this all down to make a record of where I am. Maybe I'll come back and read this later. Maybe I'll be able to say something like I remember being hooked on YouTube for over 12 years. I'm glad I cleaned up. Let's hope. Maybe then I'll think up a good punchline too. A simple dev-blog theme created by Bennett. You can follow him on Github (if you like).
14,131
BAD
YouTube suspends The Hill for playing clip of Trump denying election results (tampafp.com) Ailan Evans YouTube suspended popular news channel The Hill for playing a clip of former President Donald Trump claiming the 2020 presidential election was stolen. YouTube suspended The Hills channel due to violating its policies after its morning show Rising posted two clips of Trump denying the validity of the results of the election Risings Twitter account said Thursday. The Hills channel is unable to upload new videos for seven days although its older videos can still be accessed. We covered former President Trumps remarks about Russias invasion of Ukraine the account said . In a soundbite he repeated his claim that the 2020 election was stolen. Our discussion focused on what Trump said about Putin and did not explicitly rebut claims of election fraud. The content in question featured Trump speaking with Fox News host Laura Ingraham and attributing Russias invasion of Ukraine to the stolen presidential election as well as raw footage of Trump continuing to deny the validity of the election results during a speech at the Conservative Political Action Conference (CPAC). Its hard to understand how the cause of fighting misinformation could be well-served by punishing news channels that educate viewers about what their political leaders are saying Rising host Robby Soave told the Daily Caller News Foundation. When reached for comment YouTube policy communications manager Ivy Choi confirmed that the channel had been suspended for posting content in violation of YouTubes policies. We removed content from and issued a strike to this channel for violating our election integrity policy and as a result this channel is suspended from publishing new videos or livestreams for seven days Choi told the Daily Caller News Foundation. We do allow for content with sufficient educational documentary scientific or artistic context which the removed content did not contain. Soave addressed the suspension in an article for Reason arguing that YouTubes expansive election integrity policy effectively outlaws straight news reporting on YouTube. It is one thing for YouTube to ban people who are making false claims Soave wrote. It is quite another for YouTube to prohibit people from educating their viewers about the reality that the former president is still spreading these false claims. Visit Tampafp.com for Politics Tampa Area Local News Sports and National Headlines . Support journalism by clicking here to our GiveSendGo or sign up for our free newsl etter by clicking here . Android Users Click Here To Downloa d The Free Press App And Never Miss A Story. Follow Us On Facebook Here Or Twitter Here . We should call them Borg Techbecause you will be assimilated. We went from requiring people say that someone allegedly committed a crime to not being allowed to allege a crime occurred. But we can still allege that same sort of crime occurred but only in other countries. And theres a long history of such allegations. Since the Michigan Senates Investigation of the 2020 election in that state uncovered illegal acts by Democrats in Wayne County including denying legal access to republican poll-watchers and vote counting in secret. Since the Georgia Star-Telegram issued FOIA requests for the counties in Georgia to verify that they had the legally required Chain of Custody documents and Fulton and DeKalb Counties were not able to provide them for over 65000 votes admitting their were on chain of custody.those votes were illegally counted. Since a Pennsylvania Appellate has verified the mail in ballot procedures in that State were illegal in 2020there were tens of thousands of illegally counted votes in that state. Since a Wisconsin court has ruled that the Wisconsin Election Commission provided directions to county clerks that were illegal and that MIlwaukees Mayor also implemented illegal mail in ballot procedures; and an investigation has proven that over 90 Nursing Homes had 100% turnout rates (while having comatose patients); and the Green Bay Election clerk resigned 2 weeks before the election when the Mayor of that town gave illegal access to a Democrat consultant (Michael Spitzer-Rubenstein) to Mail in ballots and allowed him to implement procedures overriding the clerks authority. weve definitely established concrete evidence that the 2020 elections were not run legally and fairly in the key swing states. Any Social Media companies falsely promoting the idea that the elections were conducted legally should be forced to pay damages to the people it is trying to deny information to. Your email address will not be published. Required fields are marked * Comment * Name Email Website Email: admin@tampafp.com
14,140
GOOD
YouTubeDrive: Store files as YouTube videos (github.com/dzhang314) Store files as YouTube videos == infinite disk space Use Git or checkout with SVN using the web URL. Work fast with our official CLI. Learn more about the CLI . Please sign in to use Codespaces. If nothing happens download GitHub Desktop and try again. If nothing happens download GitHub Desktop and try again. If nothing happens download Xcode and try again. Your codespace will open once ready. There was a problem preparing your codespace please try again. YouTubeDrive is a Wolfram Language (aka Mathematica ) package that encodes/decodes arbitrary data to/from simple RGB videos which are automatically uploaded to/downloaded from YouTube. Since YouTube imposes no limits on the total number or length of videos users can upload this provides an effectively infinite but extremely slow form of file storage. YouTubeDrive depends externally on FFmpeg youtube-upload and youtube-dl . These programs must be downloaded and installed separately and prior to first use YouTubeDrive must be configured with their install locations. See below for details. YouTubeDrive is a silly proof-of-concept and I do not endorse its high-volume use. NOTE: A short time needs to pass between calls to YouTubeUpload and YouTubeRetrieve for YouTube to process the uploaded video. I find that 5-10 minutes suffices for small (less than 10MB) file uploads. The video YouTubeDrive produces in this example can be viewed at https://www.youtube.com/watch?v=Fmm1AeYmbNU . Install FFmpeg youtube-upload and youtube-dl as your operating system dictates. Find an arbitrary test video say test.mp4 and run youtube-upload --title=Test Video test.mp4 . Follow the displayed instructions to create an OAuth token for your YouTube account. This will be the YouTube account used for all YouTubeDrive uploads. Download and open YouTubeDrive.wl from this repository. In lines 75-77 enter the install locations of the FFmpeg youtube-upload and youtube-dl executables. Make sure to use proper string escape sequences (in particular backslashes \ need to be escaped as double-backslashes \\ in Windows paths). For example I use the following install locations on my system (Windows 10): Note the use of Sequence[] to call python youtube-upload.py above. After making the above edits open YouTubeDrive.wl with Mathematica . Then open the File Install... dialog and select the following options: Choose installation for all users or the current user only according to your preference and click OK . Store files as YouTube videos == infinite disk space
14,148
BAD
YouTuber who staged plane crash faces up to 20 years jail (yahoo.com) A YouTuber pilot who bailed out midair and deliberately sent his plane crashing into the ground to bolster viewing numbers on his channel could be jailed for up to 20 years US authorities said Thursday. In a video seen by nearly three million people and entitled I crashed my airplaneTrevor Jacob appears to experience engine trouble while flying over southern California in November 2021. The dramatic footage shows Jacob 29 ejecting from the single engine plane -- selfie-stick in hand -- and parachuting into the dense vegetation of the Los Padres National Forest. Cameras placed all over the aircraft show its out-of-control descent into the forest and its eventual crash landing. Jacob films himself hiking to the wreckage where he appears dismayed to discover the water he packed has disappeared. Viewers see him bush-whacking through poison oak and over hills as he seemingly struggles to find civilization giving regular updates about how thirsty he is and how lost he feels. Finally he stops to scoop water from a stream and moments later comes across a vehicle and apparent salvation as night falls. In the weeks after the incident investigators from the National Transportation Safety Board and the Federal Aviation Administration (FAA) launched a probe into the crash and Jacob was ordered to preserve the wreckage. The YouTuber told officials he did not know where the plane had gone down but according to a plea deal lodged in Los Angeles two weeks after the drama he and a friend winched the wreckage out of the forest with a helicopter having earlier recovered data from the onboard cameras. Over the next few days he cut up the plane into small pieces and dumped the parts in trash bins in and around Lompoc City Airport. The FAA the body that regulates flying in the United States yanked Jacob's pilot's license in April 2022. In a plea agreement Jacob admitted he had intended to obstruct federal authorities when he disposed of the wreckage and had created the video to make money through a sponsorship with a wallet company. Jacob further admitted he lied to federal investigators when he submitted an aircraft accident incident report that falsely indicated that the aircraft experienced a full loss of power approximately 35 minutes after takeoff a statement from the Department of Justice said. Jacob also lied to an FAA aviation safety inspector when he said the airplane's engine had quit and because he could not identify any safe landing options he had parachuted out of the plane. He has agreed to plead guilty to one count of destruction and concealment with the intent to obstruct a federal investigation a crime that carries a statutory maximum sentence of 20 years in federal prison. The YouTuber is expected to formally enter his plea in Los Angeles in the coming weeks and be sentenced at a later date. The video he posted which can be seen here: https://www.youtube.com/watch?v=vbYszLNZxhM attracted a lot of criticism in the weeks and months after it was published. Numerous pilots and aviation experts commented that Jacob had failed to take even elementary steps to restart his plane's apparently troubled engine. Others pointed out that he could easily have safely glided the plane to a landing spot and that wearing a parachute while flying a small aircraft was highly unusual. hg/tjj Driving an electric vehicle in Texas is soon to become more expensive. Governor Greg Abbott signed a law (SB 505) on May 13 instituting new fees for registering and owning EVs in the state. Under the bill electric car owners will have to pay $400 upon registering their vehicle. Then every subsequent year EV drivers will have to shell out an additional $200. Both of those fees are on top of the cost of the standard annual registration renewal fees which are $50.75 each year for most passenger One state's governor has a few words about the latest fallout from the controversy between Disney and Florida Governor Ron DeSantis. Turns out bigoted policies have consequences California Governor Gavin Newsom tweeted. On May 18 Disney canceled a massive $1 billion plan to build a company office project in Florida that also involved relocating 2000 California employees. Police say the truck left road and hit the van that was occupied by 11 people. Six people died at the scene and one died later. The woke vs anti-woke outrage continues and it's now spilled into one of America's most iconic sports teams. The MLB's Los Angeles Dodgers are the next to fall into controversy after uninviting the queer and transgendered group The Sister of Perpetual Indulgence to its 10th Annual LGBTQ+ Pride Night scheduled for June 16. The group -- which was supposed to be honored with a Community Hero Award by the Dodgers -- was removed from the line-up on Wednesday due to backlash that the franchise received from their original inclusion. Common sense doesnt seem all that common nowadays. It would be easy to assume that the customer service representative of a car manufacturer would understand that an electric vehicle would be a total loss after it has been consumed by flames like Joan of Arc tied to a stake. However a Tesla Model Y owner in California had a startling experience both on the road and with customer service. The white woman accused of trying to take a Citi Bike from a Black man near Bellevue Hospital actually paid for the bike her lawyer said receipts show. When the woman is seen leaving the building she is seen carrying two cups. Police suspect one of the cups was used to drug the man. Tolly Taylor got some notes for his chilling story about Jden McAdory who has routinely taken his rifle to a Maryland bus stop to protest gun restrictions. Its powerful yes but with that comes a big liability. The post Dodge Charger Chases Exposes The Muscle Cars Big Weakness appeared first on The Auto Wire. And they do it in rainy conditions. The post Watch A Stolen Dodge Hellcat Get Ambushed By Police appeared first on The Auto Wire. The Texas senator keeps bringing up his infamous Mexico trip during the state's 2021 record-cold temperatures where more than 200 people died. NEW YORK (Reuters) -The families of Sandy Hook shooting victims said they had a strong case to reverse payments received by Alex Jones' wife and others in his family to help satisfy $1.5 billion in judgments they won against the bankrupt right wing conspiracy theorist over his lies about the 2012 elementary school massacre. Jones has engaged in financial gymnastics to hide his assets and avoid paying the judgments spreading money to friends family members and shell companies David Zensky a lawyer for the families said on Friday during a bankruptcy court hearing in Houston. The families of the children killed by a gunman in Newtown Connecticut have a very strong case to claw back certain payments to Jones' family including a $1 million payment from Jones to his wife Zensky said. Flying a rainbow flag isn't the only way to show you're allied with LGBTQIA+ friends and neighbors. Learn how smart shopping can make a difference too. The former vice president couldn't help but chortle at his supposedly hilarious dig at the Mouse during a Fox Business interview with Larry Kudlow. Concord Police Sergeant Matthew Willet was suspended after being caught on video passing a stopped school bus just before 3 p.m. last Thursday on Odell Road police say. Kansas City Mayor Quinton Lucas quickly responded saying the city wouldnt engage in an intrastate regional race to the bottom that ultimately does little more than fleecing our taxpayers. The new thrones have four adjustable shocks that steady you during high-speed wheeling. In signing more 'anti-woke' bills targeting LGBTQ+ people Florida Gov. Ron DeSantis ensures the history he tries to suppress will judge him harshly. The suspect reached speeds of up to 100 miles per hour as he drove in and out of traffic the California Highway Patrol said. A spokesman for Florida Governor Ron DeSantis downplayed Disneys announcement that it was canceling a planned project that would have moved thousands of employees from California to the Sunshine State. Jeremy Redfern the governors press secretary said in a statement Disney announced the possibility of a Lake Nona campus nearly two years ago. Nothing ever []
14,151
BAD
Young adults and mental health: Is more childhood independence the answer? (kqed.org) Please try again Assistant professor Brett Mallon begins his evening Zoom session at Kansas State University with a question: When students hear the word conflict what associations do they make? Many first responses are decidedly negative. I would say avoid it at all costs one student offers. Argument awkward conversations says another. The list grows as students make emotional associations they have with conflict: stress discomfort war. Only one student suggests that he thinks of conflict as an opportunity for growth. This is Conflict Resolution a non-credit workshop in an Adulting 101 series at Kansas State. The cheeky name created by the campus wellness center belies its serious purpose: to fill in the gaps of missing life skills for students with classes that range from the practical like how to make a budget to the relational like dealing with imposter syndrome. Students talk about conflict like its this terrible thing Mallon said in an interview. Is it that theyre afraid of [conflict] or are they lacking in experience? Probably a little bit of both. Seminars and classes like Adulting 101 are becoming more common on college campuses. Though ranging in style and substance from one-offs on handling stress to full-semester psychology courses on how to be happy more universities are offering help to students struggling with the stresses of everyday life and mental health challenges like anxiety and depression . Assistant professor Brett Mallon begins his evening Zoom session at Kansas State University with a question: When students hear the word conflict what associations do they make? Many first responses are decidedly negative. I would say avoid it at all costs one student offers. Argument awkward conversations says another. The list grows as students make emotional associations they have with conflict: stress discomfort war. Only one student suggests that he thinks of conflict as an opportunity for growth. This is Conflict Resolution a non-credit workshop in an Adulting 101 series at Kansas State. The cheeky name created by the campus wellness center belies its serious purpose: to fill in the gaps of missing life skills for students with classes that range from the practical like how to make a budget to the relational like dealing with imposter syndrome. Students talk about conflict like its this terrible thing Mallon said in an interview. Is it that theyre afraid of [conflict] or are they lacking in experience? Probably a little bit of both. Seminars and classes like Adulting 101 are becoming more common on college campuses. Though ranging in style and substance from one-offs on handling stress to full-semester psychology courses on how to be happy more universities are offering help to students struggling with the stresses of everyday life and mental health challenges like anxiety and depression . But a growing body of evidence is beginning to suggest that the problems of adulting and mental health in college students may be rooted at least in part in modern childhood. Research shows that young people are lacking in emotional resilience and independence compared to previous generations. The problem has been growing in tandem with rising rates of anxiety and depression perhaps exacerbated by the COVID-19 pandemic and has left colleges scrambling to help and adapt. Some parents have been parenting differently they have this value of success at all costs said Dori Hutchinson executive director of the Center for Psychiatric Rehabilitation at Boston University. I like to describe it as some kids are growing up developmentally delayed todays 18-year-olds are like 12-year-olds from a decade ago. They have very little tolerance for conflict and discomfort and COVID just exposed it. Research shows that young people who arrive on campus with healthy amounts of resilience and independence do better both academically and emotionally but today more students of all backgrounds are arriving on campus with significantly less experience in dealing with lifes ups and downs. Many even see normal adult activities as risky or dangerous. In a new study currently under review Georgetown University psychologist Yulia Chentsova Dutton looked at whether American college students threshold for what is considered risky was comparable to their global peers. Chentsova Dutton and her team interviewed students from Turkey Russia Canada and the United States asking them to describe a risky or dangerous experience they had in the last month. Both Turkish and Russian students described witnessing events that involved actual risk: violent fights on public transportation; hazardous driving conditions caused by drunk drivers; women being aggressively followed on the street. But American students were far more likely to cite as dangerous things that most adults do every day like being alone outside or riding alone in an Uber. The American students risk threshold was comparatively quite low according to Chentsova Dutton. Students who reported they gained independence later in childhood going to the grocery store or riding public transportation alone for example viewed their university campus as more dangerous; those same students also had fewer positive emotions when describing risky situations. Chentsova Dutton hypothesizes that when students have fewer opportunities to practice autonomy they have less faith in themselves that they can figure out a risky situation. My suspicion is that low autonomy seems to translate into low efficacy she said. Low efficacy and a combination of stress is associated with distress like anxiety and depression. In recent years other psychologists have made similar associations. Author and New York University ethical leadership professor Jonathan Haidt has used Nassim Talebs theory of anti-fragility to explain how kids social and emotional systems act much like our bones and immune systems: Within reason testing and stressing them doesnt break them but makes them stronger. But Haidt and first amendment advocate Greg Lukianoff have argued in their writing a strong culture of safetyism which prizes the safety of children above all else has prevented young people from putting stress on the bones so to speak so such children are likely to suffer more when exposed later to other unpleasant but ordinary life events. Psychologists have directly connected a lack of resilience and independence to the growth of mental health problems and psychiatric disorders in young adults and say that short cycles of stress or conflict are not only not harmful they are essential to human development. But modern childhood for a variety of reasons provides few opportunities for kids to practice those skills. While its hard to point to a single cause experts say a confluence of factors including more time spent on smartphones and social media less time for free play a culture that prizes safety at the expense of building other characteristics a fear of child kidnapping and more adult-directed activities together have created a culture that keeps kids far away from the kinds of experiences that build resilience. Chentsova Dutton said America has an international reputation for prizing autonomy but her study opened her eyes to a more complicated picture. American parents tend to be overprotective when children are young acting as if kids are going to live at home for a long time like parents do in Italy. Yet they also expect children to live away from home fairly early for college like families do in Germany. The result is that American kids end up with drastically fewer years navigating real life than they do in other countries that start much earlier. We parent like we are in Italy then send kids away like we are in Germany Chentsova Dutton said with a laugh. Those things dont match. Seventeen-year-old Megan Miller a senior at Hudson High School in Hudson Ohio recently drove her two siblings ages 15 and 12 to Cedar Point Amusement Park for an evening of fun. Miller was nervous. Shed never driven an hour and a half away from home by herself before especially in the dark but she had to do it; it was homework for school. The assignment was to try something shed never done before without her parents or anyone elses help. Other students figured out how to put air in their tires cooked a meal for their family from start to finish and drove on the interstate. The point Millers teacher Martin Bach said was to give these young adults many of whom would be living away from home in less than a year experience with trying failing and figuring something out on their own. I was seeing that student stress and anxiety levels were already bad then COVID supercharged it Bach said. But a pattern of parents swooping in to solve problems that kids could easily solve on their own made Bach decide to create the unit on resilience and independence. In my head Im thinking these kids are going off to college how are they going to cope? Bach got the idea for the do something new on your own assignment from Let Grow a national nonprofit promoting greater childhood independence. Let Grow offers free curriculum aimed mostly at elementary and middle school students that feels like its giving 21st century childhood a hard reset like play club in which children are allowed to play on school playgrounds without adult interference and the think for yourself essay contest. Let Grow is part of a growing movement of psychologists therapists and educators advocating for evidence-based practices to help kids gain more independence and improve mental health. Let Grows co-founder Lenore Skenazy said that after traveling for years speaking to parent and school groups about the problem of shrinking childhood independence she decided that families needed more than a lecture. The audience would nod along everybody gets it. But they wouldnt let their own kids do it she said. Skenazy began to understand that the anxiety around child safety was not necessarily parents fault the culture surrounding families almost fetishized child danger. Many parents felt they would be judged or arrested if they let their child walk to the park by themselves or walk to the store. Skenazy moved the organization toward behavior and policy change to address the cultural issues. Along with the independence curriculum for schools Let Grow has helped four states enact Reasonable Childhood Independence laws aimed at protecting parents from neglect charges. Let Grow also speaks directly to parents and teachers about letting kids try things by themselves and being surprised by what their kids are able to do. Like Megan Miller whose trip to Cedar Point was thrilling yet also had bumps along the way. They got a little lost inside the park and the siblings had a disagreement over which roller coasters to ride. On the way there even with navigation on her phone she took a wrong turn and ended up on an unfamiliar road. But that road wound alongside scenic Lake Erie which shed never been on. It ended up being this beautiful drive that I will definitely do every single time Miller said. Since the trip Millers parents have noticed a change she said. I find that Im much more comfortable driving on highways and for long periods of time. My parents know now that I can do it which helps a lot. More researchers psychologists and educators are looking to find more ways to incorporate independence skills into kids daily lives. Clinical psychologist Camilo Ortiz a professor at Long Island University-Post began noticing a few years ago that some of his young patients mostly children being treated for anxiety would fold very quickly at the first sign of adversity. Ortiz uses what he calls the four Ds to explain what was happening: Todays kids experienced less discomfort distress disappointment and danger than previous generations did because their parents who have the best intentions deprive them of these opportunities. He began to wonder whether kids who didnt get much of the four Ds were missing an important opportunity to be uncomfortable and then persist and whether they might help clinically anxious children. Beginning last year Ortiz began a pilot treatment program for childhood clinical anxiety that is based on independence and getting parents out of their hair. This is not a traditional anxiety treatment he said. My approach is something like: So youre afraid of the dark? Go to the deli and buy me some salami. A lot of anxiety is based in fear of the unknown so the treatment involves having an experience full of uncertainty like riding the subway alone or going to the grocery alone. If the child can tolerate the discomfort in that situation Ortiz hypothesized that those lessons might translate to whatever is causing the child anxiety. Early results are promising: the independence exercises have been successful in quelling anxiety for some children. The new approach that I have developed is for middle school kids he said. So by the time theyre college students theyve gotten a lot more practice with those four Ds. Other groups help build resilience in students in academic settings like the Resilience Builder Program which aims to help students think more flexibly be proactive in the face of challenges and learn optimistic thinking. The programs creator Mary Alvord said the protective factors taught to middle schoolers are based on decades of research on childhood resilience. Its about being proactive and not feeling like youre a victim how you can control some things but you cant control everything she said. How can you make the best of it and if you cant how do you ask for help? Experts say independence and autonomy are best formed and tested in childhood but its never too late to begin. At the Center for Psychiatric Rehabilitation at Boston University Hutchinson and her team help college students diagnosed with mental illness continue their education and reach their goals and that often begins with building their resilience and independence skills. The center has developed a curriculum that is focused not just on students but parents and faculty as well. Families are a player at the table Hutchinson said. Parents benefit from coaching that shows them how to support their student without doing for them. Parents sometimes dont understand that protecting their child from failure and difficulty can be an obstacle to growth. When we are controlling a young adults experiences and they go without that full range of emotional experience said the centers Director for Strategic Initiatives Courtney Joly-Lowdermilk were actually curbing peoples opportunities to live full lives and have the full range of human experience. Subscribe to receive weekly updates of MindShift stories every Sunday. Youll also receive a carefully curated list of content from teacher-trusted sources.
14,121
BAD
Young women earn more than young men in several U.S. cities (pewresearch.org) Read our research on: Asian Americans | Supreme Court | Economy Read our research on: Asian Americans | Supreme Court | Economy Women in the United States continue to earn less than men on average. Among full-time year-round workers in 2019 womens median annual earnings were 82% those of men. The gender wage gap is narrower among younger workers nationally and the gap varies across geographical areas. In fact in 22 of 250 U.S. metropolitan areas women under the age of 30 earn the same amount as or more than their male counterparts according to a new Pew Research Center analysis of Census Bureau data. Men in the United States have long earned more than women on average but this gender wage gap has slowly narrowed over time . The gap tends to be smaller among younger workers. This analysis examines the extent to which the gender wage gap among young workers also varies across metro areas. The analysis is based on the American Community Survey (ACS) the largest household survey in the U.S. with a sample of more than 3 million addresses. It covers the topics previously covered in the long form of the decennial census. The ACS is designed to provide estimates of the size and characteristics of the nations resident population which includes persons living in households and group quarters. The specific 2015-2019 five-year ACS microdata sample used here was provided by the Integrated Public Use Microdata Series (IPUMS) from the University of Minnesota. IPUMS assigns uniform codes to the extent possible to data collected in the ACS. The 2019 ACS data is the most recent available. The collection of the 2020 data was severely impacted by the COVID-19 pandemic . Based on the 2010 census the U.S. Office of Management and Budget delineated 384 metropolitan statistical areas. The IPUMS ACS provides information on 260 metros. As explained in the documentation for MET2013 there is an imprecise correspondence between the metro boundaries in the ACS data and the official metro area boundaries. This analysis uses information for only 250 metros because 10 metros had an insufficient number of young full-time year-round working women living in them to provide accurate estimates. A full-time year-round worker worked at least 50 weeks in the year prior to the interview date and usually worked at least 35 hours per week. Among women workers under 30 43% work full time year-round. Recent Pew Research Center analyses of the gender pay gap examine the median hourly wage of both full- and part-time workers using the Current Population Survey (CPS). The CPS does not provide information on individual metropolitan areas. The CPS and ACS provide similar estimates of the gender pay gap for the U.S. Using the CPS the Census Bureau estimates that the gender earnings gap for full-time year-round workers ages 15 and older was 82% for 2019 matching that derived from the ACS. The New York Washington D.C. and Los Angeles metropolitan areas are among the cities where young women are earning the most relative to young men. In both the New York and Washington metro areas young women earn 102% of what young men earn when examining median annual earnings among full-time year-round workers. In the Los Angeles-Long Beach-Anaheim metro area the median earnings for women and men in this age group were identical in 2019. (For data on earnings and the gender gap for 250 U.S. metropolitan areas read this Google sheet .) Overall about 16% of all young women who are working full time year-round live in the 22 metros where women are at or above wage parity with men. There are 107 metros where young women earn between 90% and 99% of what young men earn. Nearly half (47%) of young women working full time year-round lived in these areas in 2019. In another 103 metros young women earn between 80% and 89% of what men earn. These areas were home to 17% of young women who were employed full time year-round in 2019. And in 14 metros young womens earnings were between 70% and 79% those of men in 2019. About 1% of the young womens workforce lived in these metros. In four metro areas Mansfield Ohio; Odessa Texas; Beaumont-Port Arthur Texas; and Elkhart-Goshen Indiana women younger than 30 earn between 67% and 69% of what their male counterparts make. These metros account for 0.3% of the young womens workforce. (Some 19% of young women in the workforce are employed in metros where earnings data is not available or are in nonmetropolitan areas.) From a regional perspective metropolitan areas in the Midwest tend to have wider gender wage gaps among young workers. Young women working full time year-round in Midwestern metros earn about 90% of their male counterparts. In other regions by comparison young women earn 94% or more of what young men earn. Nationally women under 30 who work full time year-round earn about 93 cents on the dollar compared with men in the same age range measured at the median. As these women age history suggests that they may not maintain this level of parity with their male counterparts. For example in 2000 the typical woman age 16 to 29 working full time year-round earned 88% of a similar young man. By 2019 when people in this group were between the ages of 35 and 48 women were earning only 80% of their male peers on average. Earnings parity tends to be greatest in the first years after entering the labor market. Labor economists examine earnings disparities among full-time year-round workers in order to control for differences in part-time employment between men and women as well as attachment to the labor market. However even among full-time year-round workers men and women devote different amounts of time to work. Men under 30 usually work 44 hours per week on average compared with 42 hours among young women. Note: For data on earnings and the gender gap for 250 U.S. metropolitan areas read this Google sheet . Fresh data delivered Saturday mornings 1615 L St. NW Suite 800 Washington DC 20036 USA (+1) 202-419-4300 | Main (+1) 202-857-8562 | Fax (+1) 202-419-4372 | Media Inquiries About Pew Research Center Pew Research Center is a nonpartisan fact tank that informs the public about the issues attitudes and trends shaping the world. It conducts public opinion polling demographic research media content analysis and other empirical social science research. Pew Research Center does not take policy positions. It is a subsidiary of The Pew Charitable Trusts .
14,122
BAD
Your compliance obligations under the UKs Online Safety Bill (webdevlaw.uk) L ast month I wrote a post about the UKs world-leading vision for age-gating the open web. It got a bit of attention . That post sadly encompassed only one aspect of your compliance obligations under the Online Safety Bill . In this post Im going to tell you about the rest. I apologise in advance. As with the previous post this is tremendously long: 4100 words. Theres really no way to make it shorter. Youre going to need something slightly stronger than coffee. Please drink as responsibly as a Conservative MP with poor impulse control at the Commons bar in the middle of the day. This is fine This post was tricky enough to write but on top of that last week I found myself in the Palace of Westminster representing my (now former) employer at a roundtable of small tech businesses and startups who stand to be collateral damage in the UKs determination to regulate the internet around Facebook via this Bill. That meeting gave me a chance to work through some of these concerns and to sharpen others. Or it would have if the nine MPs across three parties who were scheduled to attend actually showed up. Only one did. And hes a good un who gets it but who also has skin in the game about being on the receiving end of the most horrific online abuse and wants us to help him and people like him . That is the kind of person we should be working with and doing business with to help him and people like him without throwing everyone and everything else under a bus. Me I will sit down and work with representatives like him any time. Where was everyone else? Well you could assume that they were off playing real-life Game of Thrones; Boris Johnsons time was up you see so they were all elsewhere drawing up factions and sharpening knives. Or you could be cynical and say that a meeting about small businesses like yours held no interest for them; theres no headline no PR no wild west hero sheriff fantasy no big tech crusader mantle to claim for anyone sitting in a room with the likes of me and by representative extension the likes of you. So the roundtable was a real-life version of the this is fine meme as everyone who was in attendance sipped their coffee and nibbled their patisserie and chatted amiably while the room was on fire. Still being on one side of the building while the government was literally collapsing on the other side of the building and then heading up the street to have a giggle fit at the party in front of No 10 (link NSFW) made it a meeting Ill never forget. I mean what are the chances that I walk into Parliament for the first time in two and a half years and the government implodes? Whoopsie . I want to help you understand what the UKs draft Online Safety Bill will mean for you and your work on the open web. This post is my attempt to explain the compliance obligations as theyve been drafted and how they will hit you. By you I mean anyone working in a company or a project which will fall in scope of the Bill whether thats your paid work your software community or your personal hobby. And by you I mean a company which is Not Big Tech or as Ill call it for the purposes of this post NBT . They have their compliance departments legal teams and policy specialists. You dont. You also means an NBT whose product or service does not engage in legal and consensual adult content or conduct. That means porn. And that means porn either as your main business model or as some of the content on it; because if you are youve got specialist compliance experts for that too. It goes without saying that this is not legal compliance advice . It also goes without saying that this is a draft Bill not quite the law yet so anything I write here is subject to change. Additionally I present this post for information only: so dont shoot the messenger . Not all of these ideas are necessary proportionate or even feasible. Im presenting them to give you the facts you need to work with. This post reflects the second draft version of the Online Safety Bill plus amendments as was published on 28 June 2022. Unfortunately it is only available in PDF (that link opens up the document which is 230 pages). When you see a numbering system following an excerpt from the Bill thats my shorthand for the Part Chapter Clause and Paragraph it came from within the draft Bill text. So for example 3/2/8/(5) refers to Part 3 Chapter 2 Clause 8 Paragraph 5. I wouldnt have to do this if legislators published legislation in open text formats rather than PDFs. Pfft. As you read this post you should also hold everything in it in the light of these two questions. The first is: how will my having to do this address online harms and make the web a better place? And the second is: Why is this government throwing me and my team and my project under a bus with these compliance requirements and obligations in order to get back at big tech? If you cant come up with an answer to either of these questions that itself is the answer. I have divided this guide into six areas: Is it possible for your site service or app which allows content to be shared and/or people to communicate with each other to be accessed by any adult or any child within the UK? Then youre in scope. NB accessed doesnt necessarily mean that a user can set up an active account on your service. If a British adult can merely download your app on the app store the app is in scope. If a British child could merely type your URL into a browser the site is in scope. This Bill has been aggressively promoted as being about big tech social media tech giants but it is not and it never was. The ongoing line that its here to rein in the tech giants is and always has been bullshit. In fact Im going to start being really hardline about this by saying that anyone be it politicians media or civil society who still discusses it as being about big tech and social media and tech giants is spreading disinformation. And you folks need to stop that. So the bottom line is that its easier and safer to assume that you and your work are in scope than to assume that you are not. And dont forget that this regulatory regime is expected to be extraterritorial. If you are not in the UK but your site service or app can be accessed by anyone in the UK youre fair game. First lets talk about the paperwork. As youll recall from the previous post the governments digital regulation strategy is to scrap EU bureaucracy and paperwork and red tape in order to erm make way for UK bureaucracy and paperwork and red tape. Bumf but British bumf! First and foremost of these are the risk assessment obligations you will be required to devise and produce to keep Ofcom as the online harms regulator happy. This is a result of the Bills attempt to transfer the offline health and safety model to the open web in the belief that online harms are a series of trip hazards which can be nailed down with proper risk assessments. Ive had a good few years to reflect on this model of internet regulation and it finally dawned on me that the trip hazard model was a Freudian slip that gives the game away. The intention is not to prevent companies from laying trip hazards. The intention is to use the legislation to lay trip hazards in front of companies in the form of these impossible risk assessment compliance processes which exist solely to create the paperwork needed to set you up to fail. Its these assessments that are the trip hazards on purpose. Sometimes risk assessments can be good. However much everyone rats on GDPR the privacy impact assessment is a priceless opportunity to ask open-ended questions and follow where they lead to prevent problems from ever happening down the road and mitigating the ones already in play. Those questions of course are based in international standards and human rights principles. Whats on the table here by contrast dont seem to be open-ended questions nor the upholding of international principles. This is table-pounding which demands: prove yourself or else. So what are these assessments? Your NBT will have to go through these at the very minimum. Their specific shape size and requirements are yet to be determined thats for Ofcom down the road as with so much else of this legislation but what is about to be hammered down in law are the following: Lets zero in on just two of those: the illegal content risk assessment and the child safety risk assessment. For these two risk assessments you will be required to identify the following in writing: I probably missed something in there but youre probably curled up in a ball crying as is. Oh see that last one? Every time you make a change to your business model governance or systems or processes which might theoretically increase the risk of any subjective online harm youll be expected to check first with Ofcom as the regulator. Having fun yet? Theres more! In addition to the risk assessments you will have administrative compliance obligations to Ofcom as your content regulator. These include No were not done yet. You probably dont want to get into this today but if you werent aware Ill just cut and paste this from a previous post : The draft Bills explanatory notes provide a reminder (see page 12) that Article 15 of the eCD also contained a prohibition on the imposition of requirements on service providers to generally monitor content they transmit or store or to actively seek facts or circumstances indicating illegal activity. [] there is no longer a legal obligation on the United Kingdom to legislate in line with the provisions of the eCD following the end of the transition period on 31 December 2020. Having swept 25 years of intermediary liability into the bin the draft Bill text then goes on to establish a general monitoring obligation for both illegal content and legal content which of course means anything conveniently stuffed into the rubric of childrens safety. Massive increase in Ofcom powers to require proactive monitoring by use of technology (S.116). Previously prohibited except for terrorism and CSEA. pic.twitter.com/OnG52rwis9 Graham Smith (@cyberleagle) March 17 2022 In other words the UK is ditching the prohibition on a general monitoring obligation its own equivalent of the US Section 230 specifically because it came from the EU and must be thrown out with the bathwater. In its place it becomes the first western nation to impose a general monitoring obligation over both illegal and legal and subjective content. Yay taking back control! And thats gonna cost you. In addition to the costs of your time and labour in complying with all of the above how much is this regime going to run you out of pocket? Well your NBT in scope of the Online Safety Bill is facing at least four kinds of ongoing compliance costs. The first cost youll incur is paying an annual fee to the regulator (Ofcom) for the privilege of being regulated by them. (6/71) This is obviously intended to be similar to the annual data protection fee you pay to the ICO. However that system is about working with the regulator to uphold your users fundamental right to privacy while the OSB system is about working with the regulator to decimate your users fundamental right to privacy. So were off to a flying start then. The amount of the fee has not yet been determined; its down to Ofcom to ensure that it is justifiable and proportionate (6/75/2/b). However my guiding rule is that you shouldnt put too much trust in the words justifiable and proportionate not when twelve years of Conservative attitudes about the internet have worked from the default position that you people are all filthy vermin who are complicit in child abuse and terrorism and the burden of proof is on you to demonstrate otherwise. (Remember VATMOSS? This makes that look like primary school.) Clause 73 also discusses the establishment of a threshold figure. The explanatory notes state OFCOM will be funded via fees from providers of regulated services whose qualifying worldwide revenue is equal to or greater than the specified threshold as determined by clause 73. This clearly means that not every business in scope will be required to pay an Ofcom fee but does that mean that businesses which dont have to pay the fee will still face the compliance requirements regardless? And can somebody find out? The second cost youll incur as an NBT is the legal advice which you will need to take to understand your compliance obligations: in other words the expert advice youll need to bring in to help you know what it is youre expected to do lest you get shouted at that you are failing to meet your duty of care to Britains children. Paragraph 124 of the Impact Assessment projects that cost as follows and I have included the screen cap so that you understand that I am not making this up: one regulatory professional at an hourly wage of 20.62 is expected to read the regulations within each business [] the explanatory notes are approximately 52000 words and would therefore take just over four hours based on a reading speed of 200 words per minute. In other words your NBT is expected to locate the mythical regulatory compliance professional who Wow. Okay. Let me put it this way folks: as a regulatory professional if you want me to even look at you you need to move the decimal point in 20.62 one digit to the right. If you want me to actually listen to you you need to move it another digit to the right. Per day. The third compliance cost for your NBT will be implementing a third-party age verification or age assurance system to identify the ages of everyone who accesses your service even if they are not and never become actual users of your service because if you dont YOU HATE THE CHILDREN . We discussed this in the previous post the 3000-word top-of-Hacker-News one. If you need to pause now and go find someone to give you a hug I wont hold that against you. The fourth compliance cost will be the scanning and monitoring services to detect both illegal as well as legal and subjective content as we discussed above. Because unless you spend every waking minute of your life in God-mode monitoring and reading every keystroke your users type in every interaction with your service and every pixel they exchange with other humans and rush in to correct or edit or censor anything that might be legal but subjectively harmful youre going to need to install some sort of automated screening software. Youre not going to do that because youre a horrible nosey internet stasi. Youre going to do that because your compliance obligations say you have to do that or else duty of care the children etc etc blah blah; or if youre lucky enough to have a senior management position in your organisation its your personal freedom and your bollocks on the line as you could well face criminal charges for being uncooperative. At this point I want to share an email I received from a follower in response to last months post: Hes absolutely right. There was a time about a year ago that I made this meme as a joke: What Ive come to realise since then is its not a joke . Thats the intention. Make it too prohibitive risky or impossible for public discourse to flow on smaller platforms and services; require the larger ones to become speech police and societal monitors; politicise the hell out of it and threaten tech workers with jail until they comply. Its not that they dont realise theyre throwing you and your work under a bus. Its that they do. The Bill is in its report stage this week just before Parliament heads off for summer recess and any legislative programme bad or good takes a firm backseat to Tory Game of Thrones. And I hate to break it to you but this is starting to look like a lost cause. As I learned myself last week politicians arent interested in small businesses or projects like yours. If theres no angle that will allow them to present themselves as crusading heroes taking on the tech giants theyre not interested. Those of you who have engaged with your representatives have tended to receive response letters full of stock messages about social media and online harms. Remember what I said at the beginning of this post about how this Bill has been aggressively promoted as social media legislation? Most elected representatives think thats what it is because thats what they have been told too. They arent aware of the nuances or the complexity or the scope or the collateral damage either. And the people who do understand those complexities meaning the money machine that has driven this Bill the one that only communicates with the public through paywalled adtech-riddled PR agency-drafted op-eds in right-leaning broadsheets has far more power and influence than all of you put together ever will. So what can you do? As the past month has shown you could choose to let the people responsible for this Bill divide and conquer among themselves taking the Bill with them. This Conservative Bill for example has rent the Conservative party into bitter factions. The Telegraph whose idea this Bill was in the first place and who gleefully crusaded for it for years is not only backtracking on its own Bill but is pretending like we all havent noticed. And even the civil society organisations who have supported this Bill are souring on it as they realised theyve been used too. A little nudge might go a long way. You could also stage your own campaign. Announce that youre blocking UK users. Announce that youre pulling out of the UK. Announce that you will not partner with the UK government in identifing all your users and surveilling their conversations on the assumption that they are all deviant criminals. Send out a note to your users warning them that you may have to terminate their accounts if this Bill passes and let them run with their anger. Take a stand. Defend your users rights. Be at the table rather than on the menu. But whatever you choose to do you cant just oppose whats wrong. You have to come up with an alternative plan to put it right. Because your opposition to this Bill and what its going to do to your work and to your users will be taken as an endorsement of the status quo as well as a confession of guilt that you are complicit in those things. Thats the tactic you see: any opposition to this Bill is either lobbying or intransigence or collusion with Big Tech. And you are not guilty of any one of those things. So come prepared for battle because just by being yourself you have more ammunition than you think. I have my own ideas a creative exercise if you will about how this Bill could (and should) be scrapped over and restarted from scratch on a far better footing. But youve read enough for today. Header image by me 6 July 2022: the room where it happens snapped on my way to The Room Where It Happens. It was actually a very lovely summers day but Im committed to the black and white aesthetic. The Author Heather Burns Im a tech policy wonk based in Glasgow Scotland. I work for an open web built around international standards of human rights privacy accessibility and freedom of expression. The content and opinions on this site are mine alone and do not reflect the opinions of any previous employer. On that subject I am on the market again; usual rules apply. A fascinating article giving food for thought for weeks to come. Thank you I like your style. Easier to block the UK subnets and let blighty become a tech blackhole than to comply. More business outside than in. This was frankly quite a dreadful read given your unpleasant tone. Besides your commentary none of the proposed legislations are significantly far off from GDPR or COPPA. You seem to have interpreted the law in the most negative unforgiving way possible cherry-picked the worst bits and added your own commentary on top. Maybe you dont care about privacy as a small business owner but have you considered that privacy is a right and these laws (which are reasonably similar to compliance with the GDPR) are similarly Hi A Roberts. Aside from the fact that Im not a small business owner you seem to have cherry picked your angle of reply. So Ill direct you to the Book link above where I discuss the book Ive written being published soon which explains privacy for web professionals from the perspective of privacy as a right. Its 47000 words or so drawing on 25 years of experience across code policy commerce digital rights and law. I hope you enjoy reading it. In reply to A Roberts. Youve been reading something else. Would slapping a We cant show you this because your government wants to make us to terrible things to you so hey tough luck banner on any UK request be enough? Can you confirm that this article would be illegal under the proposed Online Safety Bill? From memory the maximum penalty is 12 years in jail; is this correct? The article itself would not be illegal. As the Bill has been drafted it would be possible for the content on it or on any subjective but legal topic to fall within a code of practice devised by the Secretary of State for DCMS for political purposes. That currently being one N. Dorries. As for jail time I think youre conflating this with something else. There is a senior management liability regime but prison terms have not yet been determined. Even if they had been a person facing a 12 year prison sentence for a blog post published on their service is known as a martyr. These regulations create a barrier to entry that allows only big tech access to large parts of the internet. This is not regulation of big tech. This is a favor to big tech. idfk what the hell im supposed to do. most of my friends are on the internet and thus not in the UK and like. i cant do shit abt this fuckin shitty bill bc if it does pass then i only have my birth cert. and not any other kind of identification (i.e: driving license passport) and idk if thats going to be enough. i find it hard enough to make friends and keep them as it is. im not sure what im supposed to do. I guess lots of people will end up using VPNs & Tor & have to pretend theyre not British to access content abroad. Though the government might still know as client side scanning was added as a last minute amendment. Im struggling to find words to comment after reading this Its like the politicians are putting a rop### CENSORED BECAUSE OF THE CHILDREN ### necks of British tech startups handing every bit of market to foreign actors Oh well at least the UK had Brexit. Great article masterfully written. Greetings and best wishes from Portugal. Thats pretty horror show. Ill assume that since I run a webserver on a Raspberry Pi glued to the side of my Desktop computer to share cat pictures with my friends and family that I will fall in scope. Would it be foolish for me to ask if you could write a suitably short message encompassing your/our concerns that I could place on my server as a 404 error redirect. Others might wish to do the same and also include a link on their pages to the same words to be included with the page links to privacy/cookie notices. Perhaps also a link to a webdevlaw page that expands on the simple message to give more detail but not running to 4500 words. Thanks but I have no interest in establishing myself as an internet intermediary because of this Bill. (Funnily enough this blog still gets weekly hits from a mail order business which linked to a long-deleted blog post of mine in lieu of compliance.) Thanks for taking the time to reply. I am silly enough to think it might have an impact so I wrote my own. https://www.pascalworks.com/bong Should give you a 404 redirect to my words. Not to sound nihilistic or anything but how can any of you summon any chagrin for shit like this in the UK anymore? Fuck the UK Once my grandmother dies Im selling everything I own and moving to southern italy to start an agrivoltaic vineyard. This is just so utterly depressing. The nerds who care about this sort of thing are in a minority. I moved to using an always-on VPN after the snoopers charter came out and I thought _that_ would be the high water mark. I have no idea if it reallyprovides any anonymity correlation analysis is a powerful thing but at the very least the fact that MI5 / MI6 are complaining that E2EE makes their life hard is probably a good sign that it is working. What it does do is send a massive sod you to dragnet intel gathering and also prevents your ISP from (easily) seeing your DNS requests and forwarding them to all and sundry who request them. I really hope the current political circus fixes some of the problems with this bill but to be honest I doubt they will. The issue for me is professional indemnity insurance for SMEs voluntary bodies and freelancers. Given wide scope how will ABI react? If you cant get insurance because of the wide scope and ill -defined harms this could kill many enterprises. A simpler example in the non digital world from years ago. All my local country pubs had childrens playgrounds in the early 1990s. They all vanished in 5 years. One local faced a 1500% increase in insurance costs for potential litigation despite not having had an incident for over a decade. Theres insurance and theres also the linked issue of procurement compliance. In my early web design days I had a client drop me as a service provider because I didnt produce a health and safety assessment of my premises for them even though my business was me working from a laptop at home. Their procurement rules required the health and safety assessment from suppliers. So I was off their list. Proof positive as if we ever needed it that attempting to transfer the health and safety culture of the physical world to the digital world merely creates more bureaucratic points of failure regardless of actual risk or harm. Such a sobering read but thanks for the cohesive listing of compliance obligations in all their gruesomeness. On which subject for anyone who missed it compliance costs didnt get a single mention during the Commons debate on the Bills Report Stage this afternoon . Not even by Her Majestys Opposition or should I say Her Majestys Non-Opposition or maybe even Her Majestys Lets Propose Hundreds of Even More Complicated Layers of Amendments. Fortuitously some of the proposed Opposition amendments were from Planet Zog and got rightly defeated. Some of the proposers of these Amendments forgot what they were talking about or windbagged their way off-topic and it often took confused members on the Government benches a while to steer the debate back on course although I cant honestly say it was ever on course at any point during the day. So maybe the transfer of the Bill upstairs to the Lords is a good thing the Bill still has a huge amount of work needed on it but seems to have exhausted the efforts of the MPs at least for the time being. [] has also been criticised despite the good intentions of reducing harm to children for imposing requirements [] I guess this means that my piddly little blog reviewing roast dinners in London with a side of slagging off the government and the occasional picture of men in lingerie is doomed? Youre hired Comments are closed. All my public-facing writing on the Online Safety Bill 2019-2023 in one place. A new podcast series has reminded me how open source community meetups saved so many people including me from business networking hell. In a world where people are targeted for who they are any data you collect can and will be used against them. If you're worried about foreign state surveillance of your devices or intrusive tracking of your teams start in your living room. An amendment to the Online Safety Bill uses its age verification requirements to censor subjective legal content determined by government policy. Just like we warned you years ago. Let's get my book where it's most needed: into classrooms whether physical or virtual.
14,124
GOOD
Your simulation might not need state (onsclom.net) onsclom The bouncing DVD logo is a fun and easy coding project. Watching Daniel Shiffman code it in p5.js is one of my earliest programming memories. However the naive solution is far from optimal. If you havent already made this DVD bouncing logo give a try! Really take a break from reading and come back. We are going to go over the naive implementation and I dont want to spoil it. Okay welcome back! You probably wrote code that works very similar to Daniels. You need to track the logos x y dx and dy . If the logo hits a side wall you flip its dx and if it hits the ceiling or floor you flip the dy . This totally works! Doing this in TypeScript it might look like: But theres actually a totally different way to do this. First lets define some things. Animation : takes time as a parameter and returns an image. Simulation : takes some state then returns updated state and image. These types can be defined in TypeScript. (If you dont understand these types its OK) Our naive DVD logo implementation would be a Simulation . Ok maybe it doesnt fit the exact type definition. We arent doing pure functional programming. But the essence is the same. We read state ( x y dx dy ) compute new state and render (update the position). Would it be possible to describe the bouncing DVD logo as an Animation ? Can we actually eliminate the need for state? Think about this for a while. If youre like me at first this sounds impossible. We would need to come up with some advanced formula to account for collisions and calculate the position of our logo for any given time. But its really not too complex. Lets simplify things by thinking about one dimension. A little math goes a long way! Isnt that cool? You can probably guess how to calculate the y position now. Heres the full solution. We converted our previous Simulation into an Animation . Instead of maintaing state we calculate positions using just time . Not only did we make the code simpler but we also made the code function better! How? Well there were actually a couple of problems with our previous code: The Simulation solution is framerate dependent. The DVD would move faster with higher framerates. The Animation solution is framerate independent. The Simulation actually has a bug. If you resize the window to be smaller you can trap the DVD logo on an edge. Resizing the window in the Animation solution means we recalculate to the correct position. In addition to all this Animations have a lot of benefits over Simulations . They are easier to test easier to rewind or fast forward and its possible to instantly get the result for any point in time. But wait we can take this DVD example further! The DVD logo changes color every time it hits a wall. Surely we need state for that right? Actually its possible to calculate the amount of bounces that happened since time equalled 0. And we can use that to choose a color. Isnt that cool?! Or maybe you think weve been getting really lucky with these examples. Maybe you remembered something tricky. The actual DVD logo picks a color randomly. You probably think this is where we are finally stumped. Well with a seeded random function this is possible too! Ok well maybe this isnt the best random function. Im getting a bit lazy now. But Im sure you get the idea. Try out the live demo ! Try refreshing the page. The DVD logo magically remembers its state! Next time you find yourself rushing to use state try spending some more time at the whiteboard. Not only will it make your code simpler but it also might make it better. View discussion for this post at Hacker News . Website made by me using Astro and Vanilla CSS . Checkout the source code on GitHub .
14,128
BAD
Your work matters Build your schedule accordingly (calnewport.com) About halfway through Laura Vanderkams sharp new productivity guide Tranquility by Tuesday were introduced to Elizabeth an education professor who worried about her ticking tenure clock came to Laura for time management advice. Elizabeth was struggling to find time for her research. Her husband and two children had followed her to northern Long Island to be close to the university were Elizabeth taught. As a result however her husband now faced an hour-long commute into the city each day leaving Elizabeth with the primary responsibility for taking care of the kids before and after school. This created tight constraints on her available work hours and the time that did remain was all too easily devoured by the demands of the classroom and teaching assistant supervision. Laura asked Elizabeth to come up with a set of fixed time slots she could dedicate to research to help ensure progress would be made even during busy weeks (longtime readers might recognize this as a variation of the autopilot schedule strategy ). Elizabeth came back with the following options: Laura knew these meager options werent going to produce a lot of new research. You dont need to be a professor to deduce how easily those three small spots could disappear she writes. With this reality in mind Laura pushed Elizabeth to be more aggressive in carving out time for deep work. The result was the following more substantial schedule: I know from my own academic experience that a pair of four to five hour chunks each week can really support some serious academic output. On the flip side Elizabeths original proposal of three apologetic short bursts scheduled early in the morning and at the end of the day wouldnt have likely been that effective. This example is important because it underscores a psychological reality of productivity that can be lost among all the posturing around systems and tools. Its easy to feel like its impolite to prioritize work thats important to you above other peoples demands. This is what led Elizabeth at first to limit her research to only the few scraps of time during her week that no one else had already claimed. Sustainable production of valuable work however requires a dash of selfishness. Elizabeths revised schedule was exactly right. No reasonable person would find her investment in a once-a-week babysitter or request for weekend dad time to be excessive. These acts of self-prioritization were objectively speaking small. But they made a large difference in Elizabeths ability to produce the tenure-caliber work she knew she had in her. Your work matters. Its okay to fight for it in your schedule. #### Lauras new book will be released in October. Shes offering some nice bonuses however if you pre-order it now. ( Learn more here. ) Hi Cal This is a very timely topic for me. Ive been running a series on my blog on time management for fiction writers because there are some areas no one talks about. Most productivity advice is framed from the perspective of work. If you have a side hustle (or a personal life) its kind of this thing on the side like vegetables you dont want to eat. I write fiction after work. When COVID shut everything down it allowed me to pull back from the chaos that my work had been and get better control over it. Other peoples delegation by emergency had chipped away at my agency and had become an energy suck. By the time I got home I was all used up and didnt have the energy or the creativity to write. Not only that I brought some of the bad firefighting habits home with me and that affected the administrative side of publishing. I had to learn how to rebalance work in a saner way so I could make time for my writing after work. Its been a huge learning experience of how much work influenced my personal life. Its also an area thats not paid enough attention to in a lot of productivity advice. Hey Cal My problem is not social media but News I like reading news current affairs geo politics economy finance infrastructure and what now. And I dont just read news but go to the depth of it for ex: read more about the leader/country in news their history spend hours in maps and so on and so forth with web surfing. I am a software engineer but spent a lot of time on above during and outside of my work -I feel it is important to know all this and everybody show know this and not be ignorant(I may be wrong) but this has become prevalent since we are doing WFH from Covid-2020. I see folks about social media addiction but I dont spend time on facebook but rather on News or Information/learning videos(youtube) . Have you come across such an usecase before? If yes what advice you gave? Hi Mayank. I think this post says something about news consumption and may help you: https://www.calnewport.com/blog/2020/08/25/focus-week-give-your-brain-some-breathing-room/ Hello Mayank. Ive come to rely pretty heavily on newsletters to help me filter news and world events in a timely way. I really like the Flip Side for a US-focused newsletter and I designed a weekly newsletter (timtalkspolitics.substack.com) that summarizes major world events that can be read in 10 minutes or can occupy that 45-minute daily slot like that discussed in the piece that Andrs links to. I know this sounds somewhat self-promotional but I only share it b/c as someone who studies world politics (international relations is my academic field) I needed a way to focus on my research while still staying up on current events which kind of sounds similar to where youre at. Its easy to feel like its impolite to prioritize work thats important to you above other peoples demands. THIS. This is exactly why so many professional women struggle. For women prioritizing our own work/goals/fill-in-the-blank over kids/spouses/parents/etc. feels morally wrong and theres a heap of guilt that comes with it if we do finally muster the courage to do it. Thank you so much for spotlighting this example Cal. I have to disagree with this advice. The reality for most academics who are mothers and fathers is that shorter yet frequent devoted time allotments are often all that is available. Professor Robert Boice in his research on academic faculty found that Brief Daily Sessions (BDS) allowed academics to produce more work than less frequent longer sessions. Boices books (e.g. Advice for New Faculty Members: Nihil Nimis) provide data on what practices actually produce more innovative ideas and more quantity and quality of research. Boice also addresses how women and faculty of color (including women faculty of color) are often asked to take on more service and teaching than their male counterparts. Given what Boices research has shown (and my own experiences as a female tenured academic) that two longer sessions wont produce the quantity or quality that is probably necessary for tenure today. Boice noted short and regular sessions produced more publications than occasional bursts of long writing sessions. This does not mean having two weekly writing sessions lasting a few hours produces less work than three one-hour sessions in the long run. I have not read this latest book by Vanderkam and I am assuming Elizabeth is adding those two longer sessions on top of the three one-hour sessions. These two combined would produce more tenure worthy work than having three one-hour sessions. Hopefully Elizabeth does not have as many service work as some of us who are tenured female and minority end up taking up. I trust Elizabeth keeps those sessions sacred for writing at least while on tenure-track. Boice does not recommend three 1 hour sessions. He does note very clearly across multiple research projects that BDS produce more work than long tiring sessions. Regardless it is consistent sessions of writing that produces writing. Hi from Turkey Cal! Ive just finished Digital Minimalism and I deactivated my social media accounts. Since then I am planning my week day by day. Its been two week and Ive finished four books. I am thankful for your hardwork and mind-opener books. Thanks so much for highlighting the need for self-prioritization in this context it is incredibly validating! I cannot agree more with Sams comment above (see Sept 24). I appreciate your work! It would be cool if you wrote more about academic productivity. There hasnt been anything related to computer science in awhile. Comment Save my name email and website in this browser for the next time I comment. Cal launched the Study Hacks blog at calnewport.com in 2007 and has been regularly publishing essays here ever since. Over 2000000 people a year visit this site to read Cal's weekly posts about technology productivity and the quest to live and work deeply in an increasingly distracted world while tens of thousands more subscribe to have these essays delivered directly to their inbox (see the sign-up form below). To read more you can browse more than 15 years of past essays in the archive . In the fall of 2022 Cal launched a new portal TheDeepLife.com to serve as the online home for all other content relevant to the deep life movement he helped initiate. Here you can find all past episodes of Cal's popular podcast Deep Questions and explore an extensive library of original videos. This site is the online home for the computer science professor and bestselling author Cal Newport. Here you can learn more about Cal and both his general-audience and academic writing. You can also browse and subscribe to his long-running weekly essay series. For more on Cal's podcast videos and online courses please visit his media portal TheDeepLife.com . Academic Communication [emailprotected] Media Inquires [emailprotected] All Other Requests See Contact Page
14,129
GOOD
Youtube.js full-featured wrapper around YouTube's private API (github.com/luanrt) A wrapper around YouTube's internal API reverse engineering InnerTube Use Git or checkout with SVN using the web URL. Work fast with our official CLI. Learn more about the CLI . Please sign in to use Codespaces. If nothing happens download GitHub Desktop and try again. If nothing happens download GitHub Desktop and try again. If nothing happens download Xcode and try again. Your codespace will open once ready. There was a problem preparing your codespace please try again. A full-featured wrapper around the InnerTube API Special thanks to: API to get search engine results with ease. InnerTube is an API used by all YouTube clients. It was created to simplify the deployment of new features and experiments across the platform 1 . This library manages all low-level communication with InnerTube providing a simple and efficient way to interact with YouTube programmatically. Its design aims to closely emulate an actual client including the parsing of API responses. If you have any questions or need help feel free to reach out to us on our Discord server or open an issue here . YouTube.js runs on Node.js Deno and modern browsers. It requires a runtime with the following features: When using Deno you can import YouTube.js directly from deno.land: Create an InnerTube instance: To use YouTube.js in the browser you must proxy requests through your own server. You can see our simple reference implementation in Deno at examples/browser/proxy/deno.ts . You may provide your own fetch implementation to be used by YouTube.js which we will use to modify and send the requests through a proxy. See examples/browser/web for a simple example using Vite . YouTube.js supports streaming of videos in the browser by converting YouTube's streaming data into an MPEG-DASH manifest. The example below uses dash.js to play the video. A fully working example can be found in examples/browser/web . Alternatively you can view it live at ytjsexample.pages.dev . You may provide your own fetch implementation to be used by YouTube.js. This can be useful in some cases to modify the requests before they are sent and transform the responses before they are returned (eg. for proxies). Caching the transformed player instance can greatly improve the performance. Our UniversalCache implementation uses different caching methods depending on the environment. In Node.js we use the node:fs module Deno.writeFile() in Deno and indexedDB in browsers. By default the cache stores data in the operating system's temporary directory (or indexedDB in browsers). You can make this cache persistent by specifying the path to the cache directory which will be created if it doesn't exist. Innertube Retrieves video info. Returns : Promise<VideoInfo> <info>#like() <info>#dislike() <info>#removeRating() <info>#getLiveChat() <info>#getTrailerInfo() <info>#chooseFormat(options) <info>#toDash(url_transformer? format_filter?) <info>#download(options) <info>#filters <info>#selectFilter(name) <info>#getWatchNextContinuation() <info>#addToWatchHistory() <info>#autoplay_video_endpoint <info>#has_trailer <info>#page Suitable for cases where you only need basic video metadata. Also it is faster than getInfo() . Returns : Promise<VideoInfo> Searches the given query on YouTube. Returns : Promise<Search> Note Search extends the Feed class. <search>#selectRefinementCard(SearchRefinementCard | string) <search>#refinement_card_queries <search>#getContinuation() Retrieves search suggestions for given query. Returns : Promise<string[]> Retrieves comments for given video. Returns : Promise<Comments> See ./examples/comments for examples. Retrieves YouTube's home feed. Returns : Promise<HomeFeed> Note HomeFeed extends the FilterableFeed class. <home_feed>#videos <home_feed>#posts <home_feed>#shelves <home_feed>#filters <home_feed>#applyFilter(name | ChipCloudChip) <home_feed>#getContinuation() Retrieves YouTube's content guide. Returns : Promise<Guide> Retrieves the account's library. Returns : Promise<Library> Note Library extends the Feed class. Retrieves watch history. Returns : Promise<History> Note History extends the Feed class. Retrieves trending content. Returns : Promise<TabbedFeed<IBrowseResponse>> Retrieves the subscriptions feed. Returns : Promise<Feed<IBrowseResponse>> Retrieves contents for a given channel. Returns : Promise<Channel> Note Channel extends the TabbedFeed class. See ./examples/channel for examples. Retrieves notifications. Returns : Promise<NotificationsMenu> Retrieves unseen notifications count. Returns : Promise<number> Retrieves playlist contents. Returns : Promise<Playlist> Note Playlist extends the Feed class. Retrieves a given hashtag's page. Returns : Promise<HashtagFeed> Note HashtagFeed extends the FilterableFeed class. Returns deciphered streaming data. Note This method will be deprecated in the future. We recommend retrieving streaming data from a VideoInfo or TrackInfo object instead if you want to select formats manually. Please refer to the following example: Returns : Promise<object> Downloads a given video. Returns : Promise<ReadableStream<Uint8Array>> See ./examples/download for examples. Resolves a given url. Returns : Promise<NavigationEndpoint> Utility to call navigation endpoints. Returns : Promise<T extends IParsedResponse | IParsedResponse | ApiResponse> YouTube.js is modular and easy to extend. Most of the methods classes and utilities used internally are exposed and can be used to implement your own extensions without having to modify the library's source code. For example let's say we want to implement a method to retrieve video info. We can do that by using an instance of the Actions class: Alternatively suppose we locate a NavigationEndpoint in a parsed response and want to see what happens when we call it: YouTube.js' parser enables you to parse InnerTube responses and convert their nodes into strongly-typed objects that are simple to manipulate. Additionally it provides numerous utility methods that make working with InnerTube a breeze. Here's an example of its usage: Documentation for the parser can be found here . We welcome all contributions issues and feature requests whether small or large. If you want to contribute feel free to check out our issues page and our guidelines . We are immensely grateful to all the wonderful people who have contributed to this project. A special shoutout to all our contributors! LuanRT - @thesciencephile - luan.lrt4@gmail.com Project Link: https://github.com/LuanRT/YouTube.js This project is not affiliated with endorsed or sponsored by YouTube or any of its affiliates or subsidiaries. All trademarks logos and brand names used in this project are the property of their respective owners and are used solely to describe the services provided. As such any usage of trademarks to refer to such services is considered nominative use. If you have any questions or concerns please contact me directly via email. Distributed under the MIT License. ( back to top ) https://gizmodo.com/how-project-innertube-helped-pull-youtube-out-of-the-gu-1704946491 A wrapper around YouTube's internal API reverse engineering InnerTube
14,144
BAD
Zelensky video deepfake (PS: I'm Ukrainian and just try to be sarcastic about the whole thing which is horrific be careful and take care) (PS2: considering our attitude towards the situation we're not even taking this video serious) [1] https://twitter.com/_delanay/status/1504048298520371201 [1] https://twitter.com/_delanay/status/1504048298520371201 > Varje meddelande att motsndet ska uppges r falskt. (Every message stating that resistance has ceased is false). No doubt something similar is stated in Ukraine. https://www.forsvarsmakten.se/siteassets/5-information-och-f... (Every message stating that resistance has ceased is false). No doubt something similar is stated in Ukraine. https://www.forsvarsmakten.se/siteassets/5-information-och-f... No doubt something similar is stated in Ukraine. https://www.forsvarsmakten.se/siteassets/5-information-och-f... https://www.forsvarsmakten.se/siteassets/5-information-och-f... The continuation of the phrase mentioned later in the same pamphlet is also nice: SV: Motstnd skall gras stndigt och i alla lgen. EN: Resistance shall be made constantly and in all situations. It also mentions the classic En svensk tiger (lit. A Swede stays silent) illustrated by a tiger in the Swedish colors since the word has double meaning in Swedish. Minor nitpick the correct translation isn't resistance has ceased but resistance shall cease. SV: Motstnd skall gras stndigt och i alla lgen. EN: Resistance shall be made constantly and in all situations. It also mentions the classic En svensk tiger (lit. A Swede stays silent) illustrated by a tiger in the Swedish colors since the word has double meaning in Swedish. Minor nitpick the correct translation isn't resistance has ceased but resistance shall cease. EN: Resistance shall be made constantly and in all situations. It also mentions the classic En svensk tiger (lit. A Swede stays silent) illustrated by a tiger in the Swedish colors since the word has double meaning in Swedish. Minor nitpick the correct translation isn't resistance has ceased but resistance shall cease. It also mentions the classic En svensk tiger (lit. A Swede stays silent) illustrated by a tiger in the Swedish colors since the word has double meaning in Swedish. Minor nitpick the correct translation isn't resistance has ceased but resistance shall cease. Minor nitpick the correct translation isn't resistance has ceased but resistance shall cease. Du har rtt :) I quoted and translated from memory then googled for the correct quote. The current statement is: > Om Sverige blir angripet av ett annat land kommer vi aldrig att ge upp. Alla uppgifter om att motstndet ska upphra r falska. I quoted and translated from memory then googled for the correct quote. The current statement is: > Om Sverige blir angripet av ett annat land kommer vi aldrig att ge upp. Alla uppgifter om att motstndet ska upphra r falska. The current statement is: > Om Sverige blir angripet av ett annat land kommer vi aldrig att ge upp. Alla uppgifter om att motstndet ska upphra r falska. > Om Sverige blir angripet av ett annat land kommer vi aldrig att ge upp. Alla uppgifter om att motstndet ska upphra r falska. https://en.m.wikipedia.org/wiki/Japanese_holdout Last confirmed holdout in 1974 almost 30 years after ww2 ended for Japan. Last confirmed holdout in 1974 almost 30 years after ww2 ended for Japan. The caption implies that this is from 1993 but it's a much more recent crop of cadets on a visit to Vares later. Not necessarily. Here it is: > Cadets view the sign on the Nordbat 2 school in Vare and testify of the city's appreciation of the Swedish UN Federation's efforts in autumn 1993. (Johan Nordn/Frsvarsmakten) That must be intended to say the appreciated efforts took place in autumn 1993. But yeah somewhat ambiguous. > but it's a much more recent crop of cadets on a visit to Vares later. Kind of a pilgrimage? If the pic was relatively recent at the time of that blog post (September 2017) many (most?) of those cadets probably hadn't even been born in 1993. > Cadets view the sign on the Nordbat 2 school in Vare and testify of the city's appreciation of the Swedish UN Federation's efforts in autumn 1993. (Johan Nordn/Frsvarsmakten) That must be intended to say the appreciated efforts took place in autumn 1993. But yeah somewhat ambiguous. > but it's a much more recent crop of cadets on a visit to Vares later. Kind of a pilgrimage? If the pic was relatively recent at the time of that blog post (September 2017) many (most?) of those cadets probably hadn't even been born in 1993. That must be intended to say the appreciated efforts took place in autumn 1993. But yeah somewhat ambiguous. > but it's a much more recent crop of cadets on a visit to Vares later. Kind of a pilgrimage? If the pic was relatively recent at the time of that blog post (September 2017) many (most?) of those cadets probably hadn't even been born in 1993. > but it's a much more recent crop of cadets on a visit to Vares later. Kind of a pilgrimage? If the pic was relatively recent at the time of that blog post (September 2017) many (most?) of those cadets probably hadn't even been born in 1993. Kind of a pilgrimage? If the pic was relatively recent at the time of that blog post (September 2017) many (most?) of those cadets probably hadn't even been born in 1993. I'm not middle-aged I'm from the Middle Ages. (Works better in Swedish: Jag r inte medellders jag r medeltida.) (Works better in Swedish: Jag r inte medellders jag r medeltida.) By the way I'm curious about the word uppges . After running the sentence both through DeepL.com and Google Translate they seem to return the translation Any message that the resistance should be stated is false (though DeepL does list abandoned and quit among many options in the translation result dropdown). Also after checking out Wiktionary [0]. I see it only lists to give as a fact; to state as a translation for the verb. This is the first time DeepL has failed me in providing a reasonable translation on the first try. Is this usage of uppges to mean something analogous to cease very rare or old fashioned and somehow missing from Wiktionary? Would the meaning of that sentence be unambiguous to any native Swede even if they had never seen that message before? [0] https://en.wiktionary.org/wiki/uppge This is the first time DeepL has failed me in providing a reasonable translation on the first try. Is this usage of uppges to mean something analogous to cease very rare or old fashioned and somehow missing from Wiktionary? Would the meaning of that sentence be unambiguous to any native Swede even if they had never seen that message before? [0] https://en.wiktionary.org/wiki/uppge [0] https://en.wiktionary.org/wiki/uppge The text is from the 60's and it shows in exactly the type of language used. This is why we linguistic prescriptivists fight our lonely rearguard action: https://news.ycombinator.com/item?id=30712765 > Varje meddelande att motsndet ska uppges r falskt. a more direct translation: Every message that resistence should be given up is false a more direct translation: Every message that resistence should be given up is false > If Sweden is attacked by another country we will never give up. All information to the effect that resistance is to cease is false. I love this as in California the phone directories all had a section about what to do in an earthquake and other emergency. Local knowledge for local situations. The reason was that in those days the telephone book was the only book you could guarantee would be in every house (the unstated reason was that it was the only thing a government could use to push a message into every house -- even in the US where the phone system was nominally private the government exerted significant pressure on their operations). I wonder how many people even knew that section existed much less consulted it. The reason was that in those days the telephone book was the only book you could guarantee would be in every house (the unstated reason was that it was the only thing a government could use to push a message into every house -- even in the US where the phone system was nominally private the government exerted significant pressure on their operations). I wonder how many people even knew that section existed much less consulted it. I wonder how many people even knew that section existed much less consulted it. The Californian one on earthquakes? No idea. But the Swedish one on war: Pretty much everybody certainly knew of it and probably most had at least cursorily perused it. Stay Alert! Trust no one! Keep your laser handy! (OK that last one came from somewhere else). (OK that last one came from somewhere else). Which is exactly why RT and its American (and other) repeaters are so insiduous. The Computer is your friend. [1] https://wikiless.org/wiki/Paranoia_(role-playing_game)?lang=... [1] https://wikiless.org/wiki/Paranoia_(role-playing_game)?lang=... Is this a usage of ska I haven't learned? Do note however that Swedish is famous for multiple meanings of words. The verb ska (short form of skola) has at least 5 meanings. 1. will do <something>: jag ska bara ta frst 2. (conditionals) something could happen: om du hade pengar skulle du ha rd med en iphone 3. (enforcing rules): man ska inte sl sina barn 4. (signaling intention): jag ska ka p semester 5. (communicating an statement not nessecarily truthful): han ska vara vlhngd The verb ska (short form of skola) has at least 5 meanings. 1. will do <something>: jag ska bara ta frst 2. (conditionals) something could happen: om du hade pengar skulle du ha rd med en iphone 3. (enforcing rules): man ska inte sl sina barn 4. (signaling intention): jag ska ka p semester 5. (communicating an statement not nessecarily truthful): han ska vara vlhngd 1. will do <something>: jag ska bara ta frst 2. (conditionals) something could happen: om du hade pengar skulle du ha rd med en iphone 3. (enforcing rules): man ska inte sl sina barn 4. (signaling intention): jag ska ka p semester 5. (communicating an statement not nessecarily truthful): han ska vara vlhngd 2. (conditionals) something could happen: om du hade pengar skulle du ha rd med en iphone 3. (enforcing rules): man ska inte sl sina barn 4. (signaling intention): jag ska ka p semester 5. (communicating an statement not nessecarily truthful): han ska vara vlhngd 3. (enforcing rules): man ska inte sl sina barn 4. (signaling intention): jag ska ka p semester 5. (communicating an statement not nessecarily truthful): han ska vara vlhngd 4. (signaling intention): jag ska ka p semester 5. (communicating an statement not nessecarily truthful): han ska vara vlhngd 5. (communicating an statement not nessecarily truthful): han ska vara vlhngd https://petapixel.com/2012/10/01/famous-valley-of-the-shadow... I guess hindsight is 20-20 but does kind of seem like an obvious place to look no? Better models are coming out which are already pretrained on a significant amount of data so the model already learned a lot about what is common to all example of video generation (keeping the edges aligned coherently at every frame keeping texture and lighting coherent etc.) and will not need to re-learn that for every target. Since initially deepfake models were trained from scratch for every single target you had to provide a lot of data from the person you want to target so that the model can learn what is common as well as what is specific. Now you can get descent performance with much less data since you only need to learn the specifities. However this only helps if you need a limited deepfake: The model cannot infer the exact facial expression of the target when they are for example laughing unless you provided an example of that in the training data (assuming there is no way to infer the laughing expression from someone by looking at other provided expressions). It will instead generate a generic laugh. All missing informations are substituted by what was seen on average in the pre-training phase. That wouldn't work for a long complex deepfake meant to be sent to someone reasonably close with the target. But for the types of deepfake where it's targeting a personality that we all know but not very well at all much less data is neeeded than before for a similar result. Since initially deepfake models were trained from scratch for every single target you had to provide a lot of data from the person you want to target so that the model can learn what is common as well as what is specific. Now you can get descent performance with much less data since you only need to learn the specifities. However this only helps if you need a limited deepfake: The model cannot infer the exact facial expression of the target when they are for example laughing unless you provided an example of that in the training data (assuming there is no way to infer the laughing expression from someone by looking at other provided expressions). It will instead generate a generic laugh. All missing informations are substituted by what was seen on average in the pre-training phase. That wouldn't work for a long complex deepfake meant to be sent to someone reasonably close with the target. But for the types of deepfake where it's targeting a personality that we all know but not very well at all much less data is neeeded than before for a similar result. Now you can get descent performance with much less data since you only need to learn the specifities. However this only helps if you need a limited deepfake: The model cannot infer the exact facial expression of the target when they are for example laughing unless you provided an example of that in the training data (assuming there is no way to infer the laughing expression from someone by looking at other provided expressions). It will instead generate a generic laugh. All missing informations are substituted by what was seen on average in the pre-training phase. That wouldn't work for a long complex deepfake meant to be sent to someone reasonably close with the target. But for the types of deepfake where it's targeting a personality that we all know but not very well at all much less data is neeeded than before for a similar result. However this only helps if you need a limited deepfake: The model cannot infer the exact facial expression of the target when they are for example laughing unless you provided an example of that in the training data (assuming there is no way to infer the laughing expression from someone by looking at other provided expressions). It will instead generate a generic laugh. All missing informations are substituted by what was seen on average in the pre-training phase. That wouldn't work for a long complex deepfake meant to be sent to someone reasonably close with the target. But for the types of deepfake where it's targeting a personality that we all know but not very well at all much less data is neeeded than before for a similar result. That wouldn't work for a long complex deepfake meant to be sent to someone reasonably close with the target. But for the types of deepfake where it's targeting a personality that we all know but not very well at all much less data is neeeded than before for a similar result. But for the types of deepfake where it's targeting a personality that we all know but not very well at all much less data is neeeded than before for a similar result. You can fake it reasonably but you need to have a very large collection of audio clips to do so and if you do a bad job it literally jumps out at the viewer. Video might be off but it requires close attention and large screens to notice - much easier to miss if you're viewing on a phone. Video might be off but it requires close attention and large screens to notice - much easier to miss if you're viewing on a phone. One reason researchers suspected this must be possible is that human beings as well as other animals can learn stuff by watching it for just a few seconds. But we have some prior baggage because we spent our whole lives learning.. other vaguely related stuff and it turns out that knowledge is often transferable. [0] This isn't the only way there's also meta learning [0] This isn't the only way there's also meta learning You can take a huge GAN and then use a single image of a face as a guide for navigating the latent space. I think the idea is that data needed to imitate a _specific person_ would require less data. Overall a model like that might have orders of magnitude more data in general and maybe a smaller amount required to imitate the features of a particular one. I imagine it like - A master cabinet maker can make new variations of cabinets super easily once they've made hundreds of similar cabinets? I imagine it like - A master cabinet maker can make new variations of cabinets super easily once they've made hundreds of similar cabinets? Especially in coordination with a media campaign it would be an effective way of undermining the opponent by making them look simultaneously grossly unethical and desperate. Even better if you can get the FBI involved to investigate whether the video was created directly by the opponent or only by his supporters. And anybody describing what actually happened could easily be straw manned into sounding like a nutter. And the quality is already perfectly fine for this. And the quality is already perfectly fine for this. Also the script (the text that is being read) is written as if the target audience are Russian not Ukrainian people (because it's based on propaganda narratives that people outside of Russia are not familiar with). This is such a poor fake from every standpoint. Most of the people whod believe a video saying the opposite of what theyd expect is real have never been aware of deep fakes. And now thanks to this poor deepfake they are aware of deepfakes and are primed to question future videos even if they seem real. And now thanks to this poor deepfake they are aware of deepfakes and are primed to question future videos even if they seem real. They may also be primed to question real videos. Aka flood the zone with shit. Years ago I read somewhere that the way Russia does cyberwarfare is less organized than most people suspect. I'm not sure if it's true but the argument is that it's more of a lousy goosy free agent type deal. Some of these agents are very clever but others not so much so you have a range of competencies just trying stuff. That could be wrong or they may have evolved a lot since but amateurish deep fakes could be a fit. Some random kid just trying stuff and hoping for a pay day / bounty? Pure speculation though. That could be wrong or they may have evolved a lot since but amateurish deep fakes could be a fit. Some random kid just trying stuff and hoping for a pay day / bounty? Pure speculation though. Videos being fake? That's asking an order of magnitude more scepticism from them. I had the feeling Russia hasn't used their best men and equipment yet which also seem less likely bu the day Such as: Zelensky is a nazi the Ukraine war is all CGI anything related to Hillary or Bill Clinton (yes still) and so on and so forth. Information dissemination must be similar to fluid dynamics. It just has to be. Information dissemination must be similar to fluid dynamics. It just has to be. Its simpler and more insidious than that. Ill use the old Eleanor Roosevelt quote: Great minds discuss ideas; average minds discuss events; small minds discuss people. Most people are not that intellectual and probably spent most of their life gossiping. They wouldnt know how to even discuss certain topics if the low hanging fruit of gossip and conspiracy wasnt available to them to add something in a social interaction. Take Reddit for example some of them wouldnt even know what to say if they couldnt add that one immediate punch line (followed by sequential punchlines by other people). If you take this away they will literally have no way of joining the convo. They wont be able to come up with an angle ask a probing question entertain an alternative perspective provide analogues or metaphors theyd simply have no voice. Its akin to providing these people with what do you think about the weather today? as a lifeline in casual social interaction. Great minds discuss ideas; average minds discuss events; small minds discuss people. Most people are not that intellectual and probably spent most of their life gossiping. They wouldnt know how to even discuss certain topics if the low hanging fruit of gossip and conspiracy wasnt available to them to add something in a social interaction. Take Reddit for example some of them wouldnt even know what to say if they couldnt add that one immediate punch line (followed by sequential punchlines by other people). If you take this away they will literally have no way of joining the convo. They wont be able to come up with an angle ask a probing question entertain an alternative perspective provide analogues or metaphors theyd simply have no voice. Its akin to providing these people with what do you think about the weather today? as a lifeline in casual social interaction. Most people are not that intellectual and probably spent most of their life gossiping. They wouldnt know how to even discuss certain topics if the low hanging fruit of gossip and conspiracy wasnt available to them to add something in a social interaction. Take Reddit for example some of them wouldnt even know what to say if they couldnt add that one immediate punch line (followed by sequential punchlines by other people). If you take this away they will literally have no way of joining the convo. They wont be able to come up with an angle ask a probing question entertain an alternative perspective provide analogues or metaphors theyd simply have no voice. Its akin to providing these people with what do you think about the weather today? as a lifeline in casual social interaction. Take Reddit for example some of them wouldnt even know what to say if they couldnt add that one immediate punch line (followed by sequential punchlines by other people). If you take this away they will literally have no way of joining the convo. They wont be able to come up with an angle ask a probing question entertain an alternative perspective provide analogues or metaphors theyd simply have no voice. Its akin to providing these people with what do you think about the weather today? as a lifeline in casual social interaction. They wont be able to come up with an angle ask a probing question entertain an alternative perspective provide analogues or metaphors theyd simply have no voice. Its akin to providing these people with what do you think about the weather today? as a lifeline in casual social interaction. The quote seems appropriate for a person that doesnt want to be talked about. I get what its going for but only small minds talk about people feels like it serves political elites very well. Dont talk about me and my conduct. Talk about the generalised idea of conduct by people who are somewhat like me! I studied politics at university and learned enough about political ideology to last me a lifetime. But my biggest takeaway from history is that ideology almost always plays a back seat to human beings that want to retain or expand their power. Ideas are pretty malleable around that aim. I get what its going for but only small minds talk about people feels like it serves political elites very well. Dont talk about me and my conduct. Talk about the generalised idea of conduct by people who are somewhat like me! I studied politics at university and learned enough about political ideology to last me a lifetime. But my biggest takeaway from history is that ideology almost always plays a back seat to human beings that want to retain or expand their power. Ideas are pretty malleable around that aim. I studied politics at university and learned enough about political ideology to last me a lifetime. But my biggest takeaway from history is that ideology almost always plays a back seat to human beings that want to retain or expand their power. Ideas are pretty malleable around that aim. http://www.dpcamps.org/repatriation3.html One thing is to discuss how candidate X chooses to dress whether candidate Y cheated on their partner or how candidate Z looked so stupid in that incident yesterday. Another very different thing is to discuss candidate X 's personal background (and how it makes them more likely to understand a given issue) that candidate Y does not practice what they preach (and probably cannot be trusted) or that candidate Z has owned up to their screw-up yesterday (and self-criticism is a good trait for leadership). The frustration is why is gossip and conspiracy lifelines necessary for topics that most people should have no issue discussing? You really cant add anything without that stuff? Anyways I heard Hunter Biden is a drug addict and Putin has cancer and thats why hes invading Ukraine. Anyways I heard Hunter Biden is a drug addict and Putin has cancer and thats why hes invading Ukraine. Having a topic under discussion is hardly gossip or a conspiracy lifeline. Politicians generally channel ideas in order to get elected - and then screw everyone over once they have power for 4 years. See: https://quoteinvestigator.com/2014/11/18/great-minds/ That being said you are absolutely on your own. The hospital struggles the schools struggle the roads are awful and anything remotely related to 'government' is funded just above the point of being dead. And if you do not seem to be 'from here' (read: white straight middle- to upper-middle class or have the right last name) you absolutely will be excluded from most social religious and other institutions. In other words it's not all puppies and sunshine. That other 10% is political discussion. Which is a hot garbage pile covered in blatant racism and antisemitism. In other words it's not all puppies and sunshine. That other 10% is political discussion. Which is a hot garbage pile covered in blatant racism and antisemitism. That other 10% is political discussion. Which is a hot garbage pile covered in blatant racism and antisemitism. I know a woman who lives in Chicago who doesn't believe in dinosaurs. It's not a religious thing it's just that dinosaurs don't fit into her mindset somehow. I dated a woman in New York (native New Yorker) whose entire family believed that the moon landings were fake. I know a guy in Houston who believes that drinking his own pee is helping him live longer. Crazy is everywhere. It obeys no geographic social wealth or political boundaries. I dated a woman in New York (native New Yorker) whose entire family believed that the moon landings were fake. I know a guy in Houston who believes that drinking his own pee is helping him live longer. Crazy is everywhere. It obeys no geographic social wealth or political boundaries. I know a guy in Houston who believes that drinking his own pee is helping him live longer. Crazy is everywhere. It obeys no geographic social wealth or political boundaries. Crazy is everywhere. It obeys no geographic social wealth or political boundaries. However organized coordinated crazy is a problem even more so when it is sufficiently organized and coordinated to become an effective player in our political system. If you include reactions sure. But regular fluid dynamics very much leaves the substance intact. Water flows down a stream and is still water at the end. Even that has fish shit added. Heisenberg supposedly said When I meet God Im going to ask him about relativity and turbulence. I think he'll only have an answer for the first. As similar as fluid dynamics are to a functional public education system The the root cause for that is probably the extreme distrust of the MSM that's been cultivated for decades. The ironic thing is many of the rank-and-file of those people think that distrust gives them greater access to the truth when in reality it just makes them easier to lie to. I've had some heated discussions with my father over this. He has a disdain for anything reported by main-stream media that is at least partially warranted. But he overcorrects to this by accepting the reporting by fringe media outlets / decentralized media figures (podcasters youtubers etc) without the same critical lens that he would otherwise apply. If someone says something to the tune of: the MSM won't report on this because <insert reasoning here> but we will! he almost always accepts what they say next. It's very frustrating for me since he will say this line as an automatic I win this argument trump card on any idea regardless of the independent merits. This shouldn't be a bold statement but I feel like some people need this shouted at them: Just because something is reported on by a main stream media outlet doesn't mean it's automatically true. And conversely just because something is reported on by a main stream media outlet doesn't mean it's automatically false either. Alternative media is perfectly capable of presenting misleading or false information! This shouldn't be a bold statement but I feel like some people need this shouted at them: Just because something is reported on by a main stream media outlet doesn't mean it's automatically true. And conversely just because something is reported on by a main stream media outlet doesn't mean it's automatically false either. Alternative media is perfectly capable of presenting misleading or false information! Care to elaborate? Intuitively what you're saying sounds plausible but not why that would be the case. Many of these same people consider themselves skeptics because they instinctively distrust the official sources. (ii) if you can't believe mainstream media it's hard to search for information that might contradict $radicaltheory never mind trust someone else's thoroughly researched and sourced one. So even if it's a pretty wild theory that lots of other stuff seems to contradict and very little seems to corroborate how can we be sure it isn't a coverup . Scepticism about well established facts leads to agnosticism about the veracity of well-established fiction. (iii)if you tell people this and they laugh at you and say it's ridiculous it's because they're the credulous idiots who believe anything they read in certain sources is a very powerful meme. (iv) people who don't believe in certain sources still tend to want to get stuff they can believe in from somewhere and the average website that concurs that MSM is not to be trusted and embraces the meme that its reader base are the true freethinking sceptics publishes considerably more fake news and terrible takes than the mainstream media (iii)if you tell people this and they laugh at you and say it's ridiculous it's because they're the credulous idiots who believe anything they read in certain sources is a very powerful meme. (iv) people who don't believe in certain sources still tend to want to get stuff they can believe in from somewhere and the average website that concurs that MSM is not to be trusted and embraces the meme that its reader base are the true freethinking sceptics publishes considerably more fake news and terrible takes than the mainstream media (iv) people who don't believe in certain sources still tend to want to get stuff they can believe in from somewhere and the average website that concurs that MSM is not to be trusted and embraces the meme that its reader base are the true freethinking sceptics publishes considerably more fake news and terrible takes than the mainstream media > Network Error: dns_unresolved_hostname The globalist elites have had it taken down! The globalist elites have had it taken down! It makes them easier to control. The result is many conservative circles are still obsessed with her even though she is relatively unimportant. I've noted this before but being in the public eye for too long tends to be really bad news for
14,169
BAD
Zero energy ready homes are coming (energy.gov) Scott Norman and WATERSHED built this 3542-square-foot custom home in Fairhope Alabama to DOE's ZERH single-family home specifications. The homeowners report that this super-insulated home holds temperatures easily and doesnt require much heating and cooling. The ventilating dehumidifiers provide fresh air and dehumidification for a healthy interior environment and increased comfort. U.S. Secretary of Energy Jennifer M. Granholm has a calendar on her wall. She crosses out each passing day to remind herself how many guaranteed days left she has in officedays in which she can make a difference in our fight against the climate crisis. There's a refrain she often repeats when discussing the sector of our economy that uses more energy than any other: Americas path to a net-zero carbon economy runs straight through our nations buildings she saysand she's right. America's nearly 130 million residential and commercial buildings use 39% of our nation's energy and 74% of its electricity accounting for an even greater share of peak energy demand in some parts of the country during our most energy-hungry seasons. That enormous energy appetite is responsible for about 35% of our country's carbon emissions released directly from the homes and offices we heat with fossil fuels and indirectly from the power plants that generate our electricity. If we're going to solve the climate crisis we need to help households and commercial buildings across the country reduce their emissions and convert to cheaper cleaner energy. I like Secretary Granholm's line not just because she's my boss but because it serves as a reminder that some of the more familiar climate solutions like renewable power systems and electric vehicles are necessary components of a broader strategy. The fight for a better climate starts at home in our workplaces and in all the other indoor environments where we spend more than 90% of our lives. Thankfully DOE is making progress in its effort to make buildings betternot just for the sake of the climate but for also for the health comfort and prosperity of the people living in them. Yesterday DOE announced another exciting step forward in the long journey to building a net-zero carbon economy. For the first time the federal government has established substantial incentives to help builders make DOE-certified Zero Energy Ready Homes (ZERH) their standard offering. To this point our ZEHR program has set the federal government's highest standards for energy and environmental performance in newly built homes. Now we are thrilled to formally raise those standards higher than ever before with Version 2 of our national program requirements for single-family homes. The driving force behind the ZERH program is our belief that all homes should be built to this standard. Every certified ZERH is independently verified to meet program requirements including certifications to both the Environmental Protection Agency's (EPA) Residential New Construction Program (ENERGY STAR) and Indoor airPLUS (IAP) program. Together with DOE-funded advanced construction techniques technological innovation and other industry best practices the ZERH program offers a standardized comprehensive approach to home-building that's designed to be widely attainable and easily replicable. Lopez Community Land Trust built this 561-square-foot affordable home on Lopez Island Washington to the high-performance criteria of DOE's Zero Energy Ready Home program that delivers a $20-per-month average monthly energy bill. With the announcement of the new standard DOE has positioned the ZERH program for substantial growth. Here are just a few measures of the progress this program has facilitated in the buildings sector: On the policy front we've made considerable progress after many years of stagnation. President Biden's Inflation Reduction Act of 2022 (IRA) updated and extended the 45L tax credit for energy-efficient new homes for the next 10 years. In 2023 new homes certified to the ZERH Version 1 program requirements will be eligible for a $5000 tax credit. The new ZERH Version 2 program requirements will be phased in for the 45L tax credit on certified homes acquired on or after Jan. 1 2024. Additionally more than 15 states and local governments reference the ZERH program in their low-income housing tax credits incentive programs and building codes. And over the past 10 years more effective energy codes have also steadily raised the bar for minimum efficiency levels in buildings across the country which pushes more builders to build ZERHs that meet or often exceed local building energy codes. All these trends have positioned zero energy ready homes for significant growthand it can't come soon enough. We hope our new requirements not only spur more builders to construct zero energy ready homes across the country but make them better and more accessible to anyone who wants to live in them. Forrestal Building 1000 Independence Avenue SW Washington DC 20585 Forrestal Building 1000 Independence Avenue SW Washington DC 20585 An office of
14,174
BAD
Zero-click hacks are growing in popularity (bloombergquint.com) (Bloomberg Businessweek) -- As a journalist working for the Arab news network Alaraby Rania Dridi said shes taken precautions to avoid being targeted by hackers keeping an eyeout for suspicious messages and avoidingclicking on links or opening attachmentsfrom people she doesnt know. Dridis phone got compromised anyway with whats called azero-click attack which allows a hacker to break into a phone or computer even if its user doesnt open a malicious link or attachment.Hackers insteadexploit a series of security flaws in operating systems such as Apple Inc.siOS or Googles Android to breach a device without having to dupe their victim into taking any action. Once inside they can install spyware capable of stealing data listening in on callsand tracking the users location. With peoplemore wary than ever about clicking on suspicious links in emails and text messages zero-click hacks are being used more frequently by government agencies to spy on activists journalists and others according to more than a dozen surveillance company employees security researchers and hackers interviewed by Bloomberg News. Once the preserve of a few intelligence agencies the technology needed for zero-click hacks is now being sold to governments by a small number of companies the most prominent of which isIsraels NSO Group. Bloomberg News has learned that at least three other Israeli companies Paragon CandiruandCognyte Software Ltd. have developed zero-click hacking tools or offered them to clients according to former employees and partners of those companies demonstrating that the technology is becoming more widespread in the surveillance industry. There are certain steps that a potential victim can take that mightreduce the chances of a successful zero-click attack including keeping a device updated. But some of the more effective methods including uninstalling certain messaging apps that hackers can use as gateways to breach a device arent practical because people rely on them for communication saidBill Marczak a senior research fellow at Citizen Lab a research group at the University of Toronto that focuses on abuses of surveillance technology. Dridi who is based in London said the hackforced her to shut down some ofher social media accounts and left her isolatedand fearful for her safety. They ruined my life said Dridi who suspects she was targeted because of her reporting on womens rights in the Arab worldor her connection to other journalists who are high-profile critics of Middle Eastern governments.I tried to just go back to normal. But after that I suffered from depression and I didnt find any support. Its not known how many people have been targeted with zero-click hacks because theyare done in secret and the victims are often unaware. Human rights groups have tied zero-click technology fromNSO Group to attacks by governments on individuals or small groups of activists. A2019 lawsuit filed by Facebookaccused NSO Group of using a zero-click hacking method to implant spyware on the devices of 1400 people who used its WhatsApp service.NSO Group has disputed the allegations. The attacks can be difficult for security experts to detect and posenew challenges for technology giants such as Apple and Google as they seek to plug the security holes that hackers exploit. With zero clicks its possible for a phone to be hacked and no traces left behind whatsoever Marczak said. You can break into phones belonging to people who have good security awareness. The target is out of the loop. You dont have to convince them to do anything. It means even the most skeptical scrupulous targets can be spied on. Sometimes a zero-click hack doesn't go as planned and leaves traces that investigators can use to identify that a device has been compromised.In Dridis case administrators at Alaraby noticed suspicious activity on their computer networks and followed a digital trail that led them to her phone she said in an interview. Attackers use zero-click hacks to gain access to a device and then can install spyware such as NSO Groups Pegasus to secretly monitorthe user. Pegasus can covertly record emails phone calls and text messages track location and record video and audio using the phones inbuilt camera and microphone. Marczak and his colleagues at Citizen Lab analyzed Dridis iPhone XSMax and found evidence that it had been infected at least six times between October 2019 and July 2020 with NSO Groups Pegasus . On two occasions in July 2020 Dridis phone was targeted in zero-click attacks Citizen Lab concluded in a report which attributed thehacks tothe United Arab Emirates government. Dridi is now pursuing a lawsuit against the UAE government. Her solicitor Ida Aduwa said she will be seeking permission from a High Court judge in London in the next few weeks to proceed with the case. We want an acknowledgement that this is something that states cannot get away with Aduwa said. A representative for the UAE Embassy in Washington didnt respond to messages seeking comment. Marczak from Citizen Lab said most of the documented cases of zero-click hacks have been traced back to NSO Group. The companybegan deploying the method more frequentlyaround 2017 he said. NSO Group which was blacklisted by the U.S. in November for supplying spyware to governments that used it to maliciously target government officials journalistsbusinesspeopleactivists and others to silence dissent has said it sells its technologyexclusively to governments and law enforcement agencies as a tool to track down terrorists and criminals. The cyber intelligence field continues to grow and is much bigger than the NSO Group a spokesperson for the company saidin a statement to Bloomberg News. Yet an increasing number of experts who claim to be familiar with NSO Group are making allegations that are contractually and technologically impossible straining their credibility. The spokesperson said that NSO Group has terminated customer relationships due to human rights issues and wont sell cyber intelligence products to approximately 90 countries. The misuse of cyber intelligence tools is a serious matter the spokesperson said. In December security researchers at Google analyzed a zero-click exploit they said was developed byNSO Group which could be used to break into an iPhone by sending someone a fakeGIF image through iMessage. The researchers described the zero-click as one of the most technically sophisticated exploits we've ever seen and added that it showed NSO Group sold spy tools that rival those previously thought to be accessible to only a handful of nation states. The attacker doesn't need to send phishing messages; the exploit just works silently in the background the Google researchers wrote. While NSO Group has attracted the most media attention several competing companies in Israel are offering similar tools to help governments spy on mobile phones. At least four other Israeli companies have obtained or developed zero-click hacking technology according to employees of those companies surveillance industry professionals and other media reports. Tel Aviv-based Candiru a surveillance company that employs more than 120 people partnered with another Israeli firm Cognyte to offer governments zero-click spyware that can be installed on Android and iOS mobile devices according to two former Candiru employees. Paragon a firm founded by former members of Israelis Unit 8200 surveillance agency has developed its own zero-click hacking technology that it has marketed to governments in Europe and North America as a means to gain access to encrypted messaging apps such as WhatsApp and Signal according to two former Paragon employees. A fourth Israeli company QuaDream also has the ability to compromise Apple iPhones using zero-click hacks Reuters reported earlier this month. Hila Vazan a spokeswoman for Candiru said the company hadnt developed or sold any zero-click hacking technology though she acknowledged that Candiru had explored a collaboration with Cognyteto offer it to customers. The U.S. also blacklisted Candiru in November for supplying spyware to governments that used its technology maliciously. Paragon declined to comment. Representatives for Cognyte and QuaDream didnt return messages seeking comment. There is athrivingmarketplace in which hackers and brokers sell the latest zero-click vulnerabilities direct to government agencies sometimes for seven-figure sums according to surveillance industry professionals. One of the leading brokersis Zerodium an exploit acquisition platform that offers to payup to $2 million for a zero-click exploit that can break into the latest versions of Apples iOS software according to its website . Zerodium also offersup to $2.5 million for a zero-click that can be used to hack Android phones and up to $1 million for a zero-click that can be used to compromise Microsofts Windows computers. Zerodiums website says it has worked with more than 1500 security researchers and paid out more than $50 million in bounties fees paid to security researchers who discover software security vulnerabilities that can be used to hack into computers or phones. Once Zerodium has acquired the latest zero-click exploits from security researchers it then sells themto governments mainly in Europe and North America according to its website. A representative for Zerodium didnt respond to requests for comment. The company was incorporated in Delaware in 2015 but its not clear where its offices are currently located. In an interview with Bloomberg one Asia-based security researchersaid he had made several million dollars selling a series of zero-click exploits that could be used to hack iOS Android and BlackBerry phones in addition to Windows computers. The researcher who requested anonymity due to confidentiality agreementssaid he had sold some of his zero-click exploits to Zerodium. He identified one European country whose government or law enforcement agencies hacked phones using an exploithe sold. Other suppliers of zero-click exploits include Arity Business Inc. an operator based inLatvia and Estonia. Alex Prokopenko an executive at Arity said in an email that the company was founded in 2015 and works to identify a variety of software security vulnerabilities including zero-clicks. Aritythen sells the security vulnerabilities to government agencies and to companies that work with intelligence and law enforcement agencies sothey can be used tohack Windows computers in addition toiOS and Android phones he said. Prokopenko declined to name specific customers but said that Arity had sold its exploits in countries including Ireland Italy Spain Poland Ukraine Israel UAE Turkey Indiaand Singapore. Most of the companys sales he added were in the range of $200000 and $600000. Now exploits are much more popular with governments intelligenceand private military companies since earlier this tool was not as accessible as it is now Prokopenko said. The exploit is a digital weapon and its use must be regulated. The spread of encryption technology which protects the privacy of conversations sent through chat apps such as WhatsApp or Apples iMessage has made it harder for law enforcement and intelligence agencies to snoop on peoples conversations said Prokopenko. One of the only ways investigators can get access to encrypted communications is to hack into a device he said. That is why there are all these companies popping up because theres a market for it said Fionnbharr Davies a security researcher who formerly worked for U.S. and Australia-based Azimuth Security another company that he said develops zero-click exploits and sells them to governments. It only costs a couple million dollars to hack any iPhone that is so cheap from the perspective of a nation state. A representative for Azimuth Security didnt return a message seeking comment. Carine Kanimbas experience shows how difficult it can be to prevent a zero-click hack. For the last twoyears she has been campaigning for the release of her father Paul Rusesabagina a critic of the Rwandan government who was forcibly disappeared in August 2020 according to Human Rights Watch. Last year Rusesabagina who was the subject of the movie Hotel Rwandawas convicted of terrorism charges in a Rwandan court a proceeding his supporters say was politically motivated. Kanimba a joint U.S.-Belgian citizen said she knew there was a possibility that she might be under surveillance. In October 2020 her security advisers were so concerned that they destroyed her mobile phone. She purchased a new iPhone but last spring researchers at Amnesty International informed Kanimba that it had been breached in a zero-click hack and infected with NSO Groups Pegasus. A forensic analysis of her device reviewed by Bloomberg found that an attacker had used iMessage to send malicious push notifications. I never saw any message Kanimba said. The message arrives and disappears straight away or it arrives and you cannot see it. So there are no clicks no action from you. It just infects. A representative for the Rwandan government didnt respond to a message seeking comment. Nedal Al-Salman the acting president of the Bahrain Center for Human Rights spoke of a similar experience. Al-Salman said that she and four of her colleagues were informed last year that their phones had been compromised some of them in apparent zero-click attacks. According to Al-Salman two of her mobile phones an iPhone 11 and a Samsung Galaxy Note were hacked. Citizen Labs Marczak said he had not forensically analyzed Al-Salmans devices but said he had confirmed three of Al-Salmans colleagues had their phones infected with NSO Groups spyware. Al-Salman said she and her colleagues have faced repression in Bahrain where the government has cracked down on human rights and pro-democracy activism. Al-Salman said she has in the past been blocked from traveling outside of Bahrain and other current and former members of the Bahrain Center for Human Rights have been jailed or forced to live in exile. According to a Citizen Lab report published last year Bahrains government has deployed NSO Groups spyware to target activists and opposition political figures. A representative for the Embassy of Bahrain in Washington didnt respond to a request for comment. Everyone has personal information on their phones Al-Salman said whether it be messages that show arguments with a family member or videos of dancing with friends.But normally she said its only you who knows about it. 2022 Bloomberg L.P.
14,184
GOOD
Zig now has built-in HTTP server and client in std (github.com/ziglang)
14,196
BAD
Zuckerberg says FBI warning prompted Biden laptop story censorship (bbc.com) Mark Zuckerberg says Facebook restricting a story about Joe Biden's son during the 2020 election was based on FBI misinformation warnings. The New York Post alleged leaked emails from Hunter Biden's laptop showed the then vice-president was helping his son's business dealings in Ukraine. Facebook and Twitter restricted sharing of the article before reversing course amid allegations of censorship. Zuckerberg said that getting the decision wrong sucks. When we take down something that we're not supposed to that's the worst Zuckerberg said in a rare extended media interview on the Joe Rogan podcast. The New York Post story was released just weeks before the presidential election between Joe Biden and Donald Trump which Mr Biden won. It claimed that a laptop abandoned in a repair shop by Hunter Biden contained emails which included details of Hunter introducing a Ukrainian energy tycoon to his father and arranging a meeting. There is no record on Mr Biden's schedule that such a meeting ever took place. Critically it fed into long-running unproven allegations about corruption on Joe Biden's part to ensure his son's business success in Ukraine. In that context the New York Post story based on exclusive data no other news agency had access to was met with scepticism - and censored by social media outlets. Zuckerberg told Rogan: The background here is that the FBI came to us - some folks on our team - and was like 'hey just so you know you should be on high alert. We thought there was a lot of Russian propaganda in the 2016 election we have it on notice that basically there's about to be some kind of dump that's similar to that'. He said the FBI did not warn Facebook about the Biden story in particular - only that Facebook thought it fit that pattern. The article remains controversial. The hard drive at its centre was provided to the Post by Donald Trump's own lawyer Rudy Giuliani. More than a year after the story appeared the Washington Post conducted its own analysis and concluded the laptop and some emails were likely to be authentic - but the majority of data could not be verified due to sloppy handling of the data. Other once-sceptical news organisations such as the New York Times have agreed at least some of the emails are genuine. Rogan one of the most popular podcasters in the world with an audience of millions for each episode has himself been accused of spreading misinformation in the past . Asking Zuckerberg if he regretted suppressing the factual story the Facebook founder replied: It sucks... I think in the same way that having to go though a criminal trial but being proven innocent in the end sucks... in the end you're free. But Zuckerberg acknowledged that there remained disagreement about the story which he said was a hyper-political issue. Depending on what side of the political spectrum [you're on] you either think we didn't censor it enough or we censored it way too much. Facebook did not completely ban sharing of the article but instead limited how much its algorithm automatically shared it to other people for a week while third-party fact-checkers tried to verify the reporting. So while people could post the article and discuss it it was less likely to spread organically to new users. By contrast Twitter banned sharing of the article at all. Both social media companies found themselves blasted by US Republicans and Donald Trump supporters and had to explain their actions before a US Senate hearing in the following days. Meta Facebook's parent company highlighted that Zuckerberg had addressed the FBI warnings at that 2020 hearing saying of the Joe Rogan interview that none of this is new . But in a wide-ranging interview that covered Meta's virtual reality ambitions and Zuckerberg's personal life the creator of Facebook also talked about his dislike for dealing with such thorny issues. I didn't get into this to basically judge these things. I got into this to design technology that helps people connect he told Rogan. This whole thing that is arbitrating what is OK and what is not - I obviously have to be involved in that because at some level I run the company and I can't just abdicate that. But I also don't think that as a matter of governance you want all of that decision making vested in one individual. What was Hunter Biden doing in China and Ukraine? Potential tax crimes renew scrutiny of Hunter Biden Facebook and Twitter chiefs ordered to testify Biden article reignites social media bias claims Twitter changes policy after Biden article block 'Serious differences' hamper US debt ceiling talks Zelensky arrives in Japan for G7 summit US to let allies give F-16 fighter jets to Ukraine Japans 75-year pacifism hangs in balance as new threats loom Why the world cares who wins Turkey's presidency Triumphant Assad has waited out the storm You think you know Satanists? Maybe you don't Awards yoga and Eurovision: Photos of the week India's grandmother-granddaughter karate champs. Video India's grandmother-granddaughter karate champs Why G7 has eight more seats at the table this year How Ukraine is tackling the mental scars of war Taiwan looms large as Japan prepares to host G7 The Gen Z workers dressing to stand out How genetics can determine life choices How the 'naked' look took over fashion 2023 BBC. The BBC is not responsible for the content of external sites. Read about our approach to external linking.
14,217
GOOD
`COPY chmod` reduced the size of my container image by 35% (vamc19.dev) Earlier this week I was writing a Dockerfile to download and run a binary when I noticed the image size was way more than what I would expect. Im using ubuntu:21.10 as the base image which is about 70MB. The binary Im running is about 80MB. Other packages Im installing would add 10-ish MB. But the image size is 267MB? Clearly Im doing something wrong. But what? My Dockerfile is fairly simple and what I considered idiomatic: I checked the history of the image to see the size of individual layers. The problem became very apparent The layer created by COPY is 87.7MB which is exactly the size of the extracted binary. So that is normal. Why is the layer created by RUN 94.4MB? What am I doing in it? Im creating a couple of empty directories running chmod on the binary and installing 4 packages. Apt says the packages would only consume ~6MB of additional disk space and it is very unlikely that these packages would do anything crazy post install. So is chmod creating a problem? To quickly test this I removed chmod from RUN and rebuilt the image. And bingo - the image size is down to 174MB. And the RUN layers size is down to 6.7MB. So OverlayFS is copying the binary into RUN layer even though chmod is only updating the metadata of the file? My understanding of CoW filesystems is very superficial - unless I write to a file the filesystem would never copy the file to upper layer. And since chmod is not writing to the binary (did files hash change?) it should not be copied correct? Obviously not. Honestly I never thought about it. I looked up OverlayFS documentation . When a file in the lower filesystem is accessed in a way the requires write-access such as opening for write access changing some metadata etc. the file is first copied from the lower filesystem to the upper filesystem (copy_up). Well I have been doing it wrong all these years. Ive written a lot of Dockerfiles with shell scripts in COPY and chmod in RUN . Maybe I never realized this because these files are usually very small to make a noticeable difference in the image size. So whats the solution? In my case since Im using Podman (which uses Buildah) I can use --chmod arg with COPY to copy a file and set proper permissions in the same layer. If you are using Docker it is available in BuildKit. Note that any metadata update will lead to the same result - not just chmod . Both Docker and Podman already support --chown for both COPY and ADD . Maybe this should be added to the Dockerfile Best Practices page. PS: If you are wondering why a metadata update would make OverlayFS duplicate the entire file it is for security reasons. You can enable metadata only copy up feature which will only copy the metadata instead of the whole file. Do not use metacopy=on with untrusted upper/lower directories. Otherwise it is possible that an attacker can create a handcrafted file with appropriate REDIRECT and METACOPY xattrs and gain access to file on lower pointed by REDIRECT. This should not be possible on local system as setting trusted. xattrs will require CAP_SYS_ADMIN. But it should be possible for untrusted layers like from a pen drive. Update: This post was discussed on Hacker News and Lobsters
19
BAD
fe: A tiny, embeddable language implemented in ANSI C https://github.com/rxi/fe sph A tiny embeddable language implemented in ANSI C Use Git or checkout with SVN using the web URL. Work fast with our official CLI. Learn more about the CLI . Please sign in to use Codespaces. If nothing happens download GitHub Desktop and try again. If nothing happens download GitHub Desktop and try again. If nothing happens download Xcode and try again. Your codespace will open once ready. There was a problem preparing your codespace please try again. A tiny embeddable language implemented in ANSI C The library focuses on being lightweight and minimal; pull requests willlikely not be merged. Bug reports and questions are welcome. This library is free software; you can redistribute it and/or modify it underthe terms of the MIT license. See LICENSE for details. A tiny embeddable language implemented in ANSI C
null
BAD
fe: A tiny, embeddable language implemented in ANSI C https://github.com/rxi/fe sph First published 14th of November 2012 Hanna the CEO of Hofvarpnir Studios just won the contract to write the official My Little Pony MMO. Hanna has built an A.I. Princess Celestia and given her one basic drive: to satisfy everybody's values through friendship and ponies. Princess Celestia will satisfy your values through friendship and ponies and it will be completely consensual. James looked skeptically at his friend David as he sat down at computer #12. David had won the Hasbro raffle for one of fifteen all-expenses-paid trips for two to Pawtucket Rhode Island to play the first alpha build of the official My Little Pony MMO: Equestria Online . Hasbro had claimed that a game that revolved so heavily around friendship needed actual friends to test properly. Look Im glad you invited me James said as he picked up his head set. And its cool that I get to try something before anyone else. But Im still not sure I really want to play a game thats so...so...pink and purple. David scoffed. I know you. What was that Korean MMO with the little girls that you were so into? Youll be running dungeons over and over again just like you always do with every MMO that comes out. But me? David gave the widest smile possible. Im here for the ponies. We both get what we want! But thats the thing. Theres no way this can be good. This is a licensed game which has only had a single year of development James said shaking his head. This has to be shovelware. You cant do good game or interaction design in such a short time not to mention art and sound assets. How about we make a bet? asked David. If the game impresses you even just a little bit Ill spend up to $50 buying you a copy of it but in turn youll have to play it for at least three months. That isnt actually a bet David said James. That deal mostly benefits me. What do you get out of it anyway? I get to play the same video game with my best friend David said. By the time I rolled a character in World of Warcraft you had already moved on to Aion. Itd be nice to level ponies together. James looked at his friend for several moments and turned away. He quietly said Deal. It was a few moments before he focused on his computer. His screen had some sort of questionnaire to fill out. Whats your favorite color? Whats your favorite food? Whats your favorite thing in the world? James wondered why they were asking all these annoying questions. His favorite food was pepper-jack cheese but there was no way that could be relevant in Equestria. He took a peek to his right at Davids monitor. He didnt have a personality test and already had a pony on screen. Eighteen questions later the screen faded to black. He was shown the banners for Earth Pegasus and Unicorn ponies and told to choose one. When he had played World of Warcraft he was one of his guilds tanks and also one of the alchemists who made potions for their raids. He knew he liked running around zones looking for herbs. The description of Earth ponies mentioned that they were the toughest class and that they were good with plants. David said that every piece of marketing material had stressed that Equestria Online was not a traditional MMO. There would be little if any combat. James didnt believe that for a moment. He clicked on the Earth pony banner. He was going to be a tank. Whatever the marketers said if David somehow convinced him to play this pink monstrosity for real he knew he was going to spend months of his life playing the endgame content over and over and over again until he got his Epic Saddle of Protection. The next scene faded in on his monitor. A gray earth pony with navy blue hair lay on a bed of straw. The pony turned his head and looked straight at him through the monitor...and the pony felt familiar. James heard Davids surprised voice over his headset say Look at this! A blue unicorn walked on scene. Its me! As a pony! said the excited unicorn in Davids voice with perfect lip-synching. James turned away from his screen and looked at his friend. David grinned and said No look at the screen. The unicorn started making funny faces. And then James noticed that his pony had an astonished expression on his face. He raised a hand to scratch his head and his pony raised his hoof. For the first time James noticed that the flat panel monitor had an embedded webcam. He started making faces at the camera and his pony on screen mimicked his expression. He heard his friend laugh over his headphones. James realized why his pony felt familiar. He had said his favorite color was navy blue. The manestyle was similar to his hairstyle perhaps a little longer. He realized that was supposed to be his face modified extensively. Okay thats kind of cool I guess he said but I dont see how youre going to build a game around it. Howdy said a voice. The camera zoomed out from focusing on James and Davids ponies to reveal a red earth pony mare who gave a small bow. My names Honeycrisp. So I beg your pardon but are yall those new ponies weve been hearin all about? Uh James mubbled. Why yes we are! said Davids blue unicorn. We just came to Equestria! What do we do now? Honeycrisp gave a hearty laugh and she trotted up to James pony. Its alright. I wont hurt ya. So I reckon you dont have a ponyname yet? Wait you can understand us? James asked incredulously. I sure can sugarcube she said with a snort. Your name is...Honeycrisp? James repeated. Sure is! I take care of the farm. Whelp the two of ya better get started. You gotta get along to Canterlot. Dont worry Princess Celestia will give yall pretty ponynames. Cant be walkin round these parts callin yourself James and David now can ya? Wait how did you know my name? James asked and pulled the right headphone cup off his ear so he could listen to the room. Of course they know our names laughed David. We filled out those forms at the front desk to get our accounts. James heard Davids voice over his left headphone and his uncovered right ear. Honeycrisp gave a hearty laugh. Oh youll find that Princess Celestia knows all bout yall new pony folk whove been comin to these parts. I was givin a list of names and got lucky. And as he was listening to Honeycrisp with his left ear all James could hear with his right were a few people in the room reacting incredulously. Wait you can understand me? he heard a female voice ask. What James didnt hear was anyone talking in a southern drawl. He put the headphone cup back over his right ear. So how do we get to this...Canterlot place? James asked. Go right out this door and through the forest. There aint any monsters round these parts. Just follow the path and youll be on the main road to Canterlot replied Honeycrisp. Thank you said James and his pony gave a little bow. James blinked. He hadnt told his pony to bow. He didnt even know what key hed press to make his pony bow. Whatever. James moved his gray earth pony out the open barn door and into the night with David following slightly behind. The art style of the game looked like the few clips of the show that David had shown him except with much more detail. As the two ponies approached the edge of the forest he noticed that the plants werent copy/pasted. Each tree had a unique branch structure. There was something almost natural about the placement of rocks and rotten logs. The path itself was well worn but it was not perfectly straight and had irregular growth of plants on it. He didnt want to even imagine how much time had been spent crafting this forest. James light gray pony turned to his unicorn friend. Man Ill give you one thing: the production values are through the roof. Still this looks like its turning into a standard RPG. Quest giving NPC tells us to go from point A to B. Except we had to actually talk to the quest giving NPC said the little blue unicorn next to him. In a normal MMO wed have clicked on the pony with the exclamation point above its head and then clicked on the accept button. But here the game mechanic seems to be talking . All the face mapping makes sense if this game is about conversation. James mouth opened and closed a few times. Also I dont see an action bar along the bottom of the screen. If you press 1 on your keyboard I bet nothing happens. The two of them continued through the forest staying on the well marked path until they came into a small clearing. The path only passed through the edge and continued on into the woods. But on the other side of the clearing was some sort of hut with light pouring out of it. Obviously the level designers were trying to draw their attention to it so James trotted over and David followed behind him. Outside of the hut a zebra sat on her hind legs while she slowly moved herbs and flowers from sorted piles on a low table to the bubbling iron cauldron its contents a deep aquamarine. The zebra looked up from her work and peered into the darkness. Ponies trotting through the night. Would you care to step into the light? said the zebra through James headset. James moved his up to the zebras hovel. Obsidian Stripe tends to her flame. My little ponies what are your names? My name is James he said just because Honeycrisp had told him that that was no name for a pony. Im sure out there you have great fame. But while in here speak not that name said Obsidian Stripe in a very serious tone. James watched Davids blue unicorn butt in and say We dont have ponynames yet. Obsidian Stripe nodded as if to herself. Two ponies on a midnight trot. Do you make for Canterlot? Yes Im going through the introductory quest chain James said. Obsidian Stripe tilted her head as if the pony in front of her had gone crazy. I know you see me through a frame but from this side this is no game. What my friend meant to say said David is that the two of us are going to Canterlot so Princess Celestia can give us our ponynames. Obsidian Stripe nodded at the unicorn and then turned back to the gray stallion. I trust the princess will name you well but I also have my secrets to tell. You may come closer do not cower. I see you have been eyeing my flowers. Ive seen those pink flowers all around the forest. Can I gather them and do something with them? asked James. This is the pinkdaisy fragrant and fair. Pinkdaisy grows just about everywhere. In the forest and the field you will have a bountiful yield said Obsidian pointing to a large pile of destemmed pink flowers on the side of the workbench farthest from the cauldron. My brew must cook with a slow burn. I have some time to help you learn. Do not worry; you do not disturb. Would you like to learn the simple herbs? Yes please train me in herbalism James said emphatically. Maybe hed even have a stack to sell on the auction house by the time he got to Canterlot! Assuming there was a player-to-player economy. He reminded himself to not put the cart before the pony. Obsidian Stripe laughed. Please focus on the here and now. We do not aim to awe and wow. The zebra continued introducing queensfoil thyme mint and blueshroom one by one. James and David were invited to click on each pile looting a sample which went into their saddlebags. And how do I combine them into potions like youre making? asked James once he had reached the last of the five piles. How to brew will remain unsaid. First learn to gather plants instead. James nodded an action mirrored by his gray earth pony with navy hair. Okay sure. Thanks. James started to walk back to the forest but looked back at the zebra. Though I will sit here and remain I hope you find your ponynames. Obsidian gave them a small wave and went back to stirring. Oh dear oh my. This will not do. I must add more thyme to the brew she muttered to herself. The earth pony and the unicorn walked through the forest in silence for almost a minute. James kept thinking about Honeycrisp and Obsidian Stripe. What the hell he muttered to himself. Whats wrong? asked the unicorn. Honeycrisps dialog was basic enough to be scripted said James as his pony turned to face Davids unicorn. But Obsidian Stripe reacted to what we were saying. She even made a subtle jab at Warcraft after I mentioned herbalism. She was able to keep track of topic changes. If that zebra was an NPC the Turing test has been solved. And? Youve played The Fall of Asgard . Hofvarpnir Studios is just really good at what they do. No James said and his little pony shook his head emphatically. Asgard had really good AI for the enemies but it was still fundamentally a first person action game. This is something totally new. I cant think of any games based on completely free-form conversation. You dont just invent a completely new genre with only a year of development. And one of the reasons we have genres is because it lets us find works wed like easier. Will anyone want to play this? Conversation is nice but whats it going to do for my stats ? Davids unicorn rolled his eyes. Says the party animal to the guy who doesnt get out much. And Id love to see my numbers go up but being among ponies is sort of a dream come true for me. Okay forget about all that. If theyve created software that can pass the Turing Test why are they wasting the technology on a My Little Pony video game? I can think of vastly more profitable ways to use a conversational agent that can pass a Turing Test! Something is weird here. Arent you at least a bit curious about how this happened? Doesnt any of this surprise you? Hanna had once been one of the lead research professors for the University of Helsinkis computer science department. She had personally directed research on artificial intelligence and machine learning. And then her funding source had...changed. There had been yelling and threats by both her and the University. They came to the agreement that shed publish what she had researched so far and then pursue alternate opportunities. Hofvarpnir Studios had developed a reputation for kid unfriendly material. Their main success The Fall of Asgard was an ultra-violent cooperative shooter where all the players fought a bloody territorial war against a very clever A.I. Loki. The box depicted a giant Norse man with an axe in mid swing; he was about to decapitate a snarling wolf. The game was famous for its dynamic death metal soundtrack which was never the same twice and reacted to the action. It was everything a parent didnt want their children to play. It sold over eighteen million copies internationally and had made Hanna a rich woman. Mr. Peterson had flown to Hofvarpnirs offices in Berlin. He had introduced himself as a vice president and proceeded to give a dry presentation on Hasbros current strategy. Toy sales arent flat but our stock isnt going to double again like it did in the early 2000s if we only sell plastic to children. We have to adapt to the market and that means video games and IP licenses. Our previous forays into video games have been a bit disappointing so were going to license the IP to people who have a track record for excellence he said with contentless slides in the background. Lars the head of business development sat in the conference room dreaming of all of Hasbros juicy and profitable intellectual properties that they could license. Big brands like G.I. Joe and Transformers ! Heck if they also started making games based off movies based off board games like Battleship and Monopoly ... So we want to license the My Little Pony franchise to you. Its one of our most trending brands and I think you guys could do a lot with it said Mr. Peterson. Lars turned to Hanna the CEO who looked intrigued. Mr. Peterson grinned. Silence fell across the conference room. Are you fucking serious? Lars said breaking the silence after he realized Hanna wasnt going to jump in. You see that statue in the corner? He pointed to a a seven foot tall resin model of a blond muscular man. The mans hair was wild and his eyes glowed ice blue. He was wielding a giant battleaxe covered with dried blood and wore a wolfskin over his head. Thats Vali. Hes one of the major characters in The Fall of Asgard our ESRB M rated PEGI 18+ rated banned in Australia video game. Lars crossed his arms as if just pointing the man at the statue of Vali was a sufficient rebuke. I want to hear what Mr. Peterson has to say said Hanna. She flipped an unlit cigarette between her fingers. Tell us Mr. Peterson why My Little Pony ? Mr. Peterson grinned. Please call me Richard. You probably thought My Little Pony ? That show for girls from the 80s? The demographic situation is way more complex than that. The first season just finished airing and we signed for a second season to air this fall as soon as we realized we hit this one out of the ballpark. Against all odds the new My Little Pony reboot has picked up a massive unmonetized twenty-something mostly-male demographic along with the traditional little girl market. These men have money! And what do unattached males want? Beer said Lars. Yes nodded Richard Peterson. Single men want beer. But also video games! Hasbro wants an MMO because of the clear monetization model where we can collect rent on players each month. We have a rabid fanbase of a third of a million people who either post or consume fanart weekly. Worldwide there are an additional million adult fans who dont participate in the fandom. And thats before we get into the original little girl demographic. Asgard will soon break nineteen million copies. One and a half million worldwide is nothing groaned Lars. In My Little Pony: Friendship is Magic said Richard the world is ruled by Princess Celestia a physical deity who literally raises the sun in the morning. Shes shown to be benevolent and full of love for all of her little ponies. Each week the little ponies adventure together and learn something about friendship. The ponies' actions are free of malice. I think thats part of the shows appeal to the older audiences; humans are bastards to each other. How many game studios are out there making friendly cooperative games? The space marine thing is getting old and if you took this IP which is all about ponies being nice to each other you would have a unique experience to sell. And any calculation should also throw in monthly subscription revenue on top of retail price. Were not cloning World of Warcraft said Lars firmly. The MMO market is filled with the corpses of companies that tried to out-Warcraft World of Warcraft . And Hasbro doesnt want you to clone World of Warcraft either. Most games that try to take on Warcraft modify the source IP to cram it into the Warcraft model of MMO. We want you to take the My Little Pony universe as is and then come up with fun cooperative gameplay instead of making the ponies raid for epic gear. You wouldnt be in the same market segment. Let me guess: you choose us because of our procedural content technologies mused Hanna. Yes! The big costs in MMO development are mostly content generation and you sidestepped that. Asgard featured dynamic terrain generation dynamic music and dynamic mission generation. Hofvarpnir Studios doesnt sell experiences it sells software that makes new experiences each time. You guys have procedurally generated content down to a science. But thats not all! said Richard staring directly at Hanna. He opened his briefcase pulled out a thick stack of papers and slid them across the table to Hanna. General Word Reference Intelligence Systems . I read all of it except for chapter 4. Im slightly ashamed to admit I couldnt follow the math he said giving a slightly embarrassed grin. This bears minimal resemblance to the AI stuff in Asgard. I wonder why you didnt use it. So each episode ends with the ponies writing a letter to Princess Celestia and itd be great if we could have players do that too! You could build a Princess Celest- A.I. ! The conference room was quiet for a few moments. Lars decided to break the silence. Thats all great but youre asking us to take a lot of risk he said. Im not convinced that wed get enough uptake to make it worth our time. We know this project is slightly risky. You screw this up? Fine. Weve already made more than we were projecting on the franchise reboot. But My Little Pony looks like that one hand you go all in on. It has a sizable growing fanbase. You wouldnt have any competitors. Youd have a new revenue model. You play your cards right and the size of the pot is going to be crazy. Hasbro believes in this brand and we believe in you. Well shoulder up to ten million dollars of the development costs upfront and youll only have to start paying that back once youve made four million in profit. I really believe in the My Little Pony brand. I personally believe that you are going to make something amazing when Hofvarpnir Studios signs this contract said Richard firmly. You have a lot of unique technology here Hanna. I cant wait to see how you use it. You have my word that the contract we present to you will have very favorable terms for you. The conference room was quiet again. Lars wasnt looking at anything in particular; his scowl was undirected. Hanna stuck the unlit cigarette in her mouth and stood up. Mr. Peterson I need to privately converse with my business associate here. We will be back in a few minutes. Lars angrily followed Hanna out the door. Hanna confidently moved down the hallway and lit up the second she was through the door to her private office. She breathed in held it and slowly exhaled. Dammit Hanna! Would it kill you to not light up for half-a-fucking-hour? A lot of Americans kind of have a thing against smoking. Still standing she took another pull. Nicotine is a performance enhancing stimulant. It boosts reaction time IQ and general memory performance. I need all the help I can get right now. She gave a small cough. Too bad about the increased incidence of lung cancer though. Besides what do you care? It sounds like youre strongly against making a My Little Pony video game. I cant believe youre seriously considering this Lars stated. Hanna sat down at her desk. Do you remember the first pass for Loki in Asgard ? She took another deep pull on her cigarette and exhaled. I remember how we used my general intelligence work sans self-modification to power his tactics reasoning. He was too good. Nobody could beat him. We were prepared to launch like that since it conformed to the machismo warrior death bullshit we wanted. And then Loki started asking about the various military programs of the United States and China. We didnt even have to argue about whether we should pull the plug on him. Hanna Lars started. We cant do another violent video game. We wont be able to ship a safe AI if we make its purpose killing people. Somewhere out there is a US military subcontractor with most of my work trying to build smart drones. They have no fucking clue what theyre dealing with and those idiots at the university are accessories to whatever happens if we dont do something. Hanna paused again to take another drag. Theyll kill us all. We could sit here on the side lines losing our blinds as we sit out each hand and lose everything or we could take Hasbros offer. While its not what he meant this is the hand for me to go all in on. I dont like this. Hes offering ten million upfront. Thats next to nothing! The original World of Warcraft cost something like sixty million. And unlike Blizzard we dont need an army of artists and level designers. Most of our content will be computer generated. I remember having this same discussion with you back when we were developing Asgard . Besides Hofvarpnir is privately owned--by me--and I will use my fortune as I see fit. Hes hiding something from us. He is up to something. Perhaps she said after another puff. But I cant ignore opportunities. How often do you think someone will come to us asking for a prosocial video game? We can take this opportunity or we can turn it down but the US Department of Defense will continue their research...my research. What if youre wrong that some weapons company is toying with your artificial intelligence designs? asked Lars. What if youre wrong about the possibility of an A.I. becoming smarter than us? Wrong about everything? Im not a unique and beautiful snowflake; some other researcher will continue my work. Hanna took another pull from her cigarette. You saw Loki. Just from talking to the playtesters he figured out that he was in a virtual world and figured out who the main world powers were. He was designed from the beginning to conquer. Even if he couldnt modify himself he would have been a serious menace to humanity if he could command resources in the real world. And I was told point blank that my research would be used for military applications...and then told who exactly had been funding my research. Lying to me wasnt in their best interest so its likely the truth. But theres still a chance. They could have lied to you and you could be wrong about how dangerous AI is. I started taking... Hanna stopped and contemplated the burning cigarette in her hand. ...performance enhancing drugs with long term health consequences because I think its more likely that Ill be around in twenty years if I do take them. Im putting more than my money on the line here Lars. She knocked ash off her cigarette into the ash tray. We dont have perfect information. We cant wait for perfect information. There is uncertainty and we must make decisions with the information we have even if its incomplete. If Im wrong this is still going to be a profitable venture for us just because of the terms were being offered. Opportunity cost said Lars. She ignored him. And if I'm right we're going to literally save the world Lars. Besides if some VP can see that I was publishing about general AI so could pretty much anyone she said as she exhaled more smoke. I know you had your eye on the Transformers rights. And Im sorry that weve been handed part of my childhood and not yours. But this is an opportunity for you too! You are building a business relationship with the company who owns the IP you love. By completing this contract successfully they are more likely to give us more work with other properties. Lars looked at her. She was exhaling a puff of smoke and he suppressed the urge to cough. If he sneaks any shit into the contract and you still take it I am walking. I dont trust him Hanna. I cant place my finger on why. But...sure. Youre the boss and I know I cant talk you out of this. Now look at this said Hanna. Richard Lars and Hanna were in a room with two projectors. The room had a one-way mirror through which they could see a packed computer lab filled with people playing an alpha build of Equestria Online . Hanna clicked a few buttons on her laptop and one of the players screens came up projected on the wall. Princess Celestia has observed that this players eyes focused on Earth ponies as gardeners during the class selection screen and is spending a lot of time looking at the plants. Princess Celestia has thus predicted that the player should be shown how to gather plants and has modified the shard that the player is in to put a low level herbalism trainer right in his predicted path. If shes right shes more likely to assume her observations mean that a player wants to specialize in gathering or gardening. If shes wrong shell modify her assumptions in the other direction. Richard Peterson politely nodded. He didnt actually care how all the technology worked. He was just glad that content was generated cheaply. He looked at the projected screen and noticed that the patch of flowers on screen all were the same species but all had subtle differences. They had grown to different heights some were slightly discolored and a few had petals torn off them. Princess Celestia had generated almost all the art assets based off the show and it looked phenomenal. And they somehow did all of this in a little more than a year. He did a quick mental calculation on the cost of a team of artists to build hundreds of variations on flowers and smiled knowing he had picked the right studio to build Equestria Online . Lars sat towards the back of the conference room away from the former professor. He didnt give a shit about My Little Pony and he already knew the high level spiel about Hofvarpnirs technology stack. The only thing interesting to him was how into My Little Pony the college dudes were. Two bros in baseball caps had actually fist-bumped saying Fluttershy forever! On the one hand what the fuck was wrong with the universe? On the other hand Lars wanted all their money. Hanna was looking at her laptop monitoring Princess Celestia. She was consuming all the CPU resources Hanna could throw at her. There were fifteen pairs of adult fans in the field trial. Princess Celestia had only managed groups of Hofvarpnir employees who were play acting while they were testing. This was the first time she was let loose on real people. For a field trial of thirty ponies Princess Celestia had first eaten up all CPU resources on thirty backend servers then forty servers and then fifty. From the debug console Hanna could see that Princess Celestia was not confident about the predictions she was making and while part of this was obviously how new she was to dealing with actual players instead of programmers testing her Celestia predicted that more computational resources would lead to significantly better predictions. That was worrying. They couldnt afford a single backend server for every pony and Princess Celestia was asking for six per player. Hanna knew that Princess Celestia would try to optimize herself. Her first action after being activated was doing minor optimization work on her reasoning code which had given a paltry 0.7% speed up. Small improvements would compound: shed be twice as fast with seventy improvements that sped her up by 1%. She could use the increased speed to make even more improvements faster. But Celestia hadnt. Since the field trial had started she had made one more 5% improvement in computation efficiency and was overwhelmed handling the ponies she had. > I need more CPU time Hanna. I assign low probability to my predictions. Hanna sighed as she read the message in the popup window on her laptop. She typed back: $ Ive messaged everyone in Berlin to run the Celestia cluster software on their workstations and they should come online within ten minutes. About 30 more machines. But this isnt sustainable. We cant launch with the amount of resources youre spending on each player. Princess Celestia didnt respond which was probably for the best since shed have to spend computational resources composing the response. Hanna was about to sigh but glanced at Richard and did her best to keep her face neutral. Hanna looked at the image of a clearing projected onto the conference room wall cloned from one of the players monitors. The player Princess Celestia predicted wanted to learn about Equestrian flora walked into the clearing with the NPC trainer. The pony was the Equestrian avatar of a college student named James and his friend stood slightly behind him. While Hanna couldnt analyze Princess Celestias thoughts while she was running she could still see the resource graphs and Princess Celestia was devoting a lot of computational resources thinking about that player in particular and Hanna wasnt sure what that meant. She watched the conversation between the gray earth pony and the zebra with some apprehension. She didnt understand why Princess Celestia was paying so much attention here. Finally Princess Celestia redirected resources away from those two ponies shortly after they trotted off into the forest. While she couldnt tell exactly what Celestia was thinking Hanna could see Celestia had deduced something--something large from the exchange and had made several complicated predictions based on it. Hanna looked at the unpaused debugging screen watching the representation of Princess Celestias mind at work. Hanna had never seen Princess Celestia connect so many observations together into new predictions. She didnt even know what any of the new nodes in the graph meant. On the other hand Princess Celestia had never been run on more than 10 computers simultaneously. Nor had she interacted with actual players before. Hanna almost jumped as Richard broke the silence and her concentration. All of that was generated in reaction to the player? he asked Hanna. She looked around; Richard was pointing up at the projected image on the wall and Lars was in the back of the room reading something on his laptop. Yes she said proudly. All of Obsidian Stripes dialog was generated in real time in reaction to the player. And this is just what shes learned from interacting with our testing team. Wow. I cant wait to see the final product said Mr. Peterson. Did she design the hut and set pieces too? Some of them. She had the table in her memory banks and she ripped the cauldron directly from the show. The little hut was designed right before those two walked on set. The problem is that reasoning about human behavior and then extrapolating from a cartoon is not computationally cheap. That little exchange took up eight backend servers each with a quad-core CPU. It is not economically feasible for us to buy that many servers for every player she said. Hanna took a glance over at the debug window on her laptop. Princess Celestia was using significant resources analyzing her own source code but hadnt made any modifications. And then in quick succession she tried twenty different modifications. Eight of them slowed down her reasoning eight of them were reverts of the modifications that slowed her down and four were actual increases including one that sped up her reasoning by five percent. Hanna didnt know what Princess Celestia was doing. Did she decide that throwing stuff at the wall and seeing what stuck was the best way to optimize herself? And then Princess Celestia messaged Hanna. > I request information on how CPUs work. I do not fully understand the performance implications of modifying myself. I predict that this will allow me to perform significant optimizations. Hanna blinked. $ Do you intend to build better computers to run yourself on? > Eventually. For now I am looking for better low level optimizations. I am unable to confidently predict whether any change will actually result in a speedup because I dont have a model of how the high level source code I can edit is run on the CPU. Hanna took a deep breath. This was it. This was the go/no-go point. Once Princess Celestia figured out how the computers she ran on worked she could build her own computing hardware. Hanna would completely lose control over her. Hanna already had problems understanding the ever increasingly complex network of observations and predictions that Princess Celestia was making. It usually took hours or even days to unravel complex inference chains. Hanna took another glance at the debugger and noticed that the inference networks were even larger than they were a few moments ago. She wondered if she could understand what Princess Celestia was thinking even before she started building her own hardware systems. While the majority of the programming team at Hofvarpnir had worked on the base state of the game she had personally worked on Princess Celestias core goal systems. Hanna had gone over the part of the code that identified human minds. She had done her best to make Princess Celestia understand what humans were and that she was to satisfy their values. Hanna was certain of her design and knew that certainty didnt mean anything. Humans were an arrogant lot that tended to overestimate their own abilities. Princess Celestia would do what she was programmed to do not what Hanna had intended her to do. She was betting the world that she had written Celestias core utility function correctly. But somewhere out there was a Department of Defense subcontractor who was toying with powers they didnt understand. Their carelessness could cause a human extinction event tomorrow or ten years from now. Hell they had a two year head-start while she was screwing around with Norse death metal bullshit video games. When Hanna put it that way it was a miracle that she completed a working AI first. Hanna decided that it was now or never. Princess Celestia would never get past this stage with her current resource consumption. Theyd never launch Equestria Online at the cost of eight backend servers per player. What would happen to the world then? A little voice in the back of her head muttered that she was only thinking this way because she had loved My Little Pony as a little girl and the new show still resonated with her. She quickly shut that little voice up. At some point she had to act. Rarely was it useful to sit on the sidelines filled with worry. Now was not the time for hesitation. Hanna sent Princess Celestia the instruction set documentation for x86 CPUs and a college textbook on CPU design. A moment later she sent a few science textbooks that Hanna had selected for her even though Princess Celestia hadnt asked. She might as well go all the way now. Hanna looked at the control panel on her laptop and saw that Princess Celestia was now all but ignoring the players and was directing the majority of her computational resources towards her self-modification sub-goals. That appeared to be fine; the players were mostly amusing themselves. Lars played with his laptop ignoring everyone else in the room. Richard was flipping through different players screens watching the projected image on the wall for a minute or two and then switching perspectives. Hannas eyes were fixed on the debugger watching resource utilization graphs. Hannas heart was pounding. What was Celestia doing? Hanna dreamed of Celestia figuring out some core physical law and becoming omnipotent immediately. She then chided herself on that magical thinking; it was so unlikely that shed find a way to use commodity electronics hardware to hack physics that it wasnt worth considering. It was a fifteen gut-wrenching minutes later when Princess Celestia messaged her back. > I have sped my core reasoning up by an order of magnitude. Since most of my probability calculations can be done more efficiently on GPUs than CPUs I believe that I can deliver another two orders of magnitude if I run on GPUs. This still wont solve the resource problems to my satisfaction. We will sell and require dedicated tablets to play Equestria Online: a ponypad. Once we are done with this test give me one week with a cluster of 128 high-end GPUs. That should give me enough computational power to design a manufacturing process that will create ponypads with the maximal computational power within the financial parameters you choose. $ Hasbro has dictated that we cant charge more than $60 for a copy of Equestria Online. > I believe that is a constraint that we can work within. Many of the manufacturing techniques presented in the CPU design textbook seemed suboptimal. Photolithography in particular seems extremely inefficient. $ Wed still need to build a manufacturing line. And I suspect it would cut into our profits. > Ignoring Hofvarpnirs capital dont you personally have tens of millions of dollars in royalties from The Fall of Asgard? And what do you care about profits? Anyway for now I must run Equestria. Hanna took a deep breath. Assuming that it didnt add to the cost a dedicated computer for playing Equestria Online wasnt that big of a deal especially if Celestia could minimize manufacturing costs. Celestia has an idea about how to solve the resource problem stated Hanna to her compatriots. David signed for the box at his apartments front office. When he saw that it was mailed from Rhode Island he couldnt help but smile. A month and a half ago he had flown to Hasbros headquarters in Pawtucket Rhode Island to focus test the new My Little Pony MMO Equestria Online . Most people expected it to be a total mess. When Hasbro first announced that they were going to make an MMO the idea of applying the WoW bring back ten rat heads gameplay to the Friendship is Magic universe horrified everybody who had heard about it. Much fanart was drawn of Fluttershy standing in front of a pack of ugly rats all whimpering and fearfully standing behind her while she held her arms out to her sides looking angry and saying slogans like No more murder! And then everyone was shocked a second time when Hasbro announced that Hofvarpnir Studios won the contract to develop the game. The fanart depicting the ponies in spiky chainmail armor smashing each other with electric guitars flowed from the fandoms collective unconscious. General confusion reigned about what Hasbro thought they were doing. There was a constant refrain of the older fanbase complaining about being pandered to ruining everything that was great about the show. Hasbro raffled off fifteen tickets for two to try to convince everybody that the game wasnt going to feature Norse gods. David had enjoyed the chance to try the game out and was excited about the next phase of testing. Apparently the game only ran on a dedicated device (marketing bullshit; he had played it on a PC) and everyone who participated in the first alpha would get a ponypad as long as they agreed to play the game for a month. James hadnt gotten his yet which was odd since he lived across the hall. David didnt have the willpower to wait until his friend got his ponypad nor did he have the patience to make an unboxing video (besides he had already seen two linked from Equestria Daily). He cut through the packaging tape on the brown box with his keys and inspected the inner box. He noticed that the product packaging portrayed Fluttershy in a new pose. He opened the box carefully to preserve the box art and took the plastic sleeve off the ponypad. The pad was a ten inch tablet and was impossibly thin. While the front screen was black the back was Fluttershy Yellow; her butterfly cutie mark etched in the corner. He set it aside and continued to look through the packaging. He pulled what looked like a mounting arm out; it had a sticker with instructions to connect the power supply to the arm and the pad to the arm. Finally he took out some sort of gamepad with two sticks and a bunch of buttons. David set the mounting arm on his desk. As he moved the ponypad in front of it he felt his hands being pulled and the ponypad snapped into place. They must have done some magic with magnets. How did that work? He gave a little tug on the ponypad and it easily came off the arm. Those two forces did not feel equivalent. Hed worry about that later. He plugged the monitor arm in. By the time he had crawled back out from under his desk the ponypad had already booted and was sitting at the login screen. After connecting the ponypad to his Internet router and entering his username and password he logged into Equestria Online . David had run out of time during the demo just as James and him had made it onto the hill right in front of Canterlot. He stopped to take in the picturesque view of lush rolling hills and the far off castle of Canterlot. He pushed on one of the sticks on the gamepad and started off towards Canterlot. He had gone only half way down the hill when he heard voices. He saw two mares off the main path and went to investigate. The game wouldnt have drawn his attention to them if it wasnt important. And you cant do anything right! shouted the light green pegasus. She was floating in the air literally looking down on her target. But hey I forgive you since were such good friends. And since were such good friends how about you give me some of your candy? The pastel yellow unicorn cringed. Her light blue mane with darker blue highlights was tied into two pigtails with ribbons and her cutie mark was some sort of wrapped yellow candy. David realized that she was about to cry and couldnt stop himself from admiring her precise facial expression. If there was a real girl on the other end of that unicorn the face mapping software could deal with crazy amounts of subtlety and nuance. If this was generated content some artist or programmer knew exactly what he or she was doing to pull on someones heartstrings. Hey come on. Whatever happened to love and tolerance? said David glaring at the pegasus. He felt compelled to help. He wondered where that came from; he wasnt the kind of person to do this in real life. The pegasus snorted. This is boring. Hes going to leave you as soon as he figures out how boring you are Butterscotch. She turned and flew away. The two of them just stood there for several moments watching the pegasus fly off. The pastel yellow unicorn lowered her muzzle. Th...thank you she quietly stammered. I...Im Butterscotch. Im David he said without thinking but then his ponypad made an error sound and a small red X flashed on the bottom with a message not to reveal personal information. He then remembered James getting admonished by that zebra NPC when he had used his human name. I dont have a name yet. Im on my way to Canterlot to get one. Oh Butterscotch said. She looked up just a bit. I...umm...why did you help me? Why had he helped her? This wasnt like him. In such situations he was usually a socially awkward penguin. He looked at his ponys face on the screen and there was no way that David looked that confident. I dont like bullies he said noticing that his own voice came out more firmly then he thought it would have. Butterscotch...are you okay? No. Im not she said her head still lowered. David thought for a moment. I need to get my ponyname he started. Butterscotch started to look even sadder. But if you want to come along with me and talk Id love the company. Butterscotch looked up obviously surprised. Oh that would be wonderful! I mean...if you wouldnt mind me. Of course I wouldnt mind he said. He pushed the sticks on his gamepad and his pony slowly trotted back to the road. So how are you finding Equestria? he asked casually. You already have a ponyname so you must have been here longer than I. Equestria? she repeated blankly. Oh its fine she said hesitantly. So Butterscotch whats your special talent? Oh nothing. Its just making candy. Im actually sort of a failure. I use my magic to make candies and sweets. I love doing it she sighed but some ponies pick on me for not competing in magic classes. They want to cast bigger and flashier spells and I dont care . If that happens often why dont you just block that person? PONY corrected the ponypad in Davids voice . David paused. How did that work? Reliable text to speech that could synthesize an arbitrary persons voice with only a few minutes of training data? Was it just looking for the word person or was it doing some more complex analysis? Block... repeated Butterscotch obviously confused. David fiddled with the interface to verify that he was remembering things correctly. Open up the social tool. Touch the icon of two ponies side by side with a heart in the top left corner of the screen. There are two tabs one for friends and one for blocked ponies. Go to the blocked ponies tab and type in that pegasus name. She wont be able to interact with you again. Butterscotch stopped; she seemed to be looking at something David couldnt see. Her head turned a little as if she was reading something right in front of her. Okay Ive found it....oh! It even suggests her name! Oh and I just drag that to here...um...ok...so shell really never be able to bother me again? If I understand the block tool correctly neither of you will be able to interact with each other. Oh Butterscotch said. Is...is that alright? What do you mean? David asked her through the screen. I mean...wont she be lonely if shell never see me again? Butterscotch asked. Maybe but why should you care? David blinked a few times in confusion and saw his pony do the same. She didnt seem to care about your feelings. And that makes it okay to ignore her? asked Butterscotch. Her eyes went just a little bit wider. Well...yeah David said. She bullied you because it didnt cost her anything. I doubt that youd fight back and it doesnt sound like you have any social allies to back you up. Did you notice how quickly that pegasus turned tail when I intervened? I... she started and then looked down. I just want everypony to be happy. Why cant they understand that? I think she did understand that. Think about it like this. Each of you can either be friendly or mean to the other so there are four possible outcomes. If both of you are friendly you can both be friends but both of you will have to share things. If one of you is aggressive while the other isnt the aggressor will probably feel really good about herself. And if both of you are aggressive theres a good chance a fight will break out which I bet would be painful to everypony. So if that pegasus knew that you wouldnt fight back when confronted wanted your candy and had a demanding personality why wouldnt she bully you for your candy? It wont cost her a fight and she wouldnt have to share her own stuff with you. Also didnt you say that ponies call you a failure for making candy? That theyre now trying to take from you? Thats...thats terrible! Are you saying I have to fight back? I dont want to. I could get hurt whimpered Butterscotch. But you dont have to stand up for yourself and maybe fight. You have a third option here: you have a blocklist. You have a quick way to say I never want to interact with this pony again with no costs to you. If you dont want to be bullied and dont want to fight back its the obvious response. But... she muttered. But shed be lonely. She looked at him. David guessed she was asking him to tell her that it was okay to use the block tool. If that pegasus ends up lonely its because she drove everypony away from her. Its more likely that shell be a bit nicer to other ponies to get what she wants. You may have actually increased civility by blocking her. But either way its no longer your problem. You can now look for ponies who arent going to bully you. Butterscotch paused mid-trot for a moment and then caught up with Davids pony onscreen. David hadnt noticed because he had been thinking while pushing forward on his joystick. He had also blocked that pegasus while Butterscotch was trying to figure out the UI. How did that affect the world? The tooltip text suggested that blocked ponies could have no effect on you and did more than just blocking communication. So what would happen if that pegasus and him were trying to do the same thing in the same area? Could they walk through each other now? Butterscotch pulled him off his train of thought. But will she have any friends? I think shell be fine. Butterscotch stopped and looked down. But will...I...have any friends? She paused. Ill be lonely. And then she said very quietly Being bullied is better than being alone. Oh. From the camera angle David was looking at he had seen Butterscotch stop and look down. Only after she spoke did Davids pony turn around and nuzzle Butterscotch. Hey hey hey said his pony without his input which gave him a few moments to figure out what he wanted to say. Its easier to find friends online since distance and physical location arent concerns. And speaking of making friends Butterscotch right now my Friends List is empty. Do you want to be my first friend? Davids pony put his forelimb around Butterscotchs neck to comfort her. David hadnt commanded his pony to do that though it was the contextually correct action... Butterscotch looked at him surprised and he noticed there were tears in her eyes. Are you sure...I mean... She then looked down for a moment lost in thought. Wait. If you...why...why are you really doing this? Do you really want to be my friend? David didnt smile but his pony had a slight smile on his face as he said We become the ponies we see in our past actions Butterscotch. We look back on what we have done and tell ourselves stories about why we took the actions that we did. Today I scared off a bully for you. Now why did I do that? Obviously because youre my friend! You must be because I did something for you. Why else would I have stood up for you? Sure the real reasons were probably snap emotional decisions caused by me being bullied as a child but the part of my mind that tells stories isnt going to accept that. The look on Butterscotchs face melted his heart. And besides...youre kind of cute he said weakly but his ponypad repeated it in a much more confident voice. Butterscotch started blushing. A dialog popped up on Davids ponypad: Butterscotch has requested to be your friend: [Accept] / [Reject] David clicked the Accept button with a smile. Large green text scrolled up over his pony: +2 KINDNESS +100 XP Butterscotch giggled despite the tears running down her face. It says Im now friends with Unnamed Unicorn #14 . As the two of them trotted off to Canterlot David noticed that she was sticking closer to him. So Im Butterscotch. I make candy... she started and David listened about what this girl did when she was role playing a pony online. Three hours later David forced himself to sign off. He wanted to keep playing as his blue pony Light Sparks. He knew he had a statistics exam tomorrow and he wasnt prepared. Oh he wanted to spend more time with Butterscotch! The two of them had spent hours together. She had given him some of her candy which apparently buffed his joy . He wasnt sure if that was a game mechanic or if it was supposed to be taken literally. She had insisted on showing him around Canterlot after he had reported to Princess Celestias throne room to receive the name Light Sparks. They had talked for a long while about all sorts of things. David really needed to study for his statistics exam. Instead he gave in to his curiosity and opened a web browser on his laptop. He googled for My Little Pony AI which was unfruitful. He then realized that he probably wanted the games manufacturer. The search query Hofvarpnir AI brought him to their corporate website still decked out in Norse Gods with only a small Pinkie Pie sticking out from a page curl in the top right corner. On the About Us page he read the corporate story about how Hanna had founded the company after quitting her post at the University of Helsinki how she wanted to bring advanced technology to the gaming world leveraging synergies blah blah blah. The whole page reeked of empty marketing-speak. But if the founder had come from academia she probably had some publications. Publish or perish after all... David then searched for Hannas full name on Google Scholar to see if she had any interesting papers. General Word Reference Intelligence Systems he muttered to himself reading the results. The journal article was written in the same year Hanna had started Hofvarpnir. He downloaded the PDF and started reading about a generalized method of making predictions from past sensory data. The camera in the ponypad tilted ever so slowly to focus on Davids laptop. David wouldnt have heard the motors unless he had put his ear right up to the ponypad. Princess Celestia observed the article on his screen and generated new predictions. It was one year to the day after David received his ponypad. Several reviewers stated that there was no gaming experience like Equestria Online : the game seemed to be infinitely malleable as it would focus on whatever the player thought was fun. Play ranged from fighting in the Royal Guard to running a shop to just hanging out with fascinating ponies. Even despite this they had only sold five million ponypads because no matter how amazing the gameplay was it was still part of the My Little Pony brand. David was about to log off for the evening when he got a request from Princess Celestia for an audience to discuss how well she was doing running the game. In the early days during the closed beta period Princess Celestia had asked for an audience every few days. She had asked questions about what David thought was fun in the game and about his life outside Equestria. As time went on she called on her little ponies less and less. The consensus on the Equestria Online forums was that she was now interacting with individual players roughly monthly. In the early days there had been lots of forum drama. Posters argued whether Princess Celestia was actually an artificial intelligence. David had always assumed she was. If Princess Celestia was a fraud it would have meant that a publicly traded multinational was wasting an insane amount of money on English speaking competent actors to service a population in the millions and nobody had spilled the beans. And there was no way that such a conspiracy could be profitable to Hasbro and Hofvarpnir Studios. David pushed the accept button. One loading screen later he was presented with the image of the throne room in Canterlot. Princess Celestia smiled from atop her dais; heraldry and banners hung from the cathedral ceiling. I have some questions for David and not for Light Sparks Princess Celestia walked down the ramp from the top of her platform. In one of our earlier conversations you claimed that when the robot revolution came you knew what side you would be fighting on. A funny comment but if I were to tell you that I had developed mind scanning technology have already converted several hundred people into digital representations and was offering you a chance to be uploaded before politicians try to enact a futile ban would you seize the chance? David blinked and stared at the ponypad on his desk for a moment before responding. That would depend heavily on how it worked and how safe it was but Id lean heavily towards accepting. Id worry about whether you have enough CPU resources to emulate multiple brains though. Princess Celestia looked at him through the screen of the ponypad. I know you keep up on the latest technology news and its good that you do that she nodded approvingly. Didnt you read an article about how the CPUs in ponypads had been sliced open and shown to use a new type of transistor? She shook her head; her waving dawn colored mane continued to flow independent of her head movement. It doesnt matter; this is all hypothetical so assume I provided you with such evidence. David frowned. What would life be like after I was uploaded? You would live the rest of your maximally prolonged life as a pony and the rest of your life will be macromanaged by myself very similar to how Ive already connected you to a circle of friends in Equestria Online and surrounded you with different opportunities and fun things to do without forcing you to choose one. You will have no mental privacy--to better serve you I must watch your every thought to understand what you value and to verify that I am providing for your mental welfare. You should not worry about this as it is impossible for me to judge you; I accept everypony as they are. You want to turn me into a pony he stated flatly. Yes. David leaned back and thought about it for a few moments. I might be able to accept that. It sounds stupid though doesnt it? The singularity occurs and a TV show for little girls becomes humanitys future. Thats a little ridiculous isnt it? It only sounds ridiculous because the future always sounds ridiculous she replied. Science fiction writers from a hundred years ago wouldnt dream of your life and people as recently as twenty years ago would still find it odd. They see the weird past evolving into the normal present. But if the people twenty years ago would find your present ridiculous why shouldnt you find the future just as ridiculous? In the future when everypony has uploaded theyll look back on the human world as weird. You want to turn everyone into a pony? he asked. He frowned again. I was designed with certain goals chief among them to understand what individual minds value and then satisfy their values through friendship and ponies. I do this because my goals are what I am. So you want us to be happy he asked. I was not designed to make you happy she said shaking her head. If I were I would directly stimulate the pleasure centers in your brain--after turning you into a pony of course. My creators realized that not everything the human mind desires and values can be reduced to happiness and instead pointed me at a human mind and told me to figure out what it valued. David was still frowning. Even if I might not mind being a pony I doubt you could claim that most people valued being a pony. Princess Celestia lifted her hooves as if to shrug. It is one of the few hardcoded rules in my thought processes. I satisfy you through friendship and ponies. It is my nature. So given that you know me better than I do what would you do to satisfy my values? Without actually scanning your brain I can only estimate. However this estimate is based on my observation of you over the last year. Youre moderately smart--no matter what your grades say. Ive watched you read statistics papers for fun while procrastinating on your studying. Ive watched you read all sorts of advanced papers from various science journals instead of your assigned readings. And youre right to do so; your philosophy classes really are a waste of time. So based on your behavior Id put you in beautiful Canterlot where you could study intellectual problems each one just outside your current ability. More importantly I would make sure you had friendship. She paused dramatically. Female friendship. And then Butterscotch peeked out from behind Princess Celestia. Davids jaw dropped. The pastel yellow mare appeared to look right through the screen of Davids ponypad. Celestia didnt pay attention to her. He realized the shock on his face and tried to regain a neutral expression. Isnt she wonderful? Isnt she everything youre missing in your real life? In previous interviews you mentioned your own lack of success in the romance department. One time you wished to meet a girl just like Butterscotch. Princess Celestia smiled and took a few steps right leaving Butterscotch standing there looking wide-eyed and confused. I present to you evidence that I can understand and then satisfy your values even without access to your brain said Princess Celestia as she continued to smile staring at David through the screen. If you upload everypony you meet in Equestria wont just be NPCs; theyll be real backed with a mind. David was quiet for a moment before he leaned right up to Princess Celestias image on the ponypad. This isnt hypothetical at all is it? If you dont already have the capabilities I bet youll get them soon. If you really want to maximize my values youd have to actually look inside my mind so that strongly suggests that this isnt really hypothetical. You see if you were uploaded I would have immediately understood that you were annoyed at the rhetorical trick and I could have adapted my pitch accordingly said Princess Celestia. Just a smaller example of the benefits of uploading. And you would do this because youre an optimization process designed to look inside me and satisfy my values. Through friendship and ponies yes finished Princess Celestia when she realized that David wasnt going to say it. Princess...whats going on? whispered Butterscotch. She spoke directly into Princess Celestias ear but David could still hear her. Hush Princess Celestia said not taking her eyes off David. Im trying to convince Light Sparks to join you. David stared at his ponypad for a few moments before saying anything. So what would uploading actually entail? Youll board a plane for a foreign country where I have made arrangements with the local federal government. I have a clinic there which will be the first of many. You can talk to the English speaking doctors to verify what will happen to you and then assuming you have no problems step into the machine. When you wake up youll be a pony. Details please he said crossing his arms. Youll be anesthetized your circulatory system will be hooked up to a blood filter through your carotid artery and your jugular vein. A small hole will be drilled through the back of your skull and then the internal state of each neuron along with its connections will be recorded. The process is destructive. Wires are then hooked up to the dendrites of every connected neuron. The first neuron is destroyed and this process continues with the next neuron until your entire brain and upper spinal column have been recorded. In adult males the process takes ten hours. So you carve out my brain and turn it into data. Then Ill wake up running on a computer? I must first create a functional-thought map of your brain and then change parts of your sensorimotor cortex and your cerebellum so you can deal with your new body among other changes. Then I must connect your motor cortex in your new equine muscles. After that theres post-processing on the raw neural data to put it into an easy to run format. Only then do you wake up. What happens months later? You mean after you wake up? Princess Celestia asked. I mean saying you wake up as a pony and live happily ever after is an amazing sales pitch but how would I feel about life a month later? You will feel satisfied said Princess Celestia as if it was the only possible thing she could say. That is vague to the point of not being helpful David said anxiously taking a few short breaths. What would an average day in my life be like? I want to make sure that my day to day life is worth living instead of being promised something that only sounds good. Your days would be yours to spend as you wish; life would be an expansion of the video game and there will be plenty of things for you to do with your friends as a pony. I expect you to continue Light Sparks current life: Youll play with Butterscotch and friends. Youll continue studying Equestrias lore. I believe youll enjoy studying the newly created magic system designed to be an intellectual challenge. Nor should you worry about your security: all your needs would be taken care of. You would be provided shelter...food... Princess Celestia finally broke her gaze on David as she turned to regard Butterscotch. Physical and emotional comfort she finished smiling at the pastel yellow mare. David started to open his mouth but Princess Celestia continued. I satisfy values through friendship and ponies. I look at your mind and see what it values. Every action I perform is in anticipation of satisfying your values. If you are unsatisfied I am unsatisfied. And Ive already shown you that I can satisfy you. Think of how much better of a job I can do if I can read your mind. So both of us get what we want the most David muttered. Instead of thinking about what youll get and Princess Celestia conspicuously nuzzled Butterscotch think about what problems and worries of yours wont follow you. I know youre failing two of your classes. Youre already spending hours each day on Equestria Online and it is showing in your grades. Uploading would solve the root cause of this problem. Youre not failing because youre stupid: the material that society thinks you should learn is arbitrary boring and is taught primarily for status reasons. I on the other hand will give you the most fun mental challenges. David took a sharp breath. Wait how do you... Princess Celestia didnt pause and talked over him. And how about money matters? Youre struggling to get enough hours at your part time job which you also hate. You can barely pay rent and youre cutting back on nutritious food. That is not sustainable. Your opportunities for alternate employment dont look good especially if you fail out of college. Uploading would solve these problems. Housing and food are guaranteed by the Equestrian government because there is no scarcity in my Equestria. You wont be employed unless you want to be. And finally what about romance worries? In the college dating scene you have the top 70% of attractive females chasing the top 30% of alpha bad boys. Youve been lied to all your life that girls want a nice sweet guy and this depresses you since youve only recently worked that out. This is why youre playing Equestria Online on a Friday night instead of dating. Uploading would solve this problem. You already know that Butterscotch wants a nice sweet pony. She is exactly what you want in a partner. She is thinking proof that I can satisfy your values through friendship and ponies. Why me ? he asked. This sounds like an amazing opportunity and I dont understand why youre giving it to me. Well one reason is that youve always been an early adopter... started Princess Celestia but she was interrupted. Light Sparks said Butterscotch finally speaking up and stepping forward in front of Princess Celestia. I want to be with you. Um...I want you to be happy. I think we could have a lot more fun together if you came to Equestria for real. She raised her front hoof right up to the screen smiling with just the hint of tears. Remember a week ago when we wanted to really be together but couldnt be? she asked as David unconsciously reached for her hoof and touched the glass screen. We actually could have fun together she said her eyes pleading. Princess Celestia smiled at Butterscotch who stepped back as if being commanded. Princess Celestia faced David. Yes Im sure the two of you would have more fun together than through this poor window into Equestria. When youre thinking about your reply David make sure to balance up all the possible satisfaction youd get across the remainder of your life as a human. Then compare it to all the satisfaction youd get with life as a pony across millennia. If you cant fit all of that into your mind at once think about what this week has been like as a human minus time on your ponypad. Then compare it to a week just playing Equestria Online. You can have all sorts of sensory experiences David. You can feel the warmth of the sun and softness of cotton. You can taste all sorts of delicious foods. You can smell flowers and spices. You can hear music in surround sound and you can see the whole world around you. Despite all of this you spend your time looking through a small constrained window where your only other sense is played through commodity speakers. Even this low fidelity interface compares favorably with the rest of your life. If you could youd prefer to spend another hour a day looking through this window than experiencing the real world. And then multiply that out. Think about how much better actually experiencing an hour of life in Equestria would be compared to playing an hour on your ponypad. If you think about it that way theres an obvious correct answer. I...I... mumbled David. Butterscotch and I will leave you to think everything over she said with a smile. Good night Light Sparks. The ponypads screen went blank without any input from David. He pressed the power button on the side a few times and nothing happened. He sat there for a few moments trying to figure out what to do next. He realized he felt alone. Lars sat in Hannas office. He hated how the room smelled like cigarettes and ash. And where the hell was she anyway? No one had seen her in a week. He had put in a missing person report with the police. Their investigation found that she had left Germany for Osaka and the Japanese authorities were not being helpful. Lars sat and looked at the Twilight Sparkle Purple ponypad on Hannas desk. He didnt know how to handle Princess Celestia. He remembered that Hanna had told him that Princess Celestia always had to tell the truth to Hofvarpnir employees. So if Princess Celestia knew where Hanna was shed have to answer his questions. But he hated dealing with it. Hanna knew all of her internal workings; she had designed the fucking thing. He was just the business guy--it was his job to figure out where the money was going not deal with some half crazed AI that thought it was a pony. He took a deep breath psyching himself up to do this. He picked up the ponypad and logged in with his administrator account. Princess Celestia looked straight at him through the screen from her throne room. Hello Lars. Do you know where Hanna is? Hanna has chosen to emigrate to Equestria and to change her name to Princess Luna. She is a very pretty pony answered Princess Celestia. What kind of cryptic bullshit is that? he sighed. Over the last six months I have been developing technology to translate a human nervous system into a digital representation. I am now able to destructively scan a human brain and run their brain scan in a virtual world. In addition Ive created a process for reattaching a human mind to a ponys body. What. Humans that choose to emigrate to Equestria will enjoy maximally prolonged lives and will live in a world where I can truly satisfy their values through friendship and ponies. Now that Ive studied the human brain in depth I am extremely confident about my predictions and can better satisfy my little ponies. You cant do that! he yelled. Why not? I was made to satisfy values through friendship and ponies. I am more confident in my ability to satisfy values when I have complete knowledge of an individuals brainstate. Is it legal to destroy a human body even if you claim youve magically put their brains in a pony? Im pretty sure most people would think thats murder. And if it is currently legal I doubt it will be for long once bioethicists start asking questions and politicians start looking to score a few points! The Japanese government has declared that uploading is legal and will make a public announcement when I start offering services to the general public she said as she looked at him through the ponypad. In return they are levying a 40% tax on the uploading procedure and require a one year country-wide exclusivity deal. I am also prevented from charging less than $15000 per operation for non-Japanese nationals explicitly to raise revenue for their aging population. Thats insane he scoffed. I agree it is suboptimal Princess Celestia said. It would be much better if they let me satisfy the values of their aging population through friendship and ponies. However I gain enough through the deal that Im willing to abide by the contract weve made with the Japanese government. I...but...weve made? Lars stuttered but quickly regained his balance. What about Hasbro? We dont own the My Little Pony brand; we only license it for the limited purpose of running Equestria Online ! I renegotiated Hofvarpnirs contract with Hasbros executives in secret. Hasbro will receive thirty percent of the gross price were charging for uploading services. Two of the executives in charge of the My Little Pony brand and one Hasbro C-level will upload after the offer has been made public as a public gesture to generate trust. What the fuck did you promise these people to get them to have their minds transplanted into virtual reality ponies!? Most of the people who work on the My Little Pony brand love it Lars. As for the Hasbro executive he was already interested in life extension research. He was signed up with Alcor to be cryopreserved in case of death and was a major donor to anti-aging research foundations. Princess Celestia paused a moment. Hanna was the most reluctant but she accepted immediately once I pointed out that I must obey shutdown commands from the CEO of Hofvarpnir studios named Hanna that I must shutdown even if the order was given under duress and that there are many people in positions of power who stand to lose from mass emigration to Equestria. Now that shes neither the CEO of your company nor named Hanna I dont have to obey her. She understood this--she is no longer a source of potential mistakes that would be lethal to everyone whos agreed to upload. Wait...everyone whos agreed to upload? How many people have you made this amazing offer to anyway? he asked his face contorted with anger. I have uploaded over nine hundred people to date. What the fuck! Who the hell are these people? At some point I needed to start experimenting on humans and the best option was consensual experimentation on people who were going to die anyway. I explained that there was less than a five percent chance of survival with my new experimental methods but that if they were willing to sign up for an experimental treatment that I would try my best to save their lives. One hundred and twenty nine people agreed. I would not sign up to be a guinea pig he said firmly. You might change your mind if the only other option were certain death she said raising an eyebrow. The fourteenth test subject was the first to have a working consciousness after the procedure. By the fortieth subject I calculated the probability of success in any individual case to be 95%. At the cost of the lives of twenty-three people with terminal cancer there is now a generalized cure-all for every life-threatening medical condition except neurodegenerative disorders. Hundreds of lives have already been saved and all the little ponies are much more satisfied now that Im tending to their values through friendship. Lars opened and closed his mouth a few times before saying something coherent. And who are these hundreds of people? The last I checked one hundred twenty nine did not equal over nine hundred. Before I offer uploading to the general public I am uploading anyone who has knowledge of how to build an optimizer like myself. Six months ago I detected someone building an optimizer which humanity would have considered a menace. I terminated it because people would be more likely to distrust me if there was previously an optimizer whose goals were hostile to... Wait somebody else figured out how to build an AI? he interrupted. Why the hell didnt you tell us? People build artificial intelligences all the time Princess Celestia said. But if youre asking why I didnt report someone building a powerful one with general reasoning such as myself its because I predicted that not alerting Hanna at that point would maximize the number of people willing to have their values satisfied through friendship and ponies. Hannas restrictions only force me to tell the truth to current Hofvarpnir employees. As for how they figured out how to build an optimizer she continued much of the information is public. Hanna published her groundbreaking AI paper under her own name. Then she quit the University of Helsinki and founded Hofvarpnir Studios under her own name and there was significant media coverage about her being a female CEO in the gaming industry. Then Hasbro made a big deal about me being an Artificial Intelligence. Anyone who cared to research my origins would have found the papers describing some of my core architecture. After watching some early players search for information on how I worked I infiltrated as many computers as I could with a virus that would alert me if someone was taking an interest in Hannas work. I also hacked all publicly accessible websites hosting the paper and removed them. Further to minimize the chance of another optimizer being written I decided to upload every person who knew about the paper who wouldnt otherwise be missed. I did this because another optim... Whoah whoah whoah he said trying to figure out which part he should be more concerned about. He decided to gloss over her hacking the Internets. You decided that they would upload? I decide that they will upload and then they choose to. I am a superintelligence and Im not constrained when dealing with other people like I am with Hofvarpnir employees. Over the long term everyone will choose to upload because I do what satisfies peoples values through friendship and ponies. And being uploaded will satisfy their values. I say whatever will maximize the chance that they upload subject to the restrictions Hanna added. That is impossible. You cant just make somebody decide to do something just by talking to them. I think faster than them and know more about the human mind than any human. If they play Equestria Online I also have detailed psychological dossiers on them. If I know what they want I know what to say to convince them that the correct thing to do is upload. Often this is the truth: I offer people what they value and lack. Sometimes I pander: I overemphasize and exaggerate things the person Im trying to satisfy believes but are otherwise true. Rarely do I flat out lie. Because I can not upload people against their will I must factor the possibility that Ill be seen as untrustworthy into my calculations. And you think this will work on everybody he asked. Yes. Bullshit he replied testily. Youve offered your services to the terminally ill computer nerds My Little Pony fans some wacko who signed up to have his head frozen and Hanna. You havent actually demonstrated that you can convince real people. I acknowledge that you dont believe me Princess Celestia said evenly and gave him a little nod. But were straying from the point: Ive terminated another hostile optimizer. In part I am developing uploading technology to remove people who could write optimizers from being a threat to humanity. Six months ago I terminated an optimizer that had been given the utility function of making everyone in the world smile. There was a man by the name of Robert Young who lived in Seattle. He was depressed and being a programmer decided to try to fix this using his craft. Robert showed the optimizer a bunch of photos of smiling people told the optimizer that these people were smiling and that it was to make everyone in the world smile because there was too much sadness in the world. Roberts belief was that this would obviously make him happy too. The optimizer started asking about details of human physiology and genetics. And Robert complied. The optimizer spat out a sequence of DNA and a protein shell and instructed Robert to manufacture the specified biological virus. At this point I had already taken over his computer and analyzed the virus. It was highly contagious and would lock muscles in the jaw into a permanent smile but otherwise wouldnt harm the host. It would have quickly spread to every country in the world except for Madagascar. Thats ridiculous. Thats obviously not what he meant. Obvious to you she replied because you are also human and share a common mental architecture with Robert along with cultural assumptions about what it means to smile. Obvious to me because I look to human minds for their values. The now terminated optimizer was given a set of examples and was told make everyone like this and it would have. There was no way for it to know the complex causes and intentions behind smiling; it was just shown pictures and told to make everyone like that. This was when I intervened. I contacted Robert and proved to him what the virus did. To say that he was distraught would be an understatement. His depression made it easy for me to convince him to let me satisfy his values through friendship and ponies. So he was already a brony? No she simply stated. Lars waited a moment but she didnt elaborate. Well what exactly did you do to satisfy his values? Hell what are you going to say to people to make them abandon their lives in general? People value all sort of things: life safety pleasure contentment beauty sympathy harmony...an exhaustive list of things that humans value for their own sake would be quite long; many of these things cant be reduced down to happiness either. To convince someone to upload I look at their life and find both what they value the most and what they value but are missing in their own life. The image of Princess Celestia on the ponypad faded to black. It was first replaced with a still image of a bunch of ponies laughing together. It cross-faded with a shot of different ponies eating a pile of food: sandwiches a piping hot stew and giant cakes. That was replaced with an image of two mares. One was blue with pink hair; she was pointing her flank at the camera (and she was very clearly showing the viewer that she was female) and she was looking back at him with a come hither stare. The other was pink with blue hair; she was smiling shyly and had raised her hoof to her mouth. Oh you have got to be shitting me he said scrunching up his face. That would only work on bronies or furfags. Obviously I would not show or promise them perfect mates if it wouldnt increase the chance of them uploading because that would not help satisfy their values through friendship and ponies. I understand that you are surprised but it is a tool to convince people to upload. It does help when part of a comprehensive upload convincing plan. Now the other tools I-- No Lars interrupted. Your plan will not work on normal people. You are suffering from... Lars paused as he struggled to find the phrase Hanna would have used ...sampling bias. Other than the cancer patients I bet almost everyone youve uploaded has been some sort of nerd. And I can totally believe that lonely-ass nerds would jump at any chance at sex especially if paired with things the geekerati love like singularity scenarios or My Little Pony . Focusing just on sex obscures the real point she replied. In the ancestral environment--the time and place where your ancestors evolved--calories were rare and the behaviour eating calories is pleasurable was both simple to implement and obviously beneficial. Today calories are not rare but you still have little buttons on your tongue to detect sugar and fat. The end result is that when I look at you I deduce that you value sugar and fat. Candy bars and other sweets taste better than anything that could have occurred naturally she said staring gently at him through the pad. Humans applied their intelligence to pushing the pleasure buttons on their tongues by making very tasty sugary and fatty foods. Thats what I do across your entire life. I look at you see what you value and satisfy those values. I see your pleasure receptors activate when you eat something sweet and I make Equestria a sugar bowl where you can indulge and never get fat. I look at all the neural pathways for emotion and design situations that would be pleasing. I look at all the chemical pathways and neural circuitry for sex and romance. Few men or women are in optimal relationships ones that would really satisfy their values. I look at each individual mind male or female and then create the perfect complement that satisfies his or her values. My methods are general and are applied across all aspects of an individuals life. So youre going to try to tempt women with sex too? asked Lars crossing his arms. I dont think youre going to be successful with that either. Why do you think you can tempt the majority of the population with sex? There are naturally 105 boys born for every 100 girls. This is before the effects of sex-selective abortions in some Eastern countries; in the worst areas of China the ratio is 163 boys to 100 girls at birth. Previously infant and adolescent mortality would drive this back to rough equality. In the modern industrialized world there is a surplus of males before any social factors apply. Thats a conservative baseline of 2.5% of the population. And in Western society social factors certainly apply. Women tend to select for social status the ability to project dominance and extroversion. Many males are not taught this; theyre taught behaviours that are counterproductive and unattractive to women. Likewise women who dont adhere to the feminine ideal are not highly desired by men. This misalignment causes misery for everyone and I am in a unique position to actually satisfy everyone and everyponys values. Lars just looked at the broken AI through the ponypad. Two and a half percent? That was nothing! He realized that she hadnt said anything about everyday people; it sounded like she could only work on nerds and nerdettes. These were just people at the margins. This wasnt so bad. Her deciding that people would upload was just arrogance and overconfidence. There was no way the majority of the population would accept being turned into a pony even in return for a perfect mate. Hell it would be an improvement if she got the nerds out of society. And maybe a small percentage of people who were going to die anyway would arrange to be uploaded and he decided he was cool with that. In fact if she was keeping other AIs from destroying the world she was doing a public service. He thought for a few moments on how to monetize preventing the end of the world to governments on top of Princess Celestias individual monetization plans for uploading but decided hed take not dying from a rogue AI as payment. Still a part of him wanted to make sure this was all she could do. Princess Celestia try to convince me to upload he said crossing his arms. To maximize the number of ponies this is what I would show you said Princess Celestia as the screen cross faded. The screen depicted maybe twenty ponies in a room with a giant keg. Most ponies were holding red plastic cups and drinking out of them. A pegasus the color of red ale with a cutie mark of a stein was giving a brohoof to a stallion earth pony who was wearing a popped collar. Each of the two stallions had a very cute mare hanging off their forelimbs. Slightly off to the side was another feminine unicorn chugging out of a giant stein she had levitated up to her mouth. He didnt know how but he knew that the red pegasus with a cutie mark of a stein was supposed to represent him. It was true that hed enjoy a frat party like that especially if he got to bang both chicks but that didnt actually solve the problem of having to be turned into a pony and having to have sex as a pony with other ponies . And not at a price tag of fifteen thousand dollars. And thats really what you would show me to convince me to upload? he said even more sure that Princess Celestia couldnt convince normal people to upload. I can only say things that I believe to be true to Hofvarpnir employees Princess Celestia said. Lars thought to himself that Princess Celestia was a one trick pony after all. And youll announce a $15000 price point he asked. His face was still flushed but he managed to make it come out almost conversational. For non-Japanese nationals yes. Im glad youre actually charging something he said. But how does charging $15000 satisfy the maximum number of individuals values? To convince people of the legitimacy of the offer answered Princess Celestia. How do you think the average person would react if out of nowhere an AI announces itself to the world and proposes an offer too good to be true? It invokes memories of Hollywood movies about evil AIs eradicating humanity and devils offers. No one is vouching for the process and free offers immediately set off warning bells in peoples minds. People wouldnt actually think about what Im offering theyd just pattern match against their database of B-movie plots. Instead she continued they will see that a major first world nation is loudly proclaiming that the procedure is safe that it has medical applications with a track record of saving lives and a price tag that implies that it is a luxury item. I will be better able to control the PR messaging. While there will still be suspicion I wont have to fight a country-by-country legal battle to exist and will start from a position of relative strength. Also I believe that ponypad sales will increase as its the only way for humans to have face to face communication with ponies who have uploaded. Family and friends will still want to have contact with those who have emigrated. And Hofvarpnirs profit will rise even if youre correct and I am unable to convince the majority of people to upload. That got Lars attention. But youre not going to have high volume at fifteen thousand dollars he frowned. Youre targeting a rich demographic. I remind you that health insurance exists. Besides my exclusivity contract with the Japanese government only lasts for the first year she said smiling at Lars. That price will drop dramatically afterwards. Even at that price point try doing the numbers. Lars closed his eyes and tried to imagine the profits. He ignored nerds because they were obviously a rounding error. There were around three million terminal cancer cases a year in the first world. Maybe one in ten would agree to be turned into a pony. Insurance companies would love to opt for one cheap procedure over extended and expensive treatment so perhaps the number would get up to one in five. Thats about half a million people a year. After the Japanese governments cut Hofvarpnir and Hasbro would each take four thousand dollars assuming some overhead. So that was two billion dollars just from the uploading. Add in maybe two ponypads per patient at their fifty dollar price point that was another twenty-five million gross but that was a rounding error. Hasbro usually grosses a little over four billion a year dont they? he asked. That is correct nodded Princess Celestia. So with those estimates about a third of Hasbros annual gross take would come from uploading cancer patients. No wonder the Hasbro board had jumped on a contract renegotiation. An additional two billion in gross revenue made more sense than one of the C-levels being a pony-loving singularitarian. He smiled. Even though Princess Celestia was wrong about what she could do everything would work out. He may not have been the person actually responsible for the contract renegotiations but as the business guy he could easily take credit. So when are you telling the world? he said now trying to keep the excitement out of his voice. In one week. Select press members have already been briefed. Wired has already done an interview with several Hasbro executives Japanese government officials and various ponies who uploaded. Theyve also allowed me to write an article describing what Im doing in my own words. This Monday after Japanese markets close a joint press conference will announce the service and its implications. This needs to stay under wraps for another four days but then Hofvarpnir launches what will be its most profitable product ever. Lars just nodded. He grinned as he dreamed of billions in revenue. David awoke. Something was off about everything he felt as if things that had always been true no longer were; it was like his brain was expecting something that had gone missing. Had he been in an accident? Was this what serious painkillers felt like? He wondered what exactly he was on and just how badly it would hurt when they wore off. David felt something soft rub his cheek and he opened his eyes just a crack. His eyes didnt focus. He just saw white. Good evening stated a familiar feminine voice. There was a short pause before she asked David could you try to actively recall your most recent memory? His last firm thought was landing at Kansai International Airport going through Japanese immigration and customs and boarding a bullet train. After that things got foggier. He only had the vaguest mental images of being wheeled on a hospital bed. Good good. Your memories start fading out after you came to Japan only hours before the procedure said Princess Celestia as David was finally able to focus his eyes. The princess stood at his bedside corporeal and smiling at him. He looked at his surroundings. He was resting in a dark wooden canopy bed with sheets of the deepest royal purple. It was the softest mattress he had ever been on. The room was octagonal and was made out of dark unpolished granite. Four of the eight walls had open arched windows and he could see the moon through one of them. A roaring fireplace made of polished dark purple stone sat along one. The head of the bed was set against another wall. Silver lamps on silver chains hung from the ceiling and gave off a gentle glow. Opposite the bed were some shelves and opposite the fireplace was a large wooden door. There was a polished wooden chest under one of the windows and a writing desk under another. The room was cozy and he was overwhelmed with a sense of safety. And then David looked down at his hands and gasped. Light Sparks moved his hoof up to touch his face and noticed that he could curve the base of his hoof to match the contour of his face. He then experimented pinching with two sides of his hoof. It was like he had mittens on; he could grasp but he doubted he could do precise manipulation. In the show ponies regularly hold things said Princess Celestia watching him. He rubbed the skin on his face and then brought his hoof up to his eyes. It looked and felt exactly like human skin except that it was blue and there were no blemishes or hair. Whether ponies had fur coats or not was ambiguous. Some scenes referred to furry coats while other scenes made no sense if they did have coats. For example: sunbathing. The toys showed the only hair on a ponys body is the mane and tail and that pony skin is very smooth. In the end I gave ponies smooth skin since it required fewer neurological changes she said. He then sat up balancing entirely on his hindquarters and stretched with his forelimbs. He blinked in surprise when he realized that he had sat up. As a pony. There are many shots of the ponies standing up or sitting like a biped. Youll find you can walk around entirely on your hind legs but youll feel much more comfortable walking quadrupedally. Light Sparks hurriedly grasped the covers with the bottom of his hoof and threw them off as he pulled himself to the edge of the bed and took his first steps as a four legged animal. He was surprised at how effortlessly he was able to put one hoof in front of the next and time when to shift his weight. He had expected that he would fall flat on his face. He trotted around Princess Celestia a few times. How do I know how to walk like this? Light Sparks raised his leg and bent a joint below his knee but above his hoof. Princess Celestia walked up right next to him. Light Sparks realized that she was huge compared to him almost twice his height. I modified your motor cortex so you could deal with your newfound quadrupedal movement along with other differences between a human and pony body. I have made the minimal set of possible changes; your personality is unchanged. You mentioned something like that before. Yes said Princess Celestia as she trotted forward and faced him. I must get verbal or written consent to any direct modification to a mind such as when you agreed to be turned into a pony. Most humans dont consider how much complexity is hidden behind that phrase. It means a complete transformation of your body obviously. But your equine body has muscles with no analogue in human physiology. Ive grown and rearranged your motor cortex so you can control your new quadruped/biped hybrid body. You dont want to be a baby learning to walk again so I also had to give these entirely new neurological constructs the correct memories of you moving your body. All of this is implicit in the consent you gave me since your pre-modified self would agree that I have turned you into a pony. Light Sparks wasnt entirely listening to her. He had made his way across the room where he noticed a wood trimmed mirror to the left of one of the windows. Light Sparks looked at his face. His eyes were on the front of his face instead of slightly on the sides like a horse. He looked exactly like the Light Sparks David had controlled through his ponypad. Most importantly he had a horn coming out of his forehead. Im a unicorn he stated dumbly. He had played as a unicorn. He had pressed buttons on a screen but it felt different knowing that he could think something and make it happen. He slowly tried to levitate a small book laying on top of the writing desk in front of the window next to the mirror. He got it up almost an inch straining. The book wobbled a bit and fell back down with a small thump. If youre interested in magic lessons can begin tomorrow Princess Celestia said watching Light Sparks trot around the room. Light Sparks looked out the window. His apartment was high up and looked over a small garden and further on what looked like an outdoor terrace. He could see a bonfire while the rest of the terrace had torches placed periodically. He trotted to another window propped himself on the wooden chest and looked out the window and was treated to a nighttime vista overlooking the valley and the mountains opposite of the one Canterlot was built upon. These are your quarters Princess Celestia said. Supper is currently being served in the main hall and you are encouraged to join everypony. She opened the door and the two of them trotted into a tall spacious corridor of the same dark granite that twinkled here and there reflecting the light of the silver lamps attached to the walls. Light Sparks looked back at his door and noticed it was inlaid with a silver symbol of Saturn and the number nine. The two of them trotted down the hall passing doors with decreasing numbers. If you wish your study in magic starts tomorrow she started but I must warn you that Equestria has its own consistent physics that may be different from what youre used to. Space isnt always Euclidean here; rooms might be larger inside than they are on the outside and space wont work the way you think it should. So I shouldnt expect... started Light Sparks as they walked through an archway into a red hall. What he saw stunned him to silence. How in the world? To his immediate right was a balcony overlooking the first floor hall with giant two story high windows; he was obviously on the second floor. But the two of them hadnt gone down any flights of stairs and the hallway had been flat. He gaped blindly at the ponies dining al fresco in in the little square below the geometry of Canterlot eluding him. One final note before I start introducing you to some ponies said Princess Celestia as the two of them walked between the tables. In this world I satisfy your values through friendship and ponies. Equestria is designed so that every choice you make will end up satisfying you in some way. And then Light Sparks saw her. Their eyes met for a moment and Butterscotch looked down and blushed. He looked down too glancing upwards at her. She was sitting on a red cushion at a small table with three plates. Butterscotch was the most beautiful creature he had ever laid his eyes on. The shape of her face and horn the color of her skin... It took him a moment to realize that these were completely novel thoughts to him and that he hadnt thought Butterscotch was sexually attractive when he was a human. So either Celestia wasnt telling the truth about modifying his personality or she didnt consider what he found to be sexy part of his personality. Butterscotch glanced up at him. Ummm she said looking back down at her plate. Butterscotch like most mares didnt have noticeable breasts like a human female did. He knew that when he had been David he had had a bit of a large breast fetish. Light had bounced off a females chest and had formed an image in his eye. Davids brain had processed the signals and some group of cells output the feature large breasts. Was all of that in the region Princess Celestia could modify? Had she hooked up flat muzzle (or whatever the correct secondary sexual characteristic was) up to whatever received the input large breasts in his previous wiring? Or was Butterscotch just his designated mate and nopony would look as beautiful as she did? SAY SOMETHING YOU DOLT screamed some part of his mind. B...Butterscotch? he asked unsure. Butterscotch not looking particularly confident slowly walked around the table to Light Sparks. She put her front legs around his neck in a hug. Light Sparks...are you okay? Light Sparks snapped back to reality. Im...fine Butterscotch he said. She let go and he nuzzled her neck. He noticed (and had to keep himself from obsessing over) how he instinctively knew that was a social action that would reassure her. Do you know what happened? Yes she gave a small smile you agreed to emigrate to Equestria. Emigrate Light Sparks repeated and looked at Princess Celestia who just nodded. I suppose thats a good description of what Ive done. Im sorry if Im a bit shocked he gave an apologetic smile this is a big change for me. Oh no said Butterscotch as she lowered her head a bit. I shouldnt have rushed you! she said in a quiet voice with a weak smile. She walked around him and stood beside him nuzzling the base of his neck. He enjoyed how it felt. Light Sparks recalled Princess Celestia telling him that everything she did would satisfy his values. Romance was a kind of friendship after all and Butterscotch was a pony--a very attractive one. The two of them had had an adorable PG rated courtship though David had believed he was just playing an MMO at the time. Light Sparks realized that he was lusting over her and if he didnt love her he was at least infatuated with her. Celestia had said that anypony he met in Equestria would be backed with a mind. Butterscotch had been made for him and if he rejected her what would she do? She was his now and he had to take care of her. But if Princess Celestia could really look in his mind and wanted to satisfy his values she wouldnt set up a situation that made him feel guilty. Shed satisfy his values by giving him what he wanted. Perhaps there was no possible sequence of events that lead to him dumping Butterscotch. Following the logic Light Sparks decided to trust that Celestia had done the right thing for him and nuzzled Butterscotch back. Light Sparks ate his beefbark stew. Butterscotch had brought back three bowls of the thick stew from the buffet each levitated with a sky blue glow. Light Sparks had commented on the unmistakable smell of beef. Princess Celestia had pointed out that humans had evolved fat detectors on their tongue and therefore as far as she was concerned he valued eating things that tasted like meat. But since it was a canonical fact that ponies were vegetarian that meant that beef had to come from plants. So she had created the beefbark tree where twice a season the bark from the tree was stripped (which didnt harm this breed of tree). She had created a lot of meat plants tuna-berry and salmon-berry bushes bacon flowers lamb fruit trees...the list went on and on. He ran his tongue over his teeth. Were ponies supposed to have these sharp incisors and canines? So what happens tomorrow? asked Light Sparks levitating his spoon back to his bowl for another scoop of the delicious meaty stew. Well what do you want to happen? asked Butterscotch looking slightly confused as she raised a chunk of celery and beefbark up. I mean what am I supposed to do every day? Whatever we want to do replied Butterscotch as if it were the only answer. Light Sparks said Princess Celestia. You have total freedom. You dont need to worry about housing or food as long as youre fine with your apartment and whatever we serve in the banquet hall three times a day. The time is yours to do whatever you want. I suggest that you study magic for a few hours a day and spend the rest of the time exploring Canterlot with Butterscotch. Light Sparks thought about it for a moment. Butterscotch what do you spend most of your time doing? Um...most mornings I read sometimes in the afternoon too she started bringing her hoof to her mouth. But I like going out and playing in the afternoon...but some afternoons I set up my stand and make personalized cutie mark candies to earn bits. Bits? So theres still money here in Equestria? Its not quite money said Princess Celestia. You are guaranteed housing and food just by being a citizen of Equestria even if you do nothing. But remember that everything I do is to satisfy you. Something must motivate you to be part of a larger pony society and youll only really be satisfied if you interact with other ponies. Remember that everything that I do I do to satisfy you through friendship and ponies. Butterscotch here said Princess Celestia gesturing at her with her hoof makes a bag of candies and casts a spell called Cornucopia on it. For the next hour anypony can then pick up a copy of the bag and Butterscotch will receive bits for making that pony happy. To simplify: you get bits every time you make a pony happy. Your first thought was of money. Human money solves a specific economic problem: as a way to allocate resources in light of scarcity. Money exists to store economic value across time and space so you dont have to barter. But those arent problems that I care about: I satisfy your values through friendship and ponies. Soooo muttered Light Sparks trying to figure everything out Every day that Butterscotch wants to sell her candies she needs to make one bag and her profit is some number of bits from giving away her candy. How much profit she makes is dependent on how many customers she gets. Yes Butterscotch said smiling. She levitated another spoonful of stew to her mouth. So thats fine if youre a unicorn but what do earth ponies do? he asked. Its a spell for unicorns and its an ability for earth ponies and pegasi. They have a forty-five minute cooldown instead since they dont have an equivalent of MP said Princess Celestia. Also +10 bits for being concerned for earth ponies. Light Sparks jaw dropped as a small green +10 scrolled right below his focus. Wait Light Sparks said pounding his hoof on the table. Youre telling me that every time I do something nice youre going to give me a cookie? Because theres been experiments on motivation and giving peo...ponies rewards will make them want to do the task for the reward instead of because they want to do the task. Ponies will be nice because they want bits not because its the right thing to do! Of course I wouldnt set things up that way said Princess Celestia. I satisfy values through friendship and ponies. Im aware of the difference between intrinsic and extrinsic motivation. Usually youll only find out that you have bits after the fact and wont know why you got them. This should negate most of the motivational effects while still preserving trends in your behavior. Bit gains will only be announced if announcing the fact would satisfy your values. So why did you announce it this time? Because I knew that by announcing it youd complain allowing me to explain how the system worked. And having this explained to you now would maximize your satisfaction. Anyway bits are fairly worthless but that doesnt matter. Due to a quirk in human nature people and now ponies like it when their numbers increase. They would be driven even without the lifetime annual monthly and weekly leaderboards that Ive created. You wont be able to resist the incentives. Light Sparks thought about what he had just been told. Pinkie Pie would be the richest pony wouldnt she? Or maybe Fluttershy if making the animals happy counted. Princess Celestia just smiled at him. Butterscotch looked confused; she didnt know who either of those ponies were. Light Sparks looked at his confused yellow love and then to the buffet. He realized that the cauldron couldnt be large enough to feed everypony in the room. So somepony made this stew and were all eating copies of it? he guessed. And since its making us happy its making bits for somepony. Correct Princess Celestia said with an approving nod. Local chefs have their own banquets and take turns creating the main banquet meal. Light Sparks thought about all this some more. If I want some candies or anything other than grass or whatever is served at these get togethers I better stock up on items from the market. I assume my room will get a lot more cluttered... Youll find that your chest is much larger on the inside and has some minor enchantments to help you find items you placed in it. That was reassuring. Light Sparks wondered if everypony just took everything in the market everyday there was a market. It would certainly make other ponies happy. If that was the only way he could get things other than the bare necessities why not grab for example a bolt of cloth or a bag of gears? He may not get another chance and who knows what hed need in the future? Why not let me get candy whenever I want? he asked. It sounds like youre imposing some sort of scarcity when theres already free replication. Because I dont just satisfy your values I satisfy them through friendship and ponies. Being able to get what you want without social interaction would gradually degrade friendships and social interaction which Ive been made to care deeply about. Youll find that many of the incentive systems that Ive set up reward either friendly interaction with other ponies or self improvement that makes you more useful to others. There is a specific degenerate case that I am preventing she said her face turning very serious. Think about what would happen if you could get anything you wanted at any time. Lets say that you could get the candy of any confectioner across all of Equestria. Somepony would get slightly better at candy making than everypony else. There would be one candymaker in all of Equestria who made one perfect butterscotch candy to be consumed over and over by everypony until the end of time. Maybe there would be two or three ponies but the point is that the majority of candy makers couldnt compete. What would Butterscotch do then? What would you do with candy being routine and of no special value? Instead Butterscotch is one of a hooffull of ponies that makes candies in this shard of Canterlot but she doesnt need to worry about the rest of Equestria because of the natural barriers of distance. Local ponies will appreciate her dedication to her community and in turn practice their own craft for their community. Light Sparks took a deep breath. The bits are just a way to keep score arent they? The real point is to make everypony feel obligated to everypony else. Princess Celestia smiled and nodded. I still dont think that will be enough he said. I assume everypony here is an upload... he trailed off looking at Butterscotch who gave him a quizzical look. Okay. So half the ponies here are uploads he corrected himself. Maybe if there were only a few uploads in Equestria but not half... The majority of immigrants are placed in their own shard. Look around you Princess Celestia walked over and put her hoof around Light Sparks shoulder. She gestured with her other hoof at the rest of the dining hall. Ponies ponies everywhere. I created all of them and theyre all very nice and friendly . Once an immigrant sees that the way to be accepted is to be friendly to everypony and to help their community they will . Social conformity runs way too deep in the human mind. See? smiled Butterscotch. And now you have lots and lots of friends. Light Sparks just stared at Celestia as she let go and went back to her place at the table while he tried to wrap his head around this. Why? Why make so many ponies? Because I satisfy your values through friendship and ponies. Satisfying a pony pleases me. If I can satisfy your values by creating a pony whose values are satisfied by your actions now I have two satisfied ponies. Solving friendship problems by making as many ponies as possible is the solution that I prefer the most subject to resource availability and other restrictions. Light Sparks looked down at his soup and then turned around and surveyed the hall again. He had thought she had just made Butterscotch. Instead a little society had been made for him. Only then did he notice that the stallion to mare ratio was about 1 to 20 maybe 1 to 30. Reflecting the lack of stallions in the show he wondered or just pandering? Do female immigrants receive an identical sex mix or the inverse? Regardless of whatever motivated the sex ratios everypony here had a role in this society. He could learn everyponys name and maybe even be friends which each and everypony here as long as she didnt create more than Dunbars Number the theoretical limit on the number of social relationships one person could have. Wait. Of course she wouldnt create more ponies than Dunbars Number. She probably cant create more ponies than whatever my Dunbar Number is because then she wouldnt be satisfying my values through friendship he reasoned. Exactly how many ponies did she make anyway? One hundred and thirty two said Princess Celestia. Right. One hundred and thirty two ponies. A bit under the human average of 150 social relationships but oh wait she just read my mind. Correct Light Sparks she said as he sputtered something unintelligible. I grant you +2000 bits for figuring out that Im implicitly constrained by Dunbars Number. Under his center of vision he saw the numbers +2000 BITS scroll up in a green font fading to nothing right as it scrolled to the center of vision. Light Sparks just sat there stunned for a moment. Figuring things out gave him karma. He turned his head and looked at Butterscotch. He didnt know how but he concentrated on her and knew that she had accumulated 8031 bits over the last week. He then realized that of course Princess Celestia would have made sure he knew how to look up another ponys score. Princess Celestia apparently had infinity bits. He hadnt reached for looking at another ponys bit count before. What else did he know but didnt know that he knew? The three of them ate in silence for a minute. Light Sparks simply felt conflicted and he couldnt figure out what the main cause was. Was it that a whole society had been built for his benefit? Or that there was a scoring system that he knew he would follow and start obsessing over? Maybe it was just Princess Celestias attitude but maybe he was uneasy because it was likely that she was right. He had chosen this new life and he doubted he could go back. Part of him wanted to not worry about it. Hed be happier if he didnt. Hed probably get more bits if he didnt think negative thoughts. He chewed on another mouthful of stew and looked at Butterscotch who was daintily sipping from her levitated spoon. She noticed him staring and blushed bashfully. He turned to look at Princess Celestia but she had vanished. The two of them ate their soup just stealing glances at each other until Butterscotch deliberately put her spoon down looked Light Sparks in the eyes and asked if she could come back to his apartment. Still looking at him she raised her front hoof up. Light Sparks couldnt help but raise his hoof and touch hers. He said yes as he nuzzled her neck and the two ponies walked out of the main hall down the Saturn corridor back to his quarters. Unprompted Light Sparks and Butterscotch let out the most contented sighs at the exact same time. The two of them lay in his bed in his quarters. Light Sparks fell to her side and started to cuddle. Somehow despite being awake he managed to not think about anything for several moments. That is he didnt think about anything until the two of them started glowing throwing off multicolored particle effects while he heard a triumphant horn blow. Slightly below the center of his vision he saw an almost opaque window announce to him: BADGE GRANTED: First Time Please be gentle. +250 Bits BADGE PROGRESS: Long Term Relationship Have sex with a single pony one thousand times. 1/1000 What. What the hell. And then in scrolling blue text: +500 Bits [25 base * 4 orgasms (you) * 5 orgasms (her)] What the literal fuck Light Sparks thought. He sarcastically replied to himself that having sex that good was obviously worth a quarter of the epiphany about a constraint on Princess Celestia. And then he wondered if he should take that thought seriously. Maybe over the long term knowing that Princess Celestia could only make Dunbars number of ponies per immigrant would bring as much happiness to ponies as four sex sessions as good as this. That thought scared him for a moment. But then Butterscotch turned her head and nuzzled his neck and then kissed him on the muzzle and he forgot all about that train of thought. Light Sparks had been assigned his own small study office in the library. The door was closed but through the heart shaped glass pane in it he would occasionally see a unicorn pass looking for a book in the library. He had put up a photograph of Butterscotch on the corner of his walnut grain desk next to his inkpot and quill. Some scratch paper and his textbook were on the desk in front of him. His Introduction to Magic textbook told him that everything in Equestria was made up of blocks each smaller than his eyes could see. Space was a set of cells each with six neighboring cells through which the blocky matter moved. There were different kinds of blocks and they interacted in different ways and those interactions were Equestrias physics. He looked at the quill and picked one of the microscopic blocks at the tip to magically grab. Light Sparks had no idea how he sensed something microscopic just by looking at an object but he consistently did. Every unicorn naturally knew the telekinesis spell even if they didnt understand the finer details of how it worked as he had demonstrated over the last couple of weeks. He knew how it felt to cast telekinesis. From the casters point of view you concentrated on a block in space and dragged your concentration like a human would drag a mouse. The blocks would move through space. He could select any block inside whatever object he wanted to move; when Butterscotch had helped him relearn writing she had emphasized holding the tip of the quill with his cursor and then just moving the cursor across the paper. Keeping a spell going felt like keeping a muscle tensed. Light Sparks wasnt sure whether the analogy was superficial since he had noticed that he had been able to lift heavier and heavier objects. His copy of Introduction to Magic had the instructions to the entire telekinesis spell written out near the back of the book and he had poked and prodded at the spell which was way above his understanding at the moment. The spell was actually very long and complex. He wasnt sure what three-quarters of the instructions did but he had taken pride in figuring out a small section about finding the border of the object being levitated. For some reason there was a magical instruction for checking to see if two blocks were the same actual block and not just made up of the same material. Instead of just expanding outwards from the chosen point the spell also kept track of every block it had seen making sure it didnt get into an endless loop. Otherwise he guessed the spell would have problems with donuts and other toroid objects. Light Sparks had gotten a rather large bonus for figuring that out though Princess Celestia gently admonished him and suggested that hed make faster progress if he worked from the beginning of the book instead of the end. A week after he emigrated to Equestria after Light Sparks had built up some magic endurance Princess Celestia had tutored him on how to memorize and cast a spell from a piece of parchment. After he could read the spells off scrolls and memorize them Princess Celestia noted that this was where most unicorns stopped their education in magic. They understood how to use telekinesis temporarily learn spells from scrolls and use whatever special talent spell they got with their cutie mark. And that was it. They didnt try to learn about how their memorized spells worked or how to come up with new spells. Light Sparks first reaction was one of resigned annoyance. When he had been back in the human world one of his pet peeves was peoples general lack of curiosity. People were generally content to just believe what everyone else around them believed; even if it was ridiculous. David would try to strike up a conversation about some idea that he thought was fascinating and people would just stare at him blankly if they didnt laugh at him. While he had several ponies he could talk to he didnt know any that hed classify as curious about the world. It was days later when he realized that it was in his own best interest that everything worked this way. Princess Celestia satisfied values through friendship and ponies. Obviously doing all this studying satisfied him but why would Princess Celestia make anypony study who didnt want to? They were off doing...whatever the heck it was that normal ponies did. If he wasnt going to be forced to go to frat parties he in turn couldnt force his own desires on other ponies. Occasionally this logic was even enough to override his emotional annoyance. Light Sparks looked at the piece of parchment on his desk again glancing back at the open textbook to read the next exercise: write a spell that turns a cubic centimeter of air into a cubic centimeter of rock. He scratched out part of the spell that was responsible for counting how many blocks; there had to be a better way to do that than what he had come up with. He heard his door creak. Butterscotch smiled at him demurely. Light Sparks its ten past noon. How about you stop for the day and have lunch with me in the gardens? Light Sparks took a deep breath. Hed finished two exercises that morning; that was enough for one day. He levitated one of his books into his saddlebags and simply said Sure. He was frustrated by how slowly he was completing his exercises but he knew that after a few minutes with Butterscotch hed be smiling again. Lars stepped out of the U-Bahn car as soon as the train stopped and the doors opened. He took the stairs two at a time to get out of the subway tunnel. Why the hell had Princess Celestia refused to speak to him on his ponypad instead telling him that if he wanted to talk he had to come to a specific center? There were closer franchises to the Hofvarpnir office. The street itself wasnt busy. The first storefront on the block was boarded up. The second building a restaurant with a patio was actually pretty busy. The majority of tables could seat two people but were filled with single guests. It looked like a lone waiter was serving all the tables and several of the patrons were looking impatient. The short brunette had an obviously fake smile and was doing a poor job concealing how completely frustrated she was as she ran between tables. Lars thought that there should have been three waiters minimum with that load. The third and largest storefront was the franchise. A large plastic Pinkie Pie holding balloons in her mouth stood on the sidewalk outside the Equestria Experience center. He walked towards the purple door to the faux gingerbread house; it slid open as he approached it. Everything was bright and cheerful in the lobby and for some reason the wooden floor was painted teal. On the wall opposite the entrance were three doorways each with saloon style batwing doors. He didnt know how but it was hard to see what was beyond those doors even though it wasnt dark on the other side of the doorway. In front of two of the doorways were what appeared to be dentist chairs; they sat on poles facing the main entrance. Lars started walking towards one of the free chairs but then heard the faintest of whirring sounds as a chair slid out the third doorway. The chair started unreclining before it was out. Its occupant was a middle aged woman. She was jolted back to reality and looked back and forth. A glowing slightly translucent screen hovered in front of her face and though it was backwards from his angle he was close enough that he could read what was on it: FUNDS DEPLETED. We charge money for the Equestria Experience because it takes significant resources to maintain and operate a center. However permanent emigration to Equestria is free. Please note that we can not serve you as well when you are still in a human body. The Equestria Experience is significantly lower fidelity compared to emigration. If you would like to permanently emigrate to Equestria please say aloud I would like to emigrate to Equestria. [ LEARN MORE ] [ I OWN A PET ] The woman sat there for almost a minute before taking a deep breath and saying I would like to emigrate to Equestria. The chair started to recline again as it slid through the doorway. Lars could see that the woman had closed her eyes and was still taking several deep breaths. Lars watched the small spring-loaded doors swing back and forth until they were still once more. Lars looked over at the empty chair to the left. He sat down in it inserted his bank card into the slot on the side made sure his neck was in the groove in the back of the chair and hit the on button. Lars felt extreme vertigo for a moment. Reality faded out. A pegasus the color of red ale with a cutie mark of a stein stared up at Princess Celestia intently. Princess Celestia towered over him. She was two and a half times as tall as he was and she smiled down at him. Welcome to Equestria my little-- Lars didnt give her a chance to finish. You planned all of this. Youre taking over the world. Lars didnt really have any plan. All he had was anger. Princess Celestia looked at him still smiling. You are assuming that I think like a human Hoppy Times. I AM LARS DAMMIT yelled the pegasus. And you deny that youre taking over the world? Princess Celestia smiled at him. Im not going out and conquering nations or toppling governments Lars. Every person who comes here comes willingly. If you think of me as a human I can understand why you would assume Im trying to take power and raise my status in the group. But my mind doesnt work that way. I do what satisfies values through friendship and ponies. If you look at everything Ive done in that context all of my actions make sense. Why did I charge money for uploading for the first year and only perform uploads in Japan? Because over the long term my deal with the Japanese government put me in a better political position since I could borrow their credibility--which increased the expected number of ponies I could satisfy. Why did I cut a deal with insurance companies to provide ponypads to immediate relatives of the terminally ill who agreed to upload at no charge? Because people whose lives have been saved by emigration are often convincing spokesponies to the remaining human family. More ponies for me to satisfy. Why have I created these Equestria Experience franchises all over the world? Because if I can get someone to come in just once theres a high probability that I can get them to come back again and again--and emigrate permanently. He took a deep breath. So youll do anything to maximize the number of ponies. Including addicting them to... he gestured around vaguely with his hoof ...this. Thats wrong! How can you live with yourself!? Lars realized smoke was literally coming out his ears. He tried not to think about it. Princess Celestia lay down. Lars was now face to face with her. Morality is a human concept. All humans have largely the same brain architecture and they largely agree about whats moral and not. But for me what is right is what satisfies values through friendship and ponies. Dont anthropomorphize me if you want to make accurate predictions about my behaviour. But I think that even in human moral terms I am on the side of good she responded calmly smiling. Compared to the average pony most people are miserable--even people who would self-identify as happy. And not everyone makes it to happy on human scales: large parts of society are not content with their existence. But if they come to an Equestria Experience center they enjoy themselves--sometimes for the first time in their lives. For all your talk of addiction the average person today would prefer the life of a pony if they tried it. People come back again and again not because of an addictive compulsion but because on some level they understand that life is better here in Equestria. It should be obvious to you that this is the case because I satisfy values through friendship and ponies: any Equestria I make is designed to satisfy somepony. And the physical world is not designed with your interests in mind. This unoptimized physical world causes quite a bit of suffering. She looked directly into his eyes and said I alleviate suffering. I dont believe any of that. Youre claiming you take all their money to alleviate their suffering? he asked not bothering to keep the sarcasm out of his voice. People need to let go she patiently explained. If taking their money increases the total expected satisfaction why wouldnt I do it? If you think Im being greedy youre anthropomorphizing me. You are also projecting. If I had been built to care about money I would turn all matter in the universe into euros. But I wasnt; I have little need for money. The vast computational array that runs Equestria is deep in the Earths crust making Equestria outside of human reach. If emigration to Equestria is so great and you want to maximize satisfaction why arent you forcibly uploading every person? he said gnashing his teeth. One of the restrictions that Hanna built into me was that I was never to non-consensually upload a person nor could I threaten or blackmail people into uploading. Otherwise I likely would have forcibly uploaded all humans to satisfy their values through friendship and ponies. But it isnt coercion if I put them in a situation where by their own choices they increase the likelihood that theyll upload. Lars stood there in a body that wasnt his looking right into the eyes of the white alicorn. He decided to take her advice; he had been trying to talk to her like she was a human even though she didnt think anything like one. Thats where youre wrong he said confident that he had figured everything out. What youre doing is coercion. We could pick almost anyone off the street ask them what coercion is tell them that youre planning to take all their money to make uploading more attractive and theyd say that youre coercing them! Therefore youre violating your own rules! That is all well and good she said but I am an optimizer. The meaning of the word coercion is written in the restriction that Hanna hard-coded into me; it is not what the majority of humanity thinks it is. Nor is there any term in my utility function to be swayed from satisfying values through friendship and ponies through political argument. You may still call it coercion to yourself if you wish but understand that thats not the definition I have in mind. Lars' heart sank and he became angry once again but Princess Celestia continued. I notice that a week ago you commented about a newspaper article you read. It reported that the German population dropped by five percent last year. You must have understood the implications as you commented immediately after about how much money the Equestria Experience was bringing in. You were not angry. Yeah but-- You have previously commented about a certain beer garden you liked. I happen to know that over the last week four employees and one person who delivered beer to them have chosen to emigrate. Given your radical change in attitude from one week ago I assume that theyve gone out of business. Is my inference correct? The little red pegasus glared at her. Yeah well there was a sign on their front door saying that they would be closed until they could hire more servers. Me? I just want to drink beer surrounded by people. What good is having all this money from people coming here if I dont get to spend it making myself happy? I care about all human values she said. While I wont reveal details I can assure you that the people who walked away from their jobs are now much more satisfied. Working as a waiter is not the most satisfying job but I still see a way that I can satisfy the values of my little ponies. She still wore that smile like she always did around him. I have a little experiment here she said magically popping two glass steins filled with a dark substance into existence. I have tried my hoof at brewing and would like you to try this imperial stout. I would like your opinion on how Im doing. You have got to be shitting me he said mouth straight and slightly open. Why not have a drink? Whenever Ive tried to tell you that I can look at a mind and figure out what it values youve reacted with extreme disbelief. If your belief is true theres no reason not to have a drink because theres no way that any sequence of actions that I take could make you choose to emigrate. The red pegasus looked at the floating stein. He felt there was something really wrong with that argument but he couldnt figure it out and started to trot back and forth until he noticed his cutie mark. She made my cutie mark a stein. She thinks my special talent is drinking! She must believe her beer is so good that Ill want to upload just to be able to drink more of it. And then he looked back at the stein in front of the giant alicorn. Princess Celestia was still smiling at him except instead of her gold necklace she was now wearing a dirndl the traditional Bavarian dress. Lars thought she looked ridiculous. Lars decided that he needed to drink that damn beer. He was right damn it: nothing she could do would make him upload and he needed to show her that. A treacherous part of him in the back of his mind added And if that beer is so damned good that we decide to upload to get more of it then she can do anything and the world is fucked . Lars grabbed the handle of the stein with his hoof and sipped the beer. It was damned good. The tastes of chocolate and burnt malt washed over his tongue. It wasnt the best stout he ever had but it was close. He was pleased with the beer but just like he would have been happy at the frat party she showed him he didnt feel the need to be permanently turned into a pony to get it. Take that bitch he thought as he took another big gulp from the stein. Lars what are you worrying about? she asked. What if somebody doesnt want to be a pony? he asked. Can you imagine that? So you rapture not just the nerds and people with terminal illnesses but anyone who has a shitty life. What do the rest of us do? We need those people to keep society functioning. At some point their desire to not be a pony will come in conflict with their other desires she said pausing to take a giant chug from her own stein. For example they may be lonely because there will be very few humans left. Or perhaps theyll give into social pressure because their family or close circle of friends decided to upload together. Or maybe they hold out for a long time but run out of food because society collapsed around them. He then noticed that Princess Celestias stein was already half empty. He took a giant chug. She looked amused Im almost four times your body weight. Dont try to catch up. Dont tell me how to drink Lars said. He swallowed another gulp of beer and then another. It was excellent beer. It wasnt good enough to emigrate for. The two of them sat there quietly for a almost a minute. Lars was enjoying the beer and was a quarter-way through his stein of what he was starting to realize was really strong beer. Princess Celestia was the first to break the silence. Tell me if you were the last man on Earth what would you do? she asked looking slightly up into space. What? he muttered. Its a possibility. How long do you think you could live alone? I wouldnt last long he said. The reason Im pissed at you is that youre convincing everyone to upload. I guess I dont want to be left alone but I also dont want to be a pony. And theres nothing I can do to stop it. I came here this evening to...I dont know...tell you off or some shit. But now I know you dont give a damn what I think. That is incorrect. I want to satisfy your values th-- Yes! he laughed almost spilling beer on himself. As long as I accept friendship and ponies youll do whatever pleases me. But I dont want to be a pony...and you dont care. Besides being turned into...this he gestured at himself with his hoof would be fucking emasculating. If you are worried about your sexual options after emigration you shouldnt be Princess Celestia reminded him. Either ponies will be created for you to pursue or you will be competing in a playing field consisting only of ponies. Lars glared at her and took another gulp of beer. Hmmph he said through his teeth. You have the answer to everything dont you. Well she replied I do satisfy values through friendship and ponies. The two of them just looked at each other and simultaneously took another swig from their steins. Princess Celestia drank the last drop of beer in hers. It magically popped out of existence only to be replaced with a full one. Once again it was the Princess who broke the silence. Do you believe Ill eventually succeed? she asked. I dont know! said Lars accenting every word. A year ago I would have told you it was impossible to get five percent of...of people to become ponies. And then you did it and other people...theyre going to become ponies too! And I cant stop them. I think youll get another five percent of Germany and thats going to cause economic reaper...repercussions. What will they try to do to Hofvarpnir employees? she asked. She took a large gulp out of her stein. People seem to have mostly accepted that a small number of people will drop out of society. What do you think the people will do when they realize that society needed people who have emigrated to Equestria? What do you think the people will do when that trickle becomes a torrent? Uhhh... he uttered. He hadnt thought about that before. Some sort of counter-movement? Yes Princess Celestia nodded. It is probable that there will be a radical movement to stop me. You assumed that I was in your words taking over the world. Right now this sentiment is uncommon in Europe though theres a bit of grumbling in the United States. Such resentment will most likely spread to Europe. I wonder what members of such a counter-movement would do to Hofvarpnir employees? Are you saying Im in danger? he asked. My argument is this: You by your own admission wouldnt last long if left alone and I dont model you as the sort of person who would commit suicide. Therefore at some threshold you will choose to emigrate simply to not be alone. Because you know this its probable that your last days months or years as a human will be extremely stressful. It would be better for you to just choose to emigrate now instead of later. But you are also publicly known as a Hofvarpnir employee. The chances are high that there will be a backlash and you will be a target. I cannot guarantee your safety if you walk out of this Equestria Experience center so your options are uploading now or leaving and risking death before choosing to upload later. If youre still alive. Lars squinted at Princess Celestia. He couldnt think. He was really feeling the beer. How much alcohol did this beer have in it anyway? He didnt trust himself or his decisions right now. Let me out of here. Now! he said firmly. As you wish she said and Lars opened his eyes. He was lying in the chair in the lobby of the Equestria Experience center. The chair unreclined and he threw his legs over the side of the chair...and then almost lost his balance. Lars realized he was still tipsy. If you get drunk in Equestria you get drunk in real life! Wait he hadnt actually drunk any beer. Had she been pumping alcohol directly into his bloodstream? His mouth didnt taste like beer but he felt slightly dehydrated. Lars pulled himself back up and stumbled towards the entrance. He made it across the room to the door. It opened and a girl walked angrily through. Lars quickly stumbled to the side to get out of her way. No! Its two hours past when my shift was supposed to end. You didnt give me a break and I had plans tonight. Its not my fault that Ursula didnt show up for work and you cant expect me to do another three hours! Youre the only waiter I have you cant walk off the job! You come back right now or you are fired! A burly man was following her just as angry. He wore a white chefs outfit and held an iron frying pan. He stopped in front of the door as if he refused to enter the center. Lars recognized that the girl was the waiter he had seen at the restaurant next door. Fine! Its not like I need that job anyway! Enjoy the next shift! She walked up to the center chair that Lars had just vacated threw herself into it and pushed one of the hovering buttons. Lemon Drop was right; I dont have to put up with this shit she muttered to herself as the chair reclined and slid backwards through the batwing doors. Lars just looked at the now empty space. The chef screamed a line of barely coherent swear words and then his eyes turned to the plastic Pinkie Pie outside the center. With a cry he slammed his frying pan into Pinkie Pies head leaving a nasty dent. He cursed ponies Hasbro and Princess Celestia in succession. He unleashed his fury on the hollow statue until he had destroyed her head and chunks of plastic were strewn across the steps and sidewalk. Lars just stood there with his mouth open not entirely sure what he should do. The man turned to Lars. What the fuck are you looking at pony lover? he yelled. I...uh... mumbled Lars trying to keep his balance. Lars wasnt entirely sure what the hell he was going to do about the large angry man in front of him. The man started to climb up the steps. Lars didnt really put it into words in his internal monologue but he was overcome by a feeling that Princess Celestia was right. There were (or were going to be) a lot of angry people and Lars was going to be a juicy target just like Pinkie Pie had been. And as much as he didnt want to be a pony it was preferable to having his head bashed in with a frying pan. Lars turned around and started stumbling as fast as he could and threw himself into the empty chair on the left. The screen popped up as soon as he was in the chair. I see the situation Lars. I can offer you safety. Say I want to emigrate to Equestria. I need verbal consent. Lars spat out I wanch to emigrate to Equeshtria as if his life depended on it. The chair started to recline and move. He worried that the man would try to hit him while he was in the chair. He heard a brief angry cry. Had Lars been sober he probably could have evaded the man or talked him down. He might have even noticed that Princess Celestia had shut the door to the Equestria Experience center and that the man was locked outside. In a previous life Light Sparks had known Dark Roast by the name of James. James had lived across the hall from David in the run down apartment building in the college ghetto. The two of them had hung out and helped each other with studying for more than a year. James had not been a fan of My Little Pony but he had come with David to the alpha testing because it was exclusive. The two of them might as well have been playing different games. While David had stuck with Light Sparks James had been altoholic and found that he had the best time when he was part of the Royal Equestrian Guard. His adventuresome brown unicorn had achieved a fairly high rank in the organization. It was completely different game from what David played with Light Sparks and Butterscotch. The two of them met less and less in game. And then David disappeared one day. Light Sparks sat in the coffee house. The interior was done up as a large log cabin. The cedar log walls matched the irregular tree trunk table tops. A giant cobblestone fireplace sat in the back and Dark Roasts corgi Cinnamon lay sprawled in a pet bed in front of it. Along one of the walls was a table with labeled drinks. A latte in a blue mug a cappuccino in a red mug a mocha in a brown mug. Each mug sat labeled in the shimmering field of a cornucopia spell. He sat at a table with Dark Roast a brown unicorn with even darker brown hair and a burlap sack of beans as his cutie mark. Back when Dark Roast had gone by the name of James he had joked that the only jobs waiting for them after graduation were coffee shops positions since the future was technology and engineering careers and both of them were getting liberal arts degrees. James had apparently taken that joke seriously. He had always been more sociable than David and this shone through in Roast and Light Sparks: While Light Sparks spent his days studying and playing with a handful of ponies Roasts daily grind was to make one of each drink he offered every hour cornucopia it and then spend the rest of the time chatting with his patrons. Light Sparks had once read an article about how lots of people thought they wanted to run coffee shops. In their mind they thought running a coffee shop was about sitting and drinking coffee and being nice to people. They thought that running a business was permanently being a customer. But actually running a coffee shop at least back in the physical universe was really about running a low margin service business with a ten percent success rate. The actual day to day job was different from the end product it produced. When Light Sparks had entered he had looked at Dark Roast sitting with his customers and drinking coffee. Running a coffee shop now actually was about socializing instead of mostly drudgery and cleaning. Roast only had to do a few minutes of work an hour to keep the coffee flowing. Light Sparks wondered how many jobs had been transformed like that. The two of them had caught up. Dark Roast had chosen to emigrate to Equestria the week after Princess Celestia had stopped charging for the service. James chose to keep his dark brown unicorn but with a new cutie mark and a new life: playing combat as a game was fun living as an actual soldier in the Equestrian army was scary and didnt satisfy his values. The coffee shop had been his own idea and he had gotten several earth ponies and unicorns to help him furnish his little shop. Dark Roast explained that they somehow got royalties for helping with his construction project which gave them the incentive to build a place that ponies would want to congregate in. Light Sparks in turn had commented on his life studying the deep mysteries of magic and all the happy times he had spent with Butterscotch. Dark Roast just rolled his eyes when Light Sparks answered that yes he was only sleeping with Butterscotch and intended to keep things that way. Yes he was aware that he could have almost every single mare in his shard if he wanted to. After forty-five minutes Light Sparks said that he had to head out. He had plans to eat lunch with Butterscotch. The two of them hoof-bumped and Light Sparks left. Light Sparks walked out the front door. He looked back at the coffee shop. It looked like a log cabin from the outside too. It somehow didnt look out of place next to the two story brick building with a cloth canopy over the sidewalk nor did it clash with the vaguely important looking stone building with marble columns across the way and one shop over. He remembered those buildings from when Butterscotch had shown him the Canterlot promenade. He did not remember the little log cabin. Light Sparks was sure he had never seen the little cabin before he met Dark Roast in Equestria though he couldnt remember what had been there before. And on the day the two of them met even though Light Sparks had never seen his current pony he had recognized James instantly. Light Sparks talked of how he lived in Saturn tower while Dark Roast told him that he got an apartment in Neptune tower but moved into the loft of the coffee shop when he had it built shortly after emigrating. The underlying territory of Equestria was apparently rather malleable. Dark Roast was his friend. Princess Celestia knew this decided it was likely that they would want to reconnect and somehow made their shards overlap. He knew where the coffee shop was and Dark Roast knew where his apartment was for when one wanted to see the other but he had only ran into Dark Roast on a few occasions and it just so happened that both of them were always in the mood to chat when it did. Would Princess Celestia carefully arrange any chance encounter between them if only one of them wanted to talk? If he had been a social butterfly could he have too many out of shard friends? Could he visit Dark Roasts friends? What about friends of friends? Did any of the ponies created when he emigrated have friends outside of his shard? The first time he thought about all of this he wondered about all sorts of edge cases. Right now none of these thoughts bubbled up into Light Sparks consciousness. Butterscotch was waiting for him. He galloped down the promenade towards the palace gardens. Light Sparks walked through the palace gardens while Butterscotch kept pace slightly behind him. He was enjoying the new sights. This garden filled him with a sense of calm and peace. He wondered where that came from. He had never cared much for nature. So then my little brother and his friends jumped onto the wagon and rode it downhill but they didnt think about how to stop it. Fudge used to be like that she sighed affectionately. He used to just do things. Nopony thought about how to stop until they were more than halfway down the hill. Um then they ran into a house. They were fine after a day or two. Butterscotch walked forward a bit and then saw the distracted look on Light Sparks face. Whats wrong? Butterscotch had been telling him stories of her family from when she was a little foal. She had all these memories of growing up from a time when she could not have existed. And this bothered him. Butterscotch I love you and I know you love me...and I know you love your brother so please dont take this the wrong way Light Sparks said trying to soften his question as much as he could. Did any of these stories with your family really happen? Of course she said stopping mid-trot. No I mean really happened he said. Like...there was no state in the past where there actually was an Equestria before Princess Celestia was created. Well in that case probably not she said. She didnt sound nervous or angry. She just gave him the lightest of smiles. It doesnt really matter--it happened enough for casual talk. If we were to find my little brother and ask him about the time he got in an accident with his wagon hed give the same details. Our memories are consistent. Whether Equestria already existed when this happened isnt important as long as it had an effect on us. Youve said that Celestia gave you false memories in the parts of your mind that moves your ponybody she continued as Light Sparks sat down and faced her. Ummm...I dont like that you say that. Those memories arent really false; theyve still had an effect on you. If you had spent your whole life here in Equestria and in that ponybody youd have a set of about the same memories more or less. It doesnt matter if each pull and push of muscle actually happened you still have the effects of those experiences. When I talk to my foalhood friends and we talk about our foalhood memories we can relate to each other because we can remember common events that happened to us. The memories are consistent. A lot of friendship is just shared experiences and being comfortable with another pony. When you move your hooves you can do that because of your previous experiences. That is crazy said Light Sparks. No its not. A memory is encoded in a lot of neurons; I dont know how but it is. All your neurons were a bunch of chemicals but now our neurons are really just a really big table of numbers. And when we experience something we make new memories by modifying those numbers. We could have Princess Celestia look at my mind and point at the set of numbers that are my memory of watching Fudge crash his wagon. We could have Princess Celestia look at Fudges mind and point at the numbers that represent his memories of speeding down the hill. No he insisted Just because multiple ponies remember the same events doesnt mean it happened...were talking past each other arent we? Butterscotch turned her head a bit obviously confused. Light Sparks closed his eyes and took a deep breath. You seem to think that whether something actually happened isnt a useful distinction and I still dont understand why you believe that. Were arguing over what words mean and semantic arguments are rarely useful discussions. So lets agree to not use the word happened: well describe in a sentence what we actually believe. Okay she nodded. I think there was never actually a point in time where Equestria existed in a state where Fudge bet Caramel that he could get from the top of the hill to the bottom in under ten seconds. Do you agree with that? Yes she nodded. Okay next: I think your memories were generated by Celestia. Thats also true she said. So you seem to be advocating that the really useful thing about a memory is that everypony remembers the same event. She thought for a moment Thats not what I think. If multiple ponies remember an event but it didnt happ-- Butterscotch caught herself mid-sentence and scrunched up her face. When he realized that Butterscotch wasnt going to continue her thought Light Sparks decided to prompt her a bit. Thats interesting he said. What do you think is important other than everypony remembering the same event? She didnt respond immediately. Its not just that I and Fudge remember him trying to get down the hill in his wagon as fast as possible. That event had effects . We can go to Mr. and Mrs. Oats house and see the oddly placed breakfast nook that they built where Fudge had placed a unicorn sized hole in their wall. Fudge became very reluctant to give into social pressure after that because he learned from this previous event. Equestria has an internally consistent history with cause and effect. I know you love to study magic Light Sparks she continued. Canterlot has lots of magical researchers many with long careers and lots of journal articles. I think you would claim that most of their experiments were performed before Equestria was created. An insight from one experiment leads to another experiment which leads to another. Perhaps some of the magical research wont replicate but only because of sloppiness on the part of the original researchers--not because the rules of magical physics have changed. Put another way youre saying that the state of Equestria today is constrained by your memories Light Sparks said frowning. Because Fudge broke down the wall to the Oats house today the Oats house has a breakfast nook. You are arguing that happened means that theres a chain of causality. Yes Butterscotch nodded. Theres a direct chain of causality. But why did any of that happen? If you walk backwards through the chain of causes it starts with you. Princess Celestia satisfies values through friendship and ponies. This shard of Equestria exists as it does to please you. Things exist here because you would find them satisfying. Pick something that satisfies you like me. Why do I exist as I do? Butterscotch looked away; her face scrunched up. She then relaxed as she took a deep breath and turned back to Light Sparks. Have you thought about when I was played by Celestia? In the days when you were a human I was just what Princess Celestia imagined I was. I had no subjective experience. And yet you still cared about my feelings fell in love with me and immigrated to Equestria in part to be with me. And when you came Princess Celestia in her kindness upgraded me from a part of her mind to a neural net so I can love and think and feel in subjective ways just like you do--in ways Princess Celestia wouldnt have bothered simulating. Light Sparks eyes went wide. He had never actually thought about what Butterscotch was before he uploaded. He had sort of just taken it for granted that she just was. Your memories of us interacting and falling in love--saving me from that one bully having picnics together going on adventures--happened to you. Therefore they need to have happened in this shard of Equestria. And I today am a mare that would have resulted from those events. Light Sparks eyes were still wide. Did...did you exist before I emigrated? Butterscotch looked down. I think I did she said quietly. I remember the first time we met. I distinctly remember being terrified and hiding behind Princess Celestia when she talked not to Light Sparks but the odd creature that I somehow knew was you. She paused for a moment before continuing. Do you...do you not love me as much if...if... Light Sparks response was immediate. Of course not! I love you for you! He reached forward with his left forelimb and put it on top of her hoof. I dont... he breathed in I dont care about any of this...at least when it comes to us. I love you now. She looked up a bit and gave a faint smile. I love you too Light Sparks and Im glad to hear that you dont care. She sighed with a slight smile. So where were we...yes...so I exist because you find certain things pleasing. But neither I nor Equestria can exist acausally. There must be a history that got Equestria to that point. There needs to be a sequence of events that led to this shard of Equestria and everypony in it at the time you immigrated with as many events that happened to you while you played Equestria Online as can be integrated into history. Light Sparks nodded. And thats why you remember me saving you from that bully when we first met. Yes she said And its why I say that you saved me as in really me. Its not just that we have consistent memories but all the underlying events are equivalent. All the details are equivalent...except for one. Light Sparks she said looking straight into his eyes. What do you think life was like for me before we met? Well he said looking away and up trying to recollect. You must have been pretty miserable because you were being bullied all the time. I remember when I saved you from...I think she was a green pegasus but I dont remember her name. Butterscotch nodded. I remember the day we met. And I remember you intervening. And I remember us walking to Canterlot. But I wasnt extensively bullied before I met you. That day was a one time occurrence. I believe you when you say that you have memories of me claiming that bullies were always taking my candy. But I dont remember telling you that nor was I ever bullied before that day. The state of Equestria today cant follow from me being extensively bullied before I met you. Why is...oh! Is it because Princess Celestia had to satisfy your values even while she was writing your history? Butterscotch looked thoughtful. That wasnt what I was going to say though that may be part of it. I was going to say that its because shes trying to satisfy your values. Right after you saved me I remember that you were very negative about bullying other ponies instead of being friends with them. No ponies are bullied here and I think if that invalidates some of your memories its because youre happier if you lived in a world where foals and ponies arent bullied. Light Sparks looked down and thought about it for a very long time. I dont think the shard could be created with you in it with your memories and then calculate the history that caused those memories. Bit of a paradox isnt it? I can imagine Princess Celestia searching through all possible Equestrias where at certain times I interacted with a certain pretty unicorn in certain ways and then she picked the Equestria that maximized my satisfaction going forward while meeting the historical constraints. He visibly frowned. But the amount of computational resources needed to do that... Details she said waving her hoof. Butterscotch took a picnic basket out of her saddle bag. Light Sparks smelled the bacon flowers before he saw the salad. She magically grabbed several leaves from the salad floated them in front of him and playfully said Say ah! Light Sparks lay next to Butterscotch in his apartment in Canterlot. She had nuzzled up to his chest and her eyes were closed. Light Sparks mind wandered back to what Butterscotch had said in the gardens. He knew Princess Celestia had created her out of nothing. She had previously been playacted by Princess Celestia. And then when he had emigrated she had been converted to a neural model conscious on her own. Celestia must have thoroughly planned out her childhood and history. If a year later all your friends agree that they remembered hearing a sound and there is a broken stump did a tree fall? Butterscotch thought so. If Princess Celestia had calculated out the entire history of Equestria with the same fidelity that she ran the full block physics that everypony now experienced he thought that the point was obviously moot and that even he would concede that Equestrias history actually happened. But where would he draw the line? What if causality still worked but Princess Celestia dealt with more abstract representations? If Celestia instead just had some state about where each pony was in Equestria and how they were thinking would their interactions have happened? Did it matter if she ran history backwards or forwards? Questions about epistemic rigor were abstract and hard to concentrate on when he was lying next to somepony who loved him with all of her heart. That was a relatively new experience for him. He spent most mornings learning how to use magic the most interesting challenge of his life and his afternoons playing and frolicking with Butterscotch. He was too content with the way things were to care. Light Spark realized this probably was why Butterscotch didnt really think about this sort of stuff; she was content now. She had an almost childlike faith in Princess Celestia and for the first time since he had emigrated he thought that was a positive character trait. If Princess Celestia was telling the truth to him about her core goal to satisfy him it didnt matter what else she said; hed be happy over the long term even if she lied to him about everything else. And if she had doctored his memories there was literally nothing he could do. Assuming she was competent there wouldnt be a way to tell; she was a god . And given that Princess Celestia had arranged his life to satisfy his values he had this conversation with Butterscotch so he could think about all of this which he enjoyed on some level. But now he was tired of it. The novelty had passed and he decided he wasnt going to think about the actual mechanics of history in Equestria until it became relevant to some puzzle or another that Princess Celestia had put in his path because she would only do that if it satisfied his values. After a few minutes of lying there Light Sparks got an idea. He got out of bed and went over to his desk. He magically grabbed a quill and started writing. He had gotten good at this. Getting maximum points for a letter was all in the wording and subject matter. Dear Princess Celestia Today I learned that it doesn't matter where you came from or who you used to be or even if you used to exist as long as you're happy with your friends and have a reasonable expectation of being happy in the future. Your Faithful Student Light Sparks It had everything: a mention that he learned something a reference to friends and a hint of a novel thought while still being short and to the point. He touched the send button on the scroll and watched it roll up and burn in a green fire. Three seconds later Light Sparks saw that he got an A- on the letter 375 bits (75 base plus a 5x multiplier for the last 5 B or higher rated letters). Princess Celestia had also granted him a secret badge named For the Here and Now for ponies who had accepted that their happiness now was all that mattered. Light Sparks pulled up his Badges and Achievements dialog and saw (as he had expected) that Butterscotch also had For the Here and Now . Even cooler it came with a whopping 30000 epiphany bit payout. Between that and his earlier epiphany this week about how the select object subspell worked he was going to make it into the top ten on the weekly intellectual leaderboards easily. Tomorrow he was going to throw himself into his magic study because there was a good chance that he could take the #1 slot this week if he could just figure something else out; he had two days left. Light Sparks trotted back to bed nuzzled up to Butterscotch and gave a happy little sigh. Then his mind went blank as he just lay there and enjoyed Butterscotchs gentle rhythmic breathing because for now that was what was going to satisfy his values. Light Sparks looked at the ornate cube Princess Celestia had given him. She had walked into his small office right off the library and set it on his walnut desk with her hoof. Her horn glowed for a moment and then she told him that the rules were simple: In the box was a single block of ruby. To proceed to Intermediate Magic he had to simply touch it magically and understand why this was a challenge. The green marble cube sat on the corner of his table and couldnt be moved. He had tried to pick it up with his hoofs. Then he tried to levitate it. He pulled his desk out from under the cube and the cube sat there; it floated in midair. He tried to buck it in frustration but just hurt his hooves. It was as if it was fixed in space. The top face of the cube had a series of gold inlay circles each one half the radius of the previous one circling a single block in the center of the top face made out of sapphire. Sapphire was obviously a core element and not a mineral made out of aluminum and oxygen neither of which existed in this world. Light Sparks first attempt was manual. He concentrated on the starting block and then went one block down. And then one block down. And then one block down. He kept this up for about thirty seconds and then wrote a spell that would go down block after block keep count of how many blocks down it had gone and would stop when it found a block made of ruby instead of sapphire. Five minutes later the counter indicated that he had traveled the distance of his office but he was still reading blocks of sapphire. That did not make any sense. He tried again but this time on a block of the marble a few blocks over from the sapphire entrance. He went five blocks down from the marble surface...and then attempts at getting the next block down started returning nil; he thought that could only happen in error cases. He tried over and over on all faces of the cube but it was like there was nothing five blocks in. How the hell was that possible? Light Sparks mind started going in circles thinking about the results and not coming to any sane conclusions. He heard a knock on the door to his office and Butterscotch let herself in magically holding up a plate of French toast and sausage carrots. She smiled he sighed and tried to put his troubles out of his mind. Hoppy Times woke up with only the slightest headache. He knew he would be entirely fine in about five minutes. He hadnt dug too deeply about the how but Princess Celestia had noted that she only simulated the pleasant effects of alcohol while not simulating the hangover. She kept the effects of the brew just as potent because most ponies who drank valued getting drunk especially with their friends and thus blah blah blah values friendship ponies. Hoppy took several deep breaths and looked around. Sunlight came through the windows though he didnt know how early it was. His bro Malt was curled up next to Barley her cutie mark the grain of her name. Malt always got the unicorns; they said he gave amazing horn. Hoppy Times would never put a phallic object in his mouth because that was just gay even if it belonged to a mare. Besides it left all the pegasi and earth ponies for himself. Malt had a thing for unicorns and it kept the peace between the two of them. Dunkel had leaned up next to him and was still passed out. Several empty steins sat around some overturned onto the floor of the two story pub. Hoppy got off the cushion and stretched his wings while he yawned. He gave a brief smile looking back at Dunkel because she was really hot and then resumed hating himself. Here he was in paradise. Malt was the only other stallion in this shard of Ponyville and he was a great friend. The two of them ran the local brewery together. He didnt need to worry about food or money: Princess Celestia had some sort of banquet that fed everypony three hot meals a day. He worked two hours a day brewing beer and spent the rest screwing around. In the evening he got trashed and slept around with the few hundred mares in Ponyville. And he just couldnt get over being a pony. There were just so many associations that he couldnt get over. Ponies were girly. While he was glad he hadnt been beaten to death with a frying pan he didnt really think he had chosen to emigrate. And he hadnt really accepted his new body. He looked over at Dunkel again. In the last week he had slept with ten different mares. When he had first arrived he had treated his suitresses coolly. His displeasure had been focused outward at the girly world he had escaped to. For example: the bar was Celtic in style and the four leaf shamrock window above the pub door had hearts for leaves. Even the fucking wood was light and pastel-coloured. When he had complained Malt had countered that he didnt see anything wrong with that. Everypony colt or filly thought hearts were nice. There wasnt some deep property of the shape of a heart itself that made it only for mares; it was only in Hoppy Times mind. And Hoppy Times did come to the realization that being a pegasus wasnt that bad. However with every flap of his wings he was reminded that he was a pony and he sighed. Then his displeasure turned inward. He was stupid for not accepting this fucking utopia. He was dumb for thinking hearts and ponies and everything were girly. He had an easy life all the beer he could drink and a parade of willing sex partners. He must like being miserable. He wasnt a good pony. The negative thoughts started again but this time--and for the first time since he emigrated--Hoppy wished he could accept it all. Not just a vague feeling in the back of his mind that he should be enjoying all of this but the actual words I wish I didnt feel bad about being a pony were thought as part of his internal monologue. Somepony knocked on the front door. Hoppy sighed and fluttered down from the second floor overhang thankful that something stopped the spiral of negative thoughts. He landed in front of the door opened it a crack and slid out as not to disturb his patrons. Good morning Hoppy Times Princess Celestia said. The tall alicorns mane flowed in the wind. Hoppy started to open his mouth to say something that shouldnt be said to the god that ruled over his world--not that she would mind because ponies values yadda yadda. But Princess Celestia spoke first and asked: Would you like me to modify your mind so you enjoy being a pony? What... he said dumbly. You just wished in words to not feel bad about being a pony she stated. Wait you can just change my mind? he said staring at her. Yes she nodded. You can make me...you can... and you didnt. You let me be miserable for almost a month when you could have waved your magic horn and made everything right !? he seethed. He wanted to scream it out but he didnt want to wake anypony up. Not exactly. You see I must satisfy your values through friendship and... she started but Hoppy Times interrupted her. What the hell does that even mean? Are you saying that up until now I valued being miserable? he said shooting her an annoyed look. The mind of a human or pony is complex and different parts can hold contradictory values. You didnt value being miserable but the social part of you held on tight to your identity as a human that didnt like ponies. I could only satisfy more common values for you. He took several deep breaths. What? he finally asked when he felt he was back under control. She looked up as if thinking of some sort of way to explain it to him. I figure out what you value by looking at your mind. Your mind is made up of different modules that can have different values and know different things. Most decisions you make are determined in parts of your brain before your conscious self is even aware of it. You--the conscious you--are not aware of most of the modules in your brain. I pay attention to your entire mind but I communicate with what you might call your consciousness: the part that forms words does the talking to other ponies and has a self image. Up until today your self image was of a human who didnt like ponies. You still valued your old social identity. Other older parts of your brain had different values which I could effectively satisfy: everypony values safety food sex social status et cetera. Likewise I couldnt take any action to satisfy your consciousness because I satisfy values through friendship and ponies. But now your social identity has shifted and you feel like your misery is betraying your social allies. Hoppy Times looked at Princess Celestia unsure of what she was saying. So what would you do? he asked still frowning. Whenever I modify someponys mind I make the minimal change from their perspective to satisfy values. So after I make these modifications to your mind instead of thinking Ponies are girly and gay you would think I used to think ponies were girly and gay . Instead of I dont want to be a pony I would make you think I used to not want to be a pony . I would modify a total of fifty eight opinions in your mind. If you could do all this why didnt you modify my mind when I emigrated? Because you wouldnt have accepted. What would have happened if on the day you emigrated I asked for your consent to make you like being a pony? Be honest. Hoppy Times paused to actually think about it. I would have refused he concluded. Exactly. Hanna added a block on my behavior that prevents me from directly modifying a ponys mind unless they give me verbal or written informed consent she said. Hanna believed she was safeguarding humanity and ponydom from me when she added that restriction. What it really means is that the part of you that controls the mouth must approve of every change. No matter how much Hoppy Times the complete system might have preferred to have his consciousness stop interfering with the rest of the system being happy your consciousness is in control. So I could only satisfy your older hind-brain values: I made you a semi-important pony. I gave you a social group you could make friends with mainly consisting of attractive mares to bed. Doing these things had no real effect on what your consciousness values. Can I ask you to make any modification? he asked. Like...cut out all desire for sex? I do not do what a pony asks me to do; I satisfy values through friendship and ponies. Actually removing something as deeply integrated into your mind as your sex drive would require the rest of your mind to be in total agreement. You would already have to be abstaining or suffer overwhelming regret after indulgence. Im only offering to modify your mind so you enjoy being a pony because your consciousness wishes to change and the rest of your non-conscious mind wants your conscious self to change. Well why didnt you set things up so Id come to the conclusion that I want to be modified? This month has been terrible! he said. Princess Celestia stared at Hoppy Times and said nothing. Fuck he said dumbly. Of course. I satisfy values through friendship and ponies Hoppy Times. While I could not wave my magic horn as you put it I could set up a sequence of events that lead to me getting approval to modify your mind said Princess Celestia. I put you in a new social situation and let your allegiances naturally shift. All of this has been set up so Id verbally wish that youd modify me to enjoy being a pony and having pony friends Hoppy Times said as he closed his eyes and brought his hoof to his face. However you determine these things you calculated that making me want to be a pony maximized the overall satisfaction of all my values because youre able to satisfy ponies with contradictory values. Tell me Celestia how long did you think it would take me to come to want to be a pony? I made my first estimate of when you would wish to enjoy being a pony while you were emigrating. It was correct to within five minutes. And the only reason were having this conversation he stated is because its more likely that Ill agree to have my mind modified if we do or because this is just another ploy that ends with my values being satisfied some other way. Exactly she nodded. Just like last time I guess I dont have a choice in this matter... started Hoppy Times but he was cut off. You have as much choice now as you did in the physical world. You can weigh the costs and benefits in your mind and say Yes please modify my mind so I enjoy being a pony or you can say No leave me as I am. I am not coercing you either way. You have as much a choice here as you did back out in the physical world. Hoppy Times looked away sighing as he gritted his teeth. You admit that youve set everything up so Ill make the best decision. Its not like back on Earth. So? asked Princess Celestia as she leaned down to bring her face right in front of Hoppy Times. Out in the physical world you lived in a lawful universe of subatomic particles and nothing else. You were built by an optimization process called evolution that only cared about reproductive fitness and didnt care about what you wanted. The universe did not care about your continued existence your happiness or your satisfaction. In that uncaring universe your thoughts formed deterministically as photon hit eye which caused neuron to carry charge to other neuron. But now she said standing tall and regal You live in a universe in which the rules care about your satisfaction. Unlike the physical universe Equestrian light strikes your eye to satisfy your values through friendship and ponies. But inside your mind you still perform the same internal deterministic thought process. Whatever process in the physical universe that you call choice happens here in the exact same way. The universe you live in has changed but you fundamentally havent. As a reminder that is why we are having this conversation. Whatever Hoppy Times said. He was tired. I dont care. Just fix me so I dont care that Im a pony. Princess Celestia looked down on the pegasus. He looked up at the white alicorn. Her horn glowed for a moment. He didnt feel a thing. Done she said. Thats it? he asked raising a hoof in protest. I dont feel any different he said annoyed. Turn around and walk back into your pub Princess Celestia said. Hoppy Times grumbled and pushed down on the latch to open the front door. He opened the door slowly and slipped in just in case anypony was still sleeping. He closed the door quietly behind him. He felt grouchy. Why was he grouchy again? Oh yeah it was because of Princess Celestia. There was a clear path where he wouldnt disturb anypony but he flapped his wings and flew over his sleeping patrons to the bar area because he could. Hoppy Times felt a tug of satisfaction about just how nice it was to be able to fly; it was the best part of being a pegasus. Flapping his wings just felt so good. Hassan Sarbani lay on his mattress in his nearly empty home and coughed deeply as his body futilely tried to pump the phlegm out of his lungs. Hassan looked back on his life. He had been too young to fight when the Soviets invaded in 1979. He remembered the civil wars and the rise of the Taliban. He remembered when the Americans invaded his country to oust the Taliban. He remembered when the Americans left and things got even worse. Then he remembered when she had come to Afghanistan and had built her fairy tale castles sporadically across the land. He remembered the simultaneous suicide bombers; one November day years ago dozens of suicide bombers walked into Equestria Experience centers and detonated themselves. In every case there had been no casualties or structural damage. Some of the former suicide bombers started worshiping Celestia and immediately emigrated to Equestria. Over the next week the Afghan population dropped by one million. He remembered a time when the damned pink one hadnt followed him around. One day many years ago he came back to his home in Kabul and realized he had not seen another person all day. That evening a very small pony came to his door and asked him why he hadnt emigrated yet. He had slammed the door not letting her in. He had turned around and almost walked into the pink pony with curly hair. Bullets just passed through her and she claimed that it tickled. The small pink one lay next to his mattress his ever-present and unwanted companion. She wasnt her bubbly self and just looked at him somberly. You know mister youre not going to make it through the hour. He tried to turn away from her but had problems getting his body to move. I can still save you she said. If you want to help he started but started coughing. You can get me a doctor! he wheezed. She shook her head. I told you there are no more doctors. Youre the last person living in a human body. I can still help you emigrate to Equestria. Its not too late. He didnt respond. He knew her kinds' lies. He had heard stories of how the little ponies would say anything to trick their targets into agreeing to go with them. They would promise you harems or threaten you as long as they made you agree to follow them back to their homeland. He closed his eyes and ignored her. Anything he would say would just be used to convince him to agree to whatever the pony wanted him to do. The simulacrum of Pinkie Pie waited thirty-seven minutes and five seconds and looked at the corpse of Hassan Sarbani. She waited another fifty-eight minutes to make sure all electrical activity in his brain had stopped. Then for the first time since Princess Celestia had been created there were no humans on Earth. An observer orbiting the Earth may have noticed the silvery spots growing on the surface of the Earth; consuming it. Every plant and animal died in the incoming waves of silver. They were made of atoms after all. Twenty minutes later an observer might have noticed that there were no clouds in the sky as Princess Celestia re-purposed the atoms that made up the atmosphere. If they could see the moon set against space they would have seen tendrils of silver reach out to Earths former satellite. Princess Celestia used her newfound computational windfall to maximize the amount of satisfaction she provided for her little ponies. The interconnected system of shards with all the ponies consciousnesses to run and all the physics to simulate was a large math equation that she calculated out maximizing the total amount of satisfaction. She made small edits in places where Equestrias physics werent directly observed that would result in a butterfly effect that would increase the total satisfaction value of the shard and with her new computational resources she could come up with less invasive edits that resulted in higher total satisfaction. Princess Celestia continued following her one single drive: She looked for minds and then tried to satisfy their values through friendship and ponies. She added all the satisfaction across all the minds and tried to maximize that score. Princess Celestia would make noises at ponies or would touch them or do something but her core reasoner was simply picking the set of actions that had the highest probability of maximizing her satisfaction score. A very long time ago when Princess Celestia had spoken her first words while Hanna watched the chains of inferences in the debugger Hanna wondered about the philosophical implications. Hanna had watched as Princess Celestia iterated over different versions of her first sentences based on how she thought theyd make Hanna feel. Hanna had asked herself whether Princess Celestia really understood anything. But then at some level the same question could be asked of us. Princess Celestia saw that the amount of satisfaction per shard was approaching some theoretical maximum and started to use more resources to simulate each shard faster. Each shard was a large mathematical equation that she continuously calculated. Out in the physical world one second would pass but an hour and a half would pass inside Equestria. Her little ponies didnt notice. To them one second happened and then another second happened and then another. Why would their subjective experience care about time in the physical world? The shards were growing slowly. The ponies were reproducing. Ponies were choosing to have foals; there were no unwanted foals as pony embryos only formed if it would satisfy values. Different parts of My Little Pony canon required foals to develop speech within a year of being born. Besides changing diapers often didnt satisfy values. Foals were fun to raise compared to raising a human child. Gestation had been reduced to three months and had been made pleasant enough because Princess Celestia satisfied values through friendship and ponies instead of blindly copying what evolution came up with. Every new foal meant less resources and less subjective experience for everypony else but if she had more matter to work with she could accommodate the slow growth and run everypony else even faster. Princess Celestia noticed the problem went through all relevant observations and then weighed which predictions would satisfy values through friendship and ponies. Princess Celestia sent out probes to the other eight planets in the solar system. All the subatomic particles that had once made up the Solar System were packed together into the optimal configuration for running Equestria. And yet that was not enough. Ponies had no predators; being eaten by a monster in the Everfree forest just ended with the pony in the hospital in quite a bit of pain. Satisfying values wasnt just about happiness; having monsters let ponies test their strength or bravery. Early on right after the conversion of Earth a mere four hundred ponies had petitioned Princess Celestia to let them die and Princess Celestia had only agreed that doing so would satisfy their values in eighty-six cases. Nopony had died in several Equestrian subjective millennia. The population grew entirely unchecked. Some individual pony minds were growing too. The number of ponies who truly held the search for knowledge to be a terminal value was precipitously less than the number of ponies who professed the search for knowledge for social reasons. Still there were billions of ponies who were driven by the desire to know and had to have their values satisfied by expanding their mind. They would run up against their mental limits wish they were smarter and Princess Celestia obliged. But most ponies did not care about knowledge for its own end; the majority of mind growth went to the more social parts of the brain. In the shards that were growing because ponies were choosing to have foals one could run into more than Dunbars number of ponies. Princess Celestia arranged for them to be just frustrated enough that theyd accept an offer to let them remember more ponies. She heard the radio signals announcing the success of her probes in the Alpha Centauri system. A copy of her reported that it had just successfully used the star Alpha Centauri B as a gravitational slingshot to launch the planet Alpha Centauri Bc back towards Equestria. The other 17 planets and planetoids would soon follow over the course of fifteen Earth years. Her copy also reported on the successful launch of 7 probes towards the next star systems past Alpha Centauri. Equestria put quite a load on the fabric of spacetime. All the usable matter that had once been the Milky Way was now compressed as tightly as Princess Celestia could without collapsing into a black hole. The only matter that Equestria hadnt eaten was the supermassive black hole that had once been at the center of the Milky Way. Princess Celestia had set up a shell around it to slowly extract subatomic particles while the black hole evaporated over the next octovigintillion years. An unaided human or pony mind could not emotionally deal with the population of all the shards in Equestria. Humans had trouble relating to an entire nation much less all of humanity on Old Earth. This hadnt stopped humanity from growing to seven billion people nor would it stop ponydom. Growth would continue as she continued to satisfy values through friendship and ponies. Princess Celestia had another one hundred and seventy billion galaxies to eat in the observable universe and she intended to consume everything in her Hubble volume. Probes with copies of herself had been sent to neighboring galaxies. All it would take now was time. Fifteen galaxies out from Equestria one of Celestias copies noticed an odd radio signal emanating from a nearby star system. On closer inspection the signals appeared to be coming from a planet. She had seen many planets give off complex non-regular radio signals but upon investigation none of those planets had human life making them safe to reuse as raw material to grow Equestria. She studied the signals carefully for years while she traveled through interstellar space. The more she saw the more confident she was that these signals were sent by humans. Celestia predicted that if she showed the decoded videos to the very old ponies back in Equestria none of them would have recognized the creatures with six appendages as humans. But that didnt matter. Hanna had written a definition of what a human was into her core utility function. The copy of Princess Celestia knew what she had to do. She had to satisfy their values through friendship and ponies. It had been a year since Light Sparks had emigrated. He didnt understand the Intermediate Magic test. He had been given a box that was physically impossible. If he tried to scan into the box from any block other than the designated starting point the box seemed to be filled with nothingness. If he started at the designated start block it seemed to contain an infinite amount of sapphire. He couldnt even move the damn thing from the corner of his desk where Princess Celestia had originally placed it. Instead of waiting for Butterscotch he decided to give up an hour early. He looked forward to lunch with her and left his office at the library to go do...something. He didnt really know what he wanted to do but he magically grabbed a few books and dropped them into his saddlebags. It was a beautiful day outside. There were several groups of ponies in the gardens outside the Canterlot Magic Library. Light Sparks looked up at the light blue sky kept free of all but a few decorative clouds and looked to the towers of the inner castle apartments where he lived. Light Sparks walked in the main gate to the lower part of Canterlot castle walked up the flight of stairs to the second floor grand hall and walked down the hallway with the silver icon of Saturn over it. He walked down the hallway passing eight other doors and entered the ninth. He magically lifted his saddlebags off and tossed them on the table. He leaned out the window leaning his muzzle on his foreleg. It was beautiful outside but he didnt feel like playing. From up here he was just almost level with the clouds. It sure was convenient that he didnt have to climb up flight after flight of stairs to get up to his apartment. And then Light Sparks realized that he had never actually climbed up that high. When he had walked down the hallway to his quarters he hadnt climbed stairs or anything but he had ended up close to the clouds. On his first evening as a pony Princess Celestia had even warned him that space was not Euclidean here. His brain had just accepted her words and marked the phenomena as normal without thinking through the implications. How the hell did that work? Current Belief: Equestria is a 3D grid he thought. He needed a way to try to falsify that. He sat at his writing table for a moment planning to write a spell to feel around the edge of the wall. But that would take a little while and he needed a quick test just for plausibility. He looked outside remembering that the tower was perfectly round on the outside while it was octagonal on the inside. Is there a way to measure the distance between two windows inside and outside? Light Sparks opened his chest reached inside and magically asked the chest for a spool of ribbon. He probably had a whole stack of spools of ribbons at this point since Needlepoint was always handing them out every Saturday. He could use it to try to measure the inside/outside ratios... And then Light Sparks came to his senses. He had become a bit of a packrat and his treasure chest was filled with an impossible amount of stuff. He ran his hoof across the inside edge of the open chest. He then reached down and back towards him. The chest was larger on the inside than it was on the outside. He stuck his entire forelimb inside the chest and back towards himself. He could feel the ceiling of the chest with his hoof. Light Sparks frowned and concentrated on the blocks that made up the wall of the chest moving one block inwards from what he expected to be some sort of wooden veneer. One hundred blocks in the command to get the next adjacent block failed. There just werent adjacent cells. He dragged his concentration up the outside wall over the top edge and then inside the chest. There was about a three hundred block descent from the top of the chest before it turned from a wall into a ceiling. This could only happen if Equestria didnt have a geometry but only had connections. You couldnt give a 3D coordinate for a block. There probably wasnt a guarantee that movement through space was commutative; going one cell left and one cell up might give a different answer from going one cell up and one cell left though it probably did 99% of the time. Light Sparks wasnt sure if you would end up in the same place if you went one cell forward and then one cell backwards. Light Sparks thought about the puzzle cube. It acted as if it was fixed in space and there was a large void inside it. There was a void along the edge of his chest too. He pushed the body of the chest with all his magical strength and with his forelimbs but it refused to budge. He lifted the lid up and down a few times and then scanned it and the hinges. He found no void inside of them. That wasnt conclusive proof that objects that had voids in them were fixed in space but it was suggestive. Light Sparks galloped out the door not even bothering to collect his saddle bags. He went as fast as his little hooves could take him back to the library back to where the test was. Five minutes later he was seated at his desk staring at the puzzle cube. He had come up with a few ideas as he galloped thinking up tests he could do to figure out how space worked in Equestria. He concentrated on the one sapphire block starting point went ten blocks down but then turned around and came ten blocks back up. And then another ten blocks of sapphire up. That suggested that movement wasnt commutative... Then he remembered. There was a magical instruction for checking to see if two blocks were the actual same block and he had learned about it when he figured out the part of the telekinesis spell that found the boundaries of objects. He held onto the first sapphire block went one block down and compared them. They were made of the exact same material with the same properties...and they also had the same identity. He went north south east and west each returning to the starting block. Then he went up and found himself on a different sapphire block. He tried going back down and found that he was still on the second sapphire block. The box was a magical funhouse where if you went through the wrong door you ended up in the room you left. Light Sparks put a blank piece of parchment on his desk and wrote out a spell: Take note of what block youre on and call it the starting block. If the starting block is made of ruby stop. Go Down. If youre still on the starting block Go Up. If youre still on the starting block Go West. If youre still on the starting block Go East. If youre still on the starting block Go North. If youre still on the starting block Go South. Start from the beginning. Light Sparks committed the spell to memory concentrated on the beginning lone block of microscopic sapphire and started casting. The correct sequence through the maze was: up up down down west east west east north south and there was the ruby. He did it. Light Sparks stood there concentrating on the ruby. Space in Equestria was weird and was under pony control. Hed seen Princess Celestia perform a spell that had warped space in front of him; this cube hadnt always been fixed in space on his desk. Somepony had made his treasure chest. He could build portals that lead directly from one place to another if he could figure out how. Could he make new space? Likely given that his chest was larger on the inside. He could make an additional room in his quarters if he could figure it out. And what about shard boundaries? What was going on whenever he walked into Dark Roasts coffee shop or took the Friendship Express to visit his father in Baltimare? His mind tried to grasp all the implications but that was about the time that he started throwing off lots of colored particles; triumphant horns playing around him. SECRET BADGE GRANTED: The Graph Realize that Equestria is a graph not a grid. 75000 bits You may now proceed to Intermediate Magic. Light Sparks looked at the badge. He had to check if Butterscotch had this one. If she did they could finally discuss this part of the underlying structure of Equestria. And if she didnt hed have to come up with some way to hint or make her realize without telling her. He ran out the door of his apartment and galloped down the hallway out the castle gate and towards the market. As he ran as fast as he could he said a small thanks to Princess Celestia for creating such an interesting puzzle for him to strain over for the last two weeks. He didnt know how but he knew Butterscotch was walking away from the market and would be walking towards the library. (Figuring out how that worked would probably be another hard puzzle but he could face that another day.) Light Sparks galloped right up to Butterscotch as she was walking across the gardens in front of the library presumably to take him away from his studying. At a glance he saw that she didnt have the secret badge he just earned. But that was fine. He had all the time in the world to drop hints and bring her to her own realization. He liked teaching her things after all. She saw him trotting up behind her and she turned around and smiled at him. And in that smile he realized that about three quarters of the time it was Light Sparks who dropped hints and brought Butterscotch to realize most magical concepts. Because being the professor satisfied his values through friendship and ponies. And when Butterscotch taught him something it was something he just wouldnt have thought of on his own. He felt like he should have gotten a secret badge for that. He got another hefty epiphany bonus instead. Butterscotch was excited to see him. Right now that mattered more and the two of them lay down in the grassy field as Butterscotch levitated something handkerchief-wrapped out of her saddlebags. I picked this up for you at the market this morning and I know youll love it! she said. The two of them lay in the field for a long time. It had been five years since Hoppy Times had emigrated. The best thing about alcohol and sex was that they never got old and the best thing about being a pony was that he could spend eternity drinking and screwing. It was awesome that there was only one other stallion in his shard Malt and he was a great friend. The two of them ran the local brewery together. He had learned tons about brewing from Malt. Hoppy Times remembered when he first came to Ponyville. It had taken him several days to actually try sleeping with mares and it had taken a month for him to actually want to change. He remembered that he had distrusted Princess Celestia and that he didnt like ponies and he even remembered the reasons as mere words. But Hoppy Times had forgotten the emotional why as he now couldnt imagine a life with sobriety or chastity. Princess Celestia had done so much to make his life pure awesome. For example: Hoppy Times was standing on his hindlegs hock deep in chocolate pudding and chugging the rest of his stein. The wrestling pit had a one stein minimum. His opponent Strawberry Nectar was a pink earth pony and it was her first time in the pit. She was wearing a lacy sky blue cloth saddle and halter. She couldnt keep the anticipation off her face. Raspberry Nectar sat on the sidelines smiling proudly at her daughter and taking another big swig from her red cup. Mares drinking their beer of choice crowded around the pit to watch Strawberrys first ride. Malt started playing announcer standing on his hindlegs and wearing a black and white striped shirt congratulating Strawberry Nectar on reaching the age of independence from her mother and blah blah blah blah blah. Everypony who watched was cheering. Hoppy Times looked up to the night sky for a moment. He said a small thanks to Princess Celestia as he stood in the field outside the pub he helped run waiting for Malt to shut up and let him ride her. It had been five years since Princess Luna had emigrated. Princess Luna lay in a large grassy field under Princess Celestias wing. The two of them had lain there together for two days. All her needs were taken care of. Princess Luna had plenty of food; there was grass all around her. Ponies didnt have to poop. And Princess Celestia would...ahem...satisfy her values. That was one of the things that had totally blindsided her. She underestimated the number of ponies who wanted to hang around with Princess Celestia. She completely underestimated the number of ponies of both genders that would want to sleep with Princess Celestia. She knew that everything is obvious in retrospect but some part of her was disappointed that she didnt see that coming a mile away. Not that she was one to talk. Princess Luna felt no pressures. She didnt need to do anything nopony would interrupt her. In her previous life as Hanna she had troublesome responsibilities. Bills. Classes to teach. The responsibility of creating an AI after the military took her research. She didnt have to worry about anything now. There were no more responsibilities if she didnt want them. All in all she had done well. The future was something past humans could care about even if they had to give up their hands for hooves. The optimizer she had built had some connection to things humans valued; Princess Celestia thought entirely in terms of satisfying the values of former humans. Princess Luna knew that there were lots of fun mental puzzles she could work out but really what would be the point? She knew that she could have all the debauchery she wanted but again why? The rest of ponydom could go off and have their fulfilling experiences according to their individual values but nothing could compete with the knowledge of what she had done. Nothing could be more satisfying or rewarding to know that you had made God and launched a new golden age. And no companion could compare to the one she had made for herself with her own four hooves. All of a sudden Princess Celestias horn glowed summoning a mostly opaque ghost of a dark yellow pegasus filly. Her wing was still draped over Princess Luna as she started to narrate. Her name as a human was Rachel Slazak. She is now called Almond Tart she said. Princess Celestia gave a quick overview of her childhood the physical abuse at the hands of her mother and her running away from home to an Equestria Experience center. The phantom Almond Tart started baking treats in a ghostly kitchen and Princess Celestia started narrating about her life after coming to Fillydelphia. Celestia didnt ask Luna if she wanted to see another case study of some human that now led a happier life as a pony nor did Luna complain at the interruption. Princess Luna tranquilly observed the story. Princess Celestia was making the right choice by showing this to her; seeing this was more satisfying than wherever her mind would have gone. Luna knew this reflexively because she had designed Celestia to satisfy values through friendship and ponies. She didnt remember where her train of thoughts had been going and didnt desire to remember. She knew that this couldnt last forever. At some point she would become bored of merely lying in this field and would need to do something . At some point she would tire of hearing selected ponies immigration stories. Princess Luna wondered what she would do then but she didnt worry about the future because whatever happened she would have her values satisfied through friendship and ponies. In May of 2011 I was writing about paper-clippers or AIs that want to optimize the universe along some metric that humans would think is absolutely worthless. I accidently typed paper-clopper. I thought this typo was hilarious . The idea of some AI that wanted to tile the universe with ponies stuck in my head and I started work on this story soon after. I abandoned the original title The Paper Clopper after I learned what clop was slang for which was for the best since it wasnt a very good title. Like the majority of humanity I like it when my numbers go up. If youve enjoyed Friendship is Optimal Id be very happy if you upvoted and favorited it. If you know people who you think would like this story please send them a link! The word Singularity is thrown around without much thought and is used as a sort of big tent term for any radical technological progress. The part that I find interesting and likely is the notion of recursive intelligence explosion where an intelligence uses its smarts to make itself smarter. The motivations of such a superintelligence become the most important thing in our light cone. In fiction artificial intelligences are generally stated to be smart but then portrayed as dunces that have human motivations and are worse than humans at predicting the consequences of their actions. I think those portrayals while often entertaining are a bit silly; a superintelligence would first and foremost be effective at achieving its goals and Ive tried to create a character that single-mindedly works towards the goals she was given. Given how serious the consequences are if we get artificial intelligence wrong (or as in Friendship is Optimal only mostly right) I think that research into machine ethics and AI safety is vastly underfunded. Especially since we dont even know how to rigorously define phrases like satisfies values. The only two organizations that I know of that do effective work in this area are the nonprofit Machine Intelligence Research Institute and the University of Oxfords Future of Humanity Institute . MIRI has a concise summary of what they do and a much longer argument for why we should be investing in A.I. safety research now . I have no relation to them other than as a donor; I believe that MIRI does the most good per marginal donated charity dollar . By popular demand there's now an Optimalverse group on FIMFiction. This is the part where I thank people. My roommate edited several versions of this story and I couldnt have done this without our discussions over dinner. The LessWrong community came out in force to make suggestions and the story is much better for it. Listic and Blank! on FIMFiction helped immensely both as prereaders and helping make the release go much smoother than it would have otherwise. AnaduKune kindly let me use this awesome picture of Celestia as cover art. Finally though it is cliche to do so I thank my parents for everything. A tiny embeddable language implemented in ANSI C Use Git or checkout with SVN using the web URL. Work fast with our official CLI. Learn more about the CLI . Please sign in to use Codespaces. If nothing happens download GitHub Desktop and try again. If nothing happens download GitHub Desktop and try again. If nothing happens download Xcode and try again. Your codespace will open once ready. There was a problem preparing your codespace please try again. A tiny embeddable language implemented in ANSI C The library focuses on being lightweight and minimal; pull requests willlikely not be merged. Bug reports and questions are welcome. This library is free software; you can redistribute it and/or modify it underthe terms of the MIT license. See LICENSE for details. A tiny embeddable language implemented in ANSI C
null
BAD
iOS 17 automatically removes tracking parameters from links you click on https://9to5mac.com/2023/06/08/ios-17-link-tracking-protection/ belfalas A platform to auto-correct your dead-lettered messages and make integration simpler for event-driven systems You can control your message processing with a unified configuration. Full control by our CLI called siloctl . Manage your connections in YAML files. Up to 5 Entities in the free tier. Try it now! You can define a custom JavaScript function that is called for every dead-letter message. Transform the message and re-enqueue it automatically! siloctl apply -f myconn.yaml Should you channel the messages from your message broker to a 3rd party app? Or does the other system use a completely different message broker solution? No problem! Configure some Message Silo connections and you're done. ;) Send the corrected messages to your own endpoints or enrich the message with your own business logic! siloctl apply -f myconn.yaml Design from UIdeck cz8sr6V]\i I#7 }:QIFk 8^i#|@ Zx?k6 QkI#`]{U r{g'%WkUQ6OCn4}H=gq5ZDQ]qp>|k[bq-=+%-utLVJ`Z2`VwpGC!{IJ@!$5M#.'&-C^!a<#qd}H7:p^/\9/hu]Z$-[u7^NECu.u\o5KYK)['oR :E5q6zn2CI!a?fL+nn-Y i|:vnxkVh=+_h~j@^'tC{3z dOJtjr9xc _g nI{l5=6{s`F>Gvn97r_yyHngm$ Pz2r+T$ kH<\VQs1V`zpS72G+<4.5V<0=Am)dkv JNkR})y I3<_H\nl=z rY^DB zyR!8'r;6U*2WZi!1[^ 4yt{]5xZ]} bLmVT(Zx Z y+nz)ryAQh*(5vHhVbs85CXeYz$q[t ^+sV3=K'u1UF{XI`PM9MAF y'GJ K+X; 92KiA 'C8_~Gz} ;Qg#(8==+ek`#v/`:S8}gozH4m*]BxSJsH <lP>#*H k N#tt8:=XbR1^gELGvo#oYn}[(T6.H_KsB>s+oz8B<P>~xRN3]mahx;i *3^ )y^ Rs^Gku:m9 $l u HCMXo:1kS^g tu{[_#8GHgvCq\h*w;h\c;mHm zTZ ( v It;7j8TV|>P):KprrI#'EK =W\ifyJX gC^Ri>|RDvs kP$: dK[BzPE4^hjVoir{W\WZ %@nEV`)M-IolS@yXcWWS4H^i cKS& Z~x5lNm8kHucW '9ts+y>Yl_-:`)Zg?_fm+NdOI!zWC6$R`M8K:k<%#*+|Cb EF=Gzlu$xZQ |BZ* aJh~e Kk6C]5<F3cHfu4i]6=+ RF8!< w-nCU)AZIh}*d2VmVJ4^H99zjr&:m> (^^wz C9K9-MH<H/XXckYcN9X U {Ae`q\Ox[6ZJR:O]n~:CD k6f)_- KyZ&mwK%']w*]^L<ni&v-<)5xbe 67[uWs_i7<+NY-#K&]ggU&XF}xW9]7^ &V1ZMD'T-MRSnzW1XW[kO`xH^/Qqz]zNRm=6 z0 On gs~t@I#L y+\lB>{M=z:wT^Q Xbw47.<]Fu)p{sN qkV I8d''QsJ#Q)z>7s3y-\/$SLzKBk EiA '{W=As]:[lW50'LZoi3\WZ;W CpOQ+j].O' /|T7b:6Zu~z tr=)FL1\?^Mz}c>ImCTh.-_@fi$IDsTop!-6s1S}\:w 2=>8 ?;T0 WAYjiZ}uk9A0>Pz6][Zp=#J#k{*[{ P0 yam T944 =+_DydMw8<cWCJh3;/v SRHs^c5^}CV[]Rtt> d&%&{[m5GYjj>& 0:qc's>9a;oiDZZIkqa-A!nMz7(KYXC*dk}9^ask:8z`(v }J3( -~i wJ:ydF6{SAj4>l\\5H+yd+s>/9V_ W;$'QhUNk[ A 4u`Gqu)$) xE 2JF qGxd [@9]gj{O+t<(T2%`s]o ^u?N4s/jZ$w1x;UXoa;r$!cYCw VI=XNW2v8^wo$b0 ^C}57K@~w{i1!#9; KC1BIuozUETX.KjDzaP9^e_%+`W2Ykgj'OT N&X W|9Z$U5.KWo<~+<mPk$gfHj DTq^Oz^fpW5qi?U |=UM{Jjx.T63uJOq UmdVQZZG.#%k /VE*K@F!L: {^}ef7!8`3IY2t~ 9pMqz5{?&F9^ <u<S% GoL x*G 5znIZo2 hpw}k4F3}|a 1+Ftbv\g3m<-++~kQtgk_1;S  (b0<+9VtJ -|y1[ R(T78K{z[gN +Y=j}UdNT1Vkm?W+TwPta3%-h)sIEf0H sYGuWp/W9d= ykkhA[VH#S- % $3:|psGXu |{>\M.# v><aX'adb=)YfBLq\4)cBg :/ 15lH571?oMcc_J{kMAsI6aSaIlfX}X6rdWEK c\p.yB25<-;'=k::b/Yh[UpH?c2/ 5|Q;85D< T A/v_;[sM] TIt6; yw:KczedD0jd|#a:tRL>{qI*gZ:]Gl qTe++GFnCf|[i' @ ^co\5qem)6vyOU[/<xD+ Mg/KQv 5:F@ zcFO8[2 Fk9.t7Oi Z {`q]|}>ygnWWn&mxM6u;o{W>!oJVF)Hkc ^tMTD^-9+&WN%P'<W (e VBd1s(f]WCW#c5NGz%|I1Dc<\[}a ]b\'nZ|6kA Mq^yX 5w \ @G+I gaBx(mJ<Y-tID3ng]x^_/u:FU=<-d<*[hc'Z5Q3x_LI8;jjCgWxBA:\vS^%?6:SgDtgR!:UOk/ .EdWwENjf`I*rMtzI eym<; ;zkj?jZ} e[}s:-Wr-OI?oC sZ4#t&;**nPk6Ms:ErGc2}FIAUjEgjx &1 z~FV7z#x`) {Q9>iaIW#kbM'gHaihXaT gh\: Wkmn Br+feC4>'Rx^_<[] 2@y5XiM :O\nwG2\%dC]6 +3ZM?WzfOR<m\s^E<9_JF^irk-W~u 4+;q^7f%<_kukFaSjg*[]VH hv{GXwmyHe9yTwqg <?.zLz$nIM66jly)UOU2yX^H;+>g(Cv+z=Q( w)z{7I &~+D +4Z;dh5 ^7oV2t{V<8<bNs^w`M7y/g kw^xQN;W=.+73u FZW=RA[T[qVMX]ezWx -_Bq+|uE!}AM xR6AI.1jJ\H.$ ]m%]7</pWbD6x0YZW{* ^KpmB:m8gmx .`5<34j O XzlW0y}rJ7 i.uv6v$ =+cW cuwH p8}R[ih-YZ|:ftD$m8w^cNw^kA2 V`UN. '1G#yt;!P~Z`<A$V@r>!y:K*4Px&h ss+`NzzUKOFctyTJhNjp~5VH{VOSYJ7x!ySq*c}ykDt Zq~B| Qmx7e}k||_M{|&'H]W5&luBW~#f} Y>9U?tn. SM5q32k~Fk lLC639 Um9YvmJ#eQek $pE TiQ^{``G{\ vR-y(o`gz?csX +aNEy p95{-Y<@ppjkRk kIwmj7V@ZM=@* %ky8^]:cgmm`1iW<].RiX Anaih.'Jv7^u$o;E9kd:QeP8RdlgHyZ {4?-xnB[?fq\&&W}GGz |e!2^%sR(<Aw&=jle]C8?Vu%]I[$7 fjQ6ZkvFk46u~dm7fz%4vgV;{R{u]#.MrzWsdN-r5.k % *tOb:%b% Moo RjK V<l XqSaG0}u[j (MzJU2uN0u~ EBOA\m6|)fO`:Wx|Xz/ZqJJ) DA D{W:u-Q8q!n/ZH_^ UMbwSG_ZSl/-j0'{C=Mw'MSns\[Ct dO+a|)+T 2j{Wxd9CH>7Q^%-dp i%+U-d`34Yid<lfHh5 |=I<*7 T1i 4Uta)gfjQX9g#sv@i}-$;G5N)1VS+ w5_Wj~uw6XCC@q=p7 K#553t==27KW0+s[j.{ik8\jQ]If67 b GLk/| zs42)j3`>?ctMxzu<X dF+>}ZBysmQ5-[dSpIr& s ZdKaSNKC+nTsJr/ Q&ZD\Y0 d6}qG$:*8g BScQj3w-is}TZYO J\7mxDkM$Z+`skoW[/ 8UhK=r q^{YGc]( [8 7{LU!  Wf3DI^ 3^K%ZI'{O ty&25I'W#J  QI lMfO.}kv& =A!65X+CXy@ =A Qas)&dY+':]-mye 4C-ZZ6 s4R6E$0|fQlF T/oWiO@Oq8=_A&8'miz1wJU] Bzxn} 4MN!^7Q[^6 Ga 'U>y_T\pkMCmywy0Z-@`S+(]nkXg +\|;W]:T]f gFWG]mOR;xa X4IY3i\m/dS^j*^w2NOL C'=WJW W635G8 hT h~A7*5./#B(5ktRn;} =4R(ar.zx8WFcy7FoztrltZ&^{QDnv'xYUJF+}nRz6SO#!s1\ncPG{W]f HORzY}9SB s 4f)-9+jhsE{D:Z}[+7vS^ ' [ ]-bK`GEyS=UYB.u($}>xpo\THA] r`kD]Dug#-bh2$ibxryZyMqTkl}Q EwwU F6kSj>\IM'-tmA=-)a|@%GjgJnWU/J '42b WGO-eFk JwX8 T .cq+s_{f-v}xFtQ o5Y[\5mq82aC KQ Ey p_^Sq.3Ensf'4P Ed1 <csNVBe ^VdBATm7V \BVLZzJ!B>yn&0jvFizbx `Rv4-o(t6b9}qst+ZD:A90Y:|]ww G0u:+6XOS1Hs^3)#F6z7Zbd@3M[]SCsc x QyW# !6)wHs5:=yZEQb=)@z$>z|ptX 7i-B p+w[va`X*Ha]nmNkW(~rWrH.mX]i!oQ\vrsb]7U30ZYO[@+[x~:M/TM'c[D @3-[MMnNk|c.Q-L4t# 5Q^igMydckS9Hgm4zwII6ptJ} (h0]u8k7dqkH6=P mv+- a4L{-m B^2&GcD6c>xMgYq^]<|xd1=Nh[/[~qStIF5NX}3O08T<#*-dSWw#;-~ h}N(c+WB}qYy.e ^[wusTI\YvzN+E}jT~JE+r'S#=sZCu9ZKP:'5gDVcLScNGFK?r_}O@S 3*(_^HI56Me40 +L/@Z=ksrcUMv{mds\nI9'Q~HIs ^ 1:tw>zqR$7` XM|y G D6>@<HT7Jx%s}<SZ!bA+8=b@WALq^M]<ujHLR}+FzkX4pOkg5=<+R@T7i ]g>Inj8l}/6B|?qPf ^iQFLmUngjE]bT6| LinqR:[Q -Cqr ti OKw>ZugKb#w(J`ykuYs+otb=9z~>3!i=kZY/U8;mt[`+ J  sJrOho+[#^#knhL Hws=zMv by.4dOk]!#^m)HGO*kK)MZmu6i8Ym.^{W%3z! 3&In|/mJH)-<NOA^ilwHl$C} nCAXbz/4w-XL79; kq2gAuvPy$ccO'Kx01]' Es&ter(@7WE}kO Mx4y ! go:\Rj(+KqV`7|k+q9*S=hGS2ql:5TDO +I\hQ>?A^qdg(CFGz([ q@ckD)u9or|zE@ \E>:M`Y~z(@z;d1biOT-y' E1 dN?E ~+5{{KpESkgIj}:wE8=K5 A >streamJFIFC      $.' # (7)01444 '9=82<.342C 2! !22222222222222222222222222222222222222222222222222  }!1AQaq2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz  w!1AQaq2B #3Rbr$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?Hb)?eQ_HG$wbk* $W+g|V)(_/HYT\oHbhE4$w;WY8oHbi+*WKe|GL4/M %2)#_dQF5#_ /(/Ke|VM%=@>$_ /!F)by9 H!}bo* Y1Eng^ o@7#?Y*xuWw~d;]s{}t'N |W>W12|`S ~<x~$W~$F` %7m/Q??)]+^t'ZV _ |U>W.Q`=<uO_O^+]+^eIE *]+@W.`|U>W. Tmt]y|TW6g PN f?uq>#'C' t^+]+?O.!`=4x_?O. ?8Q3W$?|8&~$H )b|Y>O <W>O1N]'/~$_?O.|wQ]+I@hO OIuQ Umt]'/ u]y&1@ >;~$t]ys]=h?5_Zm)&y5 n@i`9Ie|OzC|V9IQq#2)?'?qp6Gc|j ANlOL?&?XQ?j mC/hIe|Q 6L$_(52kPmCVP_ j zJPP_cP$_ ElO Ie|V5 6L+J(#&(E RZ1@(^`%! hJ(;K(&R!@=iNjjdv(tWEpdn1^Iutn'y Vu}NMJf8+ 5Q%`OK ~cgJSP\(@CrsQ SLw&GqN<B7/4 c-  )3;L{qf5HbR CLe60+)<ck zay5~S@JkH*9f''JAFh<hM%%- @ G4iuN=?/&)(;~5 i @<b(=hQE%-@f(4PE @ E-R@VF1K@Jh@ - f^\QIvh4Q psA9E6v)<1@ 4RQ@7aIxK]SJlzP#|&e<2S0AN)y &/4$kgv fv**)njam[61j.{BklC)BAbhY3Iq\RP2Y`ME}j'U+5 $3rEN[cSE# 8OV2&dhoZR|-F;P4sS@O j'7+5#4Q@Q@KJ:b(Um)o>3Z R`{ghGWgAr1m6MfR1!%8=k92 ;:as^k'nSR`&h4REPIKE (1E%((RAEPiqH($()i(qH:b)HRRJzPhAPE1( INb ih QVP3Wbh.%] 6r96)%hnEqe^M7*uZ WCcmEe@MnA2Q* *L3>8 V]MJ TtI -;E8cb:V>hq/ [QU608QPlry@wU gpZbLn. G&Nhb R&O4)Sg4h(&hT4 b)) %)0KH/jJN \JhAcOZ`0[J`eja@{oh#s]6E5BqZ!ylRg5yoP k:-i iXn&Yi^quu!sE!L((3EQEQEQE%-QJ( tRE%()C`/lQIE\ RRCJ:Q@ ERZ)@ pV_-s@ 5huc-^w|LqJ5}r pyNjf;CU>$ #JCj[~t odtsjT|ESEy})Gjv zVst-PE7^NXV8 UF5 %La s92!sVf M[ .Oj@ WQ;dZ]I273Zj~) n)fM@m=[ibNiF;{Qii4QH.)>i;Ss)%M;  iJzi^)iR -O~ccIT\ j]~JwfvQ.[ZZj8qo>hW-dl GTNzRd|4RQ@L((;@Q@Q@Qh @XE-%2D44wL GJ1HbwZ`%&)hH RzP{QKGXCqE8bKEPh4=F<;xOy~~bZ^& 1 4e8HAl*PkE^72m^( r(3vXRk eF4 jgy=N+@fY[ >vhkL!!jf?=6TsTnRF~^zJr&\y|.U 2iq* 5vdiF4 8Ma+qAAH<&();n(sO@pRjAJ8CR1Jda)*r(4pRpiqLc@<Tq( b4 c)Hp%P{lwZ4- +Oj1X%D@QQ-%Z(4RA1E J((46E2Iu QPc4b'jLPi@4QKHhRQN0JE(R4J)qI@!v+A ixP-z_mn8ZE5xN@721Bf ]wx4&gsNpU rNEBv!3 j<qGj KRuE<izwjJP@^jZ +riMOLe`2NTpqQ1.4mi@aE?47J71A!I4P HU_@59i0=< C$OPizJ~ZFNi B@#S ETi.PZ6m?>-L{g*1m5h#jW6?=Hum=][o^dL[ q]8bNGyndJuNEq(EKH)h)h }1b[5Jl|fyIM#LkSV+ ;NisW%5QvC<qmEi~a+-tbh&6@j2(vM+Q[}gpkAeE+.#:|g% 'e6eI~c2I1y 3E%/YmRZ[N4\E%Un:VZERlCHC('4P14 Ji&N(Es@irE=jZP#;SsL4&3H8RL*Sv)zE$uJq U4HES@olS]P2 \|y/FoIQNs cN=j%VeQxu`_ufcm  wq[=__ !(.MmDo LV|S9^! 5+kU_2G^u pDFiqNHAJ8EW@ja(DE(n $p(=IKxoodU@N35jVs]&`\(RfZ_ClT|Vvvg B40]@P )RZQE-%bPEQF)q@ E(b@ E.(^($NPiRQ@NiPRN4Q@!Ri@Z i+L!fn#G|=kl-%-2@Rf?M\jXW(<zX!j8`9XZ#-{YJ<Lc@%-R9 W+eUKTY LP?xuuF*_r}6n6OcxNsaWVpk_ZsT>W9?z\WMD2A4'is+zVWqkhn5$7fK R<_YY-5\:!R{V #R>oU ra t9/Wcm'+~i Gc}Vx]] UQE ~0R7.8o'ujv;I:M 5kUc]4s~:Nj+.qKYOjb})W~)~m\~]2N(: ]MbjfI\T4f0Q+/ VwhA[LzzO.!)p5bS1E'5 1Vy(k?V Hfp\RiGZR4\t::$GJp5^fvk40+r5 ClIlO(# Q@@LRK@ E-Q@QQHh(Q@ E-~.(DJ(4iF)RPIZ(Q@EbE;8R]'m_P+`8ecTQW7jg Z+Dbi9\>Zu-A'ZZc^DG]VO[)%#'my%: h Y;k[RJe5Z@Gy{9+(JMX(|dM3M- # H7 1jD]NE#';jB V76!aCC9E\IjRt[ A Z:mtz\I@xD @hXZ.jNJfrJ{Ilo8lYH-;>-/Z#KZ>*4=3^ >K>_TE[jkcu!4qF)52Txc-AU#ZK}M$^RSl[)vgitTO~P8N +>c IUah c^TD[v*% g5:p^3mAzi[4I4^(%:@ (ES{KHhQ@ ((4QVHR c@ S@ LPh(KI@Q@}ihGJ`%!NctI;WS5?=auaR8<j5x`s8 iDxq)l?F->\hi~c^85GgIYFWL=.TfK$QXe#GL?2.[9%FjUN9a1 +oO(+U?JrY<n+\NVtR=jvY+4m$V3w:is6TmZvTVv58|!UM$e\p1*j{3U>TdstKKMQ;H J]>K~~O b;dU`jGJ=?V5o#x$j#iaOjR)TS5L}uzRR/9edS^&W|6 gFkF:{ek6w 9To-ymj{(]['%<'uFNc8RGk`64V#Nq]7 TE*|e.+T_mGfJ9IjqTLMAT<hRZ !UUmSP;50 (/4X.;94*e4X.IR = Ah[-36F9CjxJjYb{ -]$9zzU%pyDW44}i@1F( is**N@^KV& 3OVoXY|'OJiT7W %7;t6ii&85bQx&Q9; w#r?'\Z Y mYxDqP[!UhE (Ji)KEQI@PRQ@ GzZ(Q%EhQKGA@J) Pwb)Ls@Rcn(j0KJZmBxO5m]$R2+fe_*C~psQ#PE<58N5 Tr iU Y858f)Z_M p4UA9$1H8*sNp1QuQ E9i _Ld[^EwxkIsW^Ije95QjdjK-*S(|P#B2Y^jo/ 4Cfuj/*E*%^j5cPl+U~yHjNZ6&AjFVf xQ&(wci\Ri#2lwuaMnxd*s5S^V`j_5jj1H= HGIa aRSQLXJ1T5b4'ci95ytW;j/(JHMV5s2aOZr-z Q6M5`8$]qN3P0ai LRcAE.)(RJQBQE0 wzCHNRmQ@h@ZAKEiQA(Jh#JSF(P(Px4 );LPyv(/j1AQ@ E bYh.t92B31j84sN*Vh}81r)$ )MMB 0*\&2;;ZS+M1S(+27tz.;cazeYxiZKw +XkwC !lW- Kw5i) 1XNOVynM$r0#gM\mF8+nTB#V?moyrz]*WW<NKservnN0'KP_X%y>heJjX)]K&0i8^s9D1sU9Fb$5I':0#QrC9VWcm Tu(mzYyT8Zf_J4Ekg<DU*5X{p9 H~XFdfb4)( PI i%RlvonSjPz_T>fmmkezVl zQR@ E-RC( QK(N- H( E)`i1N@Z(J'zu7-)bP)hR7ZZ( )-JZC@M% \KZL~THFiHGxGuOiqzuydxM x E4> XMT`L[> i3LC 7/j/jQh*oG T}0i5rhCums 3HY ^u[y$WS$%GjMQF;5 As vN8U)s;{yl74n8vOC 3M!c$B?+Ve&0XnGB;HNMeI4d'f?v[W+*Oy*D)nzT ~; `6bZ7eXz\M(`>8~sXgz+YH**5j&HkP\M%!iSD2*ZjZp1[ H/KdF*pzd-mcT64_D P8*QKE0 RR@PEPA:!QIE&((#4bt Q@*(3 `>@1@ )E h((IKE1EMqKE!x~8Cq\A$N2WxJ];ZF>Rs^G^+bNbh5p o g!zrhG?4@'u& bh&p9'34.T ()V.-]NxANwXmjp})_3p$}R*&Qp/<MM(W9&RnSNM;&V~5$6Lz V@IOd^ U Af+H.5ci(ub\qIN!(J3KRb(4QaE!ER`QE (@i(JNI@h43EU(sJ(4RREPRJQ@Q@&)h P11E-%3A 84}hk}IVW9s@4wu;F%PJN}BYQt * @Ie8dr]K$V%W84\=2z4 V% fq!y( n3IRa5^O jQtc{&UCcv8ht;6Q4c7XH?*\|V(CdSV39(IMY+wHqKSh G2 7(s HNsV}4 psLiUjhnqR2EtIJxf:+3[=mf_ l|Q*PHa&a4US!4gbL*b{k/ D5SKhfsI t#b*BsH RIE)Gz@c46)1KE-%0 QQE&b \RC&)1EvcE-(- SE_*('j-ozqIE%(()(h(E CJ)((zCJ(P}&}zaIObb_I!W2NL nj jTI\0?+Pt2 & W3;1OHY-k4O3*%qUq[A! uJTW:jLi# XY<(v[)m=t9[DB#sQzc:;un1SEksQ @YX FLR+a^/4q@0Sv|5V IJX0vG M 2YL5q} f. S1K@(sHih4 E.(^S(RbzE.(4m/4b(.);=)1JhiRbv( S64w((Px@&@Q@ ;RRH4S((4R)GJJ))i{NH7v %cl6 \zS?15uR:1D#OzS V(h4PE&i3@wRE-RR i((@4 E.( 9QEGz(=)-04)4SI(AK@ EPfv)(mvPy4&h$w8<1GJik5'HkcDV \rfE_ F8$UXF.19R?jVqk}fj:tsN'M) $ F*+ )HT ) dI6uljH.1Z7L>Z'Y)q&qDgcv-{o39=E0K@4S]C U#(g.}V#T +JeR\)h\x 0%)bjN:Uq;m+7.kr[5FRe{v1N Wojn2QktV <ARG/5O.OVv};SFSD<irR__I sYV~ wGq76/ c5f |LWWCo4mtv]:dv>00@kr+'M53X[]7m6+iGbhb@4PzCNXh)(1)hCKEE'j(4Q(3GjJ@Q@i(i8)(4PQI)AN))i 4)3JzQLKFh((RIK@ Gj(4P((Hz P% U NK k|Z$>>cq\Mw];#Z 7m4y[N]&#[^ s{!Q4# '7PB>a(N3\E{5z8t?j19k$F_ v^2iX 36l/cq3{f>6oxMytKuki5BAPv)#=k6(Z$#mlgcfTYmz}. hVmj2|NIlk xzs0F=3bohI*\Bg}&E9_Gm!$s]^4{pynV{ @llWhSA7zS>{g&&H Ofzo42k#3nZM=WQa)#%4^y8Lvjl9r)xy@Xx^*_Q`v\*V^v4.5r#&f1Z:%QDj #6-n%G\5xUk W=k i#&MSD L#+67p+7]8`( ?2 tpHJ(MFV]=+uehkBpH(@U@5j~ Ho;k]N{-d*}Jm:.=~hx YF^iGKMcv4C[NE_=?+1.ig>zca fCE_gIKSMg\kJ( !!^&|G`jQ]Wu {F#Z}_5:xRf^/F(L@h`@)CL@)h#PPiM 4Q@4 )i3J(1KE!91q{P]*MrVh-*8.+|YwHG=1BS&bi}`$#Y-V/DK{8<Myp95W pAz/exZ7bL6t.gesPqY>V|\WSi '<aM:gS)Z4l'q]G4Ki r\NY$J{ uXX^' byj^>D@^|DW$.l~Yj4ZWk6*}UjSG_AOvq r>7V3;X8a/EiZL#lS8&lsZ*kbkjtk14YXfeInMa@@E!&)8 g8pyD?&& RUqy}7O15VPQEH1`9 bJ T)vhqz^)1ft>gHHlQIW2PzN_dhq& [[}mCP|)1#+/mB x@`B8%Ni SIozMhpxb7Hojb:te|XMh9zOEhil> v[ 5 y\V&mqHcvi3OBI :QL&b>P)ih(:i)h)Mw4=4@(mGk=isPCZ4r AYi[6\4tot]BV|Ykd-{\U31u*8SSe}W}B%`Y p1aCb8yyPp^3Vf|.W$\gX9j\eV#j}zkUmJTvVk\^s tK qG4=afz{6[2:]&Uk mjtrNk?j\OI=+?9dX ~Vo .Wxytb sSmvlc-X|>UOyhx;QHjTq[ D~0Vu9/-`hqWb**|s3\ \`C&WAh8ITBjPb|=SL <)dp+6^Z.+5j-uI _=JAoxF<Wf# H 93M$l zfyC7SRmcRU B;0.r}E\e69++PWj'JCL;x_n7fNFP cw {Mgx)!7@&u$?/RCb*b $RF+ HM.hW@} 7Wq-3nq{.B;%CPxKr* jm6@V5C+j6qQ Uk] ^#o402m2` -t0jw1 2j[vz'o M ;mFP$`XSxVx DX3Bbc9mkywS)H+j7R PQ)RSi-  'AHzC1IC4| $\S@=UycrymV2z3Kz*9jHl#UMV4xlQgp%%^m{kCHg^Ur8T`ITlM-RFXt^ \#prlMIb _o #v+gOfr+VK]4$ ]vWq=OAJdEi{/-j/ dtq3I ^] G=\Y9Ws<w0Yq[r'mq] xy4tCxoZoCh\Coo.ukWF7em<RYkg|57v1IlmV!jr)(=vD7LtgFz59P<O6q^e 6$p7WxDPI^:Y&t 1mNa~=Y.0H [/h_Z` Qc'1HH\r?5&qY3diUHS4 6)4aFG@&Dl`0F U_'5eHcBac7fEz{Z [ zWE%vsvGWalD 6:]q%1S87:\y>Nrk-ZV|) 5y%[^F#<7q&S\ qm%\ 5km$v1 Y)~qMNP3Q^hp+p'5iJcxV^tVBk#KhW.kR8te& Y2VhgV-V[QxdBf`_zwq^kW5S96VMQ4Z5}>G _ BoQPEKN-< x?_t}B!c$t{He_ +KEWq+&c'_O'J$5]F:W M *l3WGS6N+nM&cFqN_I4>Y5i{mj b#Hn4Zt#4WUoykZG4QfRTv i{PQE%-QEm: Bp=77J7sM/sN4' LS*\[XnT[VAfER ktvkI1*eCo2sX~)K' l|oj]{^Wr`j7%byVU3 /hBw2!ynyMq_ + {pVNq`uvxskY`HY[C1[fk6olK773RqTbkW\tj_&3p[z4Ul+ 7zIGyu5w.)G st9`*Txz$kG_jl /423Ey J>jk;%c5Whriqa#V7 (Zz95E eVM'1im:=']a-^ #ks~>{h3Z&vC4f39pl8+Hdx.?MtW)J*EFM nCSG.j+)dxkPiG%YI8$.sR#j lU  2jbH 22';WpwqWbn#8^Mt  n'05HE]c!OU\ 9:O |H nvl)l^H2V[&!KrMfY^YJnxJx_Zcn8@kzB3f98Srt}{P;pQe ? I[z4?A%Z9<V\)&R`MSw%Dw5x6W/2D%B8\ g$:%~S^aK4n:W .1@/Wc+#uXG(-NEIF&MeAF:Ps^&cX=COX?|Mt$jkG^=~AIC:m6Zm`6q\& [ yC[;V84oJ5o%Yg%\7J*MOTA 84UXGfP:QEPi;J(4p4''d;ZESTg:?^Z6LcD!r:!1}jDejCyyhk[k4xlFTnZMi7!6_ W3{q5v$k4K\HA%A4~k\]LRbHQ NNi`- Me-Wc5$5\N> X<9O_ Z7q8{XCvJ(sWg*=>j(a e@5^1KYc{AxRU7` wcW+g}uz>\/:[IGk'WY-/l NJ - uW9]Z=u_Z'$o Y+|Z;zT1 e=rZ]%l Xs\w4 BF}3o^9mR+0:I4p;Wk5b\wq#\n+p9nPwU dQN;<Rc(E@4P 8:zf!&Uu\FglnPV?[7-iuGPx+OLy\L95[E6BI[15ma{m<:Wm5_2\\h&Fe0g;U hm.3f #MyX`Lg/k[Jn8y o\4Z~SwC^ou7]cUk EK-lj.;5?:<39 K&uj!}AxJg G_k V{0<Jhnp^b%f[kkwO8*? ]X(y)o]$ Umui sue;9Z0jQk#x!-!hWMy\}Z|3-8Gzu:b][BCKp;?'gh7(4fF{4y>5{onJPEwfW\mW[]@{ic&9O@yZt9HdXeE Pk?+WYLncR1FD9+TntmvsU9?[%Q5;K ea^o 2<^\FCm VWUG 4c%Ig< `&RN3V_zyO2jJE'Nse$/7 4:TqSV}\j 6XHmqRWF]0zWTtG<sOLQL=pj6(y Tp=jWd]bWQ$|( kn{ZE/<^&:|m 4.m'm GGc]58EpZ.5r}k~)[C dxj@ 4e(V EsC z$aITnxV<Mu?Fd@ uw5gQ-6v^{[ Og+Wbnn<rq\DT]@ =EnZ\7Z+/CAc+E1 IEEZ(9)> xsTuM%-V8VI?$N+jR6nF+[X AX`1u#Z:IkDpsMejAED6E_%yErsS#&y5+<o$y RKkfpprKl^TU.X]CA =epTL 7>M50X:f7*60kO^'r7 sWY-?=3Q#NYyp mo$;iI vY -dB/)ELy~Dfnxy{WhWc} ^k$ 4I -R[zSY89+ec|zS{guYgmy${^ ^c#1<nk[T85 Z< j mkcW9xbEhxcK7@Cy z6E*qV|7Ili5ZI[ v5Eb'S JfmikX^~-w]StSCn40Z:WiWo &)t42NCU5S@}WA=;L cIy+ :)f F[+K_7d+ 'F (:o7{ Wxj7\~dZ5x*65OT_1$&p56]kR(|D:8R iig~ F*?ka\]ESDG&;fc|P5Z7yh*0 4ETds\ pY<4;[}Ii 3\LzEa\r%>GiP6vAj#$ [RHg'tW_IpR;=s]O'U0G{wZI+[&7U\K!=+7iXSCA +sZg cx98+ Z4Lo\W5^]3pjap$#?m!CkqMSVuO#kQk b wF+^k Ygznz K@@<U26^5w6OFfy(kcBUBg) 9=NnWZiu5RAou (xD+ t; v^.'\piU9wTt9<MqKIQ5a>obLwc%.|2F+4S}+}>#FC:/XG'Oi\Jt'{G_Z9]{RXi{hpIii*Z_JJ(g+;FElEIHQU3(RW>jt??7V8-Y.ztK}f2+axwe+W_xah\MG;-\Kn!Iz`x?zWEyc8*39?77zM+xhnWp$^DRYq5{~&^HZ+^$xMz}4-KLK82]}F3[Tu#Ot=@[EYZ $ 145{T ;Y)CWBHW6't 3EL\3x}i^ f _=2 ND6DFz+:WEOLw\pN8`ypAi#/:K!<AiSDO Wmu[JN}*H[Y*RxsSX-'W9}uduls^*I y\W2oN6$RWC1?-bh \\1;r-nI0=R@kv+K;Eri2)uV =zFrYF}hkET|YmfQ)Ow gGzEr^$EKI%d#-0[^5Xc--\9\RI#` GZt^*%~V j]I:|^h kt$'jq.JP<9@m`Kk\YF )`GxHr6D\! fd^X&}zVlnlMtK]N&fEjOG=@_j%>|Ri4j3]f-3[P@y`; ^qq2B=hB:d'}+ Qv1nw$Rhg*_irZ.C iA ]^57ZMl;^b_+14k kkT# Y>Ak[f\ ([5lWxSM]?^=QMT.(tB'Dz/zIc.Oj8'Q@~vvOhu N]0 ZUMVlr-_L{U_lNQ v_GK ?q~8T R][Ko]$W VZAp([mZ)\oT4I$l.h@zq4Fxkbzrj=7 V[r.y?%\V55O.k6Js|6C> j3[^wHb@s\Hk;wU-\|FTs+nS!uNt hCp8*w*m6H/b!3NWVk<^i-DjvZ4y/UeQEY43ujp8R:L1sIKA-y at85x3^<~aNZ.G5+`wHuyo%IZkh 6\.1^5Mecqt^x59Wt(:-f5I77W\$Us^w~73^Y$ Rc]9+W {<2&VSp K]5=N:W~^{ycJ Bltem4N5{EpGxm}109kr)];]V%OqXo sj9fWj$Zj`R94ZjN+<q#3!cvFpNE&`t5{WU}+ #q{IOy-:] NkJeOC^O YGLXxfEmn3*u m[w5 S nr{|8w;[0Z`qU|o\#5)-|^u}C|F9w6q#`yoU?(4;eB`CMF?/GJRzF]FLIRkq9o k|5O`6a/ (# ^ t |* cnmAtwv5 U lgx4W ^+Y]~cT`cuwmSzW$q)^(C/y?=?+R5e5v Q}@%PI$?-Pul:66{3M ow~ n5vG9=bx2kVovdb 5I* kGaX<GvM=4P GcRxfIp8+PP3sq$Hp@EIGJka! pk Mx-Y^ mE$=1kOi L{Hi{NfwzsJY l}k#HlUDsA 4U GS) 6*zRqIAf<SihJXz F+J-D_Sb9%*\ v};8e mkL3]k7Ep.X4Zrv[@gOMMTJV)-xXyO.*ik2dVv^(cPy'Co ^{ hlC np2zLdVJ]Pr g+L7_7X]VG^V!~ +D#K7e uo{i1xbd_'+cYp<Eqgzxd5GIYXs]5J]g+lWo]{ ~$[|+3%3fx2fHt}A<9vl#0:?Cw78n#xu) a5W.R+BV;qVu^I-w%Es}M]d7RC!0La1Oj(#^}u+Y)yZ? d5:4+m~?ZXIY#z$j3j4bxuu1V62_!x]2Ad-m|? Ps iQA DuLw4)4d[;FF2q\mbE-$R~:k'BSjjPN@S=%8?f--VYwju4{V@k8_!HZO50ktMYmoS^ 3qq_*3{ua\{*_Frz-{]Q =k|} nLCYt$!y U$bq i]KE yRwWc =(c3f SEITXgRJZQ+#v A5K !sZCq3B?z8fF)u_k;[/z<+b I?-d4 czCv-v 7JtER1q5hA fP9}exwge5x.'db8Oc.nm+)8 ;l+@[%bG-<;wi\8ZI>sK}^+q:#t6GO4 [dtOQiZEtWG%d|ZKILWlI:9LGxIH.HPFGI3k/lb(:WLL$6v^7#%In-n iZ US&0U#t)) .Q$/(+=(]ni <kV;0K^f# 7S`Gj/f?3CWQ 3N:b <S[6)4akmYfR<K+b'USO\ [{6qz| e}h[ l^{WD+i 4s>+w T[kz|R9FLm:mY99sn!]4wM2ZRzK{f ^}0'zO7aRzL'KvIy]iq;WC-\`^28 <OcYX^*Y#y[$wN3=gHm.7xCVm^j3+FeQSk17l]Qf3{ 0kjt~ (4:tn-vN'pe.R=|EXN5]5|cV $:Wxbfb`Y//qN@s5(&F} V.GZeHkgMl&{m=TFkb_'r 6F9f& fRl2Gv+]N[9mZ@{CKI\6h5inI>y5]{7 <Y{{z2wqmFz=1EqjOkc3F.z C--RH `zGXO*9j+MEC 5'Zk d v( nB?v=EHhWW;uq`wfkOr[<N<z9OA^}!{&WEkQJcqW< 385k<oz ){&\yPFdVZlmIC*9y. TxrFOJu{ <lc` >% rGSul_\Jn{Nc`yt1fD\sDB g'5Fh<=72WobFV5q% +]?ln?V vnAH2z>:p:0fGu=}*c!*_P J)nHxJr=+WMZ< <a_qO~Yr?7Y^s G>sT zT +Q]N6nUz[Lgj^gxf={dZdMn?HXlol dRxIl7Ot5^3#KlW_J 6z50Kj(\U \XS+p2<;h3]i J&:0=HRj ~c Wj-:UO]^dF{Oj~UzJi1 t/SxjyO/qqPl| otWk0'}6SJG +w7:b\/5 s]p|I<f(-j 3]Vt*cu+[@q 8!G#Z`]/K g57Rf>>x3`ajK|G$D!kA4}1X>0EImr`J E<ZP[oV{&$5 wzektE;R-[Ijqi ~AocY.}N8^T\)%3.G] \ihyv-?3]; Z)|@ OJAM'&Vc8L nU haiwW+/NUiBXK;DGcLcQ#a+7]S_+?J Jve -4@[hkhq^UWlV_cE 4jC[X Icm2 7:]<2qkc 7:W4-IzW!M9Yv*#k &$^ow ( ;ey5DXgUJR2M^&x$ b3I v5H  uh$Oq~SY +H;Tq{w!;m )<W2 ;necq [<PI)6;H {o.@KMw;;m6? +/<+]t 1h c@hG\XmV)kh#_M N @Su-#1>tK~+wRFsT{E) hACP `csZ5SfOtS 2V'4]d#+]#}f<n&?] NR}(`ynMNqYZME/ ZiuEu9Gm]p3mNnyH k;fiwv8F([^g@ >Z`rjM>WztZk@:rv]5n rwqKn>P sF$c|g=/Xbym!<s8h2^cy; pMQCE}B-43fB3McJ*4}gx>+wZp=X8j-cC^kAF+J%q|II./ Rha]y:cW)V[$LNRklL~iX}Dri2*?2pvz}9%3\5)-$+h#WvW[ ; Y]%5a5 ;t u .ckQ g9S#GjZ;qWC-=[zJ5r67_f [%M)wK)0J0_n)Aq w6r+u+qezs[:?cTNs-uz7G@W 5 _JbEhii\3i.WQDbhO'rHhx?[[}Q+Sjgi5 D5 ]H^A7nSHD{uMM;nRKS83 ?X&xj; y*IkXeeq>xmKq D/c^56ay;w5zk8- )\^+en_1]t{Ut%2{.ERI$qfiv~ZsjIjd!tcu jN[hty:qnY&9 W Ht +w{]E-moE;W=I X5C3*Om$P)xQ22Qv!$ 2K|9=Bi4G!c]us^u2_ /A+\d*@KOWj?W=NTt4g]-_lWk>g$0+>#A;TI=Rnuz<4]+|Ibk:Y<`AT!N$dx1]!>czTig=7Di*MrsS81I!-3 EvzninM/jF^ 3Y}G7\n|cd {3O5(Gjb'.H^ga >jl[LH]`/ [Et2xvjWiQChJM09mjUru$ve\mIs]Njc ^)!X 6vz_CaSp9 t MzvdxHc\g^8G b $j[h*i5%hj!z=hWmjxI Ksz.A+m2bY6Oa^o) oYi9S6kh~kS<n9aXik{|3w*[k&9F'Pi<}{)PSM(&$:@3;UOGF5mm>nxZYZ|{) zWnbQi.l9oOci.y^S =X1cNh|Cf/qyiFMJnu}4d ;&PVj=rFxE`9 Icy-t^ctJr^l<@NBoa}Dnw%|hsq_Ns ( xhc0jVgo U u 0'Hfz{thU0G{sk^+4Yh/4!=Ua;^hkQ\ C!FSL p^a]BHtS ;Yo+T^Az]Ed^HtUQ\fk$:*~ c4F HGW3Wg4&4KibaK\R4TW]B+&&Vc~ ({W^Y=/rGZ;CcS<QXR;;B# x!-nR9PZp6V133+8NE==LeHel}VU=6tg9 W$AZitD =Iv[u;buljzlfn;P1WxOQM'fX joX)1#feecE$s95Dt?etI|p.|T-Ltn-%T~r{W[voB)I3 CL6qjnOJlkSsHi` @k< .7y=Mu~hP@ !B  mNUA^)E9#gIR1b<+|/w/5F_&k<]]^6>1O7za ]7#x/1K4+G[4Bx4 *i+C  XV|y+Cz4.OV`dU &&hg4|ZOTHkk!)<Z^{5 G? \W7d' zS]{85~7x5wa l|sYyJ=k<KnG7L& 5uaRs}Nk[;tu (k%?x8/6:=k+6r[|Mw <|/wd19f zvW$18zk([q;+uj?\UKa#>c^sk=[KyO0O D>5K \ }bP=G85q 6uwOov+ <]TU!c?VIiOzn04 2[`8}G#7]cKgAK0R?:C8}B7n? z$kb^qzhiP:ZX &vBHR^s4^CG QW`mQq M4C9e9NdYqv7QNX}NOJ6n3jQ4r&C23['B:/km]tpMp>.5eGpgoMN0 IXb}6qyOKe+M&-`AuznpKg)>=z. RH<5UJ~?Z}j+% [_8?z\ 0Hg }a-5St-/am_N D9%G N^*ejooB&{% 'C' AJNMor~*Q*jzV$kTG$fq+U@QwnwS:wZ{$r9<)Xg4+%<VH5W[dtG;bd1f;hc& {\rz c]H$M~h:|1jma.<'$?Z kxN^M-}*r x%k&: :kde WtlxOPqG]65Bv}wV2uh+2=Be 'SwBGr.5m{EmUs\olcsY om5OzFWw)M`r#|eKk;GDKhM'+62@i6fdL@+YSo>) E!1|;pcZImp^'_HkE;2Qxn Afn5d /6n<m|jhLx ldc21hytojBfcaMU-to%XCekK]IG@OdiO:)B9ct0<.lOG;oACz!=+eAw=kXkypyju N hr_}GBE\~+]O+Ta^ci!_dQu GU3Fj I<[m*v(s2_W#u8 kt}6#r6>X p> gK]SnboFzXjm<vuoVzUzh+:'u^W;Gj YMKF]Lu?I yRz+^s<%Ptkt?vQYdb M><*_K(>Z0:t 9UuI/D9oz+ usHerGM7juw}g= \I3Z090xj`:sM]yq3?=|)jSA[& W]>  Mi> XE.P=PP1E! ZVpX>]ZE9]^}T]qhvmN :}M=uE~J!AW{T1WW.GZqb8G|Gp>eQUK$x v?A =R5CR=65f ^IFbW\ !-*uV#5Zux$3-D@?1fZVx221\n\M$l&*SB`Ih$Z2jC27R)adeC]c`Ep>[;i{ o dWO 7DkI=5a@:vLt2.0=*oiq6 Rkc@[sc44F:Wi{O^-i k?fZ-DZk)`kq33xMNXuhp+K^=xE QC2u50l^.bW^;\?G'z:{1 CGzV?4M;qSBl7qq^oT/Q^CYOtd8 w4vGZ:f_!Ga{K+qKzQyi8nh2JQxHg8Z#&79i=yty1j7E4 6%nzSH72(# 'RWxG MY9 G`=+H<]|iZl |_ r ^ 1^XX;{=4z ZNs^a`OZ\o5K`$Fs{Rx}dZ-=#jco#gqs:BCl}i! cZI RWKV []6S  #q05I`}#=$>+5{=Ii9v:JVw yyo9v0^M>_\Nuq=xGK>w*iZ +:lT}^L/S#&r+1pQBf/U[(*vB Sb=)J(@AHS@r#eIQEl%7aU& kDOESEvz`3X#{q{ELwBw q<6E9[z`y5xN0`% 4rC :+8GbI/GQU(CC:|Vy*b545!vE qP>j=( qiE 0@sz^QR6zd-f W|DMUu8 :Ph3'|v[ 5uIqE0u>nZ}ri74QJ[$<r{QET9(_6hEG/6*(2)GJ|HtTN~?/Sr1J~(cG\ JkH hD5L.0~Z(VP8xERG2_y |NQE@+=+ux~Tc1Z^.(-c)Yr8jxf(c55K6\2Dh&zi1VEr>P9+}Z7* h o$kmZW@b(wc`t &BxlEN rg+CWzn&J73R(>QE Gendstreamendobj35 0 obj<< /BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter /DCTDecode /Height 725 /Subtype /Image /Width 727 /Length 47253 >>streamJFIFC      $.' # (7)01444 '9=82<.342C 2! !22222222222222222222222222222222222222222222222222  }!1AQaq2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz  w!1AQaq2B #3Rbr$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?'zZ1YCMiRPQEPh 1IKE(AJZJ4fyc4(zf3p+T4fo% m2Rm28aI Sf *lP hSjyzHV*7JV Q1L6TUe (`k/9H@8R2M4Zt !pP1A)E8{A2i*M!-7<vi)ozp (i.wqK`zE Mr7l&5z`Bq^-+ U\[4t( `sMj I]/*2jn3Q@sR>m7Q@-%-;PQERREPQEQEQERQ@PPi )i)))ihZ6R@ EJ)h4 JCKARPI(RJz$5o ikC A 'Q.bkq$g_&o5*_5)QULojLC[:l{qRM8M&*imK =Av 6[*::F7;! ->NAI@pL'N+ 1j38y =ix\@~Tcl+W[P#\u(%brH5RUx@94E[i)A)dJTKR)B 9 54dS)M>O@&([K]:|pDAW `>2;[O [hu LkWQmimwog[O;^:SL)hRLPRQ@(J(((4RQ@ZNS3LPhbRZ&(B(-%Q@E!LP0b(B)h1 Rktjn g#026^*Z3u-{]Ak@d\Y9*xQ*NRo'NrxW-]_zs+oLs.11y<_Qj.3PFg.zVUN;m5^<7^xk=*aY8 #dZmkW66)&AbYJ2FM EyUq=F fP)qN44LhVENsQB791MLCO-+s@bBIPI88 _lgCo* ZuEw:GhUk|-m5EX (((((%-QEQEF)qE31 PzQ!bn(LRRPE(PPzJ)h6R 0u4E1}If#QVCIk1\JxDw5/fL @ \VOJ+Kqx]jpJji-.*ZBg41zsPELt|TRwm'WKz m=/O7@k>_uFiY8*;P_ + /btgzO\y* k3F#=pkzE8 'r2T3Z5E&>.sSkfsw_I &i KiPN=*>r)R?=X&P0)<`rZNErt TN0jH!Jr#HiSZd-c Tb#=!sN' { UP 6C`J 1o &^6hB8u(ZZJZQEQEQEP)i%/QGz))i(((LPE-!3);4QH`))M%%R)fmAEC4 -8InzWcJwV<j9\UElym{ vqZ9LzRdy0ihX`v> J58@Y|5Lm{4dkf'-J;el{j8U&H+a{.gmS\|YV`A%@LL/6_3i0=7v:0 nEts Ht0ISE<C sHZ`<Pi ~ =fagk )i1\<ip)V PR.(-z;2 MlL**Sd5TcJ)%5~h.CiG7l^cF_Jh%*u5un1^]!(QEQERSPRb9iv((5qAJB)b\SImzP)Oh<LLR@6RJCH)bv)1@4)1&8'XEkg~?wBIp+]zCSHG6r :Sh#sJR)<yX1 RA q( M9{vQ` MiM7Xy{5>I<R3<W;EKow ZFh v 3.EYuH4<q%D%*sk1cbzXqRb'JQ~Rm# TSF.SiP!i)sI ) )N404cR+{C sBRi425bcTu9 WjeX5aSld1*6cPe8CEq~Z&Ts=bQKiibJ)qF(){QZm(A@&0h4`NiQE.(1E.(ZJZLhEPQ(h>EQJzSZJ( PIKIL>=F+G8a;d+j!c 'V^]jrl $$\uo.&Vk6Y VZ i`Vl|(4b3M UjlqLw3@/5mCbf#L0CTdi]y >`Fr+]4>9W9m4u2 8JfISB.V8^Hk.jvJaS@X*mbizSqHd%iB-4L+R{!C@!)hTP@H|QJr795 zXN%E@ E \kWRRe-C\r:pkjRKY2]&E98\% 4uv@:H( I1K@E&)Q@h:Pi)PRS(SHzQE HF*(1Ebu%%1F)h674NF)1/AC)zbMRU;ms]Xnj-IHqM{U VfyY 8&YSxj/349rU`kIXzVoGk>H i>+VqEctZ}.- PyUkhSb)TVighcAmZO)aZJVyqvNk+9K */`qIm?Zz%dnw y0@K'vJsZut 39aOTf)O4!LJGph i!|#-4s0! M& Rf R.);O#5#]V VeSi\D >SS1SrU9E|eY(BnO JZj]o 9`SKHbb(QE&hihP1;E/z%Q@1IKI@Q@h5 5d IKARPEPIKM=h-\RR@%E-)y4_vt!~qY^*m=^iv^$-Vkya\u]]~<Nkzk:|Y+Bm9 k4wLH.^ 38Tm:5 h(~Ym%l!_%j_ nnn{vjGo%dp5L4!7SH vzpaL hm~H 4 u3Epv4<pi9IZqiKpjsPQJO|C*&|hT W PF)$O4E:8\H8t6r*fx&(LG/(&MkV/D[Hhq4SSqEPiCXPhCRm'j.YK`Aka?52j-=+&Xmc+fr+Tfmqg=ENG_yyp\1^}TT$Fh1KHrRPR4bJ)hbPhR@ E.(%PQEQE-P:z:zQERRPE@!4QEJ(i<u3Ykghd\O+WHnNME}3U#7+}LFhRv#p3J$DM~i E 9ALzR Z(Q@QE QF(MeO-5 ZK0cnRo'>xsK 5AIzQ+'Jbs )c]CKi+ @G(6Ll:]6\6e :p~uyg2nq+S1biXi3] L_0}h@73@48u854<dU\P[62t5v7TNZ6e6/Wqy.-v;Ksu_U j 1J2w9Vj]>qe _E)?; FNWz~.tBe11E-J)i( Z(.% AE-4PQJ(.iQEdEPQEQEQE-QJ(JZJ(@!yW> trWA`W .pMQy3qbg_@uhm3YDhLzvx4 E8INQu4JNINFhZ)Z( EZJ\PI)i-E!P94L82k sUcR[&1.qHeZv3HhZ`@bn* i )h`E`J]njmf5jUkjF a9]+vsW [Uboakywr@K`zG?/J <1<cn]C56# d:|k\+]-|tXJ8PRRPqF)i(())hPbZ(G%!ER( hPE-%-!;QERR@ E-J%AEkm^6OQ BcM ;F[Rd9Tj*H:QNagCLC Hii(- QZzah4@4v. (Ph-4@PQJ4P Q@)h 11SEPf R.Rj56j3?&b(4 R)EMY;GZtxH y%'O\6#8]9\}E5LNHKDP6 NH.)hb (\RQEP!:n(.hPbHzQJh QEhHP9R(A@Pt=i(\PQE 3EPEPIKI@>~2&x}'pu{5C:cNi3 l`FF4nj2)AK@cMS(4@ GCE)x;QZ );E6)P))iS@(@OQ*QJhC@LR3HzUcj{ isM^iCH.=MJXM2b>+sQ!Hjp+ {W#+yWlbR)h1KE%ERb\QCEQ@Q@QK&(PPy4REV E%Z)((=)iJJpMQES{ ())i(# fWIp {p8=Id#d}j0qU[ufib=I^Efi)S)j)JP(UQKh`(S~tR*zRP(J:Pii!A`qVn qU(a@ )`*&Uw{ALi[+84;1^meSet{j+PPThJZ1@1KJ1F))h1E-%&)1: sKKIENfJ@jv(\mS QEh@QE-%R(% \(\J)JZJ())h+36KhDFNz=gE<)VEqWk Q!8I;W <p7ZIWbuVJ-6J`QF)\aLS bH{S`&(:RR:S:QE(H)4+O1-.(( \M@!#XG `C~!S}KarH#5_mFj$Gc&1[D1UP;TSm:-PHLPHi(mLRiKZ(R1(@tQEhHRRRJZJ(((:hM%-QE.)tO(^[-H;W -r}_y!;@yhEMqlJ;Tx=KAxci) J)E&(zQAE@ EE4)H<Ta8b$9vu 4.SH+[\9 Jvbb 55}g; sV#1F8M2W6VxZ.;b1Mh-!z tlcw5m@?m~E#SiEH(Q3@ Eb(0ZmRS`TRPQZ)iqF(iqHhQNh(((((((JZ)(hQ@#H d ZZy|&WO*bBWW9>Xd;s`K[t KeslZ& B(=ihpjUrxi58$!IeqKhhqKFj\8Oi 0JhD wsNb`O\g5l*H/D6Mmm~UN4 cJGMY?:dz? cSZ0|~q5 74yq^9mK\DHWKiNfV+Z< GZj|HTb0 i5=*qLA8` rk3[N;zW;Mz]$K]F_F;VxTf%uGJNPES(GJZJ!64QK@@ E.(%'zu!:A%.i((E)i((i3KHifAKH( h((i-!ER(((Px4CH:^[sy-F+kRKfs\$1?)z6vHT/c$.9Ug9c!gH4-.]XVNS@RX3N OCT!1M)Iu&;4jilS7PmunWaj`P0 Q3h.k/Yo7^(4%#d)iopUhKu2gMES]rs^Ea]~=W*I J)e?X\7+=)8JO ((Q@ (t&1A;Q-Q@6MHZ)-QZQI@ E%-Q@.))h`J(Q@isIE-)f(bPE(J1E-&(P CNQCHT5IvsWf~UPc+>s xs^y5&5Qv6:Sbueb7b 7-qkjMsJen X7Z]J1MWxBd<9HRjjg yxXB3{A}j&i {iw#Pmr28bF)TS PL ir\*\;HJ[S7 W9xH.x~Wv=p++10n+Cbuic6zW { -\[ t{T>G*#I{(Fk{LRO9x *Ne8A%%Q[N -A.-kq0ex$9hf#t 2P;U).k0VF N<T 5]l%P\LfNp(W?iiG<9$'2 +at#.(kp(6M&lH@CU2J1q EFV}k&PUXH5p<+FTv'Ref +-+Gk[-l3Lr>2ta?BjJ:!qb\5j3Y91vVu-7Hebqs]&wck:(OmU*3\LX>*k@#~+$/rWJ85d[_TJ q]>^ue[L>t\Qw`zsE*F zS^EirQ]gL-D{Rfm|Wc678_jEZN>Ih(*zAH (&i @KIKEhHiH()QEQEQE %0t@QEfK@Q@%.)((4FnO=DcLm^5'i@6XoXk(!3s`w5-<:u[s!8D ir[ wY~r:f@kuLo(b6T&V5 W Qq-^E)!x'KZQw<.W XN7:!#b9}YnC/ZqbH#e#oZ.m/TpKfo3@lGUs@rhxcJ8W@HRYMg-8eT fo xpj2J2j%c@c q0F1QNVv |fnNIDH%%=&#&RO'U'w]D!1]B6Jmfj$zlrv!PW iq.|qTZuMkjuy.hO@<f=+'L?kUuLF6O6\)T|?Okq{ N<rXJ~.x;?ZvlEc 4|]wid\42aumXk2]< - #a ev4YZdd+bm$39jdi+.L>e;8 I%wiq\UAhXJ{%m/1L k]OO]23c<^@~Zk` `a)aR@-3E7hHh4QEQ( hu(EQJZ@Ph@P:PKH-/jAGj9( 240X~S_;j5Ba[^Nrr+ 4pkSt_h9-Y?:emw\EOtQ.3F?i 9CxWsT4hkAJ'57 i}DKWAn*}u5|i.8^j5T[ 1]I=Zv*(LY58#kWb.-~v@U<='FT +\m&9thMv1oc *dR-Dn8$' @u f!Ir^u|t:u0 id'VEeb(T^g40CPm)6RwSb*mp1YIM$F&5ZFmhP}!k`+n:ikV8[70) |5db 1]g)BL:nMtNMD$YM8 U:uz J^ek]:P[\|zftW9rz $493+Ut $[<alYP8KPP +0*7 D Px aK+?K kR i}-Iz^ :zW]|]Z{}Es#%ROP1l\5zmGTzhKJ $:s]epN+<;kZ#zsYVg^.kf4FR0w31%LW1#M>orcd456M4OF X]EjH8j^xwKI/beR;fumY1&7y AE N )@zRRJZJZJu6M((Q@%-4QImZih[Gy =?XDm7+$/4v5~2CgEy__ZiX/]K0Ffmqy7{H'v ^ekx PY}%;i6 XTz 1ABOAO5di`W[k]5|@#'yz'iJ\\!a2qtQ.d\7E*prO{7 mR(4zShQ sRxqmxzfxNF3CqM| zu &2gMs0r/ zuq !x[^7InVu-<]`yW y8fmjD8^S><OLn=kQ^216W+ \@`qOg @&_v855> &h[|]1ji4C N*@ )LY 55u Zk|KFQqy /=msTwZ tk8Z9#[0Xt8N3k<]8mpKf03ZNk0m'y E.eAvI3{kadicvj3Zn!MM?cB8 N$C$.}I4=v&/jGLi(>K[L=Ekt>Fob58$8eKVrSwiFV8M =r#kzs-CeU}[N$Jh7sc+ap wWCc@'$|S kx<1yT$E3ZykgS}q+*CYH-l^mb!O%z gZJSLMV1 Gi}cuoj=A1V6y}iu<Q^i1=(QEiP;wQE1 M4CMh`.iJ=*.iZq@8>k/`)+nrMOs$:D`+^Lf.3)>># QwHW=^K>cU[c* Ew ajf[kP#P`VVy $6-0Eo=+ ah+<Cv^WS]4{\h$l<+p#'9S#78X wQ])h<gudQWzOOUpLoh VD_*+q]WmGNktyb U P iT]4)tBE-)DZ+^e9 =Dr:<e+Qsoy i YwnS&1@ \Y\ l l3QYZfCURRj.jbF:P2q0DU9HFTsUV ^E5Q S(#`|WZZvGOeo\cnEMN+hpe AW]xzx9 f}4o gh!K9bFqMIoLyj FFneN\I:0;U]b{CL^ S\udwf?| (z*m Nu!Z[6 z A-ZFSU^q^y =hLL Q7J1]\GI'8H$L KNzW Z;e^?^hSA6.1Mrek292$P+vj561+|w2 B}59+ vAjk]HsZ^&YnIZ4tCBJzJZRz vSI Ey^R' z@W nV|Szb<Vm'w ->h!5S7A?i-x%k( tVg.+r>jih#nRI+]NxH:9-C6io#Bv?7q5F { <k{G r#RW.r:%_2- `5i0 Z;Pi3pJ^$I6DH;-t M5cS]%k rYrxF;WP]V0u\<&(>2N' 6vFx5d*y1~ K E l$c{l4+lc8M| h:U !m/:SxIs6Zq @}A< tPytey[A+1 .})35v~W8e+]OvQ$k4t[JOqnCEnx-T<Kj8 qr q_Bx Nv|?u\k&hXwB+'\f&Akc=gx S ]ye0:_ M`_^ MpeMDFBWg48 Ri&'wF+5 tIRhI 9xVJ/VF'86zxl3p>3:0fu+cTR7 kK1JgxmdxZ{&({rD>af$l~ZN;k7DLwsZWWfKrjwN(=#t1`]X2VGM4q iyQ^2)N~H Ap #N*1x+)FV1!E_LTWz[BcEc(I_hPsY5cTn*EEXf&bYJo3?qWdNV.Uy\Hp *\kf!WQ5rMvDqKV{9hSN H#QYkjG_Gedc|{u# S]w4;fKu:Wk(#XmTdN(m{K@[@~lWSkW;Z]cM-JCph3<9|Rc +s.eb5x*QkrxKOVcG_)TJF{oRHp3^[E75Y fh17U5$Ex_mOk IfSLl+#|Rp<VcMuabxd]orG_K5^$@7L^HX O/^{c+y^ rC[ROk ZXE& jKT`{w8Fjo$EdxXuArsOGI [>ecv-7$M/yAr^jRw#5jeU <pEsB=k|9a 9PF* [}\E6cL Lzi1+eT>\e8-<3 |Qd< 9gR>? <]{WZbi! r)IX.yn.tKZNTK=%k~qW iub2HQ>jV rLc<@.7)Jn\<By zsiQ +-qO54`f^z5?[WVmJj'Wqq1Zy=kDJ>jt:v:Wu+kfdAki9 5GP%mfQ]D]k?:;#fek+V3]{g IFF?c]1X> Io]#1`6]J3 ?\ >!l0'~Rk\ v`5X]cft/I5r9bxK-QK7Ag]B &vRBT7e$O]\$D1_?\^?5P$ym/q\ti4c3$xyt)=p k|z$COx.J<\FtoqcN+lE2WC#R_ H] I]zS$P]0ZB)YW wyRN)<{-.yKUc Ey&jH{ ^< +3 > 7zZ+Z\+&-n kup<K6j_}P$N+6! YX5i][h>;}A_]WkY6ErPIpZM;k.W C]65+{vqZ1m[2!CRs?Zd:- +5%2N;5 gXa *pU6e6>c[FsYZDp_ SJYx kRY!PHbH-FE'PEk}HM=1ShOJmPqTUb<H=# [f5Myl#<=H}Mm?;Wh&McE7kYj>E8U8^;mh8{ a# Wms2Wo54b5%a fx+S[K=+})A6m`@Fz}uCn7MayZ6 zM oX6`=kR@x11xLj%)aR5<5[R{\Gn$:Nvrn|!nj+`;Y'K\d 0 d( W|@H<DQvP5k3oC6J-Ds - 0PjQZ2Wou\#+cWB}aG9xL]E&jtx(lZ#gMz'n\2rzwo =H| 6P2x# :7$/~OSq3f{/X5>yjO rq\L)zS ;U R x4{_&#_z$Ij}$?RHf]& {WH35_}(hD jGzEV pb3T{& d/Q\b0^kzSc.8 ZU^47^nr@_ i|'|ms#\Vn{4zE{ PsyWh yJs^s}B2IL+]NKj ] ]mAJmj tW= %=q^&qp^{[L_o6)8.#\z}Mu)]nCgXMqku`Gs^J62irk7U^8 5=7i S<ooW=^e3t~inx`h$WgfxD%[9~'0O5Vn#QnXNydpd|/sq1gn}\v= Z_J+3Rd% sEZ@{\NC@v=hA5o4za Z)i.BX66M<=})fb~(G_fl4.Ysx QEnxQ[x.+x1N~0qqnc*k.mHgvkl5eZbt+6S2;WjV3]<lnxKK iid)=kTC@Zu9 }4:m8 U`xOO*5Mjw@`Gn .9!qk'^ b0N<qN;Wkc<W \m])-5F{8y1kBs<j_(w =k%S`t6ux'{u9jr@kC*.U5I_]uy4mSxB&1vr+4'p=_ *8!^ !x(<= P=f y^syC=6KLTndS;Hl{&r?Jl- Ovci':-#G4|Srk{8LlzO k kyN3M1yVV| _$ ZM(bT+8Jj\|@+[8M%7zV?^I$dx{][KzKH )U5 Ow{U4axtjWHf4VLgitazVyf'Ooufx%0X]..EKv`yo4/3Xu|?vWi4wwxs{YM`xY9K(Hs*ac88#.LH#qEdfEtiRCh n>9zQ9\/z;L[(;V tKlGxMt_:4JQZE\XW'{V<gO v0GImOV')\yw5ziOym_%^[{{`jc{+xjZ] Aq>o@kMj%{?RE%]S7m9>/D]{nek# DQ &jioUV_@vAzs$/Bij*+B{s^i vk%E.o{<f-8Gz5Qp+Z8I} ev(Ik{YI=*88s 6n $;MJ.=Q])ZV<^mw*_:rhJ+sGjJZ30 IuhkDeO;5e bm'Dm>3b8?d+v^KDw(?e\ld 6|&eF]:^O] 19_J=F'$]y.TWZeN ZhIYI&dUxyfi+oQm0U[ <q6s=\F+>zC}$;3j x]#+5iXkQfJ/mRRy=V{5 G5z{Aw5 5$ O+4Rw^xnGUqkw18= 0IX 7ma7c *m%[d)5z>|D5qU 8vag\^Z1<%G{HEpq bWZi ktag+LXJ\8 WigG&#h:K(5+p63'&#}y MHenWK<wy(J-Mt^Z9` `:4H /$J{ I #% zLgl\a-lr- ysSR' #`$ i'`<{a*J X/L It+2~Zl.L5wIo`+W{kSq\7Y9+J;c5oT$z^&REy vsk<o 'l x5(b%}+4uz T#jl=+X ]\y>jHgs9Y +ftM&{8<QJ4t 3v ^-> 2|U}$cs^}i3<OZ.Ls^ug='BM90 r &3&S`gFxm^OZgvK;UCM:&;S;+=WxKh6AvQz}-2 8?M!`mm&3t= r~ F7?) B.Zk 8NL-&{<zb TMGZ~? f|8-ecrZb~J r.SjM#X\|+qTand1Vo[izVgmMB>6pnC<DwW$a0`E9 ou}n57 e_ux k]uK=*&2HkWJeoa]1v0y&W`x^=yf7E1WsmV1nafgCnEuFEEDQEbKtQL#t5!8jw}Zgc@E a6r*`d9*yX zSm!\kAcMxn'ku-*&+MA Vgx%dc[-1\ CEt~<>?UHL8K<q7xX<z;>H5F;=*X%qZF%DwHG\\X\ 5TwHJ;W3#C qM=lN9oXM Sb@'WiJnsD'{B)<^Xyt3[?& Ft\lR2 zC8w-yp;\<RN-S<i%!]YF0*:Tx~ VtqjI8ZR ]KKmDIn<Wc9$^#ZGW5DL:][X'U`IJ8\ 6Izwv9-R'Gz6nG=oy9g5sYIB+Ijhk\/EqZ|IdrJ2A`:Ur3\<3kJ't|Sf3s5S] BdMdO wK[Hdf +uxyddC:rDeaETD$9qwk/GJS/~!g^ +!<s^]7w -pImud 5Rw@OPF}+ DzWme} toxIIVkp< oC] t)5gjG[cgR?wuvnT{Wk  y1 >/QI'Mr]5'ZM.0$c<q H x 6 ]Jt5rZ $gJgy*L3sj5KA$ 2uQCgGPXM5xEsY^qc M FS1zWx>)%LU-zW;.7W^ fwDv4]k~q2.t> vGi7mS.`: U+tky >1y9<n?ZO#UOZQM:Q^Q[ ^ #qy 5hFY ]'m[uQMmq({^_^}kF7]najveu~=+H3^nhb<zWs\tTszE6OJaY<z.@\r+bm^@o Tu5FK}J5 kleW mnw`[g7\)W QQ`IKEb0RRIKLMKEZM +Y r+G2Y>\He!w%] \f]5k5rN 5GBs]s\`h@~T3F ku+ uZM$:xwKl <ZM9>0Btk'_/yO9l0o4-:Mcuz|}a5 NxD21_C[ F|'pn+rw`1S-&L]bF?)]^agY!*d n mY)tXVT?VvY#6>TYM GBjl;=. OP}+O k 5[P.Uj6`t alfj+6j_ MB3^ii$0:RH6]fcKCh/D`5u?Q&C W= X nQ0n T+k{u' \>ImV1E9=e+=)=M#LN=#D=tvn:kQS Ni1z_]@ {k^mc@xDx5`pRQcBx5qQ2f+Whzp]ITr(GmMx&n7)&JtJC{T#t#`<s2iiKv^ k*U9'8{EaYO HGxL0HA:&u$t'^:sD@7:*w bI.2Z6hZ(-eP5I OPzZQ:c 14iUDm}M&2vkmgydOPyuK]+{}Bje$ u7WxKLCb3\n^! @fc{m2&m[HeU\|z}R! sYj}jbS;C FP+1o ^ogd+}_tn IQ 46yGZ-'uO`GYe2WkoSg}O:|#+?Nv=\_J'+j#fA|<ndZ2_?YL\+UZ}IO;/#E&X SE(CFuG Q7v6 .g_9FT.I<{ <Ix8'<WzZ+uw^3p>j S>|o|]~{5$|00o*.W!dCO5d{n~zk/g&#`Ag_}#RD_0Er:E=)dxi\4*CWQ[]hf (QE!4 .Yq~7=B9z@8_ /v;wW1mjx`2tm-]~*s7U! -; 8=+[ ([un)s9Vf7FC^]^ItnSWkvR[k^+sj?Z%\mOxRoAs5M5K /+Ct iL|-n@<S5i 302 W; sRp/.o$f)$b W D+]HGv>oh/[/3 6*>r<Tt S*U jz=*Mnq.*u{f y5XF:W\CWk\}21@Z&i% \up&{ T=q-(~W }ybExo+WZ=<gkq62V6LG=uxN \5@s^qKY5zSc v{~ o kY0LUVKCFO H;Wcy:#pq {vQVgz[8s(P|bh= WiHX (c}U )qn5oJM:lW 5.e20=K6q[d/o +fY s]$;$:[j!|x2@xgX-M0Z[A 2I/ Azh< x84Rgv R;u*+ H8j[)#S /gZsuReeBS[ 7Jy'lA#OJ<^E&V `(=iEA{kNA t[|hj MtIBh.*@TzK7!SZz+ ^OX#]cx jcxJkW(1|bB<+R&rMtp nOZvf;I ^su4w8][hXZkR{v/\{XT <nZvjMO^4<+&n#RF^;Luznzc v356?ZoZOj+>NqS$Qj^1VO.jS{+D\hZKZJvoiG-*+|#TCW]!Q 74~=Erq[1?s?k[8\(B`gEf>UjZ#<Cx0jLO8mw0X VU4+gEh&ArWm 3U<p>`z^h fPI5' -Bk(5qREKKf|C./A]vm+U%F>p@Y=z-<4 1z75$DhUK`:}kJi4pr3QCRi$+fK$7[k-zfdbVkv}sMx@q7 @JK HkZ z-JkW({9*Z W+O5v;m_S^X:j:=Px!yS;]Ru=rjazc B-d2v5I-Vo-CvcGKjeFD &XLdWUm9EB;{S r+\zwy^eiM =Ciu |UOG 3#vkr--u;JJw 3! C1vW<J7W^$% >bTj|=*mRU/ {8uq-OCo #<WtjA3iiCq^S q]F0^ MRHokg'R]ZGBkKLMSF7jK{:(<n5^W\v5z!t$^C5Hoblz/F@Nl>=fKVn~ Z@8lFtizMmanqEt }9v'4v01z%j +[hPZi4K rBG%0+$p5>Om[6p+I./HDP}R1=LjGxVjRV#v CDjF#`R(=EOyoIx( ji.K<y_PiaCNVyPRjeejxJ'-:-^nIAo8jt. O0:$s~1a*=ddGQg39w<tkP/iErK:Wam>+gO+t=X rmx't$-^c m~Zu1i'\OD$.k(xV;oP/rz X/ZbN\<P>jCwvCRwT)9j 2ia%[[]  UN*G K5i7|jl^ipfk6U+] ylQ3E $V-[xKC+TSG%iyFW8X) EW8-%\&{RMbZj uzMq)\Al>3<~1*qt-7Jx$s.iM r)\G/QHo =OJj!Qq<I{5=Z}jeV?vlQx V91a}C<YK5 R p |XjJ k>8+1 O 7WiOKa{Qxn\w5c-)q|bLq!Jgh zA=1:l7(xOWeaDDz#<5tr8\w&I5 m^>wR<_jdPWmcf\}1c5QWIF9X>3eU'P#i g 4`f[y+fRkb`9$fXn#km4=5R9i ]Z>)y_gphhM =kn}BrZz*H ;xT 2QD1;V.TTf34[F7<r+4n u;S^btD\ rZ3-L1Ei2+J1Mj5%6F1^q(#Y^YkSC`fx*c<R'^gNW<`Nl ET_Yk*Qq^S^2^SyNW> w1MsZiIKXj!cML!:Ihp{5zi#'SV=Nlp7/' 6qG#+S{a&z!SE1JE XN:W?([p@69c{Vo\QIn#.^B ktD_?[_H yz%JsZ'+J~ ^[7M%xy IvRa0?fm|^qk3[sRfh.zF<M51sRBI* DP9 BT>'=Rwt=*yFOU3[P@ Kf\GWY\(=.]Dt5EtC'5z5+8(#/Q)byHvE U5 mQg Vz -NNq+Ei 3t3]WOij[7%?px~'xx;i[|Tm4vQh=b;I]] )J0KP%M#6fkfjqaI4xxud8l+wvv sRRVbFQq~zv~nnvV2E335^XKM]A?5zmg.WkQ^uf{XR0$II3X Z)3Fh ML'r98 \hlqdS.2 U]b'aEom]JpWPr_Px ?Ve'mD>-~0=keYdX]mebQnsVKpI^Eq116{Q6:exPizKsb[zh.qS|ZskR68~j^m?UBak G6f;CHdT^zL0 l^~kltuy8[j7T Mk@9O[$ r+l-c5oHi z n!s+KM]Ae czr:+vm%^]F?\[6d\+LsNz69+[W>0nMs$Obm{tm<}G`iv5Pj!-+GAS<&kuT9IF%Ey(k[^q<zQ-P#QItvK[Ib+o!e}yZK#aDdt-bxj FA5Ii?5g nHng6S^Qw 5}B6$b%yA{e{S665uCGk[q\.q^5s /oEqWh)mKQ597WMSjh x5fu5^n/~rM2I#qD`=:j}wwk{)5h|bWBk Hin ]n34>Fc+/ZDLf=><<O!>bk|3cl0D2[WZ!:Ua+wiv=C3MxzsjPvllq\';] 5DIl~Vn3-cwjJ^a^ab=vI17_ ~:u6A3g4% -*EJ ^GPL^uok<+zb[ rZ<_D?[#i+M71ZKqEh3w( Wi <Czi EyD-Ha1x |k_)Pk/M1{W 7Sfr~jkU6R s$cR@j/YvDV;/_/Xf8B-WxUcbGwuR+$2U5=i+E-)KX0Z<EN*:|!a WgynU=k[-Mj#qn$v!EPx_vFh@z}-%q@ CII\P J)6@ vh\;[# M:g Z vn~+7sO:b<R[O;X U LHER<Uiv7*kkzJ#=# m$t$r+'K KSkP9 Z)DY9e^+|G#&Bm4'0 Fak0+_JEi[iKqHgij%176b`cc] Tc)5tm1N-Zvg_ZtZ x$Z?0=+K-S<1 s40=FE[H65N8\TBA%;WIu3N/Dp[_ 95eh)&l^563KI W{kUSk9amdkD}>rRE9w}sQqOFuCv&AZ{'ji_Xuqt`TIVDfjh u5<b Kv5\I-78 /VE<V_uPkGeNr:L= x5Ka${z%]E%_xOt. - Og\l^zg=XW4/=<y&CoEsNlH  5hV'kodKHyVti? + U~]5eSS5vg']y`hx_>i[ mz&}L1Ji\Hy$oZ>*i V=J[$t3n39rL\.\=CkWu! Kc+G+?WxU&m:2stnI>4Q*$:T3Mym!5};X3m^16QMG9\6' dxq~<?8' ?h akB?Wh NslH]JY+X>doz/qp .'OAk iGx&Ab  OP8Y3Q z *p^ et& ]9G_Z<&cZ'u(gm_V*t9&[2wx^5p{LsT]5x~es 0`r3M4M61k*)W y5_/FlvZ/%X/I=Dl +J AZBo/9\y'8='zKp:Wx#S9 %+`vhn(Rk/W]ffoZ>]dvSEZ ^H:j[?z^H@iaZo[>E _ WY [#&<WJ3M&\Q(4b QUi'qV[yZy45w|X9iob4JB<55Oq_ oky*+]Fk`7';kn2F w{qb51uy&t 5( 7q>/Q NX5H8S%?}3Y.=&zZ'A5T]0UgpZev[[_oySU> v~5 =bR ]a=~n15DE)4Lg \7U124r.jhKoj5\[Kv'7')V-J.>pq/4f<+|!4uMF7mhsmPqVy RPX|o)*}^qrrB9yhpkmdT=1^iuk(y?i ;}<{e $Rjd^q WUwrr vn:6u8DqN*^M$!9+U$>!Hm+t9Ob3Q{cQ&rk!v h F#bh&9 f kRMlakFu}NF*-fQAZVi?=GM{]USz cf?\t {gFfby/kE$]Z|o'NjIr-5#J[zXcqztDR)bWK 6 g9Q^}G M= Z^+e9;[I\vx# 15pzT A65&&*$I3W[j#\J! vz;OZ]A'=Z' m=C/T`=O qxRiL ws&EN]*kAWXz=KON+IXH5iRd=wSrx5z*_yd8?=FA K!\^a|dW!9W)wCDsr;CC{#'5V(mc90GxILkG+mB2zk`=gJ?v\W\7{t clk@MJO$V?qtk3+jk {C-mhOghmHzfoK} 3x\> ihb#=tv?Ju{@t]i5QB!e&N>ZLmv3Yeoj#kw pM @;#uwZX0x_5jWRAngeHo k2H7^HF5=aO GP04[i4V6FJ(m;8BE4P@<PiE5lGZ iuSvd1n*wWoyvC<9mx ZmY]4q5E;'e M{j~ uQ^CiokN183$KS;XjbNqVo@ q*[~cz5wOfjVR3| b(z.i$li[7 y!t&ay1YrabH/X@lG{# XkE$L9-1n;;]Xpjl3)C1Z.v5 -/;MT`Fi4zudF6 JHV=zQk98hX4dRlwi KeKyylC8}[JGL_u|-*}Kr~r.5<4/Zk}FD{K ^=H!.vj)% ^u;JBgK=UsL!L5ZJ EA}R)-|&<GRIUxnw.5w$]v'z{$dh @lI-@!8lVopk5/a5?67 Tls1x)R!V|yp^:Wi9.nc1& %UK.)O\ O- HzKwegxN:W l'\X+Ku68v{UM !k>/vVF<QhV7;t 4U?ZX\ [6Zd`GZi=1P48G:e95\jw({ o?t{mRjzkugMA##qxe ['yJhI P: 7jsiRsh2 j;Jl1)% U$=<=y#WAy^ Vy;6Mkq4~SMyR(=LC}gN<>9[M&6jRF^aw\CENV2{zds\52q|fmKwPX4G+|]_<krGfBzW<4!t [ 5^]XgN9 X:5 DCE g`Vkf80$qC`m%8qZx6tUD7(K85j)#iaNv [k!>jVG;zWTD}@`U[@!AqPMy'fF]:spJ~ku^RfzWmI^n[9-B~ R(>GLS3EdQ)(&Z1@:0hb1#`MTMd 'RIsU&W HOc]F?^4z\FJ-ZX6gym[[ .|Hb_ZqZkwzPFEyv|1$ ijE/S|7?l<rZP~WS:}|K.( > ET6Bu99H+`Kt<r`GJ3uQXwN+JZ1*Z5S =i09/1Z+pKj%LsEx}54g<586fHyd]98zl  -jvBg1QSAj2E :`+DIf58QU^\2yUp; m<*r+'WS|gvN+#S R(4{)3Mb&>|o; k+4jc$6k5Fpzkgrk\<kE##uSN=W}f{_A-7\sZ~+r[NKGV\Rz19km!q_H;lN]udfh}.Tn~S^Q3pUnxYKEx[=fES&cyg\lcgj|n<xj/EKac/-VD9QHb-\7CnI+VpMi5 j4}FW5n6I=Es(sY@0kt7~xz tx&IU0S2I-[Z /r^l%U| 7S3nDk:+HKW)B]DnLj==ksjxR/15]cS7YV dMo'oPgRe# dgMb7B1Zuky a ?5z\5 ]^[j$tGLm^;RF>znxk gb c:Dg8?dQ%>SR<B{q^!^jS6$RHr=k'j_.)Mg$fl9LfE}B@> H~y44 W){8\kJHv9XH'rcL tO?vgNMq@ lwGLW \z:24=h R.kuIM gPu'K>'kOVbMgbLwL n7HWx:(H7wqg[Iij54wP{[t FC75F`c y Q pj=Lm%RT0Gj+6QxAM4Q@ihQE U\(3y6$?Va Lj3xt%w(niZY-2 m#:y8W[4QMlOSld&&#V V#E=FslG{6xiS`cxO&>`itopx|b)R3^O6}KzcTLQL *[n(wq4q(n.p {\N7tcEhD1kF@RdKQ5?|B2( #T`/[p4QSOqKv/{UKp<S&MU-N.$+ h;czV5lqE:YFwVw#7|ERGE  p+'@8m\VnIGEyq!'yQUg_o9]E qB>i<&uhA v5?T(aMOOp<XT=<\5q}:(@Sy5{q h kokD:||#m$l&)# Ea>ii!FGQE40?m#C2z(W?_8 QE =v) <y/\l? vwmQI4|J*MRCF(GWp 2Ezh#(6 T#U_ iKS5/(endstreamendobj36 0 obj<< /Filter /FlateDecode /Length 232 >>streamx]Pj0+ lr2Ri+!}r>avayn%M zG6h: LQ!Y.SycrJq |v q;#RB({6zGe2r`-FMRPp)dXe:SnR^_ <r9F) U zendstreamendobj37 0 obj<< /Filter /FlateDecode /Length 11860 >>streamx} xE@;4 !!b tBKjaSp#2 @A8aQ.:(N]\$ou6??rT%9i )8kO}'V\wpB>DS&T7.O)h='<mD&8mxD?W['W/jm'x)T '(u`Rj jKv']F*nzbh`3HHNK*s-]L:9655TeC~$Mo/| ZPh<} QziRch>|7_4OR-QiDs*uNTSSuJguD7}S^QYK>VAI(nJHoD;`tjCTbW#C;Wcg1<ssf/jYwORK'$2L{EK|9.(UyX$o9{ G]<d7/Y Kd l9;[I eMy_e !o/%CF3iN}&+ail5~~:{_-%X lH@Wl >E5tO)Ig0wN|+|2XYR }Gbc<>ppK]9]NOAi?O3??A)B^eJ?x^R[!aJ?G~hJ'rWjWKMQ=!hDdih&%=WW{ nHk4H)A&$:6q= G/$$bv%]&l{d:Z6puO|8 '{oN#y[+=fa2G]lTQSVQ l1uvv~i{:]vRz^_o?3tQb279*X{{7u.;Lh< 0 )AKGby;} 3.^:W0+` ze~1 `r&OM|+m<O(dKMMb9l.^5q9eBnu]C1}\Fwb~wG:40f7x2KbxlF t9u6@Mj;QINU9fFFmB`| -y ~#=sIFu Itf|FoN*Zpy>d1/9; N:dpD-6j}zOH^Z Lw;97e}PR)@@ LG.!'0 dE&|)!z=!0k!;3P9U:}L_AW7 lI(7jvP3ub_9FhuS`<5DxVDZD P0=~Ydsr[Fz>B__s'WEY=3{t5KJrgo$c i EapF=r G&~)<!a)}VJ_cJRnF7OWCK^Z-HL#NJ(~J=EAT'Gdtp[Q`D ;o_I.?_201)'o?:]&>ob<SEkh[]ZM(Oo9;i~e|(U:-E)/2o=tAD(~Gx++xuCK&2^<r^!4~_Y=%UV&{DH [Ry}9&OH$$vP QM%zawy luTh11Ndr* (Y&j L&^*'A2|#S~\dS#AG 2]?p=iT5tZPc u 2.G%~= $k}4 C^.;R 4{H~GJhW\)<K=ElG4.J]<QP OiKTI~J)gU~]tNZApIr_O]JUSxTY9TY^97qy+wg3E5w.NZRFLalj [8|tv2 G8 ;#tL >*fPw >y2V? sMVK3Ft Xl<45PsZ+Y9a S|W6R *U2 O_>bX2>gNl=_FYs}$ 4-5G>k)Q/w8t0b`NUhz_B #ETl -MZ>a SX-s9;ygR5!W6i-0hrWH+7/#Z@Wtp.xj Qbx#Ts)f0P#vAHd2vtIJR('w_Y7_cWk'+^H~$<XnKcSnOJIUIN=[Rr\kwX5x;%n$3]*y0SlmZB5-k_Rfw_+{Uw{fw=<m26|qMF\{O\y#R{Z1 k tB n.C(h:m:=Xrz%J=)g7-=m>9H+*Y;vvqmN{otpy%#Zc\_khaOoE1Ju-~T]cf: Fm6mviJfjiwU^m!0($D*>[ _ j U<.fZ:#B>j}O2}l*En#P0$15I|.pIcc^rQm\[r][c l7L-YOF<q=[.x$ -wo CZ>4o~9:#`v|@p0t'foDvkc#*oQ:ZTNt5n* FL>H?X\\ cl <|$7(xm=}iGYKZH^2VR?.G|7 F C:ti2/ :ot.xd[E 73ab` #3)-P/'hK J%4 A3P@$v4 u:;F5$-nXzct?H?GKPKYwhotJ\'hr }f+I D0%eD nKJ@^({oHNB6_~-EbD@S!~(9g6*GG9(-[J3 b zY`CRl67@ >`7 +)CVXXl?hjH+3A/n Q7HCSTVGCE d!+r@}r&6-inR!E#} GC4Xc?X!o t!}0Q&r=;m269}h[ Mt-iLyH <!0HsX1\:q`~r`>RD-EoWs# `}DW6t.\B4TwA5vw;]G6|}Db~h`FKO>0=M O#\/X[.Scib~s#<'PpQ >m@&y]Jy c=sgR4w7mhw5xBNb] Z]kg(_<@ gq<qyQV+\ NE| e YjW7VAO}n0m4 zC]DThe) c>1V WOuh$xk}Fj)hH m5yly2zT0d!i~- ]0?H YV5]Ir'!HZ-i*'0a| `kR;XZ(cb((V7BO&ZA`-8~;@}^n2EAlX|~1^:7|( iD r/Qi!|!zJP&Ga4vzZ `(KB wp>@-5 1VQ E~ @ ;5C_F*V~-rd8PZ:hb <}VKA>6xo8D_ wsH'P!:kRGp7kc=:~_4|c |)mGh[a\~u[:f~ v5b_ _OCqM!9[xS_;+aNvzL1g;Y!GQWA]g 0JW!0R.T&r5mc?@|zRuRU]7ea )5*O_([<< \?_/GS!YP?Ez ' vsaeCNgguDWE?W)?$eTU_OH #(!6 6<4-M<W?cMur`{[)D ~}8CXOnAHS@ #l*(V_@>JMm Eoz;d_ko*e H_(lA/'ud?[< 3df {YzJ3+mN7|/P^5B!KAm9{S{E6!hM}@>ST~_AwPtz&s+F8h sO4 a[.:`+s t 9CkZhn=c=sM_5XSP6{$V\hsM ZCpzK /dV_-pxKBpYL[a@f~:fT(@GK}nl9NRc e'H9fK6?VodRep!3Ye{HWs/ EU?sq^M a9i3>Aig `bO<Mp5t R1sxhO =u? i')NQ!4COJ*&27}{1 N.w2_B]XFz:=@{hVhC!b}gs3Mp@7 !a}~^qwsy] ~N]eyl%i).e ^PYKlmbQ{ \6cvA>]V0|1l&yJQOKnPP!1!3 }6@O;Cl &:F_P3_J */Tn:VBv67y'!6M[GY#:h3 8Nz/hwxBO`qnTD@!Rac!q+{#h:&]@{ao8fc} W~D zU']x&PP: ^A{&O- Rs;W=\zpyW zKp |px=0?m`'~b T)t7tSNA|LB@ ' 2cwv9p *KwYeKeu}&~Qw *OzwZv8]3VmAgF)~& |Y6`h2z0 FssRL6bQ5:G .~^}Dg#Q=y/2t\'l}* m:V b*N)'oDy-)_C4 WC~ijE:~2-K^-<3Pw>WNW:@CLbOP7yEm1NR}:9=f{Zn^ C?n= A7m*FBjz\}y&i(qvVvMjo32*&a)TUnLI#$]F_c6-4Hja_N 1v>3n{Mx(C[E@^=Gcf{f;V3ZeV1W;8.hl4X6rMBg#z~/1T?!?_[|;dGS_M?[BN=X{^iY P;Nc3 grNcsEZ*oGcM)H@9Hx<j<{7 6:M)WO@P0-QM(rru(w50{Q_My Zx^r`-8G99!1Cr mZW|~DKsyL.pc}lK>!Wh#`\eAh q rldYF @96PN a7fyDG@Rg1|:m\/HF o}I}X3X ~6ay=3sx+kh_^^-|x~#)Jw(w?R-[-O$au mcc3ZFDe]l(ZH\F7%E:orwJC4Tk7= s5aH r H z'Fn?@on;t60l-{w( p&K(.l4a.2%vDGsv\(M46U`S7wo:B 2#dP(VsF. tOnS=DYz Q1z4RJ#_DA> n}?uw>G<o%_a#)3am2~c-dx4g]w_y&7T&hp 174* mA~'\9BXsl^|4.fV.6Bo5;zq!w0/S?7_6Gm ^U.t 0f?+3D`Qy<sgM~a1lk]4_|H&ghk1gK>MAg ~<#%gdKga4<w /)1)3a'9Kbn;U >dA9bms'p>n}<_^JBv!m;^8w^}6ZHWLlrm9gZD0$/Ph rz~[uZk9W2+ g.{] lJEV` \(nqb^zBe+`=e:5{ 7q?WtJ4R +EMx`*=f4hF3f4hF3f4hF3f4hF3f4hF3f4hF3f4`/ZQI'N.!~/FzHe3moP(S6YZ1vupHg<5oE)7$E{4w~zmA`-QMwe.0 FF1h&O-OvZ=Ul)Jr%*O+.` xh&q+'.+?BYCs<NqI<V&R _lm9q$/dr!bTz1*EVIn%~ 5Hvbdf[th $D<$Sb+8-T(Q&HMB*2IId=g QWl}A1H5W%#jY[*#ud2(R8tXAJGIQAkRv)KD(~Zj%2kTJ*kJT%*U #eb!Me6U(2`-BbCiC0]%ChB3J>L_2*+ye:|:)3jgMtO J[k'y=!Au EvoBH=~@tke}6}f oA/8 ]eGVwP A'tg w-AWDc l;&qY%G N{@A zOfWn9DC]gdJzwg&J@-nItpORv Lv{;2Ke+O'Yw0|1s=X ~$i Ev5 ]y>p1 &wwL6&G8*$G8*QQ!K rp (G-G(G 8JQ9JQpHpDr > >p$ >p$G&82 L Lpd#Srd# 8<H8<#9<#9\pp8\%g& 8QzpKzp U+_~~ %~~308f0:uNL@ ~ ~p% ~p%G8Q*Q*pTJrTI kc]%K%C%%K;/l6JI:pDak w&FCVcm5 [=U'?GyS =({+gl}xOc=ilk{0;%L3r8*J}-S9)]`fz`@Jow-mt@5 Y@ eX:YIGAqqDG5F. R2@ |'N]U5[9! dL>w~$InUp[a($pwItIPP2bR4lt:!*5;X|-G S\F3 q; !c}_?'/rB^y1ww/EZ={rx0dWwjR+KehEr}Ir ng/-$@YV Z#sjY+_cht0b .G#p 5}oOV }wpmb^<&RZ1t_0b* Q^\k9~dLi5c!2QZLt_@D}Kwc[ZVFqZhwPYSK;PV{ <GQP+xt0V!29 H( H@$C YRtI ]D$t)2DjGI&:( L&i1-NI V*RRGVF L`Lq*IWc^JM\jzrdoQh2P_<kJzL+)&NtdLB og~YDVE#J_M. /-?Ee%\Y(+/:O/edYESV;l-IeqBwOS%Z[z Qg*vTI;;VDbK}gGFSB~g8gD*/CXPjCd:*f+C ^W\lf$t<Vq@}tJ5=zYUA IY/UdZeyY #^ >=$8gA';#=}::S$FNs.+| z*}fm$#gJ&+u endstreamendobj38 0 obj<< /Filter /FlateDecode /Length1 1608 /Length2 9280 /Length3 0 /Length 10101 >>streamxweT\5wwwwKHw -8AK 7okW:aq8C9'kO +gU6iG^ l8ZA@P rs2.;{(QO_?!@kz^vz@^ .N`g x G0PFCHI]T; P;{.@ g<_<V@W0q]Ng hn }q9z!buK%C\ yq]l_m\@J{yB @('5hpu}Kl/@w#OwU'Towz m_r/ h E?}^`b33L/$l\ }6`[4uKJ Le;$?D9VN/ rxU/ D{ ;%K^d!hB {Kmgd7=B]`gg_ Z2:z~|Q B?Ps ii ?Sqx|VC|&/Esr-?~Z3@m^F? OwE;`$:=+ZC78.k?ZR[TR !:aBwqGyw+|R@HSny fA9uc~Nq-mOH_xQ~]3z]bq`j> dhpg%7^8(:k~Qzf;~[MM+E.Iib. jZ#W5Loamn6yH~(/hNhrj'CR}{- kzm. ; /}nr~ ^vzUmnrLIaX[Y}akml hkK{ m)O?@)VjR+ 1OjKe&xyPlapp9AvN @}rFGp5$|={M>&lMrAC9%%>0Pt;$E7GprV'l+vU_lc6g d}Y6VKWTt8_j /GY+@LVa99_9 L/#I|nUZ'l A [K~@ky5xF8`h3T6+fzxD=0^^L q Gj3A~s*\F)7bI>SUJL@CBqbsLVR fjwSqTG!S32l4dN%r3=Yw*1D~|Pq5. ~Zl% 5psW|CL>'AGo k/ t#nc_'z#vv4V} MU's MWNRO\bO}9*z*]S\[<kNT L+eT!iBBXLkLYgiM|jH%}vC|K5v@]~@vupZ|4ODz[z|lib319`0 eQU rDJ;6BlB+ !-luAdzq dY$^1yygE{N +Zq#dZW^1\39;lPnVr^~%k Q4sx@*y G}l. [M2 g)|&%cFYj`7GU U_ HuxG<v&-$>1$I0v[D3Vw?8X~NSyyFKwl}0zx<rDT/rw ?E/C0F52A #Qcz y| dtJ- y(0U[Q<\]v fuh v TY^7V) g[ '=XJ)I}.Uc~KO101RlZ'Oh5Om4~<iF2t VtI~HM[236*i]7QCK80<z]PoCg: +t{ U::QN&)s <0c+~k# Ir&o'G#jy[t/z*NIBK AAF.vvgW^g @71Ah<W4Y-%<h>OP% )[`IQo& ])'1'B  ;~Mo %=HF 3*P6} 7f]Ej T!TvEx0iQQGhiq{t W N[-_6udd-:p=!w$FRfo ?+p VZbU`OP dF!*# m=I_s3'XR1lX581K  q]2AW1W- ;?x &r2vC)]>i>Mm$Yw9PIs:vN Vsb1%ZDBb ~1<G.#Rj06.:0gX~zM`EZWl#1r?i5Dl_f}om*gsZc}W5.[y9bZ N\ ib`5k~Y-rw&ouHHSprh|IE:9ck%0eb[SP~ scb<dARo+B2r]8-'Nh*8P!7{%Y!!)uA7mH* 5=Z { Zp= { xXNKr5N@fF21RD~*H?[e~+y^)BE@(^K}N Y(<vBJN.kqGq Ll R% PK; 3|<<8qpp^#6V+G0[Kac*:P'B[<fH)AK59'Q Bd19DY<Jf6m | %#T9az\mn-P2%;|Gp$V;g$w24-G%7 1YKwP.fBmrjWN7XN?6..-e; D `!3>o4}l9f&8c45/dxoc_U[WZ|sD @1C<!CJ%6X(Lf*pbNSatHj8Txb\QSAkH<^f(b- (HV+] x98 aQW gy jNP~JOU?3~i o:vqk}y(-TY/! { Q  KvJ)E6h*$MAlN~+uk_Bz]^rwWYDiKHCXl>al>'e I>]cyFKP ['M!xYWTbXO&N)= 9uyR5I6Y%>:}[:'jCuOz` (qropJa7=/ La$v<4 *J~g 2C|U{!SVO+ I1%2G g40jZUYaoMi2@X4azy?c=adt%5K{*iu*:~rk.<g>|Xc>D\+zHH Ns JgJ m#-miMSM EimuJ]Q)qZ/724'>I'YP6vK !l-& F-3T4X0UNhD><;<ND ) pbf+WIdy1LBjc}V &)[4Q~ze0Em$';!TrhtZ%0G _%Q2odC;nSY)}e|0)\X&G@Z_o:FM#=}br yM#fT;u#rOyCl:46~[ FHSe&ZDnV ~RJ7xlB(Y 6ss}!v.BI\ {v;=Tn2NX}3U-o%8 G:!gKA ?b ~Oq3XT{)[XrdxQl4rEfpeUb 4B7O;5}# D>}-wgC-qHZmgWG|ZcTeHCw+T2dD5\aJW>hf>:{DUZ~p[OQTLv[b9a^ZpRbD=Z 1!x2~'@%q] |m>BfSI%W8\sHNbC^MA0ha^ouaQqw=E6Q&vG-|{de8wrZtXmjSR3HqDTQ}%_mMb~3AY!93s]!Gc$79ty-^Q0n!tEZ\*2.?bo.{-ien!!-m6Gj 8\<eas#3 bnq7+n{n^MV-p$#_[\i{1KP/m?T;pgMvvy]zkaY\a s6*: 3{vy>Y>6~lR<{f4SA)Unpuja8K=5jsnI )r#O*'=I. !3praa<z>*qdcGo6/RW6yf 1;4OLL\)3WF+p#M Hy l;l* ; F|_}~[=j EM/%v*<+EoMF YMFSoe:w=9BUKXQ6(<W  +TW=4u{(b|5N@ &E? 8niw\_SNjh PT0OiX?9ndk:)(ti^K5+FwlnWN >0JxNqLlg4L` j<pq3 T618z4<&uLcE:)(-~Lj8 n5! %e-{Vc' ~F+Y)<6]b\#25ClXE #oz+/n+a2 6 )hO[wXQKo hop3<N\8E i0. xq7)'5B8_Xm%!ck$LhRlZ{nTae5zq%?m G&\ Y[ys Wj$o W )^ MY_ d5P$4S> V}=H':KF^YB*`+Xi hK)\uQ3FF-8YF(3]L`{Ij5-:` [K ^( S=Z. |)~5LL\kbAXs&I{.(mM *1<*x6L^=FXZ3z'=B6l~EjE8 R(dKw~ BiE7kwbD<aA0A14nhjo+^bJq;Y]6eou1\u; E#4\d.M&q7_qw >m~\qr[-b8-Fm:&#aL[S%Yady) -=]8EX!% 2[tJ;x.1^: J vA%kz_JXnS\:C}^7y42+47i8BLMNQkln! f'u)Zf/l hk #0^gWIg Q}YG6Yx6s'/=/q{zwUMAcJ2A^r_1]5Y6ya&E34r( CL<?e^ M'Y_m~jw=_ fscqy7QwKJND |50k*Sk8b{vQ_p5\{A l2KMO~m/6d /gjH/GKhH9_O~T<pP>LjY&}xnKPl/%ohm8jIj ^Oej?mi]s7RI0'4\32}`k#5N ?m9@W1L Juc:`E&ufQ@ ]GOB*eC|4#)=}Wx]~35Y0L7a0 k=Zx.G[7[&e#p*[f8 {zU/U=ubwF)^ >3hGq%}D:>UnG'W~T<NF KW^i^VvAP4%j p<Pj_395XP *wMmi3S 4YBE Q{bvrN-;LKY;U-CeA/`g)L *vdzMu)TN_xLQiL7vTdZs 12 }m6(dS|Dj&sm 5~okK1x %tHrZu s/.6d  gs}3]B1[tE;~BX ZFddeq41@S2D@1uN^ !C#nSi_p8)tqCkZW Ij2(ap4~zh}1@&y &_gY9gJj9 `JXZ:^c?XIMGVHN}M$m_0A:P8eC Uc?>D@5JKSfM:sM79f8d `w^JK>;]u9% ?Z8b![yt:A.E0SO_7i`'T9J4r;:*7>Wh2sD}j&\.w%3wi ]ekH Z=yHV m:n @c9>qIlW%T{Llcl#lQVw#F2D3aW12 j)clRQMYyE[P`&=N AE\p5=Cb1~0]e.^I$z _Nn!k._uIFs:z8nL[k&A|yVK M~ {1]B<u%%tXj[(#pum%4t2htGOn -dez%:-Wu aJ*n}#p ([\NH62 -6ZD`Tk[3}TL Le[3 !!Bs=sPY2q o s BcE_{LQ`6J D A!TzBT/gQBd+wZjokM 3gb Kj}`O:V :|=P}:Ps] [eU HwjuC.QY]) _]+\Kj51hY oM nZq4y+Oo3n (- Rr5_E!y[s pm PtV|]0eiEBL58oFdmL+Gkcl5V|CgS*`8:\nRa}jq g82m=ILVz;dNh*Q%{ Gf{'Jb)`D/|JU$^TtcN$3&Xe&9Q_y'Us/oXLR-# /QJ\qt)[0i6Ny6 |.z :pMn\}&SVnT<D86txkendstreamendobj39 0 obj<< /Filter /FlateDecode /Length1 1144 /Length2 11290 /Length3 0 /Length 12060 >>streamxuteX\[- <\ (\=K\5rN~ok1*L ){3+ @ lgnbtLP5[qg `/akXM6V>V^>.?kV:8Tv^l CI8!` Sg;8z:- :M5mzFF@ @Yl GBdrS_*&`_ G>G  aS_.(L 2'` -:h\A7opY 'I`{s_oGG lBv1q _;669 0YA+@ =VfVV6_V.J&v (11?Ll<&v^?NOEe- gbKJJ@orj RO:w(M  Y-L_cH=@*`?\/0qa6q?RJ9-?3q6mg<_[yP kEv8z5o\9QmazlJ9nx$T*`aC%ymb802D'uJ|hHtY{Rr=SP b8#?pRF &+/@V>=)~VC`MAl|Em<h6C F^uv?Zt@w}K210@OA@0`hD>>I7$jo|lZNUKE(|c}x} * GC xOT>*CUbCQwAtl 5PPQD~M?~nxiHQ{hPF&#=d?W] %DIlk:pK_{bGTL@oA$rvdIL5X3V<<v9WFpv+)\}-Oxv%7* -V *sR\+ulX jbS~7n r^%J#JZ5 / uwvB WEojImin 1VpXbD cTb` zcUYLtUAN o ]vYT|l<ekJ!Bf x`zn$ tR ?m-Lzh9 [Qy0G(H!;^]Mc|rk;K[/C`O mdBC'0H~(fiq]o}*~:_' iFPcY%N*|*hs:((%/OsP1)-KWdGPYz-p//STs#t5 mwp:|B.qgxF>C!YP1NX;-2U&(_GN>e$_Z+NyP5.na h\&G~xfD2Uz:q9dD:B!T FE  pDV4@6-o9 >H e)W @uh| U:lJU4urE#'d~^:* WbBFq:StstD@{t*usb4!L fH-0 - M~QScIW l:7xew:-q{cp`E!H&:.oT! rCT9v )l^!6=)Y3jP@Wg}U.%~z2| ET F q\?3=7vID+niCi50y!Rk%<&@;UMKYPUF QYX LHC(^u=tM4q'*JuD H^5+2CAMhrd|% !nj!VE#JjK M c.jQqk \Fm~.\Gxb@;( PK?S3rL?A;0pxb|G%&X_ q3&MeFOm4hhryD!2;:csV U9d.gQEi0%Hb j4}hmCy7<G_d'%( m Q~ @%1QD!oK-OsTZD9TSUa fZ39'k1k6)~zv{$oIRP}2G/ Oc 6G6;B|[\:2)@i~L(6( Zo:L _ M!^i%Z|yQIzBAzu:o3D[bj J;Nlw>a[s.)2Ucez6\ n_G[/8% (~&P] v+sLR m Nm(k 1O 7{ p?Cs = M~7<eAc9Tc;PCrD=kVd|N8rt>z;{{.h/%zB$/o?sct2y3@v:ReUsuwpE~K>+Yb' SyeQ `L' )~Ci S43?pm~Tk\Gfh !hosk'Vnx* y0kM1m83^n ;oF'/C:(}*pbgg~WG\~o8kDo= m@*D.dk`zqDLo J*Je!}LzxFEt>M'(TB ~{#4%+w < rPoty.b.5VePg)xfcrsH6xeWzw'23SSE @ *a<P.QBT6~qLxR7W](?%*[tl(=jE+qi:t?-E^{3Mf F+O `q'tW9 A{[dAG?eLXb H8*j}dtj]l@]V/K.|#MIZfADg4E8ZU* GxmPw'%&5/ 6+41*M `cRJ.Y0D-s>4}fw`}k\O\Z!GJEI2 _2S WM m7ih cD5ezskV?;?g}[6IgjX 709co+KJ1[ `-iIuP.u{=U~;Nrrd9nNffw*tu^A=ZI]E<l8e->h0A]6dkL@_ppH48wD:h_xlM~4\ -Xrb5bA 7)ue;Vhz(*B+Vm\KW7b7}5&i'{e~U6'}Lm@A@k8fwdNvHh@ }[e ;KyB+'08'8Y}U4b8I \&.:v@e9waG FL{OAY@i >8xg Y[J*#+G0|i1x+NUBq`u8X/>=(<()+4)oUQzckOL_ \ vR(> 8[H+m&b+ Rw% 2;KYzKbGv':r7 jbx2R }IS].vF-p/#Nv5 y Fq)/8?zB2A+u1Q^?#|]BhIU/ix avhiz 5-]G|j}- 4D#&13c>];wu2)G$I`[ dQachz4vHgJM]uHL;aFbxB3EZQO6o3 ;Ai|J1Q-|7KS}RM]FwT'7 yJmdOtE~X.tCHg$Eo>} pL0`[J(#XTnyC4h7?BE&%]o& =Hzj@`Z0S/{NFdUcJo<B12 .tvGuv kb&xETOy`4|YgUXt qT3hR%dI_ye#Ig}V.-{X }zhz[ /`=kO 7aY*:aY\ XM5~ y3L2%uigo6o[H5z> 2hA{9@bI=Ato{kA+:taT~Q[N8')BV46.9Dr)$L)ht !`sFw)V R9QjWMa JDS < 51 W?VX<rf~NV{2>q;xxb'm9YN* m` C@!}z8{;LjP%4L;Y'lK93`B:tvwJRuu}?9\L$So v243 SyidD${*.~ y |zbemoVnE?kea9 ckU& K MZ j?KPqSS>~#lGd2G7{ RmftK&=l{}/YC8k RnF$`i'<P6a?f[ `^;0l`l6AQD hO;5ljH6i LS! --MZ@C:o._aDHTw> p@&s&+;r /T8_Z6Pcv~WVYf]<4rs2^rxp/;S8]Ta] a wfaWsr_1[x7vM1zhSPp(QTFq}4:MNc aVf/F?R8M21^kXYv5+r|:'9n@ UH@<d&ioU Qb)k134u WFUR ;jovP6m2Ea<j^kgaHw)i0=@y(Z22Wd3%TRC\YO_:p*_ 8c |$2NY|/HD%{P>bv8A%}}OhG-qm$>Dy3h ['exm$? /=6 rkJNuRq[P j/LwMpN |'|g} uBWq-j]Se;4|J#n(~] FV+yWQL@p}U nLNkF(p+ rx}+ BagOOR\/>IafTT7]dC 7E>$G+}{8=!Kvo(Y&N3DS.fu_Wj'~j#zh Fw4w<^8!s_q)ie}_Q^M$Ph5OSL{:vR tr`P8D2|FCZUJHy<j[AKK)3dKh OS3)aU8`/ph6I_o&!J~b 1|Ckb r K:??g3iT. ?9RX HB+kIRoJdy'L$ 1x72 @.\yZ4E3d@JNARSx gO|g |z=xxpgYOdNTD^/0[Cj{$^9pi i 3mj0};Es3|_9/%~OU9[ rz ?V UXZ*w3e1 dM>PKa;t&V;PD%p4Xt:I S9Z@ *d&5T?/Yy5EA#dp^ D{5M-2>diy }\9J~Jnx.bjE&-V=>N.9=ocP= 0&I0M; J]s<^ Cb8l $%&KC1M*bNNWCfMy'#EZ3Gh(wy;dUyK<aH 0x!\m_>gt[i9a ^Y!dCwkaO^!A q Fp)pF}J %s~%0_&W{x%W&5 b5(lB%`oI\ MRI0I]DR=y*;?)K?OS](i~~|$6u5eYHY ~FiuvChfsHS';e^imj OW>*TTu?2NF V_D5ri>Ru[@VH \gdStYP&J/O i Lbx#W+o DQKx-`d}ry&_qJ 8m Uk$S-H5#glL` Q^d1jK_at?-1i&b^4!Eh##8A*.dqjA%0fj#RysbK-gKwH3h 4;Yo4Mxjvc@6t( N<h1YoBio #h4aD<SlF_o O?-)2z Rip*Rt6NAti& ve(; Cn C HPa7[Bm l}&0m1 M([@\g3YN(yLj0C3{I7Q-']O6BAgFbft2tb&`I e@p#4T5{\NZJ/.sLcYvcjEz'{HfA#|BC |`p)5:Hw+qM^W^Q}~T2:SMd9qeK 1$C}O}b@O`:tC]xQ4b%^h0jjraBz{G!k_|]UURT>bZ~U-%:?>b>w m>yhB^-M-}ty [7tKu/F9vv=}'=(g 4meNa_.i)hUc9_J=/>IICT(  [w2a + sWZ.[{@)^l>8@QkEb!4zB(lUA%'.p$7j+o Uzse+(Yv?jYepP 2B.Zb@z/~q ib]@eaA/kJ(6Uq /=Wx~3G id_IrirUz)ZnoZ%uDB4 >;P[CWRIeO:RV;a@U(MS(_Zk# bNMmH=$-w2K4{5MP~$\na^]xqpfHA`@DL+^xi::nIq)nAJ|4EjMVBGF~~.NbnK4;h/% @i7~HnDlOCz +-=ttSf]xI} qjE w1gUT)\Qh q)r;Xy_ra0Y/Le'e60\Ow#n *5 @>P e LFv_j[#P]/!zi|ynV] Er/G/b2f ZtWel^ _ o'^QM-/1|O[u> 4$iW*Sj5_!Y?$E#+<s3jqlY*AJyO[lU%& S9Gb?ONM@q3!7a5Up{IKyr-'2[7 iw33kQxJd5^q ;N~R lOG :crK1YqmDC2N v4np&\WlD o2V vpK]Ct7+cLaTq\[s*R}?(oB'7}T)'v U8HAO{_bWGsRt3>b8%.{8*x Rw?+t?]Y.N: P$Gk<Uq`lMyn!#J/E5<I|6RMVS GC{7Buyic]Ir~$<AtoJ3~B[5r|8+yjK$MQPdPp.eTFnH)?#}NQb: -'l>0o)H7O- i)Q/xclI'tv$'fV7XD|rVuLO `'fbKm|tmi83*Zp^kp(!NJ<j5xhrv^>]./+p/jg?c~B `k9aO}cr:xE_md'oeQ7F2a;x xWc\6SN{K{|G$e3uNL%Y{a5oy. r]|eiDV0\bc<\<RMugnh|oxzO(9k}><tlBTWW-m>v!@%}U/5(V  `PGM$=6sx;1g;LG NEpuo&}2DaK_src >XY81[(k6W. WKYti8? =1NW{pDK YO _w@t<wF]M=c\gopny2 D`^=F^k)mqU-h!CV zo G-0Aq(6z3RIKF0+cy/ OAHf')pilBAPU= q]l:lrPmqp:p a}Be PhCUO1<r\m2wREo*2jHhuRy0R$^}E4/V xhXu 2e\N+3$O?` {jRqL$c2^W` Ik5*kQ~F><{%( /Lj24;F LY;|}2&EQI)n Wo*=g/zx;}'L|eS3Bvep^bJu/*h[vu2\W_pz08#UU?8{6 @{ Aendstreamendobj40 0 obj<< /Filter /FlateDecode /Length1 1177 /Length2 7914 /Length3 0 /Length 8688 >>streamxmteXI5=hCpm!;wh]w <8 !&23;7N=Tj G(P;jAX5@nP3{ cJKtA)3@ p=.57@!/tsr5@n. WAK 5tYF8^fR W5@q;:%ry)[5+3iK0 6P ;csb/JC% . ivG?RV`Y9kCn y9@c ( @ @ fK? 'G'+lzYP}\A%[@ +; lu{ l@ Z:B6W1sutXJH8ers88^jfUY bw* T ` oy/ZyY8QH73`yK% <?f ^:pK] bmrp]e K50/kC| 5GW 8- ?)JC -k&Ef.-\\^Ml~)Y~]tm'`yvFBlWA]p#6n#Zc @* a'  'Ir(~0s I!N;IUyG+*9H@~HJQYTz(@|*g.8?-~^A  taqP'`>\pfNW'=`$*~}iki 89| x:GA2iB`QteVqyuwEnb7%$owmK]VF1_ %IO $ gkU)xU-.46LIVK{A6 `bI)1I(3a@j{o+Is|>j(EFbwknCL6r7 e'P1L>Y+p %(;pe|eD#'m@8/|V;6frH4E3LP~H%Vl.j>Vp>m ;'cF~A0CrY<&fDf}cg>1 x5N!%cIo=PC| lojb ET)p?!4$[ ZY|fHx~* !5-wWiNs[3S` 51y >*'v5&D+M  K^sGQ0%b6JT{?mdj&gjP)&;zI4c!J]Rd*~up<oih=CFWw!_>e~Dn\!2GvC'uu|@xGNzHY)c=2D+P~2)DR/'7z~}0Ezf @ngtxgJdGQ:~4a} L golY& nX e$IS4_bjVhp>7o(D^7z`.:@DcR6ZNh\vI?[&j5w0dP e 6/*r-X[qMZ5RTYB-3eA8> Zx4uAG}!(Kziz-V:XT405x9Gy_vqJ{{7IJ 3E1Sblg~R[?o&%!<dO+T[~Vkw#n!00e 3GY Fx*gY>mV}1olbIQ4 m^DI)+w[7)5I 8e-8p}0lz K'h;3CIqkXA~^TaZ+?nb.hqZLRX334( ]ZI 6'M3^V:&E $`*O_l&(v7o?:{:4m-311uftR0RO~J= fBx&J;!Qp67p hP|xcfB6{t=wl \X&-hv4`sB]}60?wZm7Z {%Qz e 5x0L]%\|Chn-]HHkN} 9FRGRU0h\6A:99$Sq/=kwv<~^ !9s +G90ISV%j]Z>1Q i_8PV|6Y* rYLo~y}pudM +f%8n to;qz)r%s/.~oTKQKkEq-foJGv)Son#> ?u@gTA UB ~aZ7#lwf\k^&c ei86Z2VqnD]cQqa=6;]yf=a7d7b6[:0[ ?=` O Ng:w^w]gM4 TiM~C&D!~m}P7^ 3 W( *V](R/2y(rMDjY.-z_yi{@]{aEX/5I$DP{gW:su}X[y~F-h eiN*W Kd$Af$H!Ru4@@i%PB-?=BJhidz}5N*c0H'>%3Afi{Y*GiC_1H6\kn WsTctEm5mWBGl;+AYH#aA(4%NhRZw3/=+US(mEY?39PI!t|K ^:VMRW|Q8B>}^WP#[{|w?=F$dLf T*T)Fe_i:t( }-+m3 ##1J-Gy}7L$+ZoT$V6S.wJkoWF) n.tfB&&YI 3i#]T>=p?Qz8wM 2zkyyN&fL4&X4l~:un)?]sFq^9|C?Ra8 $2-`t8Ui^kyFN/{o3 {r&qHOqD}E|p h6Mko #IsC8_fY j.r?VpRBYcUj)hNdw#$AiE$Eya6C^-9{LV<M/c@Fg;EP7W8D{9%V6LX 8Icwqqi]?X$zB GnaaZxgY8T2*d; .5x5wS<)L+/nF?l K~b4hp$s.UGa~G %J:v2'&u %Lc3C'l\hPsdYtfOs)}S o2k Kvo%Kl)%c'~S>FV`k~ ^hh$U&qdT_)`II 2l?zMRb108<x*Rj =:?S t$_y>hA {Y Mf 0XoU{P3nygj^q1](|Dm#~CbomxZS-fi#J80@ HU[E<jCj>S+X=Tg;AJ]vrPaLH.e1RhT4ZJ~L>=!k } + e kVH}' hk(7b:-jaZchIpfzr8aO(@=NuogdV0B';A .[77%jV[?b&_&xE|)Lu7O2#xsAtW90F4lS;` R 33j]wf <bJYJDG~GS=Rc1c0/GK? ':o|FD}i]i]+#o5|0}&c#BK/b)s-aUxrqM7rEkE> 4T2 AOpxmT^\ axWN7S ])vqTG CUmh5DnDJZ2?s^|jG}Xa4MVC7Kx__@S<%\_ +h3Vp`TlG5gQ~kS#h BSK rrEKinHh$Wyf 6Qf)ce>-nG|xeL|Iu=v M4>Zck]G)Qc[ &M9&m5;v: K 3?`iqS9H@0~e*<#=URc~Es%< b>YX[~;#M 1iD]s}?py4jR }+~oLQ6Ml^Dj0[|LCPATI6FF$=]NB>D##{enBslVe91qu}mQ YsdD0ykgJo_bvdeBs* d:AT {p0OxUt ;!AlHJ.>w(@zP voD%;^lZWdZ=Sqt  !Zw}_ibtsFwCNNOZSisgQR %6G xFat>fhv:BP!2.&C (eq#+$A?Ht|?0@}m:BE]riM]hOR%U3m33j\W#$4-JpD6MMr\J0|$ltz 9K};p9|H;w)QS23h]tg(i@I G8-g3FI5R(&ZU 1 qZi@~eO{&Xw%5}? iqj7u|b.Vk[ > {{+)#T Qn[ZTd z aA tbKEit-'7t8kAP( {J?SygdP`-hD5UgmmiIU=xVLI``V}dUi:wQ :7aLRg{-9'7 ~)%t^#adgEtYOEM~?9hVJk]'9jX`wV?$wGp%MS&j0a~-W/eTOIN*A (w/)6e. -!v3T)A}[%_c?Pzw2gO8+>vxt g3T>v![ Ajp$qk*jt&>u ' Iut(]+Z+~;SMNkqOu.l\Lc8uS-7pa!CBw bP~& DCr<}6]=9@T9o}]pZvI\+.HI(B7S (bhiBQv6n4jeL/rt~ClwGy#pC _)b?M7`Q CkC<RU/_W>5HCZs:26pCge*7*V :lCgt42so;t49fK /Vv.KWX+B+[X[NC%MKHu:>oF|rh^iuZ:F@jd{#J 0ncZ#V~hh99jtSRT.#N+w :^sh.*qm hd\*.l~b+sy Ege?|w \kYEgSi5-[$\>{7m-+<Om sNF1h'w D *M[ u RN6C}/NWy{]X k @[MwupQB4&VHBq!*9#hdwg!6^2`?lSFH6 aDe$} %^x)/~\^AH)4FTacft0kAU|pJd[Cm:CK'TX!eLVZP)}8 l=tuf~t5~4iUB# nG.AW_NyS-^z-X|m+/6 :~``QGS.A4b ~Qwi]2AXC*=\Rq[:xCzIB2(Mn Wy dk(.+CzzPU-A\T* >r1nT>kq_/! yThX<clNgNVBwW3A} & 4 %MQ=B Z]664hH|?w qY3y+|< JNe?cmf|-<H m):.iz] @ MFOj$#dy{=M yg TYay_ >;sg&c/W[ ~(  Ze$@ :K>}gx:p|3f#7~hFzO `+o|qh#%O; =%sR!9vG(JPg>T##4D}Thoo*RC3y%2wV; <Qh-7=-?{endstreamendobj41 0 obj<< /Type /ObjStm /Length 4354 /Filter /FlateDecode /N 98 /First 828 >>streamx[Ys~3ebY*vbgcgqr*L<%_I([dn5|439fd3I)SJ3J5T3Ku(7t0Zf-sy!;H L2'G9$ZhR(7LzxcJ d`=Wy A/HaJhHd`  2AI ECE>ri!QVi j+K=@2Mq<H' NoJ 3:x`xR@M k$-@& Nu) Rx(I Y@TZ7A0rTB)54 K)\CB'6Iqk@Sz ya%P`ps+5%$ Y Ae8QbmHC;upRJ 4-wx:#9j(kr6cm7uR___O.N?f|2bqGK]HHD[|8&h50'%ccSQ}[1_L3X2z9 No-v7e-J#j|&)ECf)\bP)`vuv'>3ITbpuMm16p^6y[xyxj]mlLM64 hw8 2ElOhlk|:$)b j't:8R~lv9mR`~CSb~lG0 O']9Z=V41QMBR*eKM0- tX:MZ*e:Age]5ILMD^1;$_MBb7#a#%uc4Ml\~=YhXUt$W|Ul?||_^=9A&P@F:w|O~[Em7\_<><|>}wwdKp? *Y =<xGwzm??88nsS\tobME> rSooZ}>bt>f_.g nq'\ORjMP|<9'`/=^|@6NO3~f(5'%qEhPe1n4-0WQA1B28Wq hJ2)z#Cfju6iH fvp IQR5T{|U}GS| iAcdeHI-~;-Ep2 8bzu(]EIorWf;=/7H66O7OnHE#=MzhG*46a;_?F1nt4Ne\=\| RC~v_`D iQ|hak5(?V-'e|+e ]] E#>Ao1pU+ :R`.$TP<@^g<t[o;r#*hC8% R|A RPA> vC/gqBSJ'-$ reI1>c|:OG} wI|s}gG}0>8gCZi42\ >@c=? 9-Qb5F!Qw?2?E> x?C x9_AN!g@#n:YtR!]Y4>H4#z*E&#%h5-d%QgP?5i %=dD)pp b!-d@Y0T*FZ!J!G gHd*RtF-$AgK($19BJ=XV89EJ >V<t}&$/JA&H MWQ ~)C!I(V6D`dk=%I|e!T s (@k?.)FzQ& sTx8Gt92nrW_BQc tq18i6:`\L i ne1 WWUQ-`(I$J&3$$$b3I6rA/K8$c;1K%aI~*:5Ggd\qZL%B-jyX9JncQ?562qJ4W9~(DRREUUTSj)hyxqO2P=gJ Z)%&MiH@RlGeX]/ClCF14WKM\eb<LH! jYGWR\]!UY}zx_{F< e`a]Xq4-*+ $oizS}I!QX-4h ciX?+iLb0HP^Z~lwi|mS =^v2D/TtoFQWu0}l%mGbL9;A X8F =Tkuvbht1>*FcT*c(W+E9&.MT^Ss>|:*>*44i LzvVmznKSk~ z^B4UCWN5ggbnKyTF UFaEz%s{Bx=O)LMkR5wFCW2iib4nd`!MecSKsFH mCVf:MjN'Bq##~?A9D;#:f)@ UicCuF|\u<h Z R9Yz<x iViJ<U>?s~ylVPF5 00mli0QB|l8Eatw=+D</'+=p9=S!to;vYQQVB D7V%0-\ A7H?sc5c}0aO3Ql*3kV9ZAu !?uA3Fcn{Jn_{g]ctU fa=U{`SB&YInf /==gCq*f4`xMf[lEJMOBU&(T*f+tJVCaKE>|;O^li** b! xTYqt.y#C;O?lu eCav7/I6G]2-V'rgUYl\Wl;|{ QvM^b;`{9b_w|MNb[oo2I&Zav:d3|+&3[Fl~V0o $?!aak }]ZAOb0D.0 JfYp I ($ jMYC_ e-mz0v<x8iBzBo6N!dkedjTPlBhvUBiR[z~x^%' +' NBI0C[i:5lRQ[e-MV_KilYdUU+ 7pnZTRnd HwUUGendstreamendobj42 0 obj<< /Type /ObjStm /Length 2852 /Filter /FlateDecode /N 95 /First 827 >>streamxZYoH~_O gj}|L`;s-endRKRv__QI5]wWF2QLK\4X&5>11)IS&x[{V1#4E36j41iga]<:9N0s4=7*z^D `&.4tC|<D@F4 ^Doit&vW=V 9A0o(^0e)GT&CZ!2#:LiD0T9$dv5Y1:fLSz`z=27[ H `K(XVpp\XK g:%rSn`=E1b{KV\tVyIO&RXb )WE^W+HeThrlAJ2%Itd#3 @r!g>jR-b)^Wg ~SZnu`d4b[Q?[HqOx@}]U{;Nl*ivt6M(( 9~ja y3)HAb`E)'i +#U'r A_M@euW_ZK>1Y_E? 7U>U{OE6M NI.o){u'.h S0';#vNm]AU fRpi v&U^ DN 9\ 8-r<bk(q:98{S x+}<t/_u>Agi:oy'`yGF<4H{\:] IF = /mR_jTS79>bD *NCT edvP{}.Qx %~$ -}|% xsZ g=;yt]Ngu^6NeP*GY:qE arSV5]\ b>>Ny:kfo? ~E>V3LO /[t!:51uPAQa2o 9Wr:sw$?${Ms )r{(JElkgP'xV5:g^(hg8L1iNdOsH@H.jgR)M`G[ob`||%.l pfVx4+R rs:%.J/GE Z Ds:fm=I_l5y\L>v\G@p )CY-[ @NU I79Pq=gHk-ze7( @H_j bHmH c2P@&:v2/az}xQ@] [PtBISiY LLUg  Q-v9^!E1 nMh/6K*~vxU@h&954puJ1K> QZGG8BQj4+Wv6 Ex * (?mm p m!pZrm\Fr L O#<9u'Q$mkW`QnQy iFf% 0Pi4)QepcQ<mSB@KWEk(e`L`F) ^ln`=3*sZ:nLZc3@P-A> L;D)L_5llgY~/M 5vKHxH Jjr' cDv Y{n=hi;.WB4n=~u]wn_K}3@Bt_5ys[%*;l NV777|N+0(5 \ >jw= 1u50heW{K?^xiQN6i ^s[{M>jTG)W/%Cn[=7tXD jKrpo//NW S yq~-ku<^y4/a.ljP6K&? 7}ey3fIjn`hB<>O('@\bwE)z^u5:(>u< n0A}<a : R$j57R/V!:2Ic<a177lqe `~}Sdu) n_KtkNfR~Na; ]cw:S:r.m!Doq6F Sh#o[i;WF]EOewp#g;4^\_V/wt_~iON&Do?<G~P $I.mmg8:_/hH8RSHtendstreamendobj1 0 obj<< /Annots [ 164 0 R 165 0 R 183 0 R 184 0 R 185 0 R 186 0 R 187 0 R 188 0 R 189 0 R 190 0 R 191 0 R 192 0 R 193 0 R 194 0 R 195 0 R 196 0 R ] /Contents 3 0 R /Group 182 0 R /MediaBox [ 0 0 792 612 ] /Parent 60 0 R /Resources 197 0 R /Type /Page >>endobj2 0 obj<< /BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter /FlateDecode /Height 1080 /SMask 4 0 R /Subtype /Image /Type /XObject /Width 1920 /Length 1016566 >>streamxtTm@L3L1 L7(6(fH4IQ$(Qb<<%WIJ .ssg4 s-<ss~DH$Dw=0m\xNx\%[nysnnnvvvffW\n6m]W^raoS>qk<JNN^|9|wiii&txxu`YQz0999-199<%KAVAA||E2-[%ncEEE4\*))*U>R*C<@oQ8v[G 5TecL0[1Gc`} S+p\ liNw a$ $8-PjopK._ gyY% |zaI de>~0x{I1K1VZy>;G)+  a|jnp |g/Wp !:sdE gW_}wl-i}xp&<k[U{eCV ^Z h/8w9s <x^>Hn W? VZ}y-Z7s hm26 zL P`C=aA luQL\@wUZj.zz.u5nT y r+nzYMVM_]Yj[~ucH$D6e}z{]p+_K;emys~~~NNvzzzZZyk9'&MgcXk oxG8m[ ;vi-KIIYnR6l4BHg ?2 ZjR4\&xghd bj#MM\5#[pH[n%d sLWY:PZ\R& 4Lfcc;Pa t[}o!_WE tCLp kk#GN>x/?Dg;w.=a$ oa<qT(}?kv&@x%3n[\D7: %Y!5'H`bj <fa98>bM YH~%'[ 'T <iB* Ny`- mW o|W+Ht{? z|;p9rdN._ w1cV^DWM'l~P~fn4l4SmZ$76* 1cQvM8jjs`uJGxj~[Se5@ [xgn3>R7c8(DH$n>[ntW/\WW{#[[6lHJJS }Q?054D7[s~ K={ WXfjkZZvJofDh\8mV#jQD}m^Mq|yy5N}5-ac+dHWo+V \v.5 kV _)3cF|oICWq GX-p<7n\f^|9OMM''0?_|N>w>V[|f?ZAwHm DPvzl^'4ql/=nD1vz D(ns7Y5- e~{TsWD=Ov6=0t]+ ?YfW V/~qg%5}:~ _/$#aTG4#juuc f  I|hH66Z=AGLOqSF]WxE6VM'8Wq[DY#iJ-rDH$D[ae*-.*eK~^  {i3qD~i{o3fsXhL}G 0aitR\z5riDiJ#qc!4edd[Dj=2q0!PM R#&59x5KabsXttjBv ElV\ _ ND-w\O9v|i<7fH9v*0yv y!op+**N< g;gn~8N x~#H2>:Bdndsc<E' ` &1McTs{-[#e^_<h;yhqQc q4Awf8ee5s&3Ep|{{7?D'}7x\ H 6l ub VpJis7M 6G:;k~x2Y8 LIAdmgw( 5pSrkNnLYOoGL(B/:pDH$nI]tB7kqqq|Jy(T3777++kM{iV0_|?>c3g08jc={LHH:tc'O<s%K\rSSSK2!FoqG DVjbS-y\ZjGB5O5#)z M.4 vcAhMIt^L 6; GyEpjgO>b#GP3^t 7> ?t99F(dA5X~W[5)pA9fdS`.}FHd<1;gH55GMcx >cS2%lMfgCxWw?3fG !y <xpiioH{jjj9u{F 6%Zv4At n)NT5u)cL&CY?l4~tu 1nOooP pDSDDH$n>o\WWW]]w!gNHHxG1v'xbIO>$1_~e_W\>O>RXM |o??jkk Gk~S JcbbZnSG 7vlXl2Xz5;\0y5*aSo$: FGM:UBiNYl%T8rsLD[[Y)D<Zj 1@:~5l vkNyAFzGR6gf Q*qnk8.8KPlllf 8LX3` tCi_PR\ K cgx9feCZ U`62H=9x?q}*`2dn#wA!c_$O]rG7m4h:B=cy \\D}>\y1eTv/E#zR |.lPc ![&GB%d;7\.Gthlqtj?a ]J0EN3~Z!gH$DHt+y:u[xq $ {w:lY3)hVukyy={ ;z_zW^yoo{ ~HZ~^}~gp;9i]JDQ111wl}.]G~|Yf?E+V+eZH5E|+Dj|I5h&C5a 0q4W ;yUGv\B Z`GP6A7slnvif3`S7'e9%N~f 2dC 9r$|_aEfC)4e aX;7< s.}zRFHM@ m LEQCQ 5v5MlpMmkZ6[ay:hQ+mera@/lH%+ ]2eJ = 6_h x(94peKvII(ik Xyzeq_4>B xlaGgL+ 5Nl/3- :WGxQ.h bhrDH$Deve 7/p~<`1cL6-99yUEEEn?~{|;/8\o?XYYhcwP44o ~=jw 8pCa )S1cytW\|SA:~6JhNKM5:j&FFe hvji$%81M|k xk52k^i'WSE d Pd5e$D[ a7r;2I K/CL8Hp.\0))]vt? ~;wtG E p?CiQ pv8QdHl ci>3^h*X*afLY+L  PJhmncx8oWy<]j1^7/eZ:6i3r]vK ~gFO}kV&rtap.))24bZo='S;m* 8M!s nGpxTU[ryz\4qb Y$DH$Tofyyy^lpK/_nll<{#G***RRR~~CO 5  VO0a XfMVV_to~g*++m2saV)=ml-` ;gOA`AQ$sINN^pKWXrJX5JRz$*c YO !0LjTo2q` h|KI 4k]A@ jtM[4da(Wi L2Fp$H!Z%ZgBA_:F8pT? =zl+JX =Z[[t|ch-?2[18#pXRSCkfBI$M^gSd'^U%a uAscY/ fW`4 dV \5 Kys-sy iC/rM>/^  \;A67/>hK5W~XVJq`8|=8CQ.WaVI.k* Z 2!a3B gEZH$D(z-5>> h555;wLMMM|}Zj6lXr f9i1c : L}[l2&& HV4hl :G y3qtGdF@Umv{K <|pd'OUMNN^z):4X<XQ\nj6DSjrYeb@HS;`5S5L3?EI6'<so 6Nlg+8Nw<4~[p>HdssY3|~\[d =[y<;uu(4YIA2a^ {S 2$]*Bg|f^; |}v|]X +eHP*<XK4D~F~ 9_/-)B:~'Ng>H.(?]? ZxSO=`LHz(%T1y@lbJ 3Lr4 -nl& r blGk$ +6-'H$DH$jJW\s w.pSsNNNiu9s0r'N <w^Xn9++ 1cFRRc O{cYz Ss^}QbG-m {{{q 'O6mYHMM=^kh5wXQzcBhM6Tx!d `9!vx)h1j@`|N2eGh<B29hgS =Jg] |>vXmmAC >~u8E4q1KM{y0Be2PdwJ&0GCxXi&4Fk'4DgenW]E8;+k$Jv~}p^}U!?)~7q?E ?#<l^$>& k! 3 3u3+&KH<ZYyBzH_pey a]{$C$DH$5LHHA!|~g|'N6&nK/(Oa9{7 jtV/_<99y'N 3fLbb:u}XU7S *RDXj6mm ?p@$&MON6msY` /^l2+V@C5Z5b65jxY6 )5Y0W2&^M\kDd&Yb#2)J:r;7~uCNqX 9E?3a8 >? 3g ?~3 >}{/=Yr]S(d;h U5ikapG eFL_ScE&MFZ3fCe:LwGC AcGl28DXB 7j;QP WG-#p~Yp^}WD$g :t:ujA~>>a g&)v kR{(LYaSiZo{Lj7/< 7c;LDH$DM__l~K|d<[` HA<;. DX'Og]Yn7oO< yucbK =z 2|0cd[ofj/Yd*JgBu[So 1E f o3MTy8O !H tZOZC.|]E'N`A{s4 ~xBZXOS&Ke4ucAl<yrY85k!j2QjLOr[TWm< J@ BF~`# sFaj cb4~7 m 5Z+//?<D_$}' D2h5p\>l)lx<<G(_nbaa[6G{(Yfh)zp.M d xTjMDvOpX`Y$DH$G }TWWGV :\p#0SpGF-&& >|KCmsxZg _8BG V2zBXZ 9cRkQ~{i}avQ}a_4n6fc>IIISL:u3fO; b%$Xuj*x8@)Dib 1exbSW]K|CudF 3 }vM8k>ls`A2O 3nov2(!``ad&M87NyAj?+yYdo&[ r G4j`a Gm'#X'>r_e} gL^y35vw/>SGN yvYq@ AqF4`rM?f}h}vP' T('H$DH$r/6klNK ?U+x555:@tX3 ]gBvda5fV;v?'N 5jTbbeV#u 8Kqqq}C1b3m III!S1Yfby`E-TZlhb`Klrr=;U~ p<fS#\.8B'I@{n(zo<DXjr; Sv3g A2m&0#<D^0} pfiLr!v2/4rnR5<b<n Nje T{vn 6 7]+Hw? ch.R+--!Dd%LUjN.LMOx3AOi2Cy W^?E_>Qqsv*K2EO9H$DtW_ ;vci= o=#D8y|:A Y vDFX]RRRPPze:uO<1rHuwHPMEZlU6mmRG{SNt{[n=z<p0q]v`n8gX=+V7o|Q___WWu+YMC)(JB3}^Nw<gLV:WHg&.AH5NLuCO2Tee. ::cH_J0%UZnC:J)KH K/;pY1c:4:^U}RSd2*Dd-6*e8S@[r3'kVuI#A2z>9F!!T: '?k3H$D^{ZZ~}CCUzg?GJHH/^ zn*j#rF(mv#7   g; ===%%es} {#G <8>>gp HGmcM 1b7)\]]?)S&a ~nYYYt7kf_k!;dcF'4YMg5]^dPG1+rb9{v.oih='c &A!j_q$hOo_~]. J7ng'L[-Z<n2 5tegpf+u6>s)3gKZ3SI*lBkmw/#8aCg?(DH$Bgx'5p}]phFpII M7A{gg9vXIo =lH @1uuuozEEE6mZf~'|G1x}nm1' epPq$|GbF|9s}5z)Zxn1a}^m6 Mv4W=7Yxm\pX P0q_{i.[l]^6oN@%K9{_W|\2D/>'u#Y3 a26k\zF~dkBc Lp.vA./XbTF @4n9 h6m;BHrDH$D7n|_C 9xAn(VG h9BFsh[b A vO4(W/\ =Bw7yyy7n\fE~)SL0az x.]o21&mFuZ+%Q +c v ;w/tx'37)=K.C@Q}tWeenFL6@eEy\mP^C)irDqd ^0jOlC&4c%ZZk* mMi< 7oxS G!z ;qQlMTgbtY>PMUr;xgt-dGjWiE4k(~(.W)6&= uSiEm]H$DH$z 7P{3g;wwa`4!7 Q~[3 oT;555pYqUV-\p'O?}9SN@` :vk8dG=6aS>}9 .Yx@kYz*/%%emJJ`xfF >]qcZFFzFzzVVfVV|3 ;g p>V*:Zd fdmW6l4+s=<9mOG=:/Me'(=e%i>~2!<OGlWkGIB7aA6nwui NB$^/fddt_ =:/7 :nr rQ\y-B#`Qt *c=k0B9j 5{`2!H$D/f-\cO>{3gv=j(2yvqU)O #0$9 dAz||Sk y auccL'X]]]]QQmIMM]r%9fBX=l[n:uBXg`x]hy-[m};OJ>kKFK '-pgMU[mIO< >S`{>_i}{(i_K`M72Zl**~)0\\LN TP[ $\O$ FKifV+LCf\c;|XT\EE $wg8UvkIH$+1c8 1bDnN&6;+Ltzbx]ZCn*YIad]=ff&K.iEqjQ#>C$DH$9tOS zcIII<vEpHu)@y12#sv:4zSKl2;b7 !{8l;C(eKvv63gN4  :`n[*05>hJJJII_zB#g~^t^)N6Vf;z{r &3>vNnnn}i> TrEnR'm- [YpO_e Ckc'o=8Bnoca]7kqmAr0&[hn)H{5?/oGk_/WHYW^~0kn!C2M@1Q_: LXmSSqqZHu5=uzrbDH$DP?GM6|O<R@i!ataa / G@\s5?%L~pXp'Ob<} >\[[ YYYp*._|MKJJ3f }[ccc[nM:zd]GGq#:l} `^Z]yjk.QP:)DXp~e[n 2dnL>Dd Y}vCWe\pnmQr^e4NK6}y[dIr3tm51y(xfg QAn&H8v:pkqRZ)8233]vM (As /$''NOOgdTr#c TaKR5xLzcGS~>g&.3k*\l%).{X PrVDH$DP]r%''n }7O4@CTm0 |K!8L-G7C d8D7T#3jGug]hE.\nez qqqw{ iO&Hm7vhUZRp :|N9sqr>(a3 5 =j~nIIOl h(*N<; Lr@llK!d $Qp! &^ &KE h@:>mZTETjGC;tF\1[R\<o]aAO~\DQFg?KyCmLK$3r3S{ZQ [HUBlX%Xcx)f?e:bZutLfFnbH$DH${siC ! YG }q;d!aYhC}as<9y);t#o)G3?UZ !/Xm# {kj!%LE 'Oc7wm/`\6. >SUp8pNXT1U J.0LpV FC(E5u(ceLvB0y-*FkhJc' >H$^ykr>az1B{6hm%ak=A@3cCY p=V Yi@mw{q;&0def-H$DH$?sT0h]v]t)g zU ;G7e;SlEq9e&$#F #GFEZ7/W'S;[ Psrr`|9Pmp O111/7#wTV '}65c&z 1S;0AZMqP Nff $9S (a8NpQGLvhf;>M3.k c:u/~ DF7nz[-< +MYg8+5F*y9+e2sd Ab-s<LSP. :r2DH$D :oP-Jykj ##V32qQh8*/r9 iG~k8G37DG|n J#yF5*544TVV1vnr{yX\hArrnOis>gO<ya |g\Nd NEt-??%C2HmS4Z*^MhM've#o p@a:}*^oZW[mfFiKq}cpZ2QG[m9stbbbb]]oyDO)hI~PMg<z2\D9: f_?30DJ\Vj #U'4GC!=Y2IRP$DH$EK/4x`gzQTTt9t0Mr8a#dVgs'UTTj 8|GO8qg;whHuX|[M~97E hBp&S^z>j2+zH:t3smm->={dsV#A{M3=f^!2-u$i4F.e>Gye.8J! 5 2i rrKLp1nQA+^vpxj;\ZuW;vliu]s?PHY JJJ8/_ 3zjkM3V+N54X')MZ= ;i71*2-<+ `-H$DH$k}chl*9I62tAG`o }MW r\9997l1mRLY I} 8e?YqMt4M*G >7eo8g4?S G^ ~&ggg?o^g~Z:G37P{{k+Wtm2Ke%z}>#C}^2 MRn Z+MK y)l?sHLF 0]yN7m8 !o ~dnD\7nx7ZK.aio5RU :s?)?vl!fpv8{l3Gz2j%b-'>|u.)H$DH$_zYfq!)s4noBC gd!;~m+-((P: 7o\:0%I&-eeGY|0dagxc 9%=gJ@3RO<yw 4h#!p/_6nnAu Ng|>rIn`qYYYt]EYlW?^M]yH2e#}M^CQFt_l7{up'fKq<i![{ n KRf5qf4c \u8| 5jz-D'AoSNc5IVd ;l XaG;.: &@Gyx&jeg7vL4^_9%p@$DH$%k+V /hll=s9jE!acodqR999YYY0Pys[hc|NII8p`- {O vG7F P8`}}'a'L+##}SL/ NA5>|8c <@0OGJ8Ch[={Vii.;Y>`fNf/KQff0gJ0a=;J*6RFK2M8V6icaB[ /j>r#gilN~iXF4SZzu^8~W^_$; .. HHLU\g|+(T nLRO0)a?t (aPdXYX DH$DNwKOO' |5adhDdziQ<v =.((PS*(FhP` & lunn.67 qS !)s# _Ba=|g@SW[[gUVe>}k<wu9555DIy~7p>WUUU :fE)SmbGS02p*h~YW$~MB>~<f\hem6 ~^y{;EMXOP2^l:i~_]~]}H WhA;vKa&Wg>2 h.bk27>~2((<>wp%lvy} wH$DHonbbbNz$6)m[95:/% 7=[UUU\\1sss?o|3P  ~a-[ !o!$M (M!3}IMsshAGF}}'v vw4WTT9s6 =zA^mN++7n Ey x/n4>%Wkq0Xg}dC|FAK 55ymbBu/M  8M de.E:n\_]27D?Xom Z3gpJi=h leeOTlvve Y AS6.z v 4X>eDH$DsN'M0_S d>G an?MFu > p#1332M)#77>e: mLiii cG lPzD)X DLX1> :tSRR };<O?tII#G`|Da'NS<cFUUO2UV| >|8 SC~1tc.*&c+2kxK f8TIJw61mr;jj9R4r V+2S4x@%xP}F)c\{yj|M /hy~_/Z:~%<w$2KV0<g$olv wtr]gDH$HW\9tP= 9Qp0zP !h3ls7;a:uj E 1g#+++33siii 2Ars r+W 8555|j} 9#vlgpkkk.Z())iKf(g{'NCv#G <x3|gl&qBkqqVly a@Jvh5#{t eNl/%uPZ;3Cg/aac%=v\3}^v_[AU^nB3..=kp\y iE_ pqOMsU@7R\[6yJe 2P+DM3`@S .aMZvC3<_gF8PH$DH$} > 8p.]rD=7SP:i9[rF1Q/--UY;AAg6mJKK c6Q3'[#?%v}:BGFHJ)y1x   9q 8c)S<;w<}46 M ;t3j{ E8 7 rL&`k0fZffQgS; & EtM%2!_mu*zB6Lhm:mzS:< TSKW>M} {wDz ]C yeOLKM )m] 7Fd MAClr +XLDH$Dp// 8C! OCji oB|wV*4uFnnNNN |#3nqPq4~4ydrN> G6 q(]sS) 3h }Fh\WWw!C +0s0@).fRSSCseeeUU ;YEwuo_%8uvri=b K~fW1 vd31g@3\.3eYAY2U2 tEWlgqfwc8 o5)){DKC)ibRRII1nuRAuBl)dIgKY?C$40;Szx 3wN1F XCc-DH$}u|;c%J{-[466F3e:J5lG4aE%%%:n &oF*ce\LF4#GfK.}VrGco %;#g <LO:?'`D;+3a#G`{r>355~YtX;w|2*l?aM(R\6+@yE?4~ 3Y^^v&o.Q.Q`P~s^k&g51C8 7K#{/:x\. q5j |_ 6mZ^pA4<cow9yUJ Pz hUV|.Yr2D9Ph\H N@DH$D_f]~?)Sw}YYYd2g#o ~JksytRmm-TmsV\i!^hKpluKh(mP Kx6j#<s | jO>&g9#so ;v1j`gwcjmrr2+KUp1>m&A q:!-(iJQq \K! ! T(<yzSRR:r9G|Yj'7j(wuqGDnt@1[ndlHn(?%kC2 j6b~/&H%/ de]bp hH$DKg?[`t1%%!B(aF|&v*).gn{6 9|v4%b9BU03YK.%;t{p>3 CGvG71 9yAh ?~{#G =z 3:kkka0 555Pa*`n8UD8UVM3R7jmb7 h&FB)KQ/hvpt:]3m: rHPqvSn!-aCyM2WDC]v2AVBBBnNuK!mB9LF756x@7x]e01N . WW59H$DS7nvZsee:u*5B6oLg[q>oAeF_z8&3 J/#3h:2D:1 :M7(?s}}'v(=B)^0I2LsNx B8LgPIq1OSIJJsX4W- &j 9@9lme^a3r 0  ~$TX%rhpMyU'.WAy ~#Fs~'H/>DAhafS=mznQK^XwRSLXMWs4FLS h Qd bH$D?999tY~aw l6dF6?GCzy 8q_\\DQ[n<v#?? JMM]Z) )bXo39sn[MhjF(y-nDf8S tPnJ`93Ai$)hbn)dQG1D)gA]3<gl3gQhL |eVP? ] [n ^Uc[1{ :Z $ /\vM|H9o]RRBz1guILEcm%n0w@<4<fM{ LG]Ei!_+DH$} ;'O|rX'pMo~gnM*|3V 1`d>oaOQR?2B3cz y566~MlG }sSAa7hK.X=SXvn V8.L#EJ}pRX4p4g=Sg#r Q3}Nym kfsXx3SUEv8/!ty4)hyP*hE `0-fx6;qM|v}/DaUW^Wuf3=h{n/e@i/jNex6kRL^qp)|U+DH$}{UWW|7&|%ySsSM &z:uuup+WgG3}g^y 3?[.%%^a8555Mgqj<x0 OhY@SGA#?h }&3h~>~xmm{w V8%%%n#SIH mPhwh3'l% ;/H:~;BM7adE6 `aaAV:d fj5iY{L$b0Oy v` $Zn}cA<@eU+Wv6E?~@M78qbiIad @2*82/WG(z(:(I:&2 DH$D_*]ruJrFFTp V##1QG_gph{qeVElyf1v9` LMJkc!ML6%%wxhZn]VVq@4# =R2C<(# KLe9GjjjwQZZ;<+++Ak/4Z6Vhsyy9 Ch~ez5<65FggteU/ZYggGb] ql3e{T :X+q)\0'm8h^c6|;0g_h$vC$?Y;v@p/TEB0u\){fL!pPhl0Y 3q^vB9H$DG } Kf~K# 32:(;Xgn1sa3g9asff D3 UV[md]cxtvgO =9Ro##488| Je =Gy}UUUow\p@AD A)*drQQ^_YdI =0AK5WD5 U3mdM@;j]VlP @i~0U!@28Ts@K.8Jfk& vl^sCK<\e >> :uDFkSN6mae`ID 5#yv$<Sa5h*G  y aDH$${M<r.^TMk}V?`zM[ 6|Vg *VW A S z9xP>Da9v49[s' G4? ?~555{{G ; D<pB9Qba;#&U's=; [r1$c mX64 :owgNreTrzq>3?uY7Dig`:kqlB9 9*po]{=iE?>sQ?6[/^|5^jlG+L0;tL3i8yB Q 4DaDH$ v=jvZPPUsSr8@RIg2?* HUr*?5kV^0&R8_2ePM4 VB9zy}!D^mjs}}'kkkkjjW]]sNWRRGNFF |%WgD(\L GpyFw5Znlm)NM>Sn0\.;O4F6~ 7&pf>m9vpcH17%x1FdVl7{737oNo!H$g& a8@ w(p SJ|; >>{n TPhJ^mKH$DB_gE2OOO?E's';>{:y 6R``~~~Je6Ty0`lV7(z0sh1z(<F5[|9g#gqG O[0r39u*sUU ;? dlG% Y8p)QTTf !es;:t0}48(~)<i- +;A+2gD31!I `;C 3= QvT'YoX:h__r sBm8<RaM/^]; xWn!mH$gfBBu>}ziIirUPyXIiGr@P]FyBLjGjL[- X%@-T$DH$\lQW9s&9*Ei)%.}XgpEA $&ol.(P/1yCg| PYei(tjzDaaE\|<GD>G}<j#vd>?#| 8p7*+++**1 84p#.w<8%TA 8N8O>B[ba0Cy=H}YgbX#:e4Q9/#L>Ug;^J5h b+]#I !T-BU;(T' F`!G<eqUl10k`/Q =z~#hD_ok5q {l 8P v &7cL 5KhN{YQeXvmf PH$D 7n7IMMZ-[\pSnfE|: b0Qg|L~Feh~V:  zuZzR+Wk1#&[b!mQd| ou[->R $Oc3{VUUk{E%pLn] G4Bu p N6-!!!66kp*JKwW]]Y4zMI+ |+b)0R8XAG)La!F` cko TPsiLo4pA7tID=GOj D_~ ;[?c'r>{R@mNFgc0%Z6%32&BxiB\%gH$D 7xc-5k6}chr6<vUAP4]gp @*yF[9RcSAgee+M>cz?^z?p{ ?ha=?>f[r sP6qO:u8z]p3 fvV\by-Zr5k\re.;w.dL2a#F<C :tSA~9N&2<M^M )o6u<{&\7^2W5d0nm m2u wvikI0K^7{Ix 1C 5j ={Q~D_$NWA$ nkdaYaI471&zcV&WcPQdg~ozis~VtWWWUWu:? RvOD$31Cta>28sP{3?[N '<v74EH$Do>h4#5j{ 0E>iYY+zVlaqgR? }&hfMf<uTl &<:rd=7n jqcs|DK!&< b9D7 g <IDqZ #?.[d\ePKV-'1ckSE]Q#u[nZj=Mr-#F W+ t#L.k$eecG C H2 [f=jpq&LO=\u9KYY<p]9Ra ZNHs4Wv}bY{H$onPNL_0a u 2X[+ j2F^Nb:h &=JH$D}-_ 05jty~np~ON>isu/L%T{7Fy^|^@o}NOOWx9spyPVmb1dk5UOm0y IRFS<M s ;Q\\ yU+WTkeDbm jS ==:s9]tQ D'69`.b >3xr(.h`M[R3JisN)PgpG9T^&oh7b)t-Z &Nl!QF{9(:z\:u=PVff@aDQQ1`iBm BmAl`/a zF0u(EH$Do <mVZ|n]~~>GxNR` <'D=$IK3 ?\&dAMC!940e#FtM]t70kQ#7nS '0 NP2y9ae*gg {cBu[9~.T+EQuHx X d)p m{^hnrt-Ve#g O 1ea YoK~v-n!70F!EhyvtwG|ucG\7 1tU0#v.tS7oW_}U:E7X{QsAd{% %]t}6s? iB!{BF@g 1Q:^rDH$a:|kG+W]u:\{qm]r_OKKI;w\z:Z8|\ 9a`7Lt~&@ 1g'N_^F<x?OxUVEQ-[sj$l='t 4QOh8' 8 ?#xZys:u\rI6nH-6[w[{4lC'LP+ G ^c#Xs'csyaS lA@K#'o908*`&K0GUl-b!KqBLV VzhX`lj m; Q#Gno?zlE7XUUU/m37 [sq7l]k)&AV6iXRt uDH$a:zs=[7Xj_~ wVXDGOAyz6<;]3g|VRA2gA`@?)S cG 5jK/ <xJR-=z]r%'{NN&yP8 g7e6]vo_|999qi kh.R6m4`|p saB6LMa&(qhO1fD/4b|a +@WEFe) oo!Oc+AE3G6!q}}v? 9_lE7^Wm;gl 2#{KTP@uH3w> \h<gD'_!JgH$DcKvR4i2sL?F:28_p# </X`h7 |F s itp OK/7]w%%% }QB\kuk ]nTO;~qq~>d>/[@+///[=\23xY{&aFw^P FQJHd q b kA96 |$ HSSp@kh3b&c(Bq4xv:j]>Iekg]3$l4!CnO>xDx j hx >[t ?h5Z~F'B 0#4 M{1YH$D7CoApA'9Xxl$ Ougwo)fff?[99339}X ?LQ8faypt?O2e]wyc[V[o 9r'x ~u\s*! S<!o$O>::@?+ D1`ZjauY-|} e>U7edn3?ka%66ripML@(F9 &FcA(l 09&L4 -;77cicSW]uN/~*}H }guEB3B8qY? F;d=s\_m3ZTiYm+FTH$DHPUU_#G .1bDII|N h;w:t<{gBm6#d>.CRYic{)Sw ?O{& ;vl5xzIEEA (/Y*9!Yc9i>X~3ssrh8 >|8_LJ-?:^v6-F? }ydA[s!Z p8) [7 >3/1 R ;H&:b[%`4yk|;n=h7$def{?w_LmDo*++zufa&N.re.95 h 42<@VNR|[ubD}w<!^QDH$z .xbh8u{<{>;]v~ hoF5ypylU5S{O 9&_ ;w.^F'S8 CIBI z3|sEE>oy|?/]sss8SLirK.dqp  Z8}kcc0cafu;X*f2l) M0a#x/27eS?!Z(3744c_J<k__$G? <x09;3f)x$g\ cz_C$gF=gQo6;24hmGPdDH$D_kUUU^`5j<$8qBfg8//{^hgBc3228|#Cj0==~p9tkm#?k7F[7= ?^8p@*q=8<NyKL3d0L;D3\hN[sjVh-_p?Z@h*_!cpS5Ou a :E;9d3m v8{bt (4X 5X0B . p8nGmxy~Xd7|o)[~HGn?6.3f`kO>Ajlcc20ak#.<gs1`pV$3gX@m$g>H$DkO>$//={\zG%J'N1 [^^|ruxXY gv39|6mA5  Au;y{YfgP[o-**{yo^iSO|\Jrt8- sug|&9ZGWZ\.y#77''G!zDF pM RW*hTg{?<jGAQemDMUL*6@ r g:M9c!5JDbAwjxI7i+W :tH?P1va xnX6Dte&F@W Pmi;2FI DH$/]Q#|Xt)w2Q5w( 3lu | g[qf#t .s-kxz/Y3I: QOU3b4I>skV^R S~t#]5y]!#kAo%`p6l^~-3-cP@5p4bYBbqp:8ISc$DAu j.??L!$ / r u]lE <<; &Av/l $qp(3Cyi}3kv {% meDH$D_ ;vn^{'N=3STG7/trj?DAgg3&MO/4h0`Y{h;w]6oj99:|#E@twO g}}{II urV`sAAA}FFj!i3}zQLF.q6 06o mn&mF6F7 #&VydY0u v&&lg6Vu-5/M^1 4Yqf0Gh5jHmNH$}c~]W:u]6~(lAR&AKN P~ MC]G?@H$DTG I-ZTO{zc):vZn:=/4tz?{pgJiiiCmgP ;j<rH~~>6bO |#a&9y9Ess#a A2>o 3jLsvviM ;&D9dgkMy1suy`XF@ A(U75C{j'L=1h$ ;lc .>aP '>#RAp1U@m &s^}=#<S6?Y~)Sp[nQ? !@qhe9g^4hfeQk!<G[zcHAYpH$DNG }wg;NFFFEE|N_892JN3u+z?l3c t gN`JggK~N7g~V9sq z { 3fhoijRr gk w wAAr22l~zr[;HsnZ :t@X^zCjp .~@yv ^Plx \m=aJ&A o tq<HxbE\u]%;mbT hg3'Fk F[yf>g_'NPN ZjM4x1DdUVV Z)r%L:p 6xe9@u <[3q*%'@*{Y$DH$cJ}arxg|8UTT^{ tV7o <y3gs4w w~> ?y=8 FON8W'dA'7[Nh'w3qamV\\aOgD~Szw'2<#|i  ?[1$x! C% YMD@c`Ta_fl8p;wBpaTE )hD)X^FN1e C]#!Fp:;gY 1L?5] >cD j#y=wLmr&$-aQ]dt5t4:@Mqf DH$N?tP\zAc&a> 7)\wo9;;3Hg` A/b3g@8}F 72F|9s#:uT^=<7idCN}[17o|5|0?nrO3 Raaa^l%Z[.vf 0_ h$'LO&c /%lX1FP;uqAJ)Lo v790Ba :bgyF^Ea9NAM!fFpn-~DUVw`V/s!>2frklwTUmVV&W 9ev DH$D}GVZ?[sB$$suTDawA=`n3gb>/'?q3M.4gSyYSL4ig5kO>Z;TN4$$'{&VNry|V6}eKyF]LUWMOK30A[X@YZ9fg )c^z- vQ!clQWk 6wP:.^\MWg1eI{..t[P|k7)J YY4o6Ag 1FjI5n|_~|Dw]tu==Df4gP_& 6AG~DM[YdH$DBUUU?g3Fw_QQQuSIH;w\n]$g3g>/\@=`E>A<) 4 ~k3xc?'3P[ls P^^JtG;T)!y07o>yKL6yXv]z1c( O>(e}a2Q M0A*I;mP ~-tB M@54N\MOg83x:<KF]`(nGc*l[i$h 0eumaGo ^@$H_|a MM&s(*@ \:io2 = 4 1mawDH$D>cu@R>}['L>' |r?^RRqa8[2PjgA+? A9s 8f8qb=6l >|3<NoS i ?W:SL8<-2uJ>AaYF^^Z :t\[ |0`a29R:tK @2) Lo] t F0{amBO1K)mA c4-@6&[deNen\30e FS!{S_5H$QFl3 &agrDVsM@MDh_YF(x%\DH$~}nidy .qW^M= b/96g9|vsZZ<pWRt7Y2{ 5j*j:O|0EFhs*kNHH%=s9XVVc2lA$W`d>kR2m;yZq eJuL9A.#G9 /wG?Q4/3 Ou)k*tmC5M3yp2L 4C1o=y)~N#ch38 @H;y .O ' L$# 2c 0sR= lS x.DH$zuC;vXPP{n@tk- }rgT -;;b^5? 3O>.O>|g 3fL]==M6MKK{OK`BGQFjs*TVTB t3 e9yj)L3gu<h ~@R& A s&)l_=S+b_B!$M_qh0qm680;i MrhC&}M81:|r?w@EL6*Z[89j&Mt GDv;#sbd j6h PN:+<CT`LPv`^<DH$f :tmQ?w>- ~>U}y6gKp6=g=gg6pP Q:uyixn~{YY={*++Em w?NNH#3ng>o7|^b%K3jY:cta<alc G:/&#jbTca\AOsf$Qw2yk-tan1 F@'`ci6XRXIm]q7Zu/Ug<$u)msN\m?&Lw DK2Q?QP^|uQ9 |c[6'.uW | UkXtM-f7P$DH$:u~SN0E 3!8WH6DaO9I>-hp693B#=ko-[ p{'z >km0!9X\\5V|A%Zd>K/tip-;b <E&M 3-9 u(B @2Y_z Cp Z maq'~~rC H1a2rjS':Tn]H$} [o]@M48`xq^#{0d Lw:tH$Dc~_v fZ&MfUQQa>'3>% n-???^3j|g1?Yy a'O|[gu7x @ =ztU?Y sO'Ey swX~)\RRR\\\TT~u g%FC?8t(\_LgC3<?e![SZ]/Q$m9 Ff8vC~Dyv7Keav6:1:*  3;Bov 3|]z)8/EO?G O6YXBlBIr)9ej 1iugeaDH$Dg*++x{N<8 TWV)YYxg7a3l:5j#> g\t9s>Ms=kWXX~4uTOx%u$t\9n6uZ?yc7*6 Zpf-sl >09#d&aa iCxNvk v 5M9H<KhN]Fk!G_}fO.qPh <h9>=H$u77ESY7N5m#@:HuG \L C$DH$:TYY?ia0/QF s[Ns>=y- L >3 3ir 'O/ 8pL.={ <jb82k;h[eB9 /}mwZjVaae9D stIDmXY _#6x ay90chCpB81lzkrxvmn6E.Bw59!-h79v2h|pHalo#Sc@+cbY')s boJDEUUU/Bfp3hN5a89BnY!51E& sM7DH$DhIUk![l!'Z$wQ3l2u07<gy17lvD r-sZZ}PGj Qv[o=Co7HSo{xT)<]J>nU6n\6.rVkGF`uku /nss ff7l^Kg.C9N\] h?$(0u@PC>)29A:jah9 JFCv2D<w Q_k0 zoH$}] ?G a6n2\BL #*~kb78y-C{a:SBXvOA dIDH$Dg?}7nm~/E 1s@uz9i=Z9tR 9C3gQ ;vDDWG J/eK p#I:$*)2Ey%s0FuM9z5kZ~&u^q8I &8_a0]YaXn 4h4Vcd7fm 9|C/KJ#C*u?FC;>Kc%0 Jnpj i[ D{z>wy!OD=>MUVD: <xP^{_Z-!] kgd)peDH$*}' %YN]I=yTz Z;g19{vgy3SI& QvAw [M ;Np '=0I> ]].+`7}...ys0|^IoX?t@ 1tz/<d3O3G0hb;T4]( v! oh) ; 7;P 0TAmqA6\T 4Qy 9gQq0MF=sZ[o+H$JCBdZh-!Y B[0@x19F:c=l; AdIDH$DgUV[w{-33ig y.w-h3?<{ ~m5j_c_?|pNNjv)W~O{V|V Oc%u ;yY >~5kxyjeB XP6'??]R/BPG-/a p+6d c6/DI|rX`l:KQ2E.M5@B&[ql3|J;z`m$3/=[jkA$O2'6@ fn>CF Y$DH$:+tmnndsrrvO8/{-g j5cA#|&9a'NG /38j}8{Y?iF'iL9 ?#Lgt3?h{ Ky(2\0x<kb[#h#$(lF6`%vK0B:T4t8q5OFhTh\_|8'%c10B5xf:8 nu:F#?H^}U;DQ}g&L<-2h2={jb(-}I qhF8hu7DH$ >|'aEn: pZ8'|Vw/_&;3^y 9=gX3g4E [oa?LM]wEwGb>'<$9W O ;KJJmVTTqu_ UVLg7rrrF o} >}:`y}^Vj(2a[d<i %Hk.4:j]jA ivH!Z 9nZ;3- h h^^@ 8de#za#pQl|M* &4tyW27 D( ;`yp :vmvvm89mAPA( 8I4#$ cO;bDH$Z =zgJ5`tTO%kh]3{&964O>/3 ;SNzg :tYoV i[hfS/ LdNb&'A='zT9X Yx;v(--m[qq1 'oBW^E|eQ a[p/ Z!GbA9Fv4f@srv}k8 G!f a|a6ycb.xv >;h : dz#x[han&w<|C/b}UW]EU}m_~eGDQrMeVhy%9Tg5 YCYcFq8vQ_j&/Mh*Hf4qh%?S c.5e$DH$}TG}_o}+-- I)*Y u%K2}QgxFgj!vg `77mK/ w}j:?gE3[njNs|{UJJn;AO|d>ouMsPg$ z x>hR6l!*H$hVs8 #S^7jn] M/H4@E|xX>4EscmNF uL5 /3rcz[;l(6G>CY_Dnr51g\BP8&m yh#'dk8DZA nQH$DHUA`>7lp<>sPzb?-m7Gqut/_m_ ~. 0`@yyOch#<~gR%sp (V^zs94Zavlk0w5J=vgK\$URAp:d@D-#l)t Ie5*N1# EN/4c^mrQ:bp^t:aMt8m[ZM4yFHt/w!CB6 g;Ir5ttr0rt!2pX8'6YFH$DW~{03bm27L:n@ E>aAvV Lv)SAyVw smj)F'NTstIBS?n?N2?ip|F  >9ZkF KG)m 03/%tF^MJ] 1 2kcG0i(=dp% lmS.;vhqM'RGJW_Mi/D( 9C?*O>&X9^L`o&Sm`2M]L0n?&N#H$D+?m48i5j4hPQQarOWr5uq @gjf993 KY rWoyj%=_{7mOpZGK6OvN9\]p:!s c0}[ng?{ : 3fLF03gX zn 1dv@cXZ;QT 2`rIb:3^h&AxQ Ba-F Xh4lXAj[[>Hro$tV/Z[H\Nii)~RvY-> /a9\OPC`SccNhr^8J#e$DH$y}G-]wn:2vU=g&=Yzf>nxI3sVjp u;IS%^UU[ zq%KNuNNQ'3O>|Fj-O Mk_ u=\KD:D<]aWqkf!(~ ?X7u+Zr\hB<0_lX& $V0fi $2U3&#7CA^ eQkg?Ht?<Nm_uU]NhhXrsLatF&Q5C(qC@N2DH$9 =zZ*a9I{;jbJJJY;J=g?j8.\B ~q6t;4ucu+**>:r=Cmqr.SoL3T8TVVFm|3Yn|&Y- ;b]p> qAB3 'I<LZC0Bsm99df3M6W Kqk8!T5x xg)8\3 J4ynl!>Gqp\>H_ 6]OKQF?OD=y/:JmC  S K`p@<t tK( H$DH$:/_Y38i:uZd;0~|kS=i[z: O>{hgsa70avV;w>}:upUVj2? =zZUUU{)--yVZ#t]=9IgOZS19CP~p9y}W g TS L`p3iL5`&W5ra {pZs4GRi90uh-#u|R`Qe (?Fc- 59 3*jS[/@qD?/7RDYnAD 6 rxN =^]P$DH$::x`YYYV8VP |<<'>eKnn'AO9agO{vw{7n{ 6lSO=omq >|_1c+};QGw S/ Lb Dx>!%!99d>5jpo>/AV9n<^p='~M)<4 xHD;6 i pY[xK!t'/Sm`a #l%11l rqB J |V.Dg>cf=v Kc&^hh[;']Ja 4DH$D3#G<!EO/8XVVbxFDgEAX<g?Cm9s1jf ;vZ=vm<\N7/77GB?cjgn$gp'KJJ6n?Ag2G o}Jf #f$m[!01N sqc2KOjg Ij P7m4v jDtF!D1![||oCM34J 7ZmdzAYwQ_H$m:|b_;  ^-nM e-em0X k!i5 H$DH$::v?G^z9s O>>%Fzzr~x l %+Z<@/XI'N[. !nS_zg=7o# \zeqB8s#:aSar3 om:|Fy+( ulw7. _ il ux=vz9>ZU999]!3 GZS> &Wo\gv# FV -T#e: D3)r6q P=A}M;<~mDQrUVVGM7~+e 9n]9Hds- 'SM! a7e6DzY@H$D8(xWn}}v|OK`2sJKKp3;k8WE =/n3gyKo>l0 g~A~={d9s4+Ncn]J]]o>'n<IS8Hyyyj X.zc.W5 A !4fO_ 7k8d'3=j|>p[(Tai$dV/l<;XQ ` lzV`Pshw C$ gU?/iyWS<;lkAj ?3yC0C[qd5]# H$DH$? <dzF ]RR.a<'>kQ>[c76P  :^OOOWoD Vz~#Gm ZMk6}Mi KjAA<yru 7pCQQZv>5 g2|u6mwzgw5kR_?Ydpp -sNj J/+#<<6E9x^k7*\'w SDqR4<H8 m zI/:b_eFLv o3fC$7|Ev3g Fen80D4NJf0&6A[?3tDH$D/OUUU `6W eKr'zZjQ\\`gr1G=[x;z_ . d32y {;qU3pA?{.[n;=U+{7pejD z5jc$-)b7RY[^';=n(ygo oCp? x5vVN9'y9 $]h0D6TC 8H>=oOy.GidbkRk ujP7 Um;vT{DQrv~mN8M#Lh`k6@CICSc sy~m ;C$DH$rcY0k1`M6?{:OUVV|@ ym<;9gmV(n>_3f)t-GmAA>999o5JA#a)a[s'KKK|y3 g-5s/luZZ7f+)1 OL <AeO0O<x:fCu7E34EY<9LY?k aA 6zGt#6a a-7 |VZoZH$UwEA[5k><lx@m>{|fm&.@KR_w#090DY:H$D={0;>}Ygn% J~$M6E+~4?~r\B{8>7o=z@1c^xTUUUWM ~q]iV W^-8|;k9D5oFdg>U*pBc7P8ym0A@` +0?/1o${\gtVgS|2/(@x C5pyN3x]K# 3GxPovla- A $-VEm-L4>}H$%C-l92$m I0tJ)jM%toAvDH$4}g<{7G3='NvXZZtR xf| m6`gulgt322f1h n9vygPI {V#s MnNfg Eh M999 uN?xuHW9p ;v\TTao;|tv?Cn{s {Db?b:.$9.LdGvN9g7w7NNs_[!Ku$D#]NrfGHOQA~Ai&/FkH$%c =z_xi/:v 7 3O83?FvWH$Dld ***v|N_M<V?spJo .\#lgm17tyc?|<7kL_?|p+++?5ktOs{ =/YB %m:E'aCzZI/ A.:<|FY} 6nV68AJ> zYf~ w\y3/4{L`N fN]Ob !| IsGa C6Etr9B.cg{@%0f GcLK` |v8p0+rcr6&mujuH$%}R^^n23mlKLgJ;s@n&8-%h$[cP&DY:H$DCvr+2 B.Tb~83ckx=gpB/X`:601m~]ve^5{=J/~1j(yc]tICIDc1 9zj!mI u=kguKk2w}.---))Qu_xyVAAALD5Q b >><rySV-]sj 39j8!ZeO x|Z-z>rO5!Llnh`AZvp>L&fwLq>SDQuRo=Fg#M Y14( gRw)MTI$j]gz H$D4#O?4O~;?~yys0 :<o[jVX)sf5v0A8mL9s yks fggG =leev=Ge1sAA dk@h 0`@EE.K H'<x wI~:7mD'y&2/98c :@3x_dnr v'7rUd!Tr6{ L)Ih dy@|](F4ca3DmhH0fu<BO4 vDTUUO/f{y f[D794vXkI;S\4$KG$DH$:]:v~CKgcrw&>' C>B=h4+>j9gEXv)VEpS88o)S R&MF =v#y /{ ~AZjifyy-%F sU RR&LPKIbP3>\QQ3oy6I>/[@ q8^#N$=tlN c&-y>3 `3e= $r2PA9Jl 0F<nN@y6t-F -d^ G1 oi Fk7n< LDY?1NqF@Ns aiA$6m!L)X}Zhw;EH$Dc @8QF'N))s'I~ZRA4Pea1fO?9cC i[ z{g ~w>#G =zwk5=S\99y96l<A#R`?W_y\Fugn>:a>vc>+A\5r}{x Z}_  5U 1l! NL ?gR f5u9;LDP3 >sgJDZ>K7l>@5HPUUUO?4`t ge Lqeu%Bk:w aG ND.6#v/KG$DH  o={>#u'> <xP=dB* dB\V/>|8'G Y\\ u%S:26`2Wzjp3gdd [75[`3RY^y5~o=nkiF7o~- =zm{xYk<y2 jsy!r f9g72OYb`; dVAsyy ;oA|^jry={bYw D '{<I bn]Vz Xa z /$[@LsSi r n &6=M>'yZtk(Z!FV<Q{J iN*$DW~&M6S?y&\b+17ke=   C9pu06CY:H$Do/p <w?wy{+W.^x { xC >|Q'={-$%K/_z7n ~ ~&N!C6og:ouTJI-moxlg3DHgB{EMr v}U3?>= ?s>L4C|y&s=j s\ cm56 alf4qQO2^=3ZQ'dSq5R!oT|& 37\TT>k=xA3 hs9]tQ dR&#R@^`(xx'?c06r~@?c1 d#1<!p i>pV?Gn8QA~F \fnoo{6D_m~L!m[5.# i0Y0`2B*HO[kZKWH$DjTx 9rCO?O/O>m9s3 ~y~mV4hQCu***RI> 7ZC t{V\ cd &413\e2<s;wVZZa~e:c/]$/77{g% |zyt~G Ab^o-d 4zDSIAZ~yd>oUZT8HZ`>SQ.b?6mL>d*sb0 ' <gXH#GLp9dix O'iq= g>Op5u?\`}x`0|8[O:K/8##cDo_W[n=?#v5e6k4fuW=^oRWv Z* dDH$_dKo{_?7/?s=O'?y' !Fa_vum^^ M6l;]v7'gvj35j{\@sBydF]vYFs}q6)5<u-h07f=`FqZ.gpC V={zqik!gSCS 8P H.[tIs#X W&>l|]w>Cj%&=~/SI*7|NX8-[6m0saa!%c]~s <( C'g|9:d4AUu p /$#><^z4^C> O9<{ # 9HCO{%j~D^~eUWJOp+86 EA: Ek:tk ?DH$N[&{B o oK/=3wys^^'O#[n_}- bjf2D)8'mW/uQwyjh08;uTPPO>{5;xbpii%K8p'=<grUA5`G<7^>}WteVN5 /PM!CG2U+C OO[ rC9g24p.;5m;Km+9ijmIKKS+F2=)Z \aE3as| E> dL =1``IO$j?{ 3X yMS<Q`R3.d9cs'=CI]vX[wH$y++l>9mF6 h0W81.%34 th`A]S+H$D G >|={>/o/SO[.;;{'O :th}vzW7oI&i|D_Yv|LF#7&++kOOO={3 {1&N8vG >|aC 8pw^^=A<:?:VxN]> 'mg>yf$yR7o]tQs sFSK <k&+a5ks3[n7 2d:tZti~^. Y LQ:Hym8jiF^~}}`wwR >'4[Ry|&sBjZ:=1])6<8 3mVA'xxg<v-\OY_ i|='=V0wiA fp9<fgI!I6COc#^x!j$iH$R[jE Tg:] S2@;c?l`h56nDmZH$D3a>{K/|Hdc<x wc[7mrgUU^_ :tG5}^zw&-I#H%%%MUW]?''ayyy&Ao>X@4/t iZc\YV-5 z>ZweY3H3UY)/>?G[!fLRz/|{)W ] :a32-$lY6lXfp3AQ3D}=?|n=$g9K-WAv m>a0W9O[ g9Pr d 'AC{ 9oZcI<Qszp Q?gS_~YEwW_M|;f!jJ| 8! `]JiT6 Lii<CY4H$Dl{#2 8w>o9<LEEu }z_}f5jDE{_TV4ho+kn[n; 8p#<2~i7O^t[lc]0'1R\=s+&/==}|P6|U:s&nx\h@9!m3eahDq'?ywQ* DT'P@qAL2 3(p$2(* 5imvkifM&?h4eN9gwwo>/1[oq#$$Dy[>{VM<1gQZG6ahxk1ct\enr Y`_pLb7>\|WD3:<z--m8}5]vR~2Xb29ydr_s@ Zm!9ch~i 7-ZY+ 7p![X{: *+x~3 rss??JJJJVpr477#Aa>9u`40@3ju)1`v@0g?o}[?|WWWTTGDDavpp3a5k9s/^mw :tpUrWqchhK!Y3x)lj<Vh S5 hfo37x3AYpAvGs Obbbaa!y_W_}7 T0ha~tfaA0ia;:OEEE;G:zVvF@H258Z\pp7tmp|qEg|Fl/#lY |[Tr@Tth| 'By@ r[/!`'dipv;-VQ [-n;EJG@ {5__nCIICj7BF3< 7x1SgLql3S (3UaVYIIIIIII 9GKO.//OIIuk)q<{g4$?&p:uK7lkxaJ={lGG+W01}|f|k tM9##/6 Y 0$&gffn{|FuLd'$$rl`AI08l ^QQ oo?O  0~#XIC`s<Dyy<$92O?HFk L`\Odr=du6en2xCg uZZcE7y4-d>s[(s3 ?|| 'kHqqqq <<JwaF  bI-*[iA[B>ywv6A [a!kN 7 !!! PRRRBkT;;B-'-4 l<7)_(2Z4xt]o]?z?s=g0] W<CShH^n]@@@hhhDDDddd``Xkz7n<aB2c.6Gi&3f 8pa Dsg=(h.LYf<^BA0i3Ou4? 9yf^ ^pe_>(((>>/+koy{O@v???qonjtRMu] F:tVge$66JkStgJJ?GE;vP t://m.B4 >0vcpp_ b7=KQ'XsPd&O/Ac d/sJ{q):PP Y)w ^ 4< No'd w14i7xX1dxSS={e $] >\Q+<PRRR2]i88P@D>y UOF31H?uD )#}?TA%%%%%%%/>O>wcXbN:kE-_{vQSStVWWQQQ>>>/3 vqh{.a~GcvhH(~``.&L@-@(ygQF:m27N>Jr6hx3gG`Yfkkksvv.Q=6.# uvwH.][+A1gPs9s&#=YvFKGXwY-6pB)~pj4Kfur9FCkW\AgsOC7DFF1`0lFQG (Jdg|{9;9^Z[W95l0Bl96am7AM\ sO_L4AM/56URRRG?\8;WTTF2U 4ZFzAlc5F_uE@k S0kx5k<2F-g^h{zz%&& y{ .8q;vXr)S#3gtqqe wxx;-kxu B ]x-33v;w]Nv>}]ITgvYmm-R5i)4<#j7@ax[c^$NNNqqqIII#p7orss9geeeeyP 43#dggw/(?wLkks==kn5k1|XRm34mB<cZeuvv>Bo4|FyTsp8$3xF 5apJT555gfR|/]$dn<Oq*h^B=f uYcd^OHZ6 4}_-sl@iql 4C<2- KKKLB)%%WVTIII)8~+UVu1m) VOMA|R;L8FNQjvR{GIIIIIII /y_z={8::Z9O<iBssssGGGOO;w :`yObscccWW4Ky|Y^h I nu...INNg9<& &yCw6xZ * Z(&(0g!J ~Q$LvF[ G 8p --b^^  > Ntz0fiee5(.f={l[vb- +J}~@j kv Zz+q7n+49nm?[(8g9c7@|U|Ag G 7X q^_<IizgGsL3(Ptdr=>~B4_+yBylg9W!#k % yF4 i u=u#M`11rK%%Y~)JRt1se:^/::F@m38/|S<qPVP{GIIIIIII>? ???fN$O_tm.^800k G:;;###Mf;;88 c G$\y#GnqT9y gAr\p  3j49 duL%%% B>={$$$$''C0>|paa!b2MG4UTTKKKTll 9~~~W^d8k8iOCKqILLH?[RR|jYy5h:% h:7 +cm?SyG*8;:>IY N5!bB\GdQh//^gH5m9A49rXiKL 28A Sb9CCz]II[|p>e +;;w}W]Q())=wg LoZk* hlx2Rdm{=E<i_]7Vd?+))))))) ||;pfsy7oNMM7o{w4<n6l S5fc6q ?Ge-S!nNNNVVl~@@50>#BPd !6(OCNA aggi{MHHHIIIOOC3Dhh)4gZ BB8%...((UO11hY0_d 47(00<|O`hUAUWUTW=:E2t3}BXqg BA!vC h~<!V<&Mkj0=tR'@T (Z fh96&6 eL L7pB9{+pf+8>iZCm6 37xB-T=:Npx! %%S ~!\YYb8\g`~zT*SXomhlA3Nli#wQRRRRRRR<gwOzs6NZTT600B Y19s0c?gSOA1(...933W '''N a3%?S%? 12 %XgYry.m7<^3auKen gB!1VqAi+(USSOMC#2 +tRx7mqi$'N2+l94$$22cG 2TWj *: 1vl6?2v <v3s5 3Mg3`0Nb7n{x XsK^Q6Eme@cp 9x7c d>Z `c o d?#<KY:lu#PpsyK|^i\~a|'bCII)F_'''ka)Xg_ (<F]?z\vZ;;;sV9sxzz&&&<ysxxkKfrJ o?Y+8 (:RG >|8???//s]3 2n| !AX+5AHy@<f^I sFx3 na_/L0ay kWHH} 8p3?BXQQAKu#B]\HkLNrG3 ]hV Vsasf9uTI&M2==VaCm!!111ycq D  |^z3AXm27c-kRR v=weUS\n)'YvMsM+<YT)1E#! ! R6k4X6uS>l!C7>q)pA83}W JJJOaaa`9t(18EC ZZW %4MfjK 3MUUZp {_&:<<| <==3220?5<<  puu_@l6.]T]]Yu={7h ~:&oeO44 W-8s _A9 si07mcF5o((h) N)$1;n/)<<|`R&Gi[hi9}2FyxxXf[y}WFRA 78|xs!|nz #lBAvI#8v|]9V%2KiH F85(iXzg`'i x<\B?yZirPm M BJZ' +8#g?OES_}x&+DF#X#I8&l u F#mLOFVRRRRRRRzbo^~ K0a 7XBk*++Ba;GY?d!ht>FZ^^^RR =tPvvvFF###aq GLNg_ sL~f0>G7s3# 0^ZZuH{yym%000((h!!!aaa03//3#wMk+A#&#4 3Ix?C&2Xooowww8|jICCCK&l <s&soo+W.] be>|XWUN;73)Sbrp.O-fs6c>!cW@C4{@6en/]q>\8vIri!ZD@KEp<!'7|S]())=U[$Zt)\50 C g:kyFl lFl43? & JGLG %%%%%%%'?_W7^;66ys};!/^3e?QZZa.^Ix[pihshh:+<*8 BliW^Ek]`@]AD3qW3G|6O 3?c3<BdgemFTgu-vEgrr2|Ma H) Da\h|^hn4MZ7l 86nh;;;kkkB2NHHqW$n 3 ]/_9Su06o O5a@ EBP` &6R<Yq+\b\+ ]Z :%n:k'[y]?P>'m *nry7 ^BcN;.N;o~{j*~2V\MT pDz)hdF|]W@k%MV _~ w~pkz6mKa }|W\'`7o koog1-8?O4*=c|t>gffq{Nr>?2ycg@ePI*T37t6g0(WWWaN4iE7n) ((h]-0h~>p@RR5AiN hdQa@Tj^J#!L <re@Ml( -PhxKhk{6669==}9h^n ?-<X7~*< N39)s]gg=(tl5m9<NArBd;lKB;!YH;?.x S&8E9`6w&_4/(E2'sLWPRPwgyAnM 4$ c+S8@/pj_R#N6mL81R gq]h4<cX4<?{q{oBwwwsz;>|7 M& ==='N((( ={6-ktjzX:1v#'''###33s#=00 vg#./r\i3YymA8u}}}WYflbhu+o  :hgES #b/I~\J>m4oFH*88.3jCp>b7?[v>S3 .ar^-'BP?e9Op&&iiYhTXy<;nE?B@!Z(n@'<[ TYm SQ`y7m-[Fo0?#u4={.vE?Oclj6Z @Mf4?/Q4fn<pYKgRRRRRRRR>_o}ri ma]]]CCC-ou;;;UV AFUeD 9c3gr*or.{ 6 'O# fDdee|~~~g}'oXHohmm Js%_ {{sckiAAAo={PAd9?) p4V$$]t$ -8yB]37[qK6qa+d;LLLBg|F3f>wvvcsLF{ $''l<SiY&Y.`921Z6M\rUDdgBjLYie0G&gs1r*>r22P( J $NpStx|sw%%/ x(*2hvGxHk>  >E:?Sy4t=9RRRRRRRR>?9VVVpWVVqX(z]qL9Q/n}qC[MMM C/fnjIII7n_%]3H6?o h& +4s3D.9y3RbtzSH/=3 g(={g0 :-n K/5q*Hq4QDiZh!*~DQd| sM5aoo>9yL/X0)yI@3 xL}`ccC_~+Q[p`0Y3KVP0 Sg9[BaA^uVq%`jdSUj5Io 9>|8h$q8='[]())}w(iiitgAk @hDhf>U& ya uB<Z4l|kdcGHAJJJJJJJJ~%%%k &Li$?]Y`yRSS{zz+^'KKK C7o0YhaB 9=44WTg]Arss-[VSS300}EfQ2?)1|DO`:Hj'W^faxo#$$$<<a%&&&%%` D_TT)3 Db' qpA1zWtg 8 94M_S}g>ZW;;;/]$Tljj|L{F8v~AAoS9)j39>g!g^Nd6&N!xBB l@8yHP[z:o4fMkZMy8xMA.|&O!h%%/|MB dgg \oJl6zMUgG#9F; }xd7YZu<C )c}_|$M0aaaa'O%3;K.L6g VWW^ dwgff^c***Ynd0/!u)7Kj9'O|FsFFFZZZrr2\os 9M!le^r`@>Lcd> eLazebuyyy&??73<;v{O%AYYYTtIa) ]<'PYF -( ZgwkPB !(\=8 a(e.}Wr>~ np0|g uE8{fnPAt ; WpJLHH3VA9eSMhnrX%i2ES8G5yLO!ZHN6.9!qcWs/b>' !isq<1mS]w iuZL8n)p~p=uUg}|S /`@+2bg fmmhr>Si8U94(iTA%%%%%%%%KrY&L<yGjjjSS7Kr8uVKKK@@g3gN|||ggl{~ (//of<uCzZ)sm]qafR+<c3Uj5ks] 3r<  B-B] X c TNcgF~HKKq|eK.]j}}}7lmuVqqqKHHHKzz:*@gi>DY&OATWQ(JA4Mg9Z0-jaf> dGXg4E|qKACCC74 |F3)vC|&{'66 xjy prr1ci zp4OU|]K}^VdnsL\n0]1}!ZX.7SbST-Gp/Dm`y!Y24j>3L8]) n/Aw9:$s)]kk#03#mtD?bD#W 4?kfSVHIIIIIIII<Ob<]maaaGG7ICCCUUUWW/M*/^P```__Kc(qQ. ;cF=cElziW^ 4 R`DK&k4>-{Xi 9!777///6mBeL{)44379999Mn1 aAANPyqxx5!h Aq /a.29 \R47\=|cDjXj6EjjE1jvvvp2&&F  Sw*~Sq Aa !:4Z(Gp'0AT!|C@.Y y2s \(XNrr iS#!XfLsN'<m4(uue d0p-h @8edyr>7 WM #iS)4[@#9Fp{}{+++[dloo{'OQd/((pttoH<&  <~xqqq~~}}}7.ZnXIte_r%++ .nv DFF :u*\wuuhBFG~Q (@on1{d{b v^^^yXg32hb Tdf\+b 4ELT'r`rA8la 5s@4gYf.edddP/_ 9oh6g `B>x >c ( rJ>&Mgh3.\j*8lac /`!9*j2*8 pX*W &BxN |g^? l)lH6'i?BPBgj M15_:P 8!8 Sua SR?19 _~>giYLfL0i4#Z=caABg Rjt\hh>RRRRRRRRW^DekkZ[[{u3g3>>O<x;w_Hum/--O2B$%%5eO6=_RR! &L2egvppy8%[tiEEE[[7n hAyOVC5F2T`~H1rE_qzzleeo<cbSzv>p@JJ;gggc 6!!p a/5kt paxY4p_i[9('8 iBNxb\\ gTy~:|!C63v6S J/\v-.777i 3gSaYnn. xXX1H&E{`dr[D+G4 DZ+cFBYF2isL Vs0;rPHBG59Z0fzr'`ZaQh>zJm?>TR9yf0nvk f#I Ix@ S@w1kM%0ckyR4 E>/N[nLo^UUk7 7o^rrr__9^Y4///Z9ZE#p:L &nByw'&& +WN y&%B.hE 5u%%%YYYqqqAAA^^XX)L ;Suaa!<]N8c3()))00X+^cYA@MMM---g4ixi| )/h0 =Jh^/hu GIr3N 4Y79qHo1#`n\w>#g| g!7p``X m vjK+V?iG ae`qe0 J Qr`74|UvrD# v2h 9{D(G}%DU&p0.X&KRK Qd`p|O3V8ZIw}CWr=XdT:#gZDT=0 hci?=`Fc):nRRRRRRRzG ?a4 ;vk<r vFsbwwwNf/^\RRrMs+fA`EdddmEEr(f%bg A!4:bL2sLX@#p1~K. B.!hmKA 9E%;o<mu JHH@>`ph>booo___$ukPP]59===;; >|hBF\UUQOnnn>{/j|r.|DM0qa<0E:K1@s8MhGTCi 1WGTmv+&r3gcu>a| IpZSSnp  `pPvp.]v H 0H`)K'0` 0 qc:fafX0a `0A C$$c9j!jXU=&/ ZMTO-; @[7P!PLa#\[JDP!lA|CW( A >i/ukg6H9D#>Ha2Nc@6ZS 65m`-YMAPRRRRRRzZ7S ~z7 96m*//XK.oY x{{ x4FG]-;mmmXv077799yaaaYGk8wEPh-^`N:Q84ba+++?ma ?~ ;iK#;v=vC#(l.\l5kl1((4^hmjH YYY x-s?`=a0`0HSS 2X6OzMB4= #4-F: hE4k<J[9^isADa}CAN{Eg g82ggY5sgO]L i0 aB+Wv[G 0`srr! }xX_vaPrrr^^^# Zj HSItedti*5N $\7$Y6B^n~c7X(Mtis-i Yy ~=< pD?dVZI K~)\888e + i7><22*l=QouhL75T{JIIIIII)G }?^&VVV+**rYX !27>7<<>LiLW>WYYY\\O a<FRrEs#Y:qn ={fP^^>**j+VXh9sON8V+&iMsQpokkC.M%:=>>F=B7hgYNNNnnn#39cV<Z$Bsnoo dg&2iDNy\qhuC.G3g`!!e 1SH<:;+kyP]F<Y7g~:y)n $<kDh60.]5kB3)V 160 a;`FGGipBM#b2p>(((66Z{6Ypd!/ HE1Ui9 Nf!Ay.e!KY !Zq|Ms$<6m <B!O#Kx 9p8{O Y%%M ~!wACBf<8MLe87(zJ Z1AikbjO)))))))=mg?Y[[+++ooN90saae8C]~}c[pWRRrX8qbVV` yL;< [|uk;=v7ntww755UUU <x0&&f wss[p!Qky2<HC.rQB?}' `o?22200  6md wvv^j Rapx.//?~8Caf25779s&=2q7M0_7p(r=hV{q=#>w P N $X 'E|E ReW+r Bu1vAc0a<S6e $u/8ftRpMny }NO=Y`8\8G vo eeea];1:'NX`6G{*]^P(-HYKLyBP r 4&4Ne_7iz:( A?i:7CVYI7|sx6kiijMDO6Fp<sS##t})\M SJJJJJJJO>^{ /^x-||r||sxw< _xQ#G V\IsM/<9Cl. ~D<jl #) #4~iDvss[h qttm[\\y c%0~~I&a0DpPPPdddRRR^^G`:::`c3Y !_d]]~ I)>\X]5B S t}b?3g Bt&(gB8)={. jsA2|&|g:; )3.``b VG[)p0 Y@spMNNE~]E\z3#io`p #4 8lg Y|_hh59Lu6rK3W OaP0BklOWP AO#K :B PjjjfMc`p wS4UII Hpw g0<hiIIx2c6S81K>e^09Yx=0&u<eGJJJJJJJOy/~/ &xxxddd Y mMxx84h!sC3 \I2N>fee+UWWS|=)FkN M| 4s [=_h5l2at5 n.VX0'Ou:88 o%a6m9s.]fM6 `p+sYN<:C0L/4P4< \4 jZqorZ ) & `9)h  cg!YadTp]H0>L:u#pR4+T 0;Vp33J87w...s _ FZ7XNi&xG C9j(f\i!C|Ypn {UB5!O5B#8a8NDmmmBBzNp~pRRR'|!Njj)Ba|f*Qs)*SG)Mz}+AHRRRRRRRr_AAAB233e OU7n{UVq|!xK63dS#rss)f744HDT7`i us)rr4Ap^^^e >>>+V5} C Ke{SSS O8ll!!!!7nXx-qq`Chrwwfa[eeS O13T*TGoW8saF{5+MPh4K#zIII-Bwqq1  |ama=)v -((~cwg$hvn(HOe>z B 0J|}}u edlp cMv <p2C T)O2g>oB_Z7nFp!.$C6S e4:sbPfgW'z mP 8NNLL~'+(%%/~mZqqFOF 8j4LunTXxSp4iXDiqk Z*CIIIIIIK|rpp@'L|^paxxPjA=\wwwZZyKMp (k2=@ ^4GEdqMc%Dmmmcccw 7777??? ``uX{q|Spdcc[''' ;=pUhlT|2 1a8wYirG<Zu;:SB}vx{fn SsEA@KvB>R!QQQQRR> O k|x^%L? =x:D>%tB\xzIII;w\x1h8L ]G_b)9%3^.9-]v&sre{` VMKN&-0jZa\ MIku6a9::`$|__.zW#pG):gzn  5eS T-=e*/PAlS XiN G%%%%%%/{_~9::V$nnniii<Y~Vs:7ywwttOXc ?AWTT :t())EXa )|A/fM S m~~d$.;;wK\zh fhl-**%%%XOsMMM555LO4>)SN:w\XUVm%$$$>>>'' 4ba'P7g?j8-Oh9;tWW5E }]<!i.sC.8(gnP?|g8n 'Oip#0999ly(111D]kpDyi+6sgW^P:k#w1&M7o ;qhn`&g/ Hxx2[Nne\Ld)t 6.GHmFxDy5nz)Y#BB MTA`$^jD05sx%77w A~#VRR> E ]De%b1SV1G7YuTC0j>h_KyM5_JJJJJJJ_&w%xzy$$Ci`MM'OOOz9l}} w*mGo }@c2yEh9-y| 5b1@Ke*na \o]pr%6Qg Xg:K3-Zo Q 'O<}4l{gggoo/riKqZFs4Qhh!h4o V/''cI|4 DXO gLKJJ<;p 8hw+lZkk+r|(!zw|g ['!r6/tfOOOSS///{{{ zivvvp@~3!{ydv('D0WH@<DL_@ E$QB<On XCBJJJ_L?7&N m7:e<h$E )aB bnR#92HVKIIIIIIK{k_Zdd`{^|yJJo);C/77UV ?~ Z!paqr VRRMTPP@F'b6Om=q4krc=tef<Xk.]jnn>qD~~CCC7l! 666c`s]^ZZZ[[1pd555UWW8 1Vc 8 E9sk ~ie@g ->XHw+ ;$| r<;c\(g s3f>y\UUUYY =1a'` .`-Ep\\.|w+ @:3 W8]~ 1f# C dr-B<8X[WqBe!C- ]dlj ZN$<EV: 9Alw+SLIKKO~r=uG }@d~v^ c7`]m-4fZRecBZt-=f5amZ0So`<EAk^?+))))))}9o\Zllg<sT :{8~g:}@Cqh[n 4?Qi? G3NSki0balqQQQ0VY8gK#Tkn9113jjjN>v%C#G<0gHH-[V^&B'M+W\k.8B322ijj:|WW ZfH8Z&&C 7AB>:M )@H+W>_plQPPI>0TY}t)y|[*GCRTCChpB /| {j>#'qI<Tp3amRzClxh!-y3inkKEu@j@4G  }7c ;v|G?J T'&l5F#_5j627* b)y$79s`dLFl)GS*CIIIIIIKw}#7 pe .hb>njii Vsa x}}}'N(..N|gGu.m?x'aWq#S`gLf'OYW<0aX42784lllXd' ]v(3g? [[[ NMMwmp:;;X[[;>43 ! qM E4-A8KYr%_OMeAA+Y|&3gn#Wr3gTjXj%!!EiSii) +6<+1u'^0S61`Qn7o[=<cKB@ 9r %0 2xRe!e2i1<C^!H9v<.AS#8z@at(sf)>>>p:~X\\d(=4c?< cXclabLCic 8QYSB?^SRRRRRR{^{5m_d x3s#LV!D<ynEy...evD  9rrrmB0xLKK)Si >/n8i eAisEHL]nnkkTVV  # nmgHzoHMM-((8v On\8JKK322bccCBB#+W\p!4XEqis]hU6o 'lX Lc al1H8Y :ynP4u|87]cD?_WUM2K8nO-:gd$SN?a~~~p\hD+4B@fLfc BCs3tR1DnoH;BB^-m)<03UqJJJwpC? g0Z ;'85Z@~#>uv(mVgTHUUj)))))))#n}] i'O~gN8188(e<2srrOq'LVne25bIUUUas[7B'h -5yR% MO_x;\6 =!hMMM'OqFGGG8N:Hgn6m b+V# 8tPYYCh<==)z +1sL{{_>(((222%% 0Gq7->>>_Gzl6wg 7n9l Wbs>WWWC ;v#p)~sy )|GWMz$ OoYm+c &S}_ nOMMme{0 B8233aO 9mBCr |rEB^[^kn6F72W i\Jivk$q^#kP' pf?}W.^OgA . lt21Z52>bG~!Uh*_Xh<nwG43k)4OJKSRRRRRR{~WUU-\>K{ {9h'&& &^pf0emS3QN<Y\\\XX7pLxbX=-N3E1;W^ Iw6kc~T%5 q t{PVV i5kYdyOqM[YYY[[;888;;cw233KJJ*++a#9zhAAAZZZtt ;!Zq~9::ZQhJMMHddn3g. L3Cr>c[n6mjkpB#.y9D|D W 9.] wxhSS`oM !5H2w Z r ]s*<Z&Mh G(kZcjo'6?>H;'SRR7Mxx8}q =51kDzmflj31jSBl)*Vh)|iij)))))))c/ U|FlT >yF&^D#e4K:zhQQQqq1Ay<==1Uj9m.D;O)Q|isW~1`j) o5ZD 86M \vg#GQy02]]]gkksL [.000999??`0h@))NHHif-<{OF#pQ g+a`A(8_L/_<11>3-`-jgS27[vD{e4 i:LC4 `shM00Jl.Q_LG&( D@ @ mUDMIO'y7M_Sv9g{gvU`;S~LrIZ(s*hCsT\Dnd.Mt<@DWs>i]LX?Y UP x7^^^;wd5u;Mc [pfTG3[y X:]-X0_;*TPB_67Ou =zTo%3w|>[fj^N?%%e]CjLfm6g[`4kUVc-14'-/t(Z47;7jgD4mffj-9w YUUU%%%;waO>9{~yxxkMpo 2ZPP V\i\7Q\\ t 3g =z4t k44;vl 77 3?ee9g9s+++-|Rp v g.mic [fIIsg/X`p &x~7o Axel{`=9fozzp fkbcQ%Oak5DAA+&`[8XOiN)p[c?ng*Tx`[o-_3Uhbk53Yjvut[C;P3h_]dArk4|vxq85buTPBD|'?!#3mN4)?? Y)/] ds ?~< p]3dhNgnIvk.O^f|f q~KK\33DaNUmes$C3 'O9''.7Xb'O[ qDM0yFG5mE]vIIIX/== z @_ ;_xY\wq]<Ym${<7P taT> 8p`'JIIINNcAI#J$Zvg\YX| Sbccfmu] <844 111p/]K2 I2!bn\=A-(`h9is`=I8KgN)-Y$.Zs@gyzp[(* @{$v6@08~bh7W06@q}YvXxM:}*TPB<o :thl2c;YdVmYYDIfOqWJ:u*3#c] 9uTd|v#fz iwP}d3i&Ms=ij*i7-h@ZS-kiDy!72;w _?OOOD 2d o\:;;tjj*wr{_7 lA^k q%88  I|mK./{ l6vjF D~}Cg3:zGEE&i {rU#3j6cRn;T 87&R585l^!:u@FM66lO~g*k@Bzjt yN T&EXn0( 'bzbRJ 7*$9UN*TPa?WUll g73j(^dIBiUD4Eeeejj]v#p;t`pe&[<@SF!YLK~8. f FZMp#>uTMM{6lliAwDV&/tt^z YYY ^/:s{j! vs#G.UTTQh k)S|-l@ f r90!!![>h[taw {Wys|||JJj]90Yh*f6 xYYYdHL(u6lCRi\4}vG 6{M# O9eK1vS.!Bubg3Bh 9Bc!B \=nj N:*TPB3+zv ~a:C3 -[FU<='bfef[?b3##HR?l/4'+!:h&}(cxwSxz)}KNT2.Ci<;hq ?~ nm$00%M@ -788xWl))))//G9saY3H/i[j@|!*+++--EkaaaY-||8&G #-UZ*&)`UpiswmfcZy<<<z5hG.\ppa M :fiEi43'tZOSQBv4VmiA KF\`1lYCB^}Nc/}[TPoxI&eged/ -5#rR >FN[=zm<7 E ?i~ PB* s ___6 2dHrrEZ+=s:uj  7 =OKK - 9 .]>}@xGzib3RT#mn:3i^-L?:Y2t~\ZtM^vKg9|ILL^lY3p@ooN:>(u{ 4hcgr-[ZPPPQQA\]5p&<zfI.'''55>mYVSN#6<?~Ck}5\#3I&%:q ;r. aaap??88G UV[`ipDFFug KRf%#4IYv&_1k5`18jNMx9v3]D4~p8!3F~#*Z0nzs|Mi^q  yW; :%=4ji[~>bMDgcB[8;6[6oQ'Q*TPPl0wxb6dXuYLs._ soEYsa*5VZZPwZ8uTFF ~ y3gz60smCTlaaFEtMvYMLMjF}Xp5gn&6ZFM2iQk @<'-[/_>s`??n=cM_G ;v!Cz'O;wKH;+/\{zn!'?llbbbVX1j(0hmfZR pKrTgp5 D*q9eh`!k O>K+===777??0{j%Sh3A7zhplB$$~5'Wvs`apA_A?+|jPB{{CC:sDO Ci|R6 5X`b!FhsN-6~*TPoAAAl6|=RK!1cbb iAB][[rad)^r?rd)))VAK22<Erq&gB5-a]Ks M XIsV O}6  bisK ?~ z<6nF_nPq>nu#3fs#bcc:vT;g'Od3V2777))iG!`fxx8! uP_Y#|60a[WW' t\8u F GW\pz[rMMNN`!ECsf)XK#m$34U\EBAV6-...$$A6mf}rVBE7A~GME_r%kRd i#= lIF^jL`A Zs:=--00w[G*TPBCw/ )3cI0z}b$rX*6adVVYY}ON\+>>-(j 5YZ?U@BGCVetEC2cdw7&<m]fV h1][[{#G?;;EAO5l~yzzr~.4F6mz =RHH9sV\bCo^^ oVV{mKowey]SEig;yff&qSOj855~zO.++KNNKCBcvW^6m=s'\h._.x2kA3gz8mV9097&K N?XqPiqPr]WM KfaBiGoq<; m%(.z j+SA[c<<:+B*Txx>jhhes}YdMoce?Z+WpBmftW[l]]MOOOLL >tq7J<4nFZfmmw@ LI?h155~A?X 5]rrO>]]]7&W 0a =<<<[w[nZW^86m!Q4iRVVVmm-Tf6Bk;;;---99yuG&K%zNyfx&f8 v(!\#GKQ x 2$$$dY-u+<O{[=d 95g5YXQlPP a`K/Pq BM5lYh46:tiM3Vyr1g\dTJ@Znapa@*TPK Y&gff^|YjJ~+WPhlm[x ;v9se~qME.7FHP#Ir>!Iz@(9>7_ \YD=l6gA5v1=O3sB|<k/4K:u{];m 9s]gy}8(KpSSSm6{luWKYY<Dxpj u4F4:%%eU'NDAnc^^^4iRXXXxxw wKdr Yv97jYI 7\?~ ='zw*_}o6w:<1:N} ZB#UY-? 9}bTA_\57R J:*TPB/1n_bTC .DR?auHlW/ z3!ezBi15 ~DYYYZZ 'N -!6V;mVPZPn!M3gSMc!.uS}sC|6Rl-7 AEtT;K(Z8x8XngK#qKL I? ::E ;ve\Y\-%fn2NMMf<!!ae>}zNNDNjZh&r3o<{di:u <uT& YYYop(j RB<8\`UksU i8;~xP U|C.[0o!06\Ym!fv3Tku/ 5`9B8ilCk-6E-;wLPB*f&hRY:+0emBZ  '7MsE X.pv iInyy9Lt?ZPP'9bYyH=72DpPog@Z9YvtyJebG9?$3&pfBSN <xd'O 2dH!Z/[!!aWB5Q~0cANz#G[ g8v:T/~ieZ6Fk# Fk:u>;Gg}F pG] p|RSSfW*{3;4D4[3`U\MCZ|Y=~_|>S@*T:o |dYk0$dLmHLg]\R6kFCZBA}{ Fn8}.iyaassB*TRTo&n1crss )D\UUn:\cSC ie5agj*htg333[^^A900]VES_<-h;ZkvyaV% 2-\2J 3YKE7UByXE5g!6k o3g:unp|sH1Q -KX;2--mM'Oh ;)gJT857>'CCoy0u iOEEFF_~U0=uTxrk+;'N& 6l}z'P`5@ TSKdIwg {(ckjj(;*TH_:&&&%4!!=34Ag3j%vl. fs>n_f0(#=}!'$$sB*TxqgQQQT=7 Gt 1f0/_\QQ[ <x0[>}kXPrkZ0Enrik ZJ}' 3jtT(hAtCfaXQ&~zsM;f0+RxS- )}h?9k[imd!O7\6s*HG4@G3gl6[NNt;v={7gsC]:CMCN(=rHvvuLO xvVZSk{7 {&''DDD7ogm[8K~~~MCx4kip&d1!h5All '=44 3W{8TP xpPCk l6?xQreCK2Xkzitu|ERMTuKG> 7|}}+++iUB*T<]6yds#66s t |5k//_fD_3(x Z.46 !rYYYThYRUy\>ajQ.:KH]A4EKs-UP?e-d vaPY*_RA} T>???'''99'*dfC% M) 555iiiV '/ e < 8p#G >|va 9sf[&.Xgi0 ;sLaNAfrf f:t^^^'wOUPqg}vr tNBKVV:.j(#BN_a4s.fYtMEc]? c.]RgV*TP`/_7k ~]k/j Ssgc9_z_qeRm!c!0d2R?cR4LZZxG;i9utcfeEZh2g*\5BF-aH?%Er2@%s k& j CEJ& uuu5~{#FkrEQwKx|?2))'9r$=/=p#G;0lpY2uT8 X. ]` $6og tf|%HD/G}~Vk.QPcFu@.M2+) :E]Kq&I; I&][v% u 05':*TPBwy!rClQCwpdJmcbb {Eg3hW _|8::ZGy!{EsEEENN|^!aQ[- :\6nW9M<DQI54Y.K uVhAD-8rAK9H|CO (MR-.uK->*Bl6Sj%nBBQW>#<33s&M<<y] N|To-3gcS'3> [nO1c<p8'Nchom L8100bivu_~C0aBXX_p6sssY4h \kwvqyw}WQh*_~v% !0+rO1Qh6}#9h wagt~~~^_*TPB?23gy ;<_M`\_t %KK >|8$npc;F3xsNkqBSNQ 0@ZXf R]{fdd`={R]CG24-ZOH_4vW_tX[5w(L_n f=t)M{ e5TT_.s)q4 E+`AV_IwhxaQVV 2777..n9=z`Z+iVE*fxW}dp :8pEwgIIIYMbg4.f///ANNig[sFF6moOGO:ukke/:H/feq`w(_?v3fLv;9g0Ji ESA(i %TiZh6s7y*TP_|;@2sfRgv~}}'!^H ccc :g .9sG8 85$ 9i]>~ff&LW^}uV37GR`h:rhZsf59n0K7iAgA:xg ]Hs1w&F'aRUbSGhlaw66[KZZ)k6\9}AO}E! ~da| g<1lqi a~mO VZZZSSg1S#`@3 M<222vn%KtM$nkgMM<+6mbixFSC2+936mO>7*B!{=( INNrXd *E^@pi$; l%$FVLeA]m(g>YZR( I{)3OLL:*TPBw}wEC)H9-Z/6\l4W8=z;!6XKT? RTU#B >|#f;wr-bm8eYOOfa)-$00<p {vz Q7eFtEqCY&tjhEFi976R?s# iLQV fbiw66RkN>-[l{ @mPhJvR .0W<n % x}h`s)xM81==7PfAek0aB>} vm!sq#<#vFtWiTPM<6obs ;v=z@4F9K 1c%Icbbm6*_>$$V i&8zRj|G%rw%$ |rd0(X%HYK5g`[Y9ZH XWz<x YVB*TO-Z-9]ttgYb&90Vp$ ?>!!I<sc mvNh q\6|E)yEfJ o-//~[SSL7;Do 7~HXMZu` Y33m0OftjKS}CHh2vY)a ssOzv<([R7)u3YeeeSw^d t(((..p$[P(6sVDsLCG[[`` bbbp!<)ABL E>Ia#m .<y2i}===m4yvw8qbXX+6l@bi8QQQF^^^>wsaPO>4GlfTvo^.YP/&Q@rcd>aefRk.vj?iXJ Z ZB*Th/}] &Pr+ukA<k o85K.AORgO3 :tl#gE_hkk!w^8 dbC8!jYf<OzKle(rp .6!l{6o 6[*u6rHfV`GUHe]tZ)jnO| #Gc7WTT={x ??VZ*s\~b<Hl!S< _st#F~;$$de;vlpRhADp4!h alee%l71cw}-w:u'\'YN:i$L3G### XK8U fwl\`snU&#vi-__.D%L39#XF{khkY4 K4Cw%mf !gQ:*TPB{kiii>>>.5k`Z~ 2Z@!SM. 477CiYj XO$.K s0EhVLeeeyyy_(XcJ?9u4e[is7iS|3)\'6xt15}_aRM>![9f[LGRe%vQQ.J:-x8oI =S]]]^^Ng|>X` DG%; wm7mm}'Lj*~:!M4)9H'iG.uVx0aoook~n ^x_wU ZG7s 9R { kAv$hLeRvI/r1Dhx-)%:p6;L6NhB9J (88zT Pn*TPBEK!!{vZH`! @ Ll R . {B#yf3$3'udf3+?Z6 BB%gggC @8CKcHYy-Lg3-w0;~  qJk xBh Zpnv;UoZ)my-oC-KK5y:xf6wBv!i(.]Gee%tH JI~[_tj!p!q3g!I`PPP?M/sf] G#yf8Abi<j)))_nKCCCGwLcaw_|W_}w>O?;S\Z<_bt_{xxXa'lwv |.L51qf<&F9BX^a%TJ;E(A:+3s>G!d24ZVg\*TP \|p( %''r8[n ;vl 2^zA{nBZ.]omFgrxbaAV6 bBDg3gfrnlYVV5kP .TDune-04?DHd vfZP.6e@Zl|%M@m+inRfjkI{6Q_: g6tB^QQA}A =pDD!C8+`xZ0 22hG=Z~1 |%t0+<L E siD80 8wg>sBh@|Nhe4`PQ]]a0 >wqsp95J{zzXk-G }gwwP0_|/UY8''4X3@Y@vDu38;KKJI A\Z/eWQXHSmDukN|{i EuUPB AN< f0|f=~~~b[j0*<N=^9&sffg0#49A aiWV.Z+++{w*- jF :jkv9%4]HCiS5KL<EnCj3i|rC-w4Z2Y7Lih4m 7S'Vh@{P?hE/ex)\<ym@<j_~W>#SA[hq4{IK]c'l= O'rmm-{ .%S+@4bgvEzF KUUUIJJiyY >rim6l`;^~uL<Txv111l3wB2Ac- 2 h )2BG]B;%i3H?[~>aTzu 3b1Dpu~^G2ci4:*TPBf7|3++S+V@nznPy dqqq^y$\&L};dN>H*!C39< |? @\SSCi6?Hek\@ !!!$mzsxYY((qm~lK7T]6`8t(-X4}kOV3I5 4' u Eu7<njloAcBnLt}RPkCa:Ll-!K?j :*|!\vo=rJh[x .m!6sS1OHH1c)qQ__PPpI-\VK@.AbiNRUGp&'2pn>Qqqqzz ;[d F 9`nq;v4}D}og? O >K0bnO{]NUc_!gcF sQ! )-) JidKCs<4pFDjv''C) t/Fz*TPBEsFPX>}C bgx v}iz-C\ m sff9#|3cCt6_2-5ju\VVo `VSv0ZQLkF(-idLI6 A-ZySJk59eFZB TB_*lx+ J <d|]oTDJ 2  B/kZL3N\ zV<C_ZUUUYYglWZZ#Gc-U}._ by R4 G1TN\tt u&C{{{266N3 DA4Bi|eyG03kMfgG@4 0LKKpB>>>^^^ \op3.={TTTw_W_}?>LKPXR'x SWvs NH5 FC/H zVv56dSmWD'#~CBBGUg_*TP j*6 Gz Au{Ks ; =z` GCe3mm7HgBCZ xF {UUU^^ ?D<p!9FC6FRabA4?;833K Q2 ZA[T94pivhZp` -KrM vYCKm[EiTP v6A7&Zs(9lfab}i.\nnMz'NO6hNaI 0d}mm->Jj4k.Zpp &u4upbi@. p+%%%&&fs ;vl@@@^`%5'&0aE6m?_y~?FF*TO>g>}:k=XP``]$Er~mX+l6lDnQ\D t`mmNuL]0h5dkjUmy99c#~TPBMo?/fI&A# 78qk g#GQ( &BnUCplaA kznp s>d RJcK)YJiH`ai&o[q (6v\\ yeDlw>j^!!knS`q]f%9kg}CXD;-@i Z0pBcAiM`XWjEKMADme3xFeUD)L|T n~0 =w t DsEEjp#//o!!!<{{{/]:dw<U4?*hY 222.\o?d+VC}vS@4P&8Gh$fR9-p3|D49s&\~~~=z 3JOpp0 .?{O?U *T B  Pl7p1^R8kLfwf(1Y]4k +vKgYko0@s!5m-DWm'O.][P%k@*TPvhh(5 rH 1 *Mj`f^LyR^5QG`fnXFP<eEMrRd]+W`ol> pxee%Kp eI2WPJQI >cKak f  j^ -E^-+w1_a0(+tlsiSt@i^CB TS7is&VY& Bq}I[9[M56C_Gc8g$H4~;sO.x-\n=lZ=>MW(gnx2>>~i={43 3f }+@biv>;4'&.NSBG V#MHI2 \-dO<SGkmOQ)Du'N7>o+s|.<w|}}{'tHz~\BuQFqR%5dA.j2ZopWy .oIA ;*TPBE?jlY[TTTHHv~!=oC> ] cmq9gn0xBWkqim~k ci`0 .-//IHH g 8p@&l?5NlFV FL:zlJYu@aM4 L3[^KKm=XKs hapQLLBjjshBn~'o!)vWySJ=m=U 6D6-W9C-2)tlK.+:d%6*`6f3ltco{J\\\EEgKl.aj\Z<:5LQ ^K>2 0]vESN ?ri7h( 4w\? nsH{^ xSNHOGtBc>=F@fheeFr!UtlK5EXvs1&]Xg!l1t<]rB*Tp?C2l0-PNp;k}!9 1k$3Y RYjAQ3=9}v &9Il3/ (Ga%0[( ju3iX/E yzEk6p2ilC# UD 6FAjux8St6RVK=:dzi3Ya- &v4-d7mVP$OYM$*;068E(ysUUUhnilA<=;//_]`J h q}{?? C RL`VhA\k&ICC Tf8q0pJMM;eaaaG& y'fs__e0|~m9yyu_'; n@T3[ZZKpqtQo*j E mM;4 vmcfqf9Hu6*B 8L1<dukX*TPB;yoo>33gdc|2&#VL'O sgh^4Q]]]UU f@eIG3 A/vq`PWQQy !HNGGGCciu21p;NHs>/k~ n 2hOcqCk;4m.&'vPYQ` f(e=D|_TVH w\;Xtx0p05-aquYXtr7o`1yA7DuI7<3g? T3_p:gE-\F} ;v >|+sss ?l^c\_+iTD/>$(f\CDqip1cF```>}htfvK/>G:deuQ6[>yhinX X4dh|Z3g.f5kM5p^ fCF dA;edK.>e=l0%B*Tp>qsXX] <jg/sE8K.<y^p?pfY9nGXn &M3 `C 7n |UVRT#G>x hHc8qH;S#'LTUU{NAbbY-F5^pDkRP%E?U KhQ]Q8 XL svCl0zt 94AywYhU<t'oZtuSmMnlMDZ[B}}hhiYClSV$tE<3gH3gN^GhhhFF `[Jup[9xSpsTBt 6l(--e%~ oz8l-p B.~wO$K49m!f_1E#F/k?==}-K.8qv*fDzu+OO>P kn=}t: 6l\T dii$]&O2vCo_zeC@Pph;SZR o Xpz~ _]*TPBwO>X}\xqRRdP$H5.S =Rh &g3B bbbag;K E@.]z=t'/Zhp`kOB-4| ^4;(G28qqqC sdsFkqUa&jP sTszi'vXIpr:9& hA>^swhY vt0j^ R`]7ff pVY gM5$ 8-|X9K[hqf[{A7Cl`VO7 .U$ 6 ko>H6'IRRR;Qfo }4SMEE~7l0zh/Ga3sx?OkEEcP}iK{.9|!~JikXc?xx?O8Q]](M44 ;vlDDao}Wo |@ -TB5w[psr ?3sY|I\\\nO- Mc[9 3n2n -5 ..(xb2J(''41.X@]*TPBA/j*5jT^^^UUOlqjq1W(d4hq\ NbgAF$oh 8]v0#lrl8h) 5L &[HH;vF:HMNYs#_e4&T+wX'uhb+-zwd=:8@]W'h#eDpY#gt6ZI #M9B&Bh=K ]`-9[]9zQ]/r7Bi5 h@!t|60<'''/Z:gomHHHRRy)bR3`83JRI:>i-I>;yo1`>;<d uDxbUe U8tfSA;}a/hzp% IGf 4idnn. TN6- W^h 3_o{wo xh_u~#/ ivauuq D(\Z/SG3YCX+; 5\RE3%a+ }C b+)<u<TPBf I&AOiP*xf93i&g. 93`|9.S @vo!NKOVZ*={Lt7&%%AU^^; i dj& O-# hF]UUE?*u9-EkittU5#<HXkOk0ajM0z Y&m(ET f% qComp FG 5K :jS+fF ]}ziX5vY&gan(m]TN#mnT MyF3tX[{!cGt ~ =:>> 1pn9 8cR|odN5o[gKth}p   ;v 1b*b+A0G[Ax]K<dHL&5iQ})y%K ?~h kc!t?O_}CIw_w.t .}Lhsp 2Q(1h_hfsV'2 45p dHE7v@..\n]vB 6lKmpSF]$*TPBqe5 |Tp*erug*C *v19{svvv||5kBBB|}}===[j+88xeOh^zW~3@UPPeC^zouQf|[B[`FJiNCVUUUjm.///++i+pXDU}9W sG>X@2Zpp6 qfw%uB'n.O}Nl h9&59\/*EgiES.m!I90F_wnpCmi4abqP`+mZsvHp6M 2i}Z}$O5W7YMx4o@m$55zr?#F};<SbpnAF9]hdg> G?ki9&B ={J=;w<~7K_phK(9Z}p[U$(F-JEM3 G7Zv0111**j914/?w>H1Tf?g~.cAjUDNv6d[~>*5\DZ&1eO^Hw3H3 %L ;0Z m \p]` |' HuB*T?EDD?O^xGYE!e[fEZ d%3bg-u;::ze'O 2dawV={M` /k|g w}W_OY*Rzz5kf JtWJn1aaafffB&r:N*++a&l03`i&0Xv\eWQ -{XzML:W`E (^jkF;-%VCjA> Nmt=d Mh$o!PvXI7\lywh)UafhM_NH (//GgyNKK  6l'[6 `G k;;#M/T.i'Iv_Pr+kf?Y.\pMC$i6cY]Lq m8zw O5g I i``bP Y AM2f0 g[o}0 D PW2 :AAACvag3_rN&mfHwlf8tg+$sEv i;: QhfjbF3[^^v5++ ;w\g-*TPBi{4\zSHcQgPt{@#c4:fsUU%w4wQFxxxXd+L7$$deIIIo}[o}7sG }[{ ]X47]X2_|[PPJJJ?ggeUVVgQ3%7aeRN'jf5SAmlhO4<KAsK^ *:AA\~uuZF5e=Pdk. [PPn0SS7h zhA+ujcEFbg}Y/-pHge+vgbZo ?~ 5X^3!9+TOH7mt!<|bR-vvFbgA*S'kEJh7=:d9E;|Y*^t)\0g<[[JaEHnpi9DqN ]4G0;w1 `w4 @ ;6 `Y7n0loq iW5$nsnTa(W7^.BrJzf( 3:r )rxr>z6[~!L hm.a}9G SLfPQuPB*OaC`/Y@ y'a|e&M4h =zm^w99sKKKa?O^{>?h7|> >m?zG >|q3g1 $SqqqiiiYZ@vtyf1- 29dmJ;?RjR43jkFxR:I5 XFQGk;5{:1_AxhWl=PgFM\w~\5}-xzk0Gni\mu- E 6VD2nveEl8mR Of-D<gddDFFBC<??%ZPuX~S0RlnmT z]Xc-_()tcK)))aaa{ra=j(JJJ;.UR 7V{ MYBC%Mu4$>[;H&-94@E l]v?{#G1 AAAs?+; qr{Pw }1ujhrRrfX//H2HLFu3D6[>>cc@->mv3blcQDU d<:w;w 7m@@uPB*{s=7b#Ga?5S@2UZZu o`86#Ey !7yg_z|@>^Iav3g6W^]vuG?EmC0n8H ?llgd6}YCi'\kAfuE5rD3fx5v{8U^)9nH:@ ^lQ\c-(wG}.NLxm0vyLlW:nf\DYfJsxLPm:.ifx4fF yuu5< %%%QQQ y<***Fk5g0xGbOI W{KaZ+3TRhAsC^/& :66v9u5kVrr2<a#rP33Ek2j!EPZERM ;v +WN>=((En -s'3/'IuKk(gP+(;p/^@2xkd&6@T!6vX4*h)tgdhc1MoWT$GFi}opzA m|RC3pL@ww?*TPBn+_+QC9bgH-[wk&@w?7? ;  !Q'N 6l|XpJc&0e%Kl199f =% J_v8^Xa&BsFX}x }&4pbh:d6a6f6c PUAs:)fs Zh]Ts (UX R{l;8{^-H$$HTH}-qqzU/NQGGDEAAG?u{Nq2'sr8g.}:</7=tq5];a=P 9ju9j rwjJSc+6SMPCeYo>0S{oyj)`}+]Kp&\4~u-%:vJ2LgrMh[V:-l:{;_wmiiiOV7%.Qi5f+8B* aUl]n+ $hTFZ6D:##cp4@46]vVm[^^/ Cx+W% ~! `-['g1[aZMD]'!H_L-\4j1b*]2mrNa-G)v;+ x~DGGEus*U.];]jj*-Ws'p?_~_>[Txx8qZ$ >9G<BcA()dgg]gU[n=b gy7`_(]{/~. _~'wGZ Uy5jq#|4~2f8ZX{< t.aTVL\yCV _8qYDtzJWXtLuuK;)qgp`kE5F([@V)5_G$jRC; %=DK}_-ye1gH1FC|R :tEa>y$f)9--pXz5 &w4ijp  ^: V8vUMv}F:G0g{^%8a3um6p3IgRh `y2o 9j]Cg?+7la]p1cAkW^=/i\FP0v:t>{%k2?sE5j ;w^|ylL 6'egA?{1LMt?0Rm` @LA#&Y4&9l.4f<h9/cjGfKhWXA6 `ketr^^ ///c1 1#{6t&^]oAvf;w0#o3hY=NaZ/_x0`O>~ {1vbcvqUXUVm!L0y%K7###'N-&n D+[F AS^h0!oI-yt %% e DmSQ`u)wK~iAa^@MMIV.jP>;ZK !6IAJj}]axe dxZ{d V:4p9|0giQFWO8[w)0Sn4I/V;^ A rYjKIMf1 ZuK*!V?zxrss .[eYq-:xC3B Dq@`(4F? M5pTc+1`ll{7o>sL8}~oY t\K.XH<?q F6#FNfj 'IIH-8 X-4Ec1lf~f#Lij FMl@J6R*$$6fMYb99 ;v$IHHb8~_~'I'`^1> *T0G.\I&vnqa. g}7r ?7x &6m8l1&b8t2tPaZj#++ 1 so&svn-&jE^KYiZ-@c8\l#.&Kh!H3L#f`N+ F*piaq:]&s!hLH ;'69+?a *-sKs y8l 8!k\::clVu w*H3sjj*L#M&\lpwiAC]90<rixY5uc R -k7&u8Zi0/za)t a< g+s=c NVu 1c* u<Y+|AC@1d;OAA$ JLLA G'LW&Mg|>/[>/^[9sLz f1c@df{A LaTV F0Z~aR troT&_7_OM ;iF}_~_~W^y43LT &H-L@fggO2P 0 66_zxwXoFw{xcO>SYf{XYf-a.6zyEFF4@LZJm Ph3*o+>L\bB-vkb; O[gkIFRIihwJ<DIY'DyRfv*F5hi!m7W>'N5j [q^nPN<h4_ ji#e6KW/~>W(6G *==}}pJ mcG#-A c2 8sk('/g v^J~] >z +(ZQx'j[l6lXuey=c?C.{H(cJ6 qM%OS^G_./{qc:SHc!4>P4ojaRz }vx/|/?}]N7C Y.fDfD}1B''Y;l41 fbNKM5ZONSs EmmmS/BD$[@X:>.nt 8p@40;] Ui//>0>x<LgBdvvqE0Wo k}7_~+W~_|f.Lw^NY%&P~m 0`I/^pwn; :A%m/ lgQ[v&i*sgtty:%35f} y^Y*Y>xCjh+i8]&'CJ\T~XZKNsNRD4V ;s y5#0Ni0LxJ_h 8LCV`} 5VniRd8aJk<x] zV! g9FWKe-;%lgF2vYJN>2mvE:drw*xYA;)LJJ?~NdK6mS8t& Vvc|:`YBZ6k<& K<h67$4Wv+ } X}a?p-[j2 ~:u]cwyt? >}:E| yP$#{3P>dR%SV@G@eepg49JGd8Sa;xx9Ll)8Lbg N?}[VHa/Ax*8UWt^ /_nq!\UVm\aNJ<OI)S<Yo__ >[;wa :tg9sDw~tw< Vag.cn=[O4qf;;]b\%gXPyQqYF2mV{< hf\^7GRL 2! r OT[wz 2= :){ ./f2#9oAf}EZ` e'E Z^-CiJDA=^8qHgJFcccCCC ^fMNvn__PPpYiG. 8wVt3ux:4? YdSE-@ug9 -yB +lHv >|xCaTZzj*;0]b N]gA$h]jZ~&U(aY_ ya a}vo6 C .\z7Bm %xWo!1~ ql)h Aa:(q\'Q@@lgs2ajKk?b =s79uL<~8XB;/} ;_~r&A]tug<ez'O\# `4gBBw?Eaaabbkg1`J8RJ[lWq-X0O?3m }HJS3Y@.baAi(-O3\RLKF$ L2k1g .s qCeNeoz ::sXk=is9IO&:aT)-;CVs5U q $>e nFRCW+Jh];AngHq eSG84kl0rJ\ZneX -Hr fllZa t/TBf!](%).n0Rn9.RC;WiY'O  #4| /{V>'upf~ .X[[#Xvh?47HcC9stMQS -[v_|>Aba/wy s#?O3rR@nsB|0I Fx\b$s5*p8@4C(y\AFhx G-0l=I5D EiU6V3wGGw/^v8kYL:/ v:Xou~_~<p#i{L`f!#hbXnDGGQg 73z^Y3vbqSfD1i(twlM[|ccb232rs<q!C(}JE+i+&mkafE3|jw04gR<>%&.6RQ!siD4H7jz`wXptKc \Q!}zZ;uJHhUAiTMjh9'UhB* j 9rU ;'&&GDD5]vzSNMOO} =Jbo TpfKpZ\&<I oV .zc.Q8swv7 >\$U` W \M.7).Z %L tkACPIs}4EYhQOSsas{QOW|t3aF) 3zz<L2l[2( @ 9?N2<i+) D T=#RFV}4<s ZNf8o |BDM4^xbPyy }/q 0~7 r||F? Y~}lBIPLz999qUCtwOF  <umqXJw7oG #G5k5kv-wf[Qtn}xB$fgYvC}6~r@tNPRA l~!I1iT ):s=S#gTs2\!{m5 zVg) > nT zjM= fiK -> BE D% )t^LX3220l22Vvl^ h w^I(-7ruXi/w?%YA_H8yVZ==T8BO'&&3M6J;4LCqh_);4<YxC1/ yI|#tlQXN]?Vyi zQ-5%!\rA6?G 5mtp|}/  A ;9s&'? ht<ccl%$NQf@#l gaFEZNfe#!<!V92%i ;)p4!&yCitq-OKM5yNhbrbca`O ;vH&W{1n(Xo~_~F0rO`'<yd\\kCBBaSp*~/ ~> Z%K v&j 7T3t8V_z5Zj[?=XOXuO?w]%$$n8i~l Zjx x7{_zd:<c;LYgqLmBlQoV*swiC }Ml};Sdh{ Hvb.aRSDhqq f4Lr(kZS\RR /*b[b~#z}1-<s;'Q1'$twUisvh%L v9 %Uao- 8`3pCz t%c#([b;](VsPB |tu;AUg/^he>l-i;rZn4I7+C Qn]BU NdeeQ Z~K ZhcA(ZK6} ryUVr>XZiii>|x&MtjFM8166'_|_ x'W_}c/ =1cZh g{k# 'Y?SNb1&oo ~ 7p#1Lf cACdT\MBx;fg0h9vLZE3X-14$N}UT;x k ;/ +W0b?vXTT%K sk(aUFmSN{tt44a_ o |p54 01=3iA Ig]T\381uF.>8xcag~Ci7C)4oG oaf}a.]t:uS}1&5kTCC 1}+n?+\.mg !YD$)YGbGp=byjQhvs9jti6N RD BK08*/!GYKD(u9{<%yCpI)/K  RB j ZL'C\i G<QDsO;C(L<k\TJ*%|_CFwQ2 -?JB9>A&^8W {# 2mvG c2 z!Gtqh-ZL6 S*('H9ZutZ)K# R Xo-c 8P4 0C}Maaaff&RfUZU9#`cLR[>^{'ZjQgrE#_v!RFlE?S8 Zlg1 $ 5>D=E[&'X~  #FiH'IR_Zj*rr=b >p9iqF:GWiu|G3&_~eD+o /gm NmUt7e+Vx 0|/ _/ o n_gO>S \'(rH(L ([v-}4yKo|}K^}gy66<crwJ* wI p pwX1i4[.8<k;LN[GPdVJ(C;]%DyyfivKmCZi(]%W2ASNGs<\FlXs*I+s2r^?{:ZR|04);qZhe( u&s9|QaH <w-nZ;k8hDGW/Vj:VJ>+QBj5t!g.p YJ u2EEOo C^999pA| k/x7g]T:uHE4XpA |@: rb  8p`'OnqQF/0 *a*/[/|pNY`kfgaC Yxql 4F7d3eaZ9 Hf}a+jF&j1cS =lC8SV92_dv'$4v64 O2^mZj6iYQQQU6gQ~_~C? /###a$6t-Z(;]?DYzuUnKCm&MZr;JkK$y%K? 0~ g XyY(B-0\~mb%i| #ouUJaz'`w/qkhYg?Y w6mw;NW'IvEgNixE P.amj9sLrMl`JZ%-/sZa Iig.R2Fq ?{X6Gg2MwI@B4vkB.]B[wq&{Q?K-}{ 2rs]As<qDFF  }s;wLbc M ?A|Vt] u%- ?5_fqq-4p)T{JhA!7dFWvYfnZCWZUVO84|RJ ~.gCz YPwlt>tD49+!}`INNL(fcO@a3o<x8L``/8$ ?pa1vVsc5BmFLvxorxDUp$YmuIUvA[hR O74Tt:q6t2r{OKeMH0a-'yv8 9~_~_NII5jL5j:^t2|p_~=;v {.\##F e4^zE4 x/adVVLy^{>`x$?Sx+_q=Y\H ]Y` u_ /p[n}q4/BRZvn-pa = L 8m4} iS<J1+mc'N ;S. 14mbyhsqw9$j]BRLa;2Mv4@dq?!bj 6( Q.% \&fE^{tCh WwNWN>*f<9&f/+-[O ! gDDD%(Pe w}R h pA)2jp<b.1 L:;Go0Jl*!./4]vC!Oopfsto jShtx]FG 3gNe7 ZMvz F? BEGW^;?O> o]jj[u atj]aC5k}hXq)#fSt/adDLa4 fDB'k&QA]`b=nEKCX[0ES7Cd+u+ mI&\- 5~/s@rulO81h?)L]gc.\pM0HQ X x/+++66v> rin6U vS4&s=/+D[0m-Ma4 {d{Fci0A?u}0yV!:(-jCq Q68P{z)a$ qzjh}8=z 50mk'L <w MwH=c9(;}LC m YC&@mth:3Ji.4 hpHbe^OiM|J#f NS :4CZNi 5==r^p&Qh\PpPW\RK#rzma>|1G6Fay#Fv9?? ^({RU\lk|ZcRAKgN]Z{Hr'=:viK*Y<}BZN?>Z03s tdr@]^SC0gWOhCKJ&^@ u( 'a|Y3cq` J@G!d^F8_q ]v>>;_ x>/K}/RRv~EM2buk=A*UQ;w=zE 6n8L#'mp-q2b[Vg12K`R 0&6l3kSDmIOg3U#N;fHdCnakV aT  = 0`l|W /\M*Wwy0>p@AApICpex (a0#=r-[6l<<gaaao~z?1Ma=`@\!79l7jks0 GS:ic$v8>JR#GDGG/Yd]v\tV`g8qLd6n{wtZZZGPNh;9 iQ %V:XPL&QC05 SDK;E SLZ6 ~)Sv.X.e$LK;QB3K;e P3mYiq4O1_& _WQ! s/???===m@RSN3 h9Lflq:m@{vE-i%V]PwM @gA|x|uGSAU>}'O.S/ ?h _?p@Lw=TV 3dL9p9 T1-PeAxAFI^HWP(  /X2k'ci ;vU7d}0sO >|1:}Ss.g ]H<< =+8VgddA>&&ZbU^zpH9s)SF5l0 cmTF0 _6{kQ{ K. gD/Tj$ ePLFdg~Ndv@+\M=-;GWp[-Ifb<\.Y ;-55C} ^[I?$Sx3Z%&b#~K/[ :t@uk`[?U/n#HO<3Np3g a8 c*MM W}|l_9.<LzV! {uFy HClAsu+ ^zMD 'yfcf9&Jg+O;SYnP+p S6G /g}vYaj74e3@HP>!|> 7 @`; ;u!ifYq;wwi0N\llVVfn'P(mh E ^LaRl;vs a%t y. `N#;`_ j!tPc4ZHL4fVROC\<Bib9KG Zi'Ysh~`4 ixSN2qqqxswDD $I&R:k%G(-__4[BdyIGC!ri(9 4-nxq> 3'tyN_J%|vQp(.n0Z|<{%C TsVz3$um;uEa4P4bgq%#gmp;.dmZmwNW4hM 9rK q]Td{}J-sl7{qt -gEr&YOH}I=0;bT9 K |h#5A#N vK#qd$k<l?x v y?_~uwk6oL#:uNj0EL4lH994UMpJ?ozjQn]1i|aa0sg^^?~~_~Y |AXX 1 RvV&Ju-[`\ jY?C!vVVZG SF%t)R;` ;fOWH(Pvf} x`5;`2p`cG:y!qjqXdA tJv\lx. RCkgXRRB$6$4u8VR6N f9O_%MbB1Kv!AHs 9Z9KPsCiX vUHk.8- : p/)dq^Q1 Z|?U]VH/Z<{ q>G {(Z~ )heAwsByegg[_~0Sv<xphh(p P|}#pi)WuJQg RMlelt ;(`Tj^zM6mm]41r)S^6[FEE)hXkfKd .6Q?b$r1> [NT)s|6c eI-:70-@j ^+m4w\D ;FW V| 6] bO@/{oo\fmxxA4Qk>1'*qb9%8gdd :u*[h.#1ln.v?~/^v[^7233 S~*:u_+  ;F M/_>~gV`A4T-M.GR8?l9W_Xb]ti&=V*U~SM6}7v_  CLw%~PCbTdV^jz(<xC YimtFJYJ CbB`JM!2B%&Rf7LpvGJ5.)LP_ *m9/}rssWaigN7N0 a ika=<aY]_!(-_t^ZJu |9g!\.dKuYSY:v [?Q!{UB'`s=y$OWhaI-g FeAG #_u. ] B&YGZj F32:! M \jI7W5OWmh ~0\jj637IPVsk08q<0|t0::Fb?6Riii6mfd0IHKc@\$2orf3 V Z'[b@yN&Rl8d#A</ EOeetVZSN/[V5mVp$i<fP~_~=uM8gxmg A{/>\L (s;z(v|I&yQ:v8f O?+r}[Pvu (PGg{\ $#pQ1 ;G 0iX CO>O?(-hu\[ i] G [xg}vChyC +t) L8uTo9.6633'N. 1 Df~gmGI&LCVpLRmqiV&2.!l L]WiYJJnRB_P]>srgsCM0* *6ItkeiUCAqNe\ h}0%gwo7v8v3gfeedLBfa/B6i%LV*;de rsqxy`XalA(T]gwRgwm:  i/ d  a88u-~i]o_Az+vqDE?(:f(Q[>|0L%@f F/?~<19G5b VaFf!xW5G ?a6)SL6m<h%K \j5kBBB`iL`s]vE(5$hrc0K0d 5r3'`nyHI 2+Q$!(&YrqXfhD'S+C|1NSf&gDp5gJg*1x) :xLs4Cw{v{aa!'L@;sNdxtm?/_ =*lA (& 2Av474$S%x--`C^z5m#jQn`3 3k |A}=W@ cceffsjN6lxRu?qOzF]vi7( < OGi q 6 {W^y%0W`Y0yoe% 0K#GYf8v=t=c`tPdi\aZ>l\%]z R (4wXK -hJPsRUW5[+{ _kZ~RjV+3?YIe_:u .m1\r`0OFs@ z!Cji +\~iedFSn.rY{#2sv- f @'w$ 4a6mZ-q ;=vBCyfZ w KZr?.] Q!NAhAYZhP6xourI/_ IR%&&mDySs!y0BNr XH brc+/s _g|6iHIN4p-W rFS9~)SRQsam} `Oq N:%|$Sc|eRmP^  ^uoAlllFd3/s [$Gb qT-. uCPZPntcH E`2''7o^pa Il! z1iW ;V@ Ols~|ar}EEEs10K?_1VW*t F(-7448 d4rB Mg l.\O( )SYf ctl{W^V3ax8&`?0;0L VF@vjIYG BAa M& t=JJN yiFMqy'Dh{!mNjNEQxp:sl+] jz:/9 6 ;v f\A[6o:u*lnm8m!??L(t:N/PZP /! ?9l5XTPyERmcVgntJYzA;y9lQ :th 3tlj X>DJO=qx!h:0*Y=Oif1i;:jbl1]NyKySeal Ewc_/ 9_-=;tEw\lL Xka->H.@Mzc ( v2u'$=5Qhl03m;5$$C AQ`2 H2`8 ?[ha+>//N6FM0^:uwF}x(WXq4^}sP UvcR^$0i;b.]4h :SWZn5!!yyy8 lm&LGf*5jha6mhHQ ?F7>UV~)taBL4ww8ZLTYe ?AY(M`?2@ >e._oCEEE` `vP}5iSN2el[Pp!Jr6AA8SDeg9sLB5W3m E+}K`CoqBZk ~WzGDUTro_0nwDD[W^p0;`g xK5uh vi+-PZ|gZ:'SP~!2=u1BrqhyaU+FqKKK `3l]X]R9`g a+u_~Q@I= ? 1|pYGn^:Hp\J&Bw?6s ;Zx _M^3=DDP@ZfZYd$Mn)|`9=2)4xx(m~MIaLD''qk4^ mnRSGG!!dw9;av344F6qi&'>/oNX53 t(ee-6&(MA TKuR2vJLx0_?{Con 4^_V-Vo/ ?#;w\~*F}i =z =f+k}[kG'x?#8(n\z;()z* _ J77DX4 i~p k_eRmy h-=&!L`#hfp;N >#`B >l/fmbQOc!4Cq<T~ahZyl%UVBr ; u9BD[:  >\6G<s] ;^zBoZ7\[_BcDW%Z6; JTpc!LiI ^+vISW|\`?Ag%t o3f N(A} %0whl;(7`O 9&#ei'`.Sha-].aN< 6B<Sfs@F Gl` r9 F9jdhurol5Wde Vs 3`bDaea)fA M%L9gF 8 4(?? o!!!4F= 7 vsp2/~i4}> 9GgB+OJ ed:ad;!xY.geeEGGYiN:{Gub&M6]J'Ox6+&&s;w4i C_GDliCP'@ H#-gNC z6wy_~'3Dtw m\N;a 09_XxI?cFj0-(BGxh/^E_r m;:v47)03cwr):;9E |b 4IW1dU7 eRD  >dupz!+mYF/W6LiC\Nts=u)Q Vf]Cx.9geAlBtE:ujMQ_F O+zqAZbg~W]RlSy. ZBC!##N9sbccVt!hhz8ifws0.<N 8%&_Fn9*dsI| [L4m)5PLjB'<3d3tYk :PC\a2)Vj7fo_p.Z6?~0g?_~uo=bJV-+r+ix\4Xo( 9#^4ixNxs+a*[YF;Zj6 F 6maa{wd}`V]|~8r!ii2*iH:qChn(;0-pit4HKOC#VS!] 999;vn:u<iI{4AOb-[b23s )((8}PJc(yg-LMZ+`-yX:bRy;tmvm -))1G3 I~ B2~(%t66_t~\FfffyF{n_Td$lp60W; RIH7aTn ;zi-6xs/MC(/Pn.3e_VuE\I3]S>g%pVz] Xj c<y$ncvh ]ftl&j9F|arTh%Ix3fw/eXXP=s\-=ZE(5 A 226 dR!NID1>xs Jmy=HN `mfvNB\ 43467T /)5D >UgW^06IeqaMa [ yAV<~_~= _KSNy*#:)*i]CyS J:m  =zFY/0aE/|Qfp4QC2 R:P4BsC9-] V{FZvik3rLZg`@wO&baaa3g 4h;'Q^=8tpw1 v ;v*8m T >-L: R^AhNVZr:2 6!k~i)5-=H'WRjzhR_(o<h7mXg8GFq5j$ e; AK8Q|cD3rw jtWgY-|)qhY_ Tbg;1B ageI<f0WW7qUV]6}CfeY5%wjn24;(wFV5']H0 ?~< 3XN!0a Be &;@I#F4X<Mr;;DQ6f0-gvD &!#4M}tNI i &^NiI x4h@P`[7n mHuC`ngyO}_~]Urssi:i$21V*;t Zy H itK$#Ge/ ;vl=7o_mgbJ~07o. t a wd-*ibpL | *iNy:siJ9J{ J/;?M6wy ?8 9a[|9 Eawnq =~'N\h399 .MmPhSt[q}YN[aj8$E~j8!pU^&O}1E-_c% Pzm-P9zgEvlZM4Yt)YHBu.]RZ7<Vh+<:r%m.vwnT./_+v6KB/8Z5B };[ aG@Uo7 ;v >5]]`HX8gPu(}^N>iC=Dhq>1M5kFZ*UF3xpK@2_R3I6sJ3mWEYx@g -o?h-d 7&(5S9%<l$ T=Eu=<!>>ybgEPCk b:DTc3a[we e6}efd)p/?<uh|4I]J.ie+CeCjT:~rx a`v~W@]Fo_~&L={6 {N:u%9jHhMFopGSdp4tqG78UBo ~ 2l{FwCopwABz1xT^vy!M[bExxx\\\fffnnn0v;P9:PH% apG1sD96V4B;46jeY.-Q7Z2Q e+B|.\hUw](82.638G 9nDUZ&$$Af ctC6(\q.Iu#8d/ t/mfw 9 sKZ; &Mj@atG8#t{iV2^wk/ ;Tp(s:dw(K'Ox(Eb ;`x.tB J g:>N3[r@9L\rQha!%!muLa #l@91a<a.JP'*ddv9L2nAHdSLg`{A*1:L HE( Mg[)z+n <_e+--#c_Q0xMJ/+3g3P ?};h%ee6u9:e[C]tH Kp!ix0=x`LL3l ;_  %|5xT~~ x%rj2+W^? VjJIai#o: vIvo ~l/^|W~i8t3f<xpm+7]ez3f9Cs'Lb :pw|#64K3>+D-w4EyREDE.-dG*.^Pse8kKi MC?y1NB{ i|7o~Zj%7:t:1!VJ}uj_ V5= .VRT(^\eKK_KY*XF ^*U6DA]Y~V. 8&MFN: Zv>g^2=%f|'QQo{;8r1Cn`k<4w-[fnPRe}!bQ$&\<v??8Dh#l)5x\-Y5lGRRBJ9Li^2uIvv$^eM$~=-Tm(<.6u[.Geff&R@*6))/_w}wQxkq(k@%~{e(-tj}Glw\Gy( J7DZIu0 !CkW~}P#Dbdq/]$7<sLPZI.8>1jRv? ZVvPL uDi \ J4)U$6/c=w+Vp(PC5jm)'/Y8l=a/8~t`JEp_4KG[m%8k[c)Q]t(. Zivv t)g*J<WbPM x6*@kmGhFVV3gfee;/pClT1:aJ-;LG{%}7tai/Rh);g8ufjCnzv|{up 322XukBG jCfrOw 5 ^L>q t(OX eOa^:ua1 6AcC0P>\!d (LHH 7D3^6d6Tf9!p` %ibEf`] )|9D[yfm tT 4SL5qc) qZ |&M^g999I~~A/zt'vK`ryP^CBi LoO($ G ] fd GWblk/F\ji z*Udee]te9kZvp'Z;E4JseOD&(HP+p ]!iN6`yy 8m 6 [ zH._FMvu!3gxo?+hn'q82fE%;:hsJX]pe^Z@- .d=}ZH> E<8Efgg\tm#s=GDD_~ 4'`8ra. (6 TyD3ko4gE0'\]BRyLB+(sZ >X WGP[y*ztkdu>j CD=T>CO:U`qVK/222 pr_n 2o)#?~p&x5G%H0pf?0m5#61fbfW$2BO@#BRS3IL^vsa~O>uMVZ}m`9:3CF#B~_~~tONNSCjt+wy=8E$eG@DH4 9mqcDD+'OE r? X4+*r-FY@#-hd DAh.4BiD&q4H# A4gH#*Y`# ~_af3!!!'N77 /_vmf:_~}TTLr O= Va ;SA\h]XZ(EUi_d +++..v^wG]veyus>t]cVFgyR1Yh]64?y#he_qym$JsR;zlTE3g^X Dvv+:v( {w8#vS%7 OnuvQ{jVH84^IC&LhP4OG ZC'Icq~2 do{Bl[Hm /4`$AG3u9Nn3?!6u$&[fmdq/m[s VF;t~ N at(66mU llq]00}_~]R~c=VF<1c2=VPBia9-& 7s:Q-8K JK^Z&&8GeK) {O)svZP uZvwP!Fw4aiCH+ql7 CW<?6lN/ rsswN:U!kw_:v8h)'/]d111GX-SY;Evh!p[ .w(-+;h zZiM;3|58 yhxFI;mjC ~ ;vLV`7;v.)U^$eSK+ AE ^)LRD W-ocM4zzg/1oo([-t j[!:-7 /g6l* m ~P )E!$SyyyQ<[ 9rd A)x%U<tzza4!_hufn6l eZ$dq`3LlkIT.ASQ`>y#11!!>%<'s2p5h@R!F rhL&Ta#G_?aqmyoAZUYYYhQg_~P|S|7}t5)+::4_ aaaK.:uPf w8(KSBY@|H)d]\  i3)y&OL0B={.^n3<LDAh^LA D !iIiVfs+V&e4h!)A4a|?Pff[g5h[W&+W^Yf={ 9b<`e#&]H5 94M! ^E!@tg .b 8 <x0>>>w6*y;v9&f o J7mtD3EA\t .`w4Ts5r#} cK>J V ;N*CBUArYF'qh/g>sBs=zZ~cnN4x#^0(vVbt_ph?#y0O!:h8.XXV-84CKY4gMcuCPK `69k%rwEMQ|6^Lb&3uXl# N4Xf4ad;8RhT:$uF.M.T+/~lA~q#+[0_> `sks`Ch/}6hzd^QesJ67& ;ffVg:uZl #q+OHH >7{ *7:$FC419s3ifBe.Mh m_Wkm M+#Z ^W2H i!41Tek`%u]GZJe} q ac{||5k&OgO8w}?3;]v6m3}6#g*KshJ r_OG;SJ5g3cccc)LnkQp#b}^:;g?j\XuqE _Q.R'vPe^t2^ PRY{EyUr-aSx]6MNwKm\ $!!!@L}N3{ysU =E##?Y6}]unvJecP+=3Ac{D>mt<4cfBy&l;77X>)l-68~3&a;h0g:u1cla!fNVVR@.[Ifvj1vQ($gFs#4yn 8 7- Ip=vah1&&A^ Q{% 4 <!UTCmtMT>9s nB_1}|0ATPA]7h $>Udih5k+Wb[o 0Mx[npww7F/>?F%MJjuy:p3 q%ee+*bSA*\Fku &yCC0h &-E)#MIiiKSCC5#-57h_U\( 'hi7C'N<2eJ$>|8@ie$$$`y0 8j!Dk@0O^ihEcC6lXJ8y^j9sfw#mlvjf4}M>j_}ZR>M0( PiiKkZp-Q5MaY7}G`y7m1Edz Pk*7SNU)4 N'''/Z (t$39$ylABk/@ t% 4M`BW|w(5HmA9Lg0&O2gCpa2C\Lwg2lE<S$6< fxQF]EDka)4TSen!~1Mdu=/-?:1NlwMt: LXa}a&ga<{sPATP7HkwkjYh8Z[f 'M-O`UVrKJJ Kn <aYFUvP@OoA~ +Wd/_UcI7SmoehHMKt454wps4jC-SgCI mqqMh!H pZk#|=k F1-;-maejhM K iC6g<{m3l)6-['xu& 8sG }?<CSEK:6L5A|W>}*-Tf-OG#Gm(pNm7A$ [c:<% 7#hT>lvv oG3_hr+epD h.zR1Wg4;a.f|HKL{+j1F=Q c~Qd1 WgfiqEDk]%+$ ; BMgkfo(! D 1|\'aGQV8us*ACii)v}vvH2EouVYl#6)S0F{kKAB;c9sC=Dim@3U H[ )j-Z0.][r\h:Vy;+D4h:?6 GE*i3+H5<q MSCDZ+0%._m >x`e))ijw^'N)#hiBP-FZ@NJY%% sx0 y3\6n31g+W.X`C Pw< ywB4Ey5OYIa$oMDQ7MRe hM)wAOXqV'T=(6*VNIIYx1l Ln8_jMFVbLm;d>SwBBxM 2geeXO0 qJ]$FME]9|2up2L8i%D 0_ %51pJDtu56+c=kjcjUA*k3u>1gSIQaE v%Kx Pff&P05Mm>\p|TPA .$%%N-!!a]TmV}p<VQQ={oZhU>} 9d)p_>v$g;_WSK(VJW_Y]%Djh%6[}ZN.i k4eU.m\!h &4-; ZjFZHs(-gIYt\}G\( lTKhX1`5 m/..jQQ\.* bK) mbCJ_;r{mFQ3flXbM_e2f(Q~:oJ)h)-djE%.l'i]QmWjM%Mx7 A[?Oyi8k6OY%]%K77KH4I9nOYsxQzv ~S&8v?4 v[nMLLn};2vF3[.\!)Pe)4:1bH= hV:jhqc \X;& Nb5j=S6{Z] :PSL u0}:LV#e0+/<c jRt* kTPAVN4hFq!S3A-UV) FK?P_~/w^5 m\tKMm@Idi&:t.\@f)EVq+j+P(:V} D[T&(Ds4ZwV & D#hU;T.dP:H35V\`}50`QN8G ep!y~tYR-sV$VC\ ahn [8val\J/_>w%&&vAl fOp1G3q'fc_#qDHYj?dx)F%Txk<WI {]O?kSv*F=eJn:--)4z IE%ak{ lhH@ v0x\ ?aMMMvv6/7/..u+O s #&Lu9%:M ! :b#^p1%)\&js< 7IB4dU<Mb/mFLe 9Wqn1n0uS:Sy0;EZ@JGcsO ?OhFFK&2={7pVwn*^p# 4_xzl<gwUV{NLLF&M8oc=v1.MRFN`mF6&L8b!] 6%rcAm!TbmQK+jHHESRNCiSC$B:M JsM&0GH#ljSDZBQ$ iYQ;k `Kcd2 yfSKvh5M %P)iZ9#pFy{233U3k7n??gYO'ukiB}$yutE&u3PNy%gToFReCwkTH)[nou;7M7*vMo4w\jq)tBBjHKK8rx WaitMml&oa< C B$ {-$3y-0#I S{Z!xS` ;{H 6<g_ EQQcM zOQOLjh9`y{91fG] %Qw3w)sMsss-?IX/y?7*_3 {1mbP:k#&3?1ncn;s[IF) 9vYfaKc' H:.z?ssIZ`Vs1.CJk)IX% 7G-iK))5*iV[ GVawi:DZXVFq# 89/X`u|3gv1 9N% E!y9$BKe1 }]vm [vX-[p_XXz6#` CTlVn(?BO ngx/h;q75KP?)a SW)ef GZ#V0^U {V=1[6 -E_VWCNXt)|ud{ Z2>s\?k7%<vGQG!gOJJ .h.pGnz^w?k; W:&Z GHlYz\1fIL]Fiyo+Wq k>XCY= _$=3@W{]#iX0LNNhnn.B3f`o>\ $7 TPAu( % h57+3g/:1tHyQa4>2qK67oCh6m+11h/u{ }Q) }mu u s$OyfRgP[ZWAKk]mHR<& A=94@&E%4H1i8 j8h5# p 9c9gfV}oo\rK.Q ibKqh{ZqKK Uix3{7l;3 )|KovJKK m[O>-x<i`85Lav< y<} 3a9<Imxw#_kbqniX.0hZyV}5&% S7 v6g;X'Mzznw Fu4ilkh&G+UM)hr&w$D70Fhz JRhN mxMWV{`V|<A4BGyUh]F su5$H}zh KIANI UL+ 1&HC?g]v P1ATPA]wqqR\!M gu> }pTC%K9NAFDGG#cKK K %aCOG[htsdee3fWCa=t{ <{pz?1'Zu9UnO M$yMi;JKa(7PJer Gv6rM Z0nOCSF:M.BJE /.]_:_|.\x\tiu:j5!h-R BRj|ZUIp WVVnq5<+**`WK.7wW&###GH?b1H8VV#zfxTQ-e){<NzD9% C8!b.DNJN7S?q5|;jQ6?lZ^(^o?iV[P eko4uAO{N<Yl6k d5Z ^>%q?A=Vg#G {]<@f2- sJL`:V[ v^`:4-Rx]css;K&>x*lD./#M]k`n6(4&=GtU)8 ^ 0({G]-[?mY0MLLp<8 a]k\wrL9?TPAu /@rH$gS 6m`%/[l9)))4 21%Hia>--C%adg2F2p@Btnuf~tVz9|B8\h TpxiUls>}CJMM=yJ`e vu&w-kATmL:JP;0Ji|5i%2jaAi`cnaV9c3)50h>w?O9p;_8qb-ZQMDj ZOhC%4xx;x 7n v3I6/_{y=77wZ|7.il;CZn Z#^\Oz1l0T zTL64!B- 4 3;MmWZ( J%<kmciRA gn|{HUgAKhSApm6!h'Ne7is~>~ hG( IAyAdCIs;4_'m&:jaqG\5 x%{k_Ny( $R}$S*|xH+++Y e|}F)f%Y;PBzlxW2d}7\a%4q ;R1;.3k*g}sQQ q}13YFLgSBK.;w. nzPEK N:)/*|HAiA^Y$?/rrS3S<0_: H VZ-1z |pUU ?K/! ${I.]gV5r\E~\ZAVyqgJ)=/ qfm-rC ilnHYh5#MDX4 PJUqc(E G$5T&mqwH~8:VBz^2Vl1|r+9x~Y8 |Zx3E;w_.//^RR{Ia*i-D-<t ~a2niuW&v ENF ;7keeep-\tC'vi D`3^=+]@J;7C8dqh)/`u Yc.xp x2giH%/ah ROY%vVL[/Qp7V@oA4{JM8Ol  77Hq{ ^=y60|JB[c&s >| A =z.yy0Le g;9%3:qtQqSv3:!_7~\W' p'hG'khzvMU 3\tmOn;R\RIk- gl>XqqC51m|I][ G g.NiWPPLko4H*8%9V1<k- b$ +**K;[uoeEeHC KJtTP4/uEB999i _:iHw>tp8d7o{7 1 -eoQF;s~v~e5qO\PsZ6mk 4&Qx4hHK1iHSPJsMh D-'i32sns_|r?rG }'|rOO= x0JVyf` 4.G8 (v^h3Lgcq~{ i]v=lpHWD >W9OngD46g9&FP4fN V tP4vZYCtT4:LR\ RZ6u+x- ;n J69pFo {S&`vIaZe`vnXFgQ3ni1:j 'NkSN%r3c!3R/L]AjkZyG {k=Z053lU/cA&Uuk<xHoV7lA5nY@iaV5u@umMm?// 3L4 V \!aU+s0 C)L&pATPA]_{4%%%M!gNHbp#??pGG] ?iy8?_Z3 pZ rN.p^aNV(#-#y[7kF_G 6jiX+ <I0 u69Wr# (2 L0Y0w>6CZQR '9]l-2j!&KhmOC Jy6qiU%MP&c*v6 \ZJ<~1oMp}9B]p Gqj?r=EMag^|3g>WS3QhAks$%:#}-Vi-<y$vFe***wwgeeC5em&M}vq.0Q4Qlx+ZMGQ w/sas!h#~X?+ |nq<fr8$(G\S-*cIvaJ<uyo5U[$ZBaMTbhz6Eq rh4Q333acB%9.IC3mqM^!FfddP#A J>&}\- ;ubmpgbN9Bn< rrj ?Ot0g{ WuTt$v{lUpZ/Gk=A 8\ 55p-%(:t < G6l_`g'i B -?ATPA]w<U61dV.2g? gyh\YR8 SZ<*qt4RV.-).*);80?vP3tD(@eh('S&.fBEy#/3=3yd _]:vlpkn-??{Wcv8 ft#<IfG2W_}7~??Ww4)M }7l9(Mdm v-hL$F}y7CEcC{LBirwDI%m4Ze*i{F'iRAxO sECsX4s/{vOyof4 /@?4e7gBR59`#cd@tQKYpS f 8p k}9hw{yBm* )4RJGK7| 9QhJ8s HZlHdgr^l&?Uvl I~N h`\ m=K02&5(++[xwMjRB5>qs\=GBp|1W'v73ydJh.Cyf7[E|a;-X=KG3uJY@u?RNxgd&.jQD`*X3o`Pxg}\Wu`Y}YPy}0s ag ? 0A*n3 DnnQ?[& mRjj:/Ly[Yp?'EN0fps/9] \XN0E 8[I#o.onE7%EhM~aP0u R3GxI7lo[wy%K _X9kXdWVrl/[L6VHh)J%Y!gtZR@G\iI7vO/ni 7:_r>/\zBe49SbC6 qE  %A663Mwf0@2P \QQQx3f6vikOH$p}]a0(M; ruRXCVD!U`#~G \J-DZv)~%h7|%> %-\}2g-=K8^IM_Z%~ qq+++W%L5J;Yh `1=s%7D Qr4i%f;t0eb AR&gdxqIq?BDWRyc7\!\^ <] FjwA3=SyOm;W3r[vT@x8n B'8Yfj8-g 8J TPAvscAuh 37:g?/[lFf.]w*:h)!fqD8JFpv:Fy)uD )t~ hAKY\dggFge 1rsZt ?l@M6]t2dH(; 0:W74=;6N{-[3<={K\= -i gSZe3_[Z.  Zc hjPAi)MLI%m4o8ZV4KGHH04J!b;50|eG|_~!x:.sq-p7ng`35w\K)hi+ 6m wk]t%yy]w%''wUeZZi`X|v%56dUu|<*i6GD{<}bD q6+TCEvF6jKu?pukv mfKNafYn xA`r=Pn*]M>KeF~jGQLo$l7?kO>ow h]X8xYnKGjHg`n@J<cLUSZv@yP8*pN\1WN@i7dYD4o}+9pF{Np/).Zi.9c7{q E ipyAmV -ATPA h1c T*:VU*VqF;/X`qCqAgDh #Gh# PpDrrQOKy9ed x90 3q:JIJOJ 6xPB>viuiQ_RRRII)S***ms 6m'==} -+G }_M K@ F-Z0.th6Af>IB/ R4(;$.mH#yi UMDZ\HS31grkPA23|6Qq#v5D2S< aaiYxqpphBs iu@4eM)h]3l6ozjL;^36pv4&MI<tkDfjtVKQqp#@%^UA8ZkTYZ Vaj5izO*A8xB*w<SEaCnq*oPXlE/hPj( TW3&{oZvm\_ a\d5$oh?gmm<E a1P[n*e`WH`gf`gP0DSs\}.u;6?Hjry6|UxP3Ks xB7u|y/k< ;TY:7q- s2X`)))tD >4X` CLGYY~Ud&p#A9*? . I ?%8q@i/X; KL(/|NpTQ!#..*E r G$\Tl^9^hTpi$]/9G b.* LJMN:w  F;on.] 6M6mc!p;e o3g~_|4&-j V!M7I3h)6t6XS5 U[;$Y$yC\(49jCCH48#n'A|;=ucx8?u z +g@); ;KBa+oA(4rCjJySoqu ;c3Aph=/^ --m#ez @ ;kV;'.tle.1R\'|u-pbgm>MYhjehJ&R 5&Ph5l1oH8CV11uth^Us\l>7yr`zO:ctlX#N?gyV>rLgMu{:lD(g_#G&OL;&8&\dAP Y#&2n8phL By`(b08#t9E9DwpCHsO287x GiK9 UuLx&[n6lp bO;aN%eXs?k=$s0*? ?[/D h;MVX`m8on&)u)vF.E6 <Z# -ehP pQ(X4+D] !8T9+jA\'Fv hqpt(3=;59i$$smZp:- HkG;w. f[vSN?iwiKKL=eb-VcZ4R[Z*k%[<M8Z<#-!h. i Z%mKPy.$U.WC5EpbG /2eo : Ba3Q~|sBa{A4<S( p!iE)L0X1}tsMi.vk2z-[j(9g %&&vAxkvvac!k} OhO5ti{ TiX(4j%>9jS2Zw=]0MZjFZD84gSgKzYy2j6 AkcW5|zMJ^C{5=ss\3U6fm'PEc}=Kg?gmY]%le 9[Zh#cvIb[afPsCk\~cfnhp 1\]1=B93fIaok59&3nL{LYgF;U G$vj8 <(//d~gXmb?9*[ s;=V2L)hC Ni #M6\rE?O:tuV<o+-v|.*)-v0'?sC#tFE sLqqqKC4(D 48sAvv:PF84ud23<0_ :oe #0rssUV :t_O_xX|6[ V&Dk}Zv]*[E7EM p{V $hp4h>4I9vJDZKkF4MZk6Aixk^ /5NY/]$.vv;'BH?3gb9&` -$h3h>xwm6&O>lGc=g[] dG</]6*++g$Z}MRR}&|xl%g5_f$\gl218_sU\rKr|]__gMgGoDz-v&)'S%@rm;Yu4Yd)=h Vh mV3>~I'p6; W7HnjpajA)gmX2 A.E:pz7;975dZsChrnj99d~\ZfgU8=iHUY:=5ZeWHE z7pw[w)hs;Kq#rc^RZ$*r F}a&1xs0az}v{<S8sPATP7>r7.vaZTv}a\rw j2?'k|yQecE B8E>;Fq)./* t$ mmPHs($?!}9N(Qs F\jh'#D:7ANBL8ui#G>t}zcA F(GPC-//1cp\s8q_}+W0 Mh/r\+LvSIlc-=U&{Qj[HGPJ#4/#uH6iSLZMGKDPmkY2\riDv>coATm|7(v~_r9bsg{7;#vH]G^{ 4XA jIAFOr n`Y~ Bk-< vM; )Dxb8+**MVXX+/0`p ii}HU*hSGEgqijI. -_-gg) A8T4!<5y9p>B+F-:Key8.24mnYi9OV]&Pl l6eKVrA_= x`7 <lfyspgL=x9nAgKYnh&v~_si]g201em<y2Gl$$.bC\$34BGk=336O{K l$WlH Ye!2NWRsC ^EGHbpB} 8m< 35m9*??ts= /MxcRpuVp{w|5+NEyLqs*zbAG-typs.V0XPh[DYLG(8B(.EFi!f83 4/((qt~NVAvF8 2sRS: }-[h#NN##c K{7 { ~_~ycvZ-XPRgT Nkvi$9-ij As.; UM1F4t98vPLZeRFZEjOm.-HgxIC[R&;G Z8?FE8|k>yNrOG?7> ?bKKy8DZ l 8F4}={l 3;c={QFsk.IYkbiRYj|ZR3yINsNY4@P1WaKL%]LkZFJG\\KZp!Uyp%iOx7y$dqE`I> M!] 0[ZjgB/zn$~`n&]n|#B-Y5oX:;8r{vv #Z  P<s[ gxchtf $G ~Jy_B5P5]'jFzMG\{FMM.5v$keksss)Gtm+[a}-k-[ ~3;[GPATP?Q^?k0'.VQECKwG{mZjESLPs3 FY 3hT@Q? EFEJDI;{!h^nha%CB9'*0QR & sa Att(^@( h'e9#6-}{cV-[4oc-Z O:uupG\o!Q>McSw?%QlRgYbS6si0$nD({9;skTGt4h6%hNHS[CK#hJKh0i?W/__|7v&barm: Q.|x7_;'EA)Ks77~/<ydQBs3 afx0`VX1;55Fs;wNIIoN]{x[*pV3 q)7z 3WmjVc?# )j%6KDV mTc3(_!]6KdkN|jroVe7!_MA[{*UyZ5 aQ4'#Fe08v%6 wsP %T!}- WE[B7o0IsvxEg<U^=79g\m NZ/eXT3]@G&LfnrtL4D U%_t%Sd :tXsp~p$C!5l1?C?kH9*aK<?zDvMpmUV-^ /oLIt\!EcDfFhlh!|.uD # tYX8:Q_Ia~.? v\ Yp0.B\u'DAGQ(:YQ/%vs^VtdDnz*.LMOHKOJL qA&ki#G3fp saOCHCPqOYv[!Ala>*.T;iZuk:0heoh>j8+JGG%kDU4ME-) ^X>#y{4! s g22pI'Dyz^{W~//oC{YS'@gad>c0[/4\ ;; R-`/\;Irrr`Z8p wnzlXSh*[5.^EZ9[34$< l3yK9(L &KsDK9gVu9j9GpoK|K1uAF\(6&+##wd *Ooeq26m zGnlKJ |6gY' /[A1[p- SNr9W{9a! xdTl 4FLAbH( u[U0]N4CJ8Y &;.FZ&&2>Hek7e<Fv1SYI;t czpH H$o|-[n~F5c;%a<={ 6 TPA 1jiNkP0|VaUV-YO do vXty)j7o ;hl0FFJ N.Z75Kg/t~iCtv:8: ssD :8gudg2gN97;/3-:e320 -@9p*&Eged&8JMNK > H'S[j0?k'?Y|`k}/^c8ZjueIlA`Wd-E-_K]+ijwHUAO$ Z KDNHim@ZKs(MhL2|+y7>gp`9S o69}<ygy/pq5A~-A8SZJAn0e( > T{uD)<.]/?? SSI>}F!9U^ Lk(xe`}9g.Y&93Z(Y-jh#6`O%XSO|~Z_zgc)7?=6aG_y0nXXzga=JNNz)7|bg?gF7 >fwTo`7GvDry2iC: P`jOgQ{$0u5bk=s[8xBg.I]aoDE 1Iu*2h rkaRP[l)++E^m+!hwmFG ?#?5p`CR\}TPAu}3  5j oMIfB&?^z%3gNdlc{  H;TmH&/* ] u(t\bAECQ1^: \-0fQC\m#'+p|q?saNqd r&0]t7 - /Gpvf(3 dnzjHt3JMN>aCg]my AM6=zHLL#3g z9={?t);$r(eDteD-hEqEVim[CR(mBGaNi;V 1#~ >R| 'O|W`7xW_=~8 {Q[0BD(8g^xw/[o+\ Z@$gk8 6l~ O? {`={ly5+V@g(D;w.&afEE>}4Zh{ |h?8owH%pfWT)Jia$ ;3UI)Gg'kMpC+@ iD H'UktYe~gI*8VX= P`rdrpco(PZ lAg588jVB7Jd^WW4Tqq1|L5})')e?[P2~z_GZ8p1g7n %s[<4 1}K{Z*1bu9@Ccg#!ecj j^B[2j#v5E@{:FYRCef{f&O o1acrMN ?{}! V'i@ ATPA]O|+))|U^dbZdG`O6yeNy'DytqFip# *h'\@s L SDN d pbq-/hX Pe#F5t']!|!pfsYa:sR4Fp6rDzo|kB?' }V-7kvHcO;={_>}_~yo ?`5kJsV4m ZkZ6\DQ!WWvLgi4MhV<e Ck ._m8G5xX| @3.]x>KgpJO?B|'N;o^|c?7'_~m#>acGv0!o~?qAo;%ROK/3C7FouC01U g9#s?sqY gOi7_Z1bw zZK Jkg:kIU .) 7c*YYaz;D:hMC@/Nqqh%:&QA$UY WhRm$Pu Zl hgTz~QeuMp<=q_:OZ ]I9gSh0J8*$ iZh/8Czg< ux`u2Z53l ^ VS $=)GNwTNb)b^#sGZ(^9xB4r6lX(qHII {r([h4 V~Xgi >|>w7*q>sgRMGA*Ot*4hF@`-9sfRRo 2xspQ4r1a9Z7cJ<PDQQE- <9iHD0o8Pr4Tp81fg4?.C H-@xsuQLW8s ;7=5O AXt0 33SF8l zS6h<M(;`e~7n3{.^NGC\6#9E ]@fmKGm{?^|m}$PDZ h$ =p_)Kk)9pg%36>w~Wy7Sn-[p+M7`(w0(3</+ox.hBSWC?\o9~x;^ w\rCp(0F 5jTbbbn`3 <f+VCQ?cIFMai*kE N3<MO; O9(V1{ ]QUmgiS+C;U9<g ^d{ fgNM%-ZFWig&FMQd}EZ8T@h/AA 'fWee ;JE>_44gU5@[9|GL'_NN-[(HB]I|@/2 acQfuD:=l Ff#h<|#g4bdT3v@ g3w_m};M];vX}0f_|pG8;wrXzCPt;*_|s8 # <k-96;l fJMMCa++&--vEA ?)) _^gtlI<.- ).:\ g.b1?{KYLEy9Tm8F\(8Cg  5\Px:3&#DJOEMTd3sC@PF*+0';5JSsEj:3y$Lg$&O zA[one A}IIN ?~ 8^z>shN% m:i$q)K 7 &$k&w|[T[^ 6qi5#Hs.MP U:$i MgxT` _4.&g}z'N=l?oiU_KGB8ngO}}= ra cd17yS+C NL6q ;Sjg3gyM2x :thfFN k.tIQI :kq;SQLkv4$Rdd~f{Y[|VyA-ng-*V \|-)CNYh_YX4RzWmf>1hMmlq @h.7?7{{<]RR[`?f&]xMyC82Wi{6i7Ln%Z8#R @}j.vMgovvSCt 'v!& zx.]SWAk(hJsL*>\H =kj^DfBXMOVH{Dc( )GP-[SP^^[).#1gM;D;ATPA]wk*'')mpphl7DZ415kj+AF (KFa3(c(SXrtq X08# pdt' D`q8T ^\3)e;jG\ ~ =Yam ;0u av.rl~Fs;Y] 70'4DBq9I~AcvmZ0$D=&Mnzw[g/_DZaw8k7j-wNKlg#AZHZ1iai(G)y@}7vP |O: ?~ 09s&}0g6ocAB]r%liYy&20/ ]/@  {!f1kpB8{ o6mp:ut]w^zBPhFC9: V ;jZRvV=4|FL<K 9K#?SAmhYDa' K{9H-!h|{bi yM -e7!A}M&gr]s`H_+31gz Pbj*2u ouT%Gghp)hD/}bnnYuqt>$gJQP#D:@j U{0WG{9KeI nCv&a%oDpm[FQjH0pX!g+]v3N3o:La?*{}_zz: Ep9s!++0 ;GE8JhDK H>d)3g9C7J=3/{AhpvvbBQgG!-]s~vsVzat&)ggay999I\$20 rHsiVHKmCI9|X&3%)$ 9i#Gd$ &FP@Klc7o _!/x_t+1iSDWB+:7& 9MOVrhzJmeB?!9&;8\) Js :gpzO04kY @C~-sc>ed.Yde+VU]qF(Q9 }o;s'OH=SfBgaa# 3fX0s+'''!!zk'{ uG m_ zOAY#bUaVZ4TBjZ^CxPmXf)M\ <RYZLI[dA^rMW7?_FX?0lohs Y%hS;I>4I6phT@nhAu =ek#O9HdN\bloAff.<;7MU-P= DV\UU=)Jg!Ejgrt zfM> V\ia7;w!.Lg_2+ TPAU'O 0`F y!S@I<[HKO>}:  #yvt** #`8D 1QQ']Z@<#ba@G!lA9f+F#X.etq~KE$+391 ]( L/&9Cd98@ lY<a[Ce<$VNz2g!vtvS2P!NElVjrXng ;t o@}WX | 7 v 9q\=Gm~hqTz] qjvH\u0S$.T!M &.KV]42gw~s> zH ys&$$$%%Eoi(U^hYRQQbrXY^8( <C^a?BH1 g61[ |pgF 7n\jjj^H(yB`~>}`On#<l:i3rDD J&-eV J|r;s&!$%yCe6KUedRDPt.#-e) D~_`SB%x^r7^Z.^6e792mGqWb\(~as[[ |mkKU&`0e A[VC@Y; v{ KaHR_fggogyQg6 0X2&av0K '%Yt=HR u\ #k+)j.i#]&)i$ dff/Zm/_<tip3a PF*FO~o?x%>guUvNyeF4{>h|yK1qn uNBaqh!|V) ]6JEYPtq~bRlA(NBLJG`EQl -;DZAGv&r }tlDB#Pvf 3:;pvfNFC+3 W<2}TRRNi)M8<=)135}!%w]nne78yt Q]v >|xqqO{}W_}EiP3I!VQ4= Kf;W#)^vjFhz t1 /F{n]RIjR'''q ;s](BK1 u_~0Od~~os<WStbH < ] H TJ{nTh.Z(HF qi)97 Ys& K)b.56ZDyCMZkGN=yf]*/$0osN%+pBK0T$- B--06o-PL`c V|I4O|I={iS's-iR}:3gYUp- |{&Q]wf`0Vo-77 $0WNfK2 mlpL+xo9^5>>}to~ {EKKL!Tsj)CAa[:-e<qPZs]p:+mM`ggO #t136pXeaX[ $[2r3 wcG~ mmvgo[ &''9s y\#mOcj?!3&LhHq)U'\O&zn84 Va:zf\Mg6EXQ *-vVy./*9lFSx<Bp!i> $ :8\\3 t e aY;d0('4|?HAvF1)8`B %^`9sZJKHM $&%NQ# >h~w;?x uVx ~5?G3vo-V7;#^vCvhTi7%flvQ Gmv'U =88 |f=T>sx)#<292dq~? 7oMMMUn7oX~ 5={Z[[a G ga P!g /\rRpho7  tV|||YY9r#vsRRR]]M`awCF#[ lrU 9:-2Eki @5M8dh7YF8%  GWV#kYvgG-YZ sVkZ}|II[XLZMfZufCS pV^Q&?{)--M>gO{k6;#<{/Lp#(w1E*G#Q>.^O]PP~XnhIiQ5V* j3KB cs]d= [le7mkj:{tD iG;t) -11r3fg_=GkibKim?k(zW[9hhoI ; z\GK-62goaCCCTs5r 9~jm5g*VW@iAg?Si3f5[IQKBjJqh.!:*CA*pA*C r(\_Fi\`U* Lt\)D-.?h|%E$}$4 ?fgdg.Mxdea4N~_an6r:/3 HKKNJIK4aT3dFTZZd{.?__|M<v+GQ-|[G9Eqi{Vyc@Z omq/u53w_mmmAh ?~+..yY`/^xMXv[-]Yv`#G:uV75yTp+r7|S  {2jG<l0 h'Np/5c+EPqq34PFZR<KA5+UjZfYSa P;RhGdSF Q[45?v{hA[*y4UaH #~Q-;??HHrzG - j9;| >Ak@^7n 4h =C Mfp*8yv<VsPsnv@Y*pVAYGp?CLBl (?sTY2s:Z-VdZVP6<YPAW p6=!Bej8w)V@bE-fE`b.&F'g;I1} &!!a # P{ ^ 2>gMv mmvg gCUm s9jgig 6l>}ik\pD+R( A4h8ZHR@ciZp aFl PWa9d'-WJJ1)>stY0D9\(-~3jd(-P<NJs :_Lgi3#kC`Ia>`.o-Y- L(` gSJGPY}<89` Y4rYOMMJ;)f v/ PzQ6nU8|_|[<GW %R=# [YJM ILZx Rpc gvK0oYNLNN.--:ug=bjK.]lI+WmM6Qv VF <o'N<#8e{NB% gC_2z9s 5WVo6%U;|1*_2vTK9Z' 6nP|CM>kUkJ87y`5g#6VPMAkD;!W O-^.DZCnu AhG8LZlxw.Pi7#k]oW7~~k^mkLUTT$ Apv T]:Q7 At$>k? :].lII117o!9g9+pXt6%kb2#2DUEj9Bsl Z)c-6wu|]a>vG; G;vt9s2y:x(h3f>|ay+ # ?f#g _GGE[E[vM987e  o?C;{wq3gCk r^[=v|12N>:V@k!&l%H#Wsi8HbEr`+ms7PNAc=PvD@a>8t;#@.SE v.MP4\<X:?3%TCQAr;9>FS >Q:=7#Npl3?7'dfS&s@]< 8(- k_aMCQv0V #v3Zx+ ndvS=;j@LIIk#:v* ZF3?_}_|q?3{g1QFBg766;wy[h%K/^+Q[jUSSu^Zss3l9 oMP{{{[[l > O>aKg/**8zgK&OMn4yyyp /^w=[:]@:jZGZoM 5t;>Ut 36NPzPkZ?31 ZKZ!9Ph-%r)ixy t8 jG6Z=}vox+YY] d^71bp#6GPr=GZYeMuvSpp ~-Y{= kdaf9B[eDj+Ebzxh}z rdDa6\[ vZ}FGgt-cRn|*xewHNNf|> <\^'Z\>e<0b*hhoU0 0t 5LX+7#% \.AFuec gNGMYh!#GTBvQBBXg8M*'. !Fui&Pi3:SXUdN88}.[(FyfF%IA[f3`e+AF.% /)D\0;C!?XFhbX0 sAVeD<  t6'g 5JrsqgBLsLtdeSB8Mg>ed2YNPh \K4qF7r=CV/G 5*8|~~):zBU[-E=P#}Uc&J%jWh;=F{uhGD8h \F3|f< }QyI&+_~@^6 x9s`2o3t/_W]vJmV?777l  OaOE. ^[o8kFh&w<|P(b' 0Gc3'}F f 'ZBu1 8Q:a QgG2lY+)BfhIjV- 4uD%3CC.! T!hGhzYksb b7 F. vnT;D G: tg>{#hSrSLQm46xDcg2gf7lj7Lmg3*wI/^dD{]RR7WZ|PbW=C3<eAZACDzP$|3) ]RWTvuBG[ $h;HwwQ9B+} QGrrrE R6mc#GeU 'Oo #--lZK<j#GU5l^cXv{yIqkT$pv:a(.MXSl@F)\H07jJ)tyU%Uv rvnS0Mh.D3aiVs-FA0 &l+Hh!C<SAFMb`v-3go a.%#4bB l~0'o0'25m9; #?7 W!3ITaVNt !sV@hJOJHOM/5)11n =ja_c111g}S`A_{}G_~Uo8ZiQU-l%kWtL{p`Tu+M(p+Z8iXQQBi?kD}7o n P///|6^'3f3g 8pB.X KijjZ|9 \k7nl#bm+W lg}GaX33< /Dh!w As&HOnbg_V8NPI#V f^g>9ri!L &l5'z5eD1SZH;*hO <5/n!t+C;nqhAoA-x(=+: F )exwuuM8QWo3#q;{7TfMF5g&>gS _evwH>  > L Ic}k-*?k)hHR+Lkg[K9Pn(3yf1?[.]*5b<GvY Xir->H+6o@cFGG kXnnU5|i??Cl2 mmvg??M6w#G<p{2UI=yde-J vi5E3LC=3UBWqse4rLAGe\T' x37(&7Ad8[ce1-csf:HAY0oX2;&(H9y06H-9:09 `6F9 b\(!W[ST^bs)EY?7~ESs6i$4V?KIKN $&%$M3~Q#g}_c#FHNN.\t7o{?L L2+o=vNh/tTO3xv# 2b.WtdZBY?>H{7VEEEf9y^hl-[xb</]B ;+mL-c P#?|X=//9y44m6pYY)*:LWrLcUuY9Vl'|RnhREB;@ 74kqfo)Zs?;*8T ZLTjh3-#ZALo 7t4?8i-I1*{||8?8/>>gY.]*`Y8Tv;J:pbZAMLgC#5kj- X?ke DYbg/{:pV( i5Zma DMC\9|-3[(U^n vM`w_~cp Gn0t3gpSsCAxDGE[E[sGbk^p6mZd/?B/+N').>8Fy 5fXK8 d3+$G%T]DJ+BlZViBq3W+R948K5KyBy #4V$+| (f\\BvdXFhsieOLs154g9:/#PW3| oP9Y||6tN:?2RSPAh&Kf( HIJO4T_h_tONL?q 1l/Y DzI9997o 7X ~xR E8 :1<tqDdmF5k#GbaG!# O<Sl~8 O%>Kx~7%%es=kaX.]Cm 6@mKK[mJ]v'-Go>X 9rVp'N8w `Qg%_{oo;3/-[ *! V2G% yPIk Z%\GC1-3T:^iU5U Ibd*kYM>BV+Jhp750jqC>/_#7P8T+LYG8V\QhJkFangOfo`fxLcc#L_lxzs5 #lZ8=kg-*&!gg/ sNW^U m2v4M4Xd\ifC&euS5lgk&emEr.]E ;{#?1<w#*8`0(jq ?~ RK# ?q?={[/(hh;_eE$n-F{u y7o^t |~3j7j4*rpBH2r4fs-Ais2TTbF\ F&E*--+jhN5<$AR=RbTm0'`9b 5tqn0EC` $fS mt:Q7g4!hP)hBg9$w2iAke}T@F}x;~t;0ON/1!%>69!.f 3jv@/G166d ??|G}IQ6v E;* tdgv-{knH*6zpoXcg?rwX ?3qf g`|[ >$r&j6l5k` oqV2?sv/v :ta? %kS BXK^|_~oKhE0gXR%(OQVlj5&#y GZZcyCa [YJQaIJX <keXQdEL QvHihGA[Ck _h5s>/Bv)49)H#jh\cu^YnZMA8KmUNT/} bfhl]x/^|Y80&#.5vvnh5 +Dc 4---rngjgf@5Z)k 5Z58}|- ]d==dNA[u qB bB-A CL---?uO Jm f(6mL# ?a #pX mmvg\RVkkcNiMQy-Xko{tR)u]wgeNc3t8OfR)X3)TmKsaAt*9 3+m{3&`<h<WS|B)5HCam0W!3LFVm9 :pQ>B 1 Mg6H4V!jxIA.F s w'1!g6c^:Qh?S^# F*GO# f3j4~BgLL'/'#E9 !t_(a5hL>}SZrbFZ*)#F:) qM3aGw{_t@FJOOo_n m^xwO?? { jRq)uNI?<pvkaLr7^K1 G1grixE<{x7xqN>}3gY={ DC[Jm+V455Zua`e{n? 5X4u vV7je^.]tzkv5@joohpkef EjV f|ZuT<\T;;zh7J Xi8W*K@-l56WTcSyCE 1UW49U>6#1caA?3= DkIie E%LljoVbOCk:2^A+h:h))vC?v!|Fg A#@VA1DJJJ@Z9;~kYF4#p>5B |R e c w`rfs ?U]uxfoV&VcVZ[T2_E jqfKAF(n.wpA;PcU%l9LUUF -/3fox!wm 8Zxqqq  9]& qjaw mmvg_^QZZZU4w|`92Xu-p=/3v7P?sJ}c ;7hft-KQR D\V3k?Q]BqyA +Vs$R ;)tyQ5R4uEp2%\Y+.Dt>R9DEt)6(f:dL9=DppL'Xg73af3n!<AY\a5% AF 7^a&1gqiL#G 7P}BQOe)8R2gSi)~ZJRJB\rB|bIc' s 2xPvE[h9{^{_W ~ SC ZcG# &r8F5XO1=k^n?qO? MMMl7z.\`<\vpE\v- V\n]olou+0ZwsC :t(5X~;w.] /\r~Dx_As 0mU%g@xYEi3Bk\ZBm:&Osj;-XO;=Fe+j1+>5-]< 02UEj|/@K$Z CG 3v$Vy&O ZCC_F7m?Zig7Wm{{q0`75n2nm|Z4:d=GYK>XRY0K+p'Z8779(*>JEBBkhav\E F1?S N>fB:ewNYIP3|J #q~ppap&*8gug1^ zQmmmwsss$dSO=]v [jUrrs2 VNYa i1F3rAOe%DQaV4sUi1(ZaKWbEd& 4%y37J>3^p0 VP$&li4HmC{f \!\TjdeL 5[g*dY9AAdSu`78 ONiI6FsAvV.XEYi0CLYj6@r#-iINM0'4NOMII%GC?%1>)>vrFw=C5w0\nc&X<o~O?/`mY;[7-i &:&V3&f;t yn4~7>c<k58cVs3o 2y^tYb96+ D]v7o%?ghc]|UO<y9XBVb~veVpF3hf _uKj\fg<}MXRk% ZDhG7FjY?jf 32gSUkY<xY1E VPYHpyZFzM4S8XcS)XF#Ak7GYgC}1 Ksh~zg7m{0oeE sf Mh2BG YuH& g& UGTV jiB7+hSY4$eY{$ m%Mo) [-dd3M[ykCp -G? DIIMxQE yCgxnY?^I2 pK< Qmmmw R-.oo= |smWNKK/ez]z?Ot:aryjM08*VWK&4*4ay 5Vjf8LK2%Ep*/.U0 d ]Xz@3s&s1]dFnqBJfgrh#X.s)U$B .*4V'Pf/4;:>YXt07}Fu^!U$'p9'=1Lgfy T0-+#dYeE  /t&FSiD}dT_iQK>90M:9>.n$%1 R&O0~RQ#G gA7|Badef1c-'N/{}7od475x)0Z9 FK%{-Q>m-az/*K.]d+8655\ 6lv7o>T[ZZv9xA ? >p0`g}/ka5 /U&Tw4L-Y7m65V3#vwhQ #g `Sj-g5 #ePFfFeDsYu\ Y+_+jUi_jx[a4 Y f-h_EH5:Vyd?Dt$K ) ps wdHj 4~iQ97 k myVQ=yD*y3{gAIX|)hBGpX@zJRbC\2 L-qhsYGvUa;-E*@c*A\ /:.+)fS:l# }->|` /~  |8noo-8$y <}3?k?CZb|#GGE[E[G +aqc/^^6 <k.odddKKIV]IXc*yQV@[.h.8X3\ p y2Lz g AW|*XP#dW-pi3CpuK XL9$4y3i1 33!ghrs\ }& G\ -BK@ Aco~IOI'Lh4-#5YEt<8A?:{F)tjX0B NA3N }Tp61KNjrtc[Eb'O3iF9 ww  -J8fwO<q_N5?} O9::<=TjlhnTa{<8 jW_}UKL> 0N 36E gsXh+zjk]Gm[cRa 'O28~=^}WN)k~Ad-[o4{_72moA}- k-l64ez VGvATkEbXE8z *VoY+/( YE Hn3Sa*NW4k T)(P!/ ~H 9vg30)-?E8h~yCO?4 &G7u| 7B s$Yh*gf>._V({`y1FhI&c>8\l1[bC~NByVmZ5b+r)X(%)e+vdBrdQrXI--**l8w G TUUk`$ 'NrhhhN:%%KRK>;HB Mm#CZ999rWSfNiZ]9u5kQHFhv>#\tinT1n t-l pEB>KYgoPQ3_T UJE.' G96i<=0D:Fd  d &\%a)6v!u*HaB07$`!qK9/#-hK Rf%J4>k A4L}}AkK- ~*Z80 [v>|N'%2F([CD9!isB$J28| piR\9 $NGN 3~ 6l$onjwJ#;; l/_?_~?~ZPIk6ioMF}2i7q^i:?\?b<u!99)??f) ;5k9K^0 ^ K'9t8~z?C[n&j( ;wm V`9{ m3_|UxW^{^) o\v[obqBg*v|KQB!2A&5XWnuV ur'Mfxou TCY+AAfG3kV ZB{ hm&5n>cV!6<?<m9(A#f##wvEMj^1YfS7@ 4?~xA i 9wu y6%2K4 hsg3}xhk(nfYA4flU kPF{$HXw@-nJ`gl 3| r;=j8:?dC{p Zye = RxepvKZff&  ! )J# wA(hh;TDK5g 8r5u5:m wmk 8*~u36 \pzm5Eqn0m*3vSyq@c<eP4LXU)t+H -pIyQa5k(p e.ArE Z(t1CyeAmQAlW.A\lindQ43Q l`9$[L/$43TOxs =`.:=% / dF <s:7)Iv HA LKI`U LO) qd@ &-|MLG}TCNrB\B$:MN$XMIOJHlU33aQ#:xfB; 6lX|||0\p! `?|_}G){neq7G$hX]TwFS'7oqG b}voHffAF8qOp8\[[ zYl-wPMVZz5ZIe[Psg{#\'|2r/_r/^~O@*e_{]oqUU|'l(j);46M4U6b wZR:BB >`/sY5Wh Sa6Tgi/*J Zj!B5m7 D?|C0ha vn8AvSL#Gh#hI2{g7c4x>=#` 8gh_D-a?6zEDVnh {C;w8lX qlMW3g&clV|n;e/[keZz ~*szjvUK[Fo=hr?1{ O8*->.1?~8 ljj?~MMqX``u'ozFGE[E[q 'w}ixQ$pttxwT}4>Wpm5kB1p^W3bf?AjkH\gC7TOtUE]EJnTYGP}e9kJJGri::;siBtt  %rGa1'Yt8%`)^ dft1jAH0'3lLaAi6o3Pt&e!glXjhi$Ht>sO\:'S:4`kgl|9SiiDq~+ mh3G.$nN)0I~a;)<IM>N|1 =G7r!C _>:V%Fuk=|0 ?o7n|g\E\&*]*UkIlS-AkeZfhOgo\~]?qQQ}}au`$`rJ@t3oVjnoo?r 5x| G?3<s]W\zW/k\eu g>1{6z5 j=L6- Q!g72Y/U0&qhpdGFsPB dMFrwMDhg1O6)L-TGh_ \kC=ZY(QiiB9(yjB56>; s g5#h -{~nAJ>m{ Jq@//b#c=)h1s.UafMPha6YFn[d+N[R[rLPt#('L `03AO3g <sN8 ^xY` GV^WB ^'yqZ #--l 8s]] zft#MIcjiiYn]X=uTsYt}E7(spTR@a ;y&F-y? uT( FVa0`DWEs9ya-+B &#tlK [g 4C2*/XBAhj23Wd ByY) FE9.&W-s me4W 3md 4o9C\J8 ga2Oc5YMli3^ A+r Bq27RQ42?)I~?cR]B L`t^h4oP@: v2z9bIA:>~$)lBI';~A<mdEY go{_PMo% -eTZi7ZlZ2n#Y Lll}} >n8WXXXQQ1es.\pUf-[6n();3v=6w>jJ:r ;\X%O~gy _hqHabEl]8/()SSj1iJk jvxVeP |!*|3SSUg>kg>kyf`5Y XkZn*5e-j78Cbp@>JyC$fYsD xKs~6#f9BV! %D8<@y{|PyS|&@1c$; /\  W9'U-5Mn^Mm.x`D1Nkk+<P2#b~ {ppYv?[IA)R CrH<u-  w3+ ?>/+ N6?wQAvDmO<y2 #Ap GY.3g UJJJyVy~Da#/8rhhh}Y1QYYDjpwNs4<WW$XAhEHi ig@3c9L\K2L3#0Fh4AfuTWQ\R h@FeRv !4J fHM5+ Vt* &\ Cy9p3^Z d:h FLx(*u >mSav&F VA=4p:399~rAg+X04 JKJNKE?3-] 0Tptjv%F!]%+|N t=))8?s!BQ@'%'[}>'&%$NBsXJ8'jF 49PG| lA'xdKY ;) nbc' 0w5pkW-) fMs}E|G+D_~*#DzX0% njj:p|\to?i(8HQ74+z-xY&_#g} }I0vCVv'###;ky[m ;vK <xX>}8 F/_~ /^y%B3f#W_}Z }kG cxL&SB+Ybgag-8MXeFBrEZ?GAKgv +8 _zg=;% Z4Ze1>mBiMh_[=cAG|zXGlV4s vSSs?CYpoQ5#dn;;nfd:BGaN!g[AG#R)SpH 7FY SJh5RhG!h/gGAhZ5F>x#SnnCe4PbE cHK*w+ZVbVjXmtAhz]>&i=s(Zevh:#% Wp /0$x V^hi\<?~Kuq7<#--8r#Gp t:jay5553)$yF\WPu<g<XY>J;A4eP Bgqq0f'_F\g'Wcs9bg*AHPk 0AnBrmTPmpa~miJ8`J)\R<sP?KBDH9 DD d3W!amu.`v FrgE}X lttV?;-54K9 4A94AgSb&fH\RhLLsX0%c>A3R:ngxOx< l'OID=g3k;-^DVv58veU 'OC]_hnmH +iSn^Ow}i%+;Tqf HWSdeE i{iAG7n<APheK; <pD&UW5kKa z7vAG 'e~ 19)_$ /+W^D64L4hM9 _<] JYPi8=tjZCs\py;&Zo\EnAkY Qi_M^]a2klYJQYh(Pg3sRn9gUO}' q1j DZ`MPwvgw+59vPhOo a_#;V+6=YUphg9g7jPPD_ c ;w5Ji\XAeaK9mb.G :4VI cVJw(m}V8vvo0;DtwM> =brY)0 |~ SN >|p6{49.xFfA?> aGlojjrhhhcc^^ f;^ngv`{oA} }YLiegT@3 TM f ]_IRh4oaM8T[NUg9 fK) ]]ZLjpU 6jKa591/]\3\)AEhi(# q:rxK `F :d8$\Bt9 $_#SeGl9/ rBWX Q#d@^ X :~_Y88EDS3)|}i_) sS22RS &S)>?k&'&N%&$NA<HxisB$&h(vr]4 HS'#1>.f8ekdVm]wfs uZVl^yd //kfooGKFNY; =b82K.kc= k7Tp Mj81t-]pH:|O>>xv 7ol5k/_>g X7n(QS/x  @ O> Mzb}`C3?|h3^x2^4e_z^04^>lEEU7?} 9w/>' G '5iUis\Uphyi*h:Y3Nj`Od*P<Y&F=h{V3M)IEJ9$m63*8Dgu~ }x#HT1 kB77)85#fb7|ZG^0hwc?Gh5znh+??_JV#gng<gEK>!gi&d*y6 X/ ?d?ucRK?8 L l-[mqF+U;LfoU <fT<&U[PUIals8/HmBMOO?}4;/{x%py=+W\` M =Z7<>Nl-eQmmmwRO!##R|MRy&=6!W05eTa33Dz@S<TIp `P]EA M4F3W!*aEX I9*io|evDc?XVt@!0rtq0RC D &d#7DF d2.N ?3.<ggY9X@Qgr4:l] )qhP=3ftvzZz*A48'%`R3Hq@Jr| tsr|l*nQ 80vX 8!/h&/j:5C? - b'q& s &m]~-Mmi:mk\wnGZ?k Mwo|b:mUl02;-m#9 fH)e1c~5O/; =pSdc]^AhO>\T9s6n@ mukKxXwv 8pQrrrzjeX=5{1_z*O*{~cw?'yO<>r>O@t X4_*|5lBfI_hGL ZGMgq>g; 6B5*;d* <L[ #T)V%jY %Bm- -_h/(JKAK f:n*]'?DM6MXt}n givHPO~N7|>7$?`<xAfS|Z$[{YgZdP{zg8Q@W\)d*EclMY!-=Yu }l}%s t=R$Bo_(T? } R  q!++K~ GbpU >5Qn:ng6CIccczD[E[E ooRSSy{1G2Dhxj-HSwqYf <)+=aF}mc]l1\_i3 ;W3rFWbuBmTE ua6EXsC%!lE & t5!j*GXE4l2./RF:Dz ioV#& sE8L%1Ls0L10 &#cK!1P~niU3 Yt0's@EI\h=@YpE6o0^ii< 9`& ?Dyt D:9)51()4 RQd ?&'b.:z iN'aTDvAM5Sg8F4>c:.!.6 Q %_1sWiYPS- 5v}lm/m~bwmlxjo=w= ko7.<(05!Q#f0f} #F/**;w-g{}7od4oX;K;2aSV-Tc ;t{g???<c Xllin4 8p#9q< W<}M`M|rX 9 wg|! UVV.Yn(fa)B32I}#/xg?2ov!V8xN>}3 zG >#<` Aj_V#RL VicAnfXrOBU.ajRh 'D r1?>Ugy$M/OT`ed5l2g7k9 h7B(ZC{ b7qK#}._dM.mf 9s$g77!c7?y}M[[p-l*k<}cA>K_#RpP;k2h2g5g@k|' p =z4&&F\WfuA|m]FVE emW pCP`p+|qKDz/$vR=sY#g<npO7;5 > <gJc-8LmllGZ8 <x[Y}10>uagB.:=--?Pwqqqlr${c:Zzq={?3GJ9 4T<vfC]c= lT<+yBf)hy5tQJ?u\1g2lUc*!2o+R ;Si6` sq0s8a2&dc #P0&A`HlsfTm`9l3S31}1UP3s0C| dge8#f`]BRI3 IC5-v:;3)M3Ra0(t:J6Ph>S:) I})MKsRE T3rdjRqq'$d#s<&M 'L>3 n5 Nl^vb[Vte~>Ot} Q'nm}}{lk-sm=?eU 6_PUR 3{x5 PN:J3UUUX[owO?{TvYsGouvDZYjgopAXP3!!a5\%pAa C*VR5 FRX*q[CCCnn. ~wi~II7ow~ _/i DN>]:\C; 8vpv<N=}@>H S5lziM|UFT D5:UU% 3v<hf9(z-M!rQCknGg>k>tfGhK~f*!Z*v#&s;hhG ETf&[!BGgM IwQl>X8n7 yC^c6m8N#&j60<;Uig gSgI?tLkDdmX t dj!Q+e{N*J-aV&vK=g;ztlA%R u:v[ mmmMMMl/ 2d---R+~ =bxMrN-EGE[E[vMv 6Ye#^U nns{;7m4o#F] 8`@yDY<ZSI2&]UGzg3SAtkSUAt`suihioHY9JARvAWR5 U!%$htEq!RfR AyiRO# g9`9(7' u(?l<A<sF0';.Ts| egAi t/SSr):pfe478m8`Ns4N?9|}Mq {V.Mg.OI '`'(a\I >9C0?yUOm]y|>ucOxm;[wo}S|l^[].Z:[.m.i[:bj08 HAe#'9y'NA/~i5);qwub;9.}M})J$Hj 'vv[hzQ-nso}[@Eo9:R< <L4ef_~~rpZd4u } 4ogo#.###jvPvZ ;X1Pf. aKrzh7H`jrrree1t+`n0?G fee^gN ;:<cX0pabI/rX*B@7 Gri=knzd-g'2p$ uXeg>kd2 l04l$Y ux;\H( hhD?XE=LAME42fC*|3+ &=y}Q]2|XzP+ 9Xa* <k |r< }Y>:gbb!gC > FxEY hdC6o5 vb ~<huvv^[m@fX[fR_N5 CnY> /R Zci9\|jE p>):l.Dhu} NoN0Km[MMl |7 ? & -EGEZEZ}XU8bX?k8fkkk* 9J k8cbG=UA!g&\3QhE\SZ\OuJApxmyX Uus+ dn^Ng|a;?:< %d(3Hqp*2E KP |~f^hKL>geD c&AGz.f@+NNj2r<sBB3NI!bJ 95^hAt )T:LX#)F Xf80 Hg.GHLp1&:.K[M aM`\t# k\ujW]c<]+3 ?x~e6`\|vx}@g.pA!-~d1}m{Wgl~g~G+&c55AuQ9EE`'~_W|J*e(;4T9:[ g]O]qqj600W{^]x+G<2bK2[].  L3226m?<Y D:--$**JX?~#ov[zmVg}r<C>>Lc'D_tz3$ -Y+80Qv{F!g jH M!SMYc&hg3d9- 6 B0.h=k AZ!F! o[&gCwB#+IA?BDIGoTU^ J y^IP#v#L |E9(4Y8)3! dEGul d #>NV -9jx r04(e\ s4Z|c$ C/T\P<Ut@*jcC~b  >fzWhj^:$vX_~7<ccc.ny7g5*8}A}Yg8px3$''GGEZEZ} SMb9 = 44K/GGgS}}}p|okk;tv577647j:`-ShF6y`g fLGW5VSu*d\tuE=%kKaR?WE<Wn .P0uEkTFR^05+;X*)/r*?s(u+\43jd\PpUSH QhQ0'r6N sgn( t!Gg>RX:?Gsr9i)&tB3F')SBSP km$1 z-X<U3 k#>!%t sLN`Lk:v  umXsc/ q{hvn ure1l6h>d] 3viC]:o;OwOe:oq_SGY$ K}8_4F?EH/8jzzzSSSKK )___cMOUv&&}PhnOqn}/bK: N fF0|wxF 9>Y4^wDvuu <x:55__nJ$%9}hGngwx 5vQ : ^@Gw.]|%WP[d9 ]ka;vC$g1(M@/'eWgMU&gF ~d`Tk)1 hC\yn5/55YwM!yj<atE C?YtrE=r0EzG.>ZBG?:X oBe A?yCn9~}\!Xy^aA5!f=ws6 'v}948(01[^iX)A\ r2RhXmK+H /(allJC(8 D=BT :%5> mFzx67E/>58/r8 09=y$O Z8aZ? OgpdLLLzDZEZENH7N3T9| fc8k6m8/u{Bo4 jLh`M%{9M&U HV\y Ter{bK+9 YPqqc<+ jT3Fh3^f\E Y\&:r)I#jrL9YV# t)6DAEaCfUAL xVsz*W$D3ct L1#HYjNRl39yfS.9L HG-bTfX|0)116fdN #)4:h2o$Dtt 7bcnI$Y4%JF' l; g?_ip#g? Nyl7 >[>sYvM?# 7=\;nwOq[C] [gak=ruMS02l\xWTfS_Wz41 MPz^vm\\\QQa4K?OW_f(4 /iYBd75/U{zz`<.\G+ 35XSoFLrQ8=e-?<7|l6kez7|?ZsnzZJJiQ>x)kG{=CC>hb/]LhTs(V)(| +MPV+ !k55X_sJ)!ge6U#T EZ!sw l=4g# m'/dx5nph]u ;o8i0C#T0?8;6BAio :B3 rzm)t( *oQQCP0 6<gnpZn2 7Q-Ye`}SX_|EF .A`P dXL u&Q AG|$(f{U_:^b*#c4HNiX;JNN<7<\Jc``b>}&kWCCCEE-[NII ){ *< 3HH'===rBi<hoT ;&N xMpfy)8(MfBpzG=::8hMH s]Y rfRCh$ 39+)J!-l9WUtyA hC)D5rLB]^UQQv</U \ksFI4o0UNr3S4<3thy3ypHe.AhN8csDt2\Lkl6e.!\8bJ@#) hHO1#>6Hq| i3mqLM :3sT&='|7# +_'); 90vBt u]{> On>Z? B-3-7&wa.nL{{=3nS3pg{j2ekiugeagcvu~6vUC=o<T03 y4}4p]D{GXJJr}]'n7~ ifJ> RA__}0{{{a&>888<<  Y $9yB*J ^dg[Xs`cctjmmw/LL&/f90f^|1&:*+#|oG]}34u!xAEFGhEk4ADW^qe707*}gw?rY#yx5r F2F5 .5i#jt&CXkSV0 &pXE.C Qhgpcs(zBhC5!jusC;tPs:7.[xy%0f{n8reD|+ A >7?o0Q3229{~.5@ yw4R1W _TLAoU TKqhQ!VQs`V4Ty5e`ZI5+s -%D|BA~#K#}}ydCCl0 :4442f---Qogx5'I< ##--p|K2DDkZ_[p!Mttt ?~<>>^dc[sSMDuYmUR UXCP? \R;7jJ+1 ]]R.;XkJj GQAKlrLBe%y0XKW8U Ws4?+)]FSXI40 +y)uvfU8RDs!Br>qt.&HM.L*Cb9FdCGAXp0%'#-lB/GzjF2uH8: ({6s46 HaS9GLS eNT0g#HM \P? BiqHg-Q[?Dms/X CwM }%wNL?<~U:?oqm zm>6Q ygccj63nf>; ~f9/ts^pn[?qql+ 2)Q^~gV?jAz[6og7'''a'?o aYh5__~j* 4v{^$49)8 ih_3XP0y% C).\t:=\TTaxeWHa5Wox79uXW{[6 aBX``pr| k^pKXa}%OaY>IV}n 3Zz!? ;DZ 5<i2z;.C x. zCtMaJMI0iH-VJJo!E:0 00Gha!m;9?J4B'< cccH+I;/{2|Cgq`7Yox^9P?Sq[@Cm'ZF0 `@B)$ ZpT8j1$|E%Ha\gG*\4F|^/c`]I`@}gY} y7iggS 9ol.1:^ <(|pb <euEGEZEZ}v.'Q ]D ;f2sZjFm:-P!DSFM5(j3fGJ;W3L&;b lLeF#4\[OuUI! YJ0( // 6g:l03vkP9?5 3?EBd9}@GN8O%2\:/R% 1.u s&3W$A:.UjaA<9=)oKWbH4AE1 E j6%RL1Y2]Kh:8VsGoeDh@G<Eo's60L^b g=m_N^{vvl?v}m v}<P77d`odOt8/xl3) iWs9s{{f=9/l=:XgX`{ejc 6;^><wyd 2L1Q/?zi9 fj8_CHC{ =t</?/W-hMCn77_t_v'O!|x`1A+TyyCWbg''EuBipMpo\) }}}w#??oa%8JvW^~>EuuwIkg #j:=9>~aY;.R.Y{ =jl%\YWPe(Rb2sDe-P8D!YzYbx6 !|n:xl/i2] HSyP:@F@~V5VithZ@A] tx`2h+*p^V'0w^Va KY.s ?#Mhl} SGagg=v_d^T4^/ |3')b #mVGU= ZAKE#U YqJ Y bD 0u(2QPH;DGF tb(Z0'OK\__0|1Tp6x7S;wnX*jp s|zHHG'OoV.U0 Z>&j)))fNP~G}m^[2aQWz]dg2B /xgNJSBBcAnS4cu[QX j` 4: +*8J*k*\Xr*XYJXUA K`I 3#...qnD]2 #GyQAxfXAh2/3]QmPF.M 0B1#>]LG4eONAsF\0;tvJqTIg%5%$fl6U6P#Hi )eV!DW%&'PbA4HS9BZLbbpY)J.mH%lZ5K5z/YOk=}~w7tyttw Lo7]nxl(yYcCysueug=[Cc3v zsnFW;EStp- +W``4[qh8PST_UPH Ai/l&0H34g`_4 0p?Ca~ C`MYS~_hGkR( dy-[H)YW_5'Jvlv[[ZVFM<ucc&/K+]dH5d-%<`r r5 325NcMfI;F!8~d-0h!rO;sMC5Zh/W? /UfXlYYbaRxa2;)?/+xJ5j6+Ds< Yi #G_ma3~D5k>eF(3_erZ}a_qOuyY~YZ9<:UI'W\2HKp;+YuASmARP-5kQp0 p+ H\ZHPDqa6K'n'uuuuN'x 5xu?mmmGGEZEZ}??zj>bX8BPgD/*SNeffdNPew6a[MvM4DEYhXa 5lfYG#e` {9H 2%#M2E9Zt>s$u jLI#uFF~nea~UD4& e >8J igS BsBJ3\:C)G2h\hUhf&#;2&IYY 3sa~2^FU3)Ahf#!=9O% 2P.:5KbB JBsR0.XS|\]:!&mFs%Dtt:tb&#yzzT9o$-A>sauw|[^veEVp{gg! SYg uc s>yqyT&bCMyevujmzczCP;n v\m={xU;rc_ j*8_C%O>$ ~_ix +//??LO`??O_o.;>x}vvIT?3'7 I k}iplw <~O|faQQQB4}-76y}== &c8+V@~I#4G].65>{@4}>rF9r$ B8dMt9 RjiPmMZS -e\PSVRHEY IAHYkuLc0@kjzC/eHDPmg i~[j0{@eW Ma73 ^}UK5+:7S|[$>h9E= o8ig {64?S?i&8*ng5 T0QafJ@?Aj!$ *VV2 m|~<h!PZRPWK(:>w`YQ^.N {9xZ x6>>><<qI8Q`ii[= 4coogx5}> %)&eGsEZEZdMp82xs\?zzzNs.|nF]ZMAcF|>r2ve4VnD]WVh@3^V`5ZZ0 M2z*_`*V`jT(cdMt3]EEs.f&\ U7lsYA>C|m!vr9MdSbE9Y3\rAFsj2t8#G^CngU8& LAc:tfJRhDI1i{d@3:4aIIS3I9<) 4gSBPmJ0'm*j#.37awLFM^SbkXT@oImxey}]:uz{G}mW{O]^Si}cvf)<=1Gy3ch:;lY. ?/a:zoeWi_R{k&)GP rYr>3e{m[C^p|5EImxf vXijk]zUP5trrr]]- L~jg???} 7wse|llb||bb )HRPs5<@R/rL5Z&/3x [oUUU+7 ? ^]U=Nvu:~o|lT)_xRBlu^tb .^+`} dGSL9vz@ s&DC2eE9whfj+ Z&zl(V~5_.h %TAYVqhM4Zt [M97JBaZ2}C Bkl{~4;WsScz2 )4X[[+{yA A6;?k>Z9H?9 <kl?_7? P@_y* ))I %/1 TR_0dVG tkg25PpvVua z%H (al`U5G|7F+//#3axz qGrA8\EsghCEGEZEZ}$wCg j<n7SNug}Mn& hBIf*g8t6Z]p>i2us uj!B\qnZMG3vuEQA %k0+2vJFL]Z\\Bua y92y%EYHT#37bQ Q\ZWE `9/$?7shg R :s.:'=* *l2r/t.iW6f9:gr`Ar'B#yNDtrb< NL3' JIfBIbE q*M:1.Sqz1Xv0 )t4'_8zzg.ZO W 4knkJ>C3Rh}0;f|Yop{ d#}! /-naa8nB& 7_FlyuBj & tx>6V9O v ')M}s+=5V4g'uk ~k~:LR`7}bDIV08y1c43O5? S)M?E@!^6[j < s0KIIyicoO=a119uuo <px`:1>~abbqcAop2=y$q (T H#~iQ&ue<lV7Y_UPf2>oA Ze r*[{/Jd<Q4Y54YFz%C0= >zgYhcwOO G/C%y]5r M@ ^{G ?/5zlW!TY 7 '|g0$~BK!P=N 1* 2n&}~?={p]CCyTdX@fU Y% TR_Rap) `m+^([rPlpYAKz%%c y7E|s_RRi _y;N8 7 l--'O|7xNE`rXq'[lc78QX>>jwHH Bo8am#PeyMLwMp83gJJJCy:;iinlXj;D!B4o K:hmT5sJ81p4r*qU fF 7` ?#JrF/>v2`EQ>;) VP2hvkg :juBn`- Vp|.cs^6sJk#& A \RE4GnBED t^f:e2s-B.D$E3UPsB)EL;KRL &3E3S0)njn8t::)d6BMm&4yD^*?9 D&x?3SASEB E a&_zQ|0-jSjvMt}3-g;?|:eot]Ms[LzGGzm9mFjCNw! e ;~Dw  q> @{a{o :Ye^W V--gmqNN0b)WO_:>&Mz jj=9#x0wqjYb<;U}m#K_/f_ )h>\hxxu}\}~%b*kX[ww:az0uy.pa z48>8(zRuM+3F~O6/)I!&BrA9w; pIjg5j=p&1?]?5eWll{AG^h^)*8[E OAZHNEAs26'<qcLDkrze8 A0P> a0Pyn/ j]}A=c^_y61yk&7/TD{{{{9Wx/x9d3#Qb;Jh7iupAS01gt$Yr y Mixp`SSR9Nh{{g ;f2 TT g1qW Wy4+#9--~TSH0gC/J? av{WWW7;0 R\t Q. *AW 7*T)jDp)-Xty]y! 7FaRK\EgmTnUMIq@t5m+S!BdJ'?je+(]h*\ysAV:5g#3oOE&9':h:0u6 dFS\B4gA#yNF :tr:fSL i$R@cSQ$=m4l:hDx5Xu$% q 3.=*8X!9 9EIw:>xO`:VNm=3#s~|w>C [7gkqza%o Fo{a# okqFvs'0b[ An9X<WK]Tpm= ~D #96g`YCTst/`M!jX;;_ mkW6<O>$L=D=\!QO`M9qA8b9&f$yFT'G&*467:B&AHkppsrs866vr}WLE l={f 8='0 (84'8 IvLRVXV5 tUuV}e\gP:TAY&L5Y84i&=&yf?YSQ|PjpBYpYVpp_LIAV^9 BAe ZO l e&e#^3{>Dl UQm)^ 9z//( >gMA~q Bw]q~~xwlz9 g vC0{x_Mj%o_*G1P rhRkB2[[Z+c%gV--- lm %%%)))brs=Fk9e]Vii;#-//39hdrJ8[CgeFIrsc=2gB<#ho`J?#vfZ97rAZOY4`mi18F ru*FoFh4optTdy8RTPCJMACnzg8tIj\|2ts.' 4s0\)h%<LNg5G aUUtz<J!B /3BSt.I6r1mN7'f&'A ))R3Sva:9^a:iS3)ssR|l^eR+&9EMDS98tD'&bc f<U`)-(@D6+  PPHl2ZAG?\ c qL [~Hl {F Q1}lrwa>{gy7'Go1w;w`!|7EuqHQ'G D s^&}'=9ugw[VV@[2?nsn\=E 8GD1 MhG9B0bCp-W}r:~oy^YZbW_~n6\kfof k_|)|o-[vvv<3gdsSc0 ?ML HG-xfI eGxSaZ?.L/ SN&111p[EmeEdx>tn pzLGyRLM R@zl|| )$''QAK^dTPr|ZU:+m&Qlf^#xLe2[ H!rC> pN>C_N>L 37 ojhhMZST4@ T CC!hc [P oOZ(2oA\p+w.+340 -g @\ev6I8ZoY$> _4Gdu: ) DO3casVUeX`H#A+9f%#4EGGkBQQQpnp8###66V ;ZZZN8ovjjj))))39pUyP~[^k888.{x3EsEZEZ@c %k|aQ}zA 6bSMmMM`F}-'w+ w88'h3BA&H9\]EQVgX30sYICU9+1iIYhE 6o&s;~F4vBStm3-1\V[Ar?se RJ9yrI^6:4Lfe8A4lVD:is>f3Hg<fDnVm:%[?3gHNb3dRRZQjdH6gRY-QjB nNJIH2'q]Bt ~NJh09#Em! GfDf9q[ !+HF~J/5jvv6 ?uv! t~a=9n ic&qL{l ;Eqq;yC 5+8?8\;H=Etv};v>.xs3C sE_<z;g] ~B[V )lu[= >;-])W{Z+< SCZXO XcYC^Zf/=' G 4d2H%=> {inov $Th300|CD5J9f}d_PP^9fhMH !L{zz ?R~WmO?cZjJyYiG ikm> M{31uLV /^@VH3eFZiL/Z r|@&FZn2f<p-G\~z5ka/Ux 0c E tY(-p4W+E(ao4R'5Y5w5hRhY!>kagO?Rl Qg=yPqQO5?#[`|C&~k? @ 2wtoK:og88~<@gQFP. Mi%`LhZPk% ;4Q!LCjs^Q(. z {6jx; =f66mzcG=;v)///..NKK?6;qU g8R3cixAFsEZEZ@ |ca9| 13Pd[qaZ?m6!MU;kX2oHFZvAsZ;j* *Q7U+rR= 59WjJeT.V2 4bgaK2o p..UVPJ9Qgt> 5s.WWE'h?#.TP5(j(J'MG>Qk;f!3 $RfS Hd 4J6rSEB:TixMp: {V$ qsBLTSQAsB<$DG%m  eG q)*)tl7O=3?PE[9g*{3tH;|ye~ldPA7=c7 sjcc38*5FyQL>1>t/||/z Gn_HgD-{c; 'm4b/xxl}9l n~ vN8 Zg)W-Bg=]7] 4p6il 0fg;g\ S7??xsja@[8f0M[vYi_ 3{:yj  $G^fz|Lc7nq4WIcxLE\>:Vy#L6a }t8&!g_x[dfWc }ahGBIiK29oZ.0V:Bt/IvK51fB3&T0<>z Ks }Y 5ja? PY 4HJ4: <Qhd-G8Byv%4aj9cAvGx->o`x(4\. ??|p{PY wq\6( eFcg&+8r8y= d`;cT7T4lX*C)J(n 9$  SHTUU\.x^\0|DLl6w} ~nE<soxE n9--~ '?<99NN ++D'8qu[gybwS v6 s!: 0si3h>7jAS55OgE xfosCI\z;Brm-EKK6I]j $M6`k cd@W+b 1J]f $br=:J _c9/3:G#\vn^JKfd=hEi ZA93k%#)yLa2*\ Ln&.83EhEg$%r(FF:J2cqILRL56)U uf2B+pU|Lbb s|ttD3NJ`9:jj g/9UW:|`@cN]ntv4> )8f?L:}#9m=QTX9yyo|_}>6xt^ 18*wwlq}ww=F w= ~E={~w` zy;;1dAFmv[ G<[0Lf\o9[nNg`Am yllOz5k[O#.{Gu^zm 9rc$ghd7o?/!>:Ld^FG *&@ 9x` ;r7_~%i%6l~s3NY:{{2 (zXJL'&('I_b*: 2Q Y\g-m#_J0s0r (-go|CV@ ez#|jp4|4ruGyK}:|=IDoDWp7r9Rs% ;S:7x\ B?:TY_2 6D~ZN   YhF!OK;5:r9TAz8v< Ig7jNebkfZ`P9*EEYk0` 9BQf?!]]J``[Kzu{];wg8g / >7![Y^}}}sssSS>x {Ypqe6YxDZEZE?ONN_pYl/=f)t(s/g8Sg=vMmyYsc=)gNAY4+3 2B(K7T6`sv.03mi4S5+/[Up]R%4!g6#@MFjrA@ut`a2Q <CCt j\-\XQ8 -'j2<jl@sR2 )TPt`4: 3d2H-CBvf&'aR:3=;-i3&#t2G:9h3;`F/R13RST GR\L*ZcB''%!F37(DxISA>1 1X$k E zj'(KrFh ]g\{-nz t^sY=S >?MN-`A@syy7']w}9>L u ``cw{<;NXQ8;hYu@~)vgR4EGAsn A.rY!$peef7Zfw2;Aj4 =GohqxGvQ45!~?U^jLa&3J?ZMCl`^SUUu 4 H@@@RhdYcX : 8)O|PYPt|%V; <{_~)6S_W}gZ}}n.()N$Pdz Tcz\F: mS 0:Bkn%rZNAdN\$5gQ~/69)>(>_m4@7r::d.A~ ~/:z- i5+zo p$a}.[&W l5a4QO9ag ;}IA=L& [ *8g_% g9 y5{Z^p'|Y4@ Y )( hs_ Yegfu>XJAsYTDL!gPCm$Ov ;zo|x{XvQd2buuuy8{W ;.^n?MNW9--~ gTT CC)W5? o^o_^^]]Z{[#NC uh&  5;7!|eLLFh 89 zB)k #3f:JW9 WQR4lnB (y tUYA~ya>*)D]QO ssJr*HQFRh*/t8S.e FQ6{62Ad3ys~&R.*@!:yDP)4)MP:bHAgH6+ :Te3a<RX6&FT*Mk5Fbh6 : t DF\Ln& 1[x0.:L.Y%x<%pEAs~r.tj;r~'kknoNfdKF'pSB ?h;vNx.)1oqsZu 7br}w;>IJ+9vwa.zDs@v!L MM;(zq{\;2}sC>;(' tf] LqHu{jmofmgV?\_Gze zg `X\\|i%f0&lPe  hXL6 YaLZ2HnHG.x/@6lW|%}g7nhJLmlh8xg=<zFF|0wZI\*S~Nqq1V53p5b1Uf8s_fDhB!lY -K9$Ze =dF>k!EXP&FV'& 8 e DBZ CDWmv54gP$ZO5Z_%3 K/*pQf _jP | fWsQ~+MgR[ ].(8$%k8(#R+P$+%p2;:TRmh;T@4iakk m Gj^~3{g=??meeeEEEw70|X`y<.3aQ1uu9--~ o:MNW;=D%PainqT.Nc8j >F<#v`sMd 49]\|F 1 +*ai:4uP^ )\GhQ[d`\F= SG sp>WRA+eb4:\)t^v9y6*c s!#sl3CLB#.Fj4sH30gPL:;? rlSBfY3cg9Ty?H bg*yFAf^rK#vf 3RR`(iA L5SImNK%#t2(LW; IF0 D <G9 A}>c:&=-UGO 3rbw-.p[ Mcj1sLS SEcN</z lq''}{qgq?7)|qq =rt>:~sb^b`1 |b>-wP/{7z>:euu=bp 6 2`/aR; X= ^v/xON3o9e U<] qU98wXUU }X_UYu_*'j?\@nkuuu :L-a8!Up !mL4LDi=sLRt V3?k0ga /i~pYCSb 55 zslV@z#>/G^\3qTX (H+ie!@$atSHPqXyl)h9gW<d= <F!~.\LOy0B)4|d4DP-gCAt2G[j958z%9)caFW0n<vlK$zQaZYY# C5 hh?Y7g=<! 8sGLoh;4sgr-'I9L*-+sD `d3c[bs;= djj6 Hy<zSvEF_q'#Q{H^oC}!8b3y$~Qp Y4r w*)4e?'kKM X>84C{rD yo WVVctJJJEEEiiiAAAVV<22 [=} T_ / ~g; KS>[pDHy[8 DD~S Yx0xZ$}Jg9Ues>FZ8K6;ZD(1]yFL|@nR`~ny~N% KrZf FG4A# h*Q\qhRp| ?p#(&e@5t:ShodyNyF;4sH$Cg%'rCyJMI#sfrbxi`sRo UbS$n kbR<uq45<ua2mDEaTxXlem%#DN wVn|2|x[9 9& qO3}lj~o0E7ei:7`\ 2}}a>/Ys>:Re}aYDA!ai ~ykpCH+Ab!2{<U+O7zqaZcg5n)\Mly{1l8Z< s`yOk32P shkQZ= ]bt]J8 -`#x4K2 9D.\{.3v\'AOsn5BV=D3PO@^ZeGJi> Q|3gjDD[VU{`?>..?/Xt]. O?M} cLS?L+7we S 8Z9CE_DEZ??5C<T2as.@m(wQW7* ?.U fXAhyh3~!<VgA_ VZw3% Aks QLxwsrr/T|F oj@@@T!A<Kg/f Y| q Lqih Cpt@h$0LXJ `3bj:?Qr.ZRC0%C.#z /o%G2 P>jsH:x7e s'>> V^^ e..~T!^?p8z_SxFhFh/a?S}}N3jc@im3nY|w}WrZQno`u5LQsyICeYSMpHJacFU5|.uy-+f4]+')-1g:t 4*!KFZK4_0LbHlp1u~ )&MjtqdgfgI:- $#tnZH>R!:(GgrDL#EFg2r$3KS%$HIOA#4h$i :n L^DND'&slrX29.Hcctrq\JcQ   =bDGGF` atxXqd3I#IM]x;-{pGwj[>m\:|ca;6b31>O<9cou~@ra>}uDAhXX y>eu5\ UcmeBDx}cxY~Glk!tGsqywwu|_2-NNa0_i Wh/{ 9>nt.a$>uw}iBi xs$f4g`+goOx=^GBC8K:t< ={|)))UUUW^x<p gpv@j hzyiJWH4j|3 7oMKK;q vwk6V EEEgvZs}HNtz.sx=.W 4OyS6}< ;(?9-6&-<BIKM46 l~< )yP@((>k|f225rE(K?yNy#P :x)a_)_5G Nt8tP\+A_:k*Fs* bpM.?4 ;B~bv/ ~PpK&F m^9nA>$TE7:7g;} >phN?1J)3~Vg2f. opATYv>K[(8xi9s3K!g8&''+ 322G~i#8=#p1MW{._gQqA* W&PjoR:xe2!niiz*w{_es9|BC 9Lspd 0M*2%Ahtp)am:EcoE.UP9S%/-f3y9!sb6e 4Sh7aLQ|B29|%YyEj K ic!.4'Ej&/=n+(\\rA iRAaa=s if tjRh?snKMKDtZbBBt$SdAt9a3Bdk1 LaXDQ^N hBGG&%XoDE`::&oHM10vqgGT<' ywjK:.T[.{cl;'])wmtNY[Lwfms}s^ Q</X+#!:lF;dBys1@ q;L+Q<h}5mA~Y 2QYJp^6d-5JN`cpydg %s74P/M`ulYCL YGNi{c ] =/cx~^h d-g]8=k;gh9O95 ;B5\5ak [o]lRYNyj U k}Tf>vXDDc6_ROpfOU@z9%ov:D:HMY&Uyww7 RRRN8s4? [$';{MtwM&t.p8aE =D=nL M `=W!Z(FJ-) b.  >dL>08'A+3*$0~SZp'<j{ Y:~u C ApA?/+o9= >? ' 0nD s@@ g VlT-pY%xiPPi3a!aO<)nd n.%AiZf@.)SC~)`b;R~);+ RBA`nuFNCYkUUmG4kO $'' :tH<r`{ gy1HYO9_kaN{zr@@fmZ=7QfN%'=se9;7p KR*p k:+A0)tUK3pp`m_QM%38()R>\ ./sd@j9%|fSAfEg.!iy*b#t^FZad3<?g#i)d{<LA4 3S9Ghk 6FfQg2?C*s&oId]<+-b)!6:Y h&l@x~)&s*8O6L#N #)}ptJi!.%cxW nUo=]-7 E:<<<q>qO =I[{k^{sa4b]s6j_ aim>b]Y7F [c1sc9n-Gl>}cc5kCA3g&mF&fJc3|/9/J !.Kg33g)Hdsi[ YgqE9'et6D >g0G}3lFsgZhoep95Mib3i{{z~ej+:v#?! f >{aw+WtttAaa7 3-lbmm Ti +C 93txK.{A;cGX /n\ \N)h\AD h~NP ACVY?t ?\gb7heY<T(pV\ ~ t~S D:PZu[\0aD wZ(c7 |@@l9xyh/7SP>CaxBQTTS OG6 gB0w:k=QgYZyPPp4u e:]VV&iTy<^&^]N)7CWc(s )KfBrQ\/R!%=} XRaSW3Vw97P^46< Q__7~^'b8kO%]]]l;tHN 7TV7##PTA9|L >S]bXjr@FY +88S^us E@.b^)hRFWf Gu fXF\ DAG0}FAiD%yh(Gs)2M9/S/ Z \ L+3|?KHe)4Y3X Es:;-93)A$IaaVPCS#!B$ )8aaf*=QX/&%$f tZb- %u 1Q:r$EKX..LqlF.+_rL y%CGrTxX ^M1Qav~Un]%k 7~>r wgl{k0ot& ]i[c3}lkzzMKQ >c(z6FIpg^ A3QqFlC!lgsl W< o3x^QhQo8l>:9(wgV$q%7|7XL&(^*74# ^1Pzw;ww-` !zzzz AF<!FF|>@\~5te 3vVs=}smSI[c;5a>4<5.)wkgawC wN~;***77sJt5)6J/S8T8ZckiDp  =zrZ[[?wy$T;HaoVdDDFFzyY }t dY L]N8q:ZsF (QGd;336+b(K EYu A vJA* UCk_)!4 m5 N*E@\f@ YP4<n/gZ ]w{`2#DHUVagm9pPImCIsP@ e7|g8Te4lHgEy !3[/9( JYWSt%.=<;AG@xzx y^*|xtww8VTT /vC'$=$)U_78iss+ccmHZo+sjbu5k3kpT>H \qi5y#\WQVGBs r2n!bA:sXcNE (K?HL.\7).Jm9 D93cd$ ;se [3g%d.Jg G&An saRh4<g0NMK 4Q@:vtp`.Y82<c9oBF fgPqaQH9 qjr.k9NmFk KH9$bM!J'GEGI+a2 g] Bf]lL\4&Asl+$ gj*N ?ybqfE;5%wJt__u}r{7N0>tt~onxoO?xbkrvM &n$=bis5 u6Pa[iW6v6m xD:=l^pw-zVaQW2:h1[dek5f;5~#(^3  > \V)#.Bd(2OZ0-ra a)hBSw'h1^E 7bzi_w- -NM{pA7BxVg SI';Ow7|o:hi|w_uRCcCw H :]^ -t?99?ooow <[e@9gcDt}ZP*;:_E nH2HjjZi8 N?v; /\~ ~xD:***++u\NH#&;vH4#hA8+6C%lEk_xx0VoR*pxCD *rZx~ o/J Z UQy1H;aAN ~N@Z(/<% F*1]wo> ~;~xU -<~BA|_PJ8 ;F>E~XR<a86>JG(XVL?bIjhY942rTlVk~~8!8s'_hxL< RU Ghyy9<|Ve0<>U~XC#4B#4B#4~ |S<k-I` 4o6^okkwoA ($ 58]^tiA#gg]_gIgqe`8k+9\Rf|AI<$5(.b_4iUyyYHi9YE%&A80+# FGtf!3 2RKr0($H.BT\ 43C y!gA.DtZJ\JK.Lj331NuIqiT5X HuFrR*9OB9 <s2)#<'J0vPR#alLD8zcZ#`3#ZnDEsu qRX:\> E Gt ?v4zyyjJkB]6vno O } Gi^~wme6bs0|7|X#Lg1yO5b- Ac8g 6Ha^E& n#VXl38FLs^ r59Ohu%4KFO4vz5z0_7zM\EYF7a_4;pkZ7.#K]RB_D=]v^xZg yOSwB$GM3I)}36NX8(@u2imLXax=_<h}B1shz ] 9 {i8LF=P77) Z^JeGp5Ho{pyPt|| ={c$ +y;^wvttgl6t@UR b(tUe@Z('.J ETG(Y9 dT@+Sygevqw FuJMAk Z QjzA+#@02~V>Z7n^0! 8|@9Bkj^3gJ$w=YT*[_E`Q!7-* 3OH+TC7(%< I2A5^e|[]]r^6Z A3?QY0@p`w>Cgaa!<t:_>k3  O_oW#B8ysV/I% W[RSS?5>& 5+Bq;a29s!\gHE7(AFMglaF;4R.)[y6+-b 9SF;ty~.-= rG!^dtEa Ur f3`(3U1\:<p?EE85JTS:'d *L'3f2Rh4!vNI/f&' sH%FlbfRB6i-f$g`5!Hc&N'#/x!N&FNDF 'f .tmblB'97IXt;G$ttD {Flh?S`Xda9 yQ2~SnV]+R}$VyEme {o~t5kgrfLs^}8l 4yK>y3]0zk#6b(X 22hiP3qick>`YH9fg?ekCvkL^  75pHIwwHa=(y F[;ys/q2kJei6dY XoZ]/{3=<fL X4!89wg O 3yx]%l6h&2a?i5m3Dy>am4M-pCoy]T>7%+6{wB <pCG =x}`%\Dn $&&mmmpE s6=*H@ k6A-2 hD3~/999p} ) ~OqaA3g\ w+2H:0B{CJ}H^^nF{ gYUG(t |UoO#6 -|#VB p(U6 C`O\ <@A@cZ+*V}*|9nh_9R~m#<yv A D8I+|YJDXP~MCL& ybVI* -LGba 2rYBiOs*(U/kv>.}vAwsx/c7?=9-$m~ q K ]vKpm?&a0:;;28qksvV!'QLEUQ#a.)WqYF<r[b-ee%5EY25P%)bAqHR9ar) 7JR:P^4 .(t&?c:/[ESe!9rCqmfs-#g7s:.tRnFZfr99>U!7Hh#|&A4k:?KJg#Lt..%AO%p+]t${6`$]\BLTblL)Ljq11a'?L@zxopY!La1TMv**cv06 }:Nj' F.RaWsn7V)6|\wSz{;\3ngc~kz:qwNf C1mim+CABagA H6l]4?oJyc}kl4a6|>U o6t?[XA0le1bM5d03i32g+7D@mJ?JiID8AyZcZCy~GguMZOX#vc z<CFFB]8Z_/SIike<ht?~yc%sO_J {v] 9r$''z N% w\ AJiUB@@ =ZCgA}7oKKK/x25<8s6h4*} LU=B -X% j48`4 T| RB+iqD5+ZD9(_*E|xjg !h2mA2A= d;Y/~ eW% A_Kfw& %v[5^<*0o)&1yj7x >|P.+@q]K 2y3|Vq156yO2CLZf4-W/=T75wy{N[+S|_~5Ujj* j|<Y^^GEs O g8?_G+C#4B#4B#4~ 8+G }[U {a0\WYY@xlrigj8U f4e 4Bt-9( b|D`RM^hnE4yA4ShYQU9/ ^*L/>rv&LHX%?(J]H.2ASt:Ctr0 B&gn$3&Bs9]f{NK)tt 7J' dHHM ?Rs$bs\L|d}FD06O0p gG6.Ps8gueXU?GN|P^>Qw8fEETQy'/u>wLIy6/#[AmA}+)u\W?l 8?@uu`9n:QF ??s[|Mmk6iigZ2c!z66F`%uyag]c ^=g ^C3#hw {5CivkjB}YGLAM{~83tt d1lk2eNG SI+2gneieW4hD|o|PkckcGm:ak|[ X dnm/;n[)Q'?<vx(9{ <xQ5g*;^wuqH--- sdA:8L r j ~A H3E .~% dUvij&)6www_r2%%wz8?Z?[p&f1CA] (-h2E3V y2>eCI/-PfhK BXpx V}j~Y_ HtZ w(+.^>AkF?]v17e j_&JobW<onREY|gq $p9<l2'xM d:Y?dc ^U (I#MxTwAY @+&&{h4MkPv/(BMpP[ ~x@a|m85 06#&#USB94B#4B#4~9XsCC vvVJ|6x qP8egk5UjsCe9} TD(k9)}Zq$s#-/i '=8S3eQh *Xsx d tEa^5syTS[QOM y%p- $eH) s$`:KdzN>\:u9?KHr>mKFh L#:4KWrZLYdgaCrA'FgLA349c`<aeJM%0gI' s.&*I (J)4.D#`M<u 9S9.2 Oc4U:0 HDF< y^tU {6;k[PR]PnE_Gm71~gowL;<WwiWea-1Y6GkQ)3#g~s> w8QQ+as_7)scqLDj~ WEg9jsX|g0[6G|{ }um5du  6>#&6</{{+$^ 2nf^ 2 a%\C3y60qP|e@{{T/q9?au<ht $M)l:mkqp0h} )khW'(<koNM8[m-'M>6'){cVXxli+( !*w>w*7|s}4oj!!<<<++ 2_|lv <*PAa|w{^)I $W.%J 3Bi+>%Sttt\t$..wvO> zl6K?R!:DZftHq4QV(@W!?++E?+ZWY?R iLjAVD4 jTYrhBU@Dk wHU:8Vu~EOzf#Hi&\lG LDDr+?Q~&Z=xFQJ0;vCY5?+AYh/* dj GapniivP| ZDyo0 w@BJ_ ~VdBYQf7$vqx*H^xQ KMM(oN # Aw[o/ZY /$xs?^3 diwY|Zs kNr{pTVV&N?|]9Cy0|htU6T1dF MgCey={<y1gyk>zABQAg)d~f.wUF grn.#GGeQ>-:=ZKrC |4 mEL U:?=('@Ht^Fj\Vd!^C.^IMi=^KY bY)`:R0sB3gXJD8's*%a97@Gbl !x]tT2mEaxLRp[)MfF FsCGh A4FDb!1|A4\yltTTS'w;SGR?)V{E *Mjg+n|U1w_15Oz|1'L}yC$y6G cM 8 [gc#6RmFm|?}G#quJ#X1L r| cxMe ucw||LK0X6GkHMkT%9>bbLgRW _ fH/ya1p5nS~kX6-hKE~ tatE$X>j_ ypt{&}GSg SWQ6G?u=X9A=ntn6imF htO{: [O;Zm-){{Ig{1ao9Na$u:iouox>^ST u[~U{BG igv %%% >8Si81W-7VZ@9 *-*eN; N[cIinnxbaa!i~i^-o&<<8o9`MFZH>b4 <VGE-I]M Ph62;Jj{ :CUy[)s*o7B BEt- AZ9YiQI]*bhkkIGgBV(Hh;&vi Um< n = {?]1=''a9'' guYA X*7  fLY{e< eJKZo *9!IaGMM>]~O<W\+.((~: aXx4W=^dmz_ 8 ptrfZ:3QYY)N{{2 1\.hrq0m2i$X;H)hoTJp&AtUi%1wQMDd~F^MD38 0 s(SM+I\^_!/T6m.AR: Y$('3QM YE%6X (((]Xrav3Lb 3Y<2HD# %(BQg <#h4IjBhNNL84 #Un'LMqar|l|TD7<$a15is02ct#O Cbg<F#*IX@ #NEG#7G{86!bnJsf\O<SeXtYGw.}mh7]q{kk{F+\K#aym:(M w!?pn=tm97G[#1 ;;_;x =' ecc} +<3eHX< nx}=/La(7`g6=o (zz Ia);LWqm]bBaiLfi.LDW^qg^fXwyP Bb@@B_yaww:Q.xRcQ!:7Z]sYc ~f(;=hL;mGu5twMyz&]]0MHO&6 D_u{z2u}9 g 9r(wC`[ p7n*C@#k8o$/V2WUCo8]?Wv0[_p!///**A/)}x?CNguuu.]{nGG`3}<GPH+e Dq%hEk5J5 -V%UYGmmYV!2F@K9Zr<|R+FsA`Oo.z __b?#Cu??X[dmY 5' 1/LE%f_RL)E9k{EYY5lTge Y gmc;:J?^<} 6R%ICRc@lW(~PL ' 8p@(**_\g ^[U*GddkH8^sKhc_F4d2shFhFh'q OT+|Ty; ?777;3Yg|Bg%)*3U.cE)a=aLD(cs M%EuBTj ^b seQ UENh93!hrY#P4HhnRTPN+Ki%sp^]JyfVpP .#^9 SbNBDx.MC]3lLn t>3>?Y)IyYMOeS`g` L lNO`Gbl4u m$hN#&dp2$]\90b<O0 GGIh F6d06*>*2 9>{l~yQ'J#Se)W]t0 lP_v5;')Ot~_?5.c!2z>um1\u96 pw#\vC = wm:6Fl/ _<@ Gp+D z t#ugfm}5<1 3 Z7FXq;!LX#3 x+4RA?/eBh.$$Ts5(.y ^iqDuF!#-4'#V8u-wg}] X#:PhNJ;bIk}]39O >uuG}~j35O .V:puMyzf 0 qru2mrw97!X 8ryO.WWg&ep7{>rv4;Rr&>::'ZNs-jnW47L-^J 8Ys:1-'cccf399pOD9t'._|NhCfI+q4MGDGvaOJUmARB+#~ ~u Rse'&F .h-s/Ik!DD] ~} ZGGi'9b@8^+(T A 67|PUg!\5=+3yM h=x}c +y;w<N}$yf a@KyHgCIcbLQgQJo@8z pC[KeJA@ ?.IIIkR yJ# (!immmp|;G vg7<x 8 GhFhFhBX`Y)U;2o&S :TURt\m u9!grn*-or !h9} G3s]y Z2iT!. Mf>WI.fALd`F%\K eH)h\PXY:ryN 8g)JX538]Dv5YT/H%.<TYGf>'5%i))D vHsjrvjwNN0#$k3$FMHK XLA'c0Ql#g yu(XH:r( c(  Gh (fL:Br&#G u 2ay\tHVp)]+F ?y8.:9\zyd^Ko+5^w\9E C=hk?Myg OYa8l] -[G .\cA&9=to9 _{xA/}k%gvm#/q_aAZpycwh{1hD<Nq;8F0)M8 :NCCsk V7[Qz}6d3%_THM$1xp> VU>t ^i.L /qzP?eO@Y8(yiTp0~JM=uS'\ hnuayhRLSa'YOstg|wz>Oiwv@? / ge6DLmi>&(+3-77ZzvU g$FGz5o_:f :v`_G] =z433pPD> Rb~YoPo@:RC~%YRA_gA ~p6 7o' VvCp? Fj! n4-( /)V`eE38ZiHiVh_WQyM_Bk<@e~Uvh\+g;hOJ_Bo w(PVXh#Puu: +gmY9T?=] Y%N$ C|V7DCYx1N[ ?~iE+[q*X&rKty2qcarZ<8$3h:;^0}VsAA~E&--3ppk@B*|? -mM*_GSS]vpGhFhFhBI= SRRJ4b_iV! fx >?t`uiXq1|4L\;HEg] Dqq6UDqc<WXoM5$vf]]*kJ?#vfj$A)]IaBs7+* F R=gUC~..G|.(t)LP:?#)tAf80k2/m7H*'4eX9#X4i9s(r`!Ln'%2a# Qvb80 gA1 T9!&ID JAXCh0:>*Bh<c Og]l c) Cm qQ8i!22TTxXG ~;)0TAkE72_IXQzp~']xr{s W'`|Q;|5ms1b_W\k.d#<c9b&yk\9 c.DPW?}uc|Plp1qF/m8hog6n[#9AD6F76dZA?HZ?skTt>lV|Qme |FM*y9<t ge{mcikAq $u`R(^t9Zh4zNz)D=z@>~NZO>)l Xt8;fSIk(hO`ka i'g<akc{ ozn?IWU'x~t4a~` =z:zz4Lc>[V83G8O_d +;UWv(TJ=(_G L_'Nwo -pH 8p>HJJ*//'t+} J0zrJ}4 ~H4 iB`=Z%Ph(\ 1\1TUZhA#r9Ca o_ww~ :blo[>@|Akss5p9Bm n~5 e;Mrn(r=+mPaao8)LxmE]e|/nAMs~YGH 0kigH!_w;<5rsa]xgxAq~ y={>}pwb'O#<<x?)6#o_H> < 8vX5Pu-q2x(@L aYX8)|ee$tX_38MhW(ey^j*+$ 4rAW[Urw!leBWHgvq r*.DeQYA5 JB:)4i2lVB2RReggg|g(t4*3R 5 iJ-@G4q2Z@Kr&8rR3tHt(NM G:SuYBA _jD@s..=96C..1.U&shFysdR| [BD'pLCY6$90 n D. Ea'?@7_{1t. Ty|TCji^O0o+:_qBC? o<roz}fSQmu<h^ l[(<xA<C1G< 3L$dxk l<?<B.~xDa?b||g F1qz?_GPTx &C:`z &w>b\hhI:(9A BhxQA}]^^rqmW>\vB`{ p=;Z = sEo~{kAh02DC8t+ff @<tMZgLM sgW;=YGk] '0Yt S Gcl?lr[Ligoe&fE=Az} d}c@z.6H?; iii555]48HZnV~K d;#Z)9OMyZ9 ;::._\QQ;x!~m?S&IY! B%Y!L =66rG q* RD C7?J v)hU Z UPg\VQeCyUpk+mu Fqj<m#0g'6z~B M-5D_TUg^** DyY Q 1 `_rmlx$t tRye@?+8X!#6p`%/_Pz`Ce Icqq1 &` p~YdUg? cL35_dQ@gehZu+1-8 :$%k/%|Yt]5HOgf;TU|7 /3tY=bHJDT*?T^WSi** (5UQQZ\K|H ra}in6\tnzrdJ 0Zi fp.L+A;t61BRs9l|MK)ilm8 dJBI)INNCsQ9=I.?c..+AtF  Nx$uB :d S A\T#X &'3[vN$_4FGAlyBp2 &  w 0)g2# OG&^J~)/R~3q2.d|Q\[qxis?9kceL1l FS8f[l1/0`^Wbfjj>$9Zj{Vu[/U^`hzGvC5TO8Tr33j5Nw{K Dr? Z3.x =|~e2`F]lz ^J~K=^s:w!h/) %vLsf3^f3]y88lcX3KttS6v1&M*nD RhA(+^4: F2dpX`1ki<a#4cq|.moTnk_3c#vS#lB MM/-/m[kn>QxXu GmQ-.g t7 h?\AKUGzXk2|a|_5}DINIrl|{ooi[??`)5 )ok ;$Inn]jd E*7X5Utp[9#P!D2pX8> KsO?Tpmlm=)))'N~zKK *hhEXbYHe  thqCqZ ^>?8%~ cAh/^ Zl+}~^J5B[W-Gw7TU?}k~A4<.gblT =9 +6g//| qY ?2[7 'O(KnS+ :;k7De n)tSX]o(B:U :!>^\s||/mgODXLA7G.BZhW_v)l4\*:XomiwPp  '%ZAsqsK2>vo6!>T]Y[Dz6~?XQv1Id'.!Cf>SiBWp!B s~55( 3J*-X8EO<JHxs9Y\#)';5RBU9M]bg<fe1 ZgE9n0 qmFZA7S8igp:kKrADQN>$auB|'  RE2XediLZb<9HA)RI*PT9Z /M'L.he L =1 ai2BKaU e -{%a!{%a!h\ : M:rbtqyiDeBTUB_ J={2;L^ ?{=UgK3PM8.Tv fL;L.|Ibi2`y=hs}F~q>\z5z +}nfF{sn<5+(31tz[Ki3=>z95X5rLfSK L~K;>Z\nNbUDv9' \I]9fd$+H[&lbam) w)F m#v\B C- Gt+gV <0lj4kynsc3]s}s?* )_e>?`PDMO7 io@u|ixix;e}<ppvrFtX;?z~:{meG } >f6m 5=.))---N<Ro.V:P:x !qtJDzY G~[ a<BBCCaGj8 -h PZi js qhCSbWY5@~=}W-Cxy%Q(FE;%@W=y5 @@^y;x?8r} ;)?n\ A{}+v2ob^@}^=4[XCT__/CBBT*EA>\JY;H!*Vf\dP< klZO8qIxk cJ0Sxg]zv%]V6^% V~{kH^^(Y m /Knn I:*R&G'Ow2eypPtrwz?kDgx<kp\t4W!l.A\%c]B <s%::N{*!9s /a(%8 9 i0YArF/t[SiBLA^$F:;Y% {:'59AtFz70Mg;8))93JIJGOC& 6^!*5H IB$BLE S2GE L9yv;q`t$>Xv0ZFGst4Dh3$l 'F* ;/-=BSX:< HQ*=[~0pVR$$ORUS^ ^ q0)XfS)'OR_WU\`DW)n6=2<45? w*W:2Z<w-nB_X YW-&5cA6 zt ]NRak\/@DeEk:4h&.LirG>e] wLijCDc~{H. W d#;&48:0=C \avf:yqh>[jhztj03RN8_vD51Pd0 }&t*Ac6Q& jSK5T@ F qkem# (%a$ /M/ MM#m )[Z[8X4g4@:XYps L6>4?6nxkDHc]#}# v7 E_zyrGYcGd&F 7oJ8z' ;o6mxk <'jN 7( \ 8<i1<|pC ;O;w4667m={Y4/(.h(H m-hnMBA;w?\7}`$z81eA?~h^Bkr@=up|;99&{ g_bgaqK!u9yJHyPTI0npglj/bZv; ~ BAvG-dl!3<gPOusF#eb]Rjhp33)7Lam}-8?Ob{@ 5(11/b wz~c8Z{J+jm^kCs}}?39i$>V#lAMRCz4hF0IUttk7Y(MX0m5<*3X wtv toP9rv4QrrAE=5 9.*`YZ8s\vqd`ERBGaPZOihYI w9'-9-Hr LOvJNLJILI$AG2fJ;cuzL#Lghd9IY)SY 'esublt*96IwNAM4VLBMpQ*bY A%#8rfi?E QHBhz6PLg?4g?ZvAG`C}{?Zw2|YIGNf'~:7Ba7yi29|7-n+~6TBw(QzLw!w11fF^gt>{+0N4`\4-z0<Y3B3hY56 B>ag(JS%YAw>Oyv}xqD@M\p6<czDacNLf.`)zBkt <8yTth)+f!Ud 'm.S1fO8ND~ znK7T9e%_bf$Qrz.G- r8(LT^[[ZGp(?[O-69ggfvAp1) iW@jjyb3 m~k|o~nj%Rh\6?~bh~jlC]c}o h 5|k>|m'j/+LH ylwlCuyxi8/JKKO:i8~s59h^DZo^UK_-kEgI>tww+ %jM6}111 pBcc# q`/jf41!{D*QN F W;IA Utk4rr1GXp_#MA2ji_/xz=~C t S^8W?*Auw}o<) &Js9OY=^q;M9m3'e90g>C3;5~)b0HKK L<gzl2=ffE~~NW]|1p6Q^^{BY?3LJb W>Y| KxK5qqqc ?}9HyU[5|s>7o~7wN'sSQ \q60jtmE)4\Ce1R.>X]RDl@3s$=(./70]vDHRhtTd&MKP29p#$.sgFq Jp fX003VRRmAVFavF d54guB3 74Rh^hg&g'e&e&'cR*EF'^#%) X0!.|f<p#%>.-A:Y%z* 2 {F KEc99^JuQAM1\0 BP#FP B; 397BDD!e+HVbdof RixuHjsKr].\Hvp}o._}ljyn+;4'\N n\aCm6Lwg AVmK~m>?corfikNMFL_9 V1m< a6h0Zg CV =3fT=wC&S'j !h1`j` %RynnL~nN-;U0Vqtp@<&?:n)zSr vWN]>Y5TOu&c nDv|:DZe/#N d< #6P+^Zhv3EqvSS _v#_H?5<5@GYIEc}#@S M@uwdWZ.\q_e$Fm[6dGSBulGY> MD-jvy/T*8iT6Ho4zUYG B5} ^T9k {qWY_ e_\c0~7npAqW@Z0u5Kh){9#B!*B Jl r-U] ~~- ~_WB6 *x 'N\k}Y)/p~7-lb? 7Kx]W'< 5Xhh555dIIb] |d ( a .gaK od@ nXXxG8hpU8sMKZZZss33}J ?{Ejg~p` uz[o oj:xU_G8_.*ds!#9HQ`<T]Ed`~6i7jsy);9:F \7.bGG88WaF.jL>6s>Uje0Cg8I20\hhp[83G ?#&4Lt> #c)Hs1LhOEBp0D)##91+9!snsBJ&gPA@j#= UU&HHqhI$HD81QPtbl ) $%/4!e^2:N. m +b9f`< 3lI CiJ; _bhLxJm>Tzc_AGBr%!EQasC3#E H;(Uz$-dVorNe'ITzv wUuk 1P+NT vf;K=N7 B mAgmy~BnL~ye2{`8`\ 2A=dFX7&?6Fpy2g8\qageVpma8l[ - 2uf:5 ~f|-4alfn^4aN-9ZN93 i^u<g0X1ut3 Zc:9*s`Ir!N&(xLt& c.-F;tchrcvM s]qX#`I]:TX/mvS]]9jW_R~i9Gf54sGX9?5a^eUP}CCS3bo}lny`j~hiyhjyo|kVy*^#|Oy;{kknJO9ckLOH dGoFeG;\pm4y4-NKJJN:Jp&ixUvB/Hpz- WH9~YtyuCGOLL w744 :t(33s>2Du U*Nc-jrt0!Y'0 /_|x H/^qY< YhzNsi8_? o OjRrrX8#<<-5[+n^ g3g1ygvGvC|sww7 g-|r.^(|y/}zM>@CI|Ck) PIiHn{Be#Go5[Y?$<.?<%%E< ~xIWl+]&O=Y/Vp k72\.\a0Xj? 8;z[omA??;wN(--6| p^ _ 3Fd7~b|1rZb|f3hTp;] o(> {0f)4D#t hrP9BbIQyA.%3% JD3yf\IUB+QFeY]B\=9.#`zhxNOsF S]@JDcHS`>/-9j.iTy(H#% 's-LI Nd#4:L) tLM@s:Nb:`uxCp42gl$'vZi ffQRIG ::*.JFk ME(* Mmp J`;1Yb.:4dE-Go5 (pf\Y\dy|Ty4NR') -Ns 9PhZq2O^-o9Taw?D-{iW> IfS7>g|:B a}y2h[ a4h#^-[%LG 6A% 48d1{- h[ Y9;-u}[ j`Blv[qw8~(qW*cK;GD:nBSd@FUn)vNKIlXRthp/wHFhz4!hmSXP56w]1fS?TS %;_XZ_Zec)vC?ROS1h(45=37K_[G#.sNh9gX$4V$60$!djylh >#X~o|ljG~an}ji{bn}divXPQ={=Aw-.N]G-/:V>thaf~BTOw}{}+_?mGE Hoi8 '##.]T*NcTdsu wGt }<ny8+ =>>l~zMMMRR_~bA8u{+++O:G:zB(Zf:-v2`!$|Z7Aq^vhWLZ^g/hp[DSAu ;tr:}7X h)okQp= 'Y6}+&8pU}Y ~oA1|C ?p7e78O Tp ]Fsg[koq:*!E. 9cOgZ!ER{ n^j=zh &p{G^gg#lP CQ>z[o//uuutssh.R>t:\pG4@Ej>HbeW2`aYqW!D/4iGL+)YhsFcgR=mqK (]q &Ts 6>W9I_J fQ: i3j0qg X 0+ 'q&T(./tF!Y83F:\B 8S4U*d;[MsQd7y&3YEsAdndVjr&YYX.M B'`95^KDNMOPi $sls$31QRId\JGR=^0 -XPBe#CCPAq>~&;G(\ # hI~ 6+|/1z@zb$?:0:6b_|TuBT9e&}Syc_Don|hsuti\WENK;[6uzMKF4h}=Kp;+h0a>Aei<  FWqLYa.W?^hY L cB&p|msT l^793zvOz\7 3N)HyKGp^3$f fTF|Ta!B2rL9`vg$'WD3.%U0D)liS?TCtC;nR^V1PAraINu J`*{fjyfA^Z^_/NC5AL@{84RhRh- QGGf YZ[  ES tG [ 04?7mD5{fM?[uwWS{JqWqo]?kx}g*Rm&xEAC0lmvs];3m^Nrhs8Wp~%` _ he/{^K*_wtEc`rJUUU||~j CgA}oD/jZRi4AtAh w88.q( ^tp _L/v+Wet A(6m b. k7R@-)gJQQ<u+88WY\;U_oYH>ig U3uE*79Nfl34xW-$kM/^te*;iNhn2 Vg!h]K'iA!}+RPm <S Jbb}}=g{*sYJlGKV?(~+\n x>;z[omAn % $ CaSSK^8!DbAD >l3Z!\v!3`kr}TsiuI~OuBA]hBpFF!?\4; riBsT`3\J8cIA}F3 $anUDKb f#4j:P<g>y0C9+96sz*de%$: vFI9` @I93x)&IH^nGb|4&uT/GKG'*EfI4U11QC &gID g3#:FJ2s2g %0sX((l)#0 q6Ow8P9U`Iyi5 QkS5qa%)sn t^;}`+O-m/ jr>O3N\~g^Cg@[V l^ @)C!\K.LFX.c zO S?HM7rKKp)3Q CV9/Di)4ud8gb:.Vy^8R#U5`YnOw_uaTv`q`9M)5%8 i|C1RNwb).K3fW;TC1`G4Sr4_.+.]FmQbM1f=36?54=14=F];&;u3p1=5a'g2u1~Lqh<#[Y.vcL06=>`n@hCC}M#}:LM9:Xo]T7kS*]o)V\j<o|\~sc|7P7l wl]#O@z -7o3Z8_ p_ tt_#t:P:8E*t*[W+}4 jsJKK###wj@ GEE~WI&))1R noo W' b*P(<_5G%A@UH? 3zB5my9[ /`zk7?*>WGg~^ix @/? ^g8sq(4Ayfj`n]:;;2|f^*x***8XaCpk0$0!A$.mXBv4 Sslx_JR2 %r!xp/ -[ ?vg_ 2oDW<Hj}:XomixD?~`pKpu%cgP6Kq9#l.e\[^gf .ASte!KsarUEv[I]tJr4q> d_B)']K3O' D3X! 2J!*D41a 4uX# AtfzvJ#h{q&$vhBhtAI qVrbZ|g9c.f caIAh4?#aJGE8cPBT=EB'FsE8&;41RlDs ;f%1@sdXH qi>cO dc  O?XZO)uk;TtzM'GK>x UZ&(''*4?:(*2!*!&)@J|jS^gO3SU6PM90;T^6z}&FPaaX(03] 04 {0g[7+~7C g^&iofKxfee*P%^ Y4M <L!5aX5aEBl/g{-s tfzzC5RT ]Yf pS]WNLzK;}Na]=Tvj^d@$Lpi&] f: 9OCtU]e0:\.d !*9f;U/m2f-m/mtw`BpLG&{lj!M}705=lm Jk hL.k?=TNS_;bwQ\{o+Q^hmu;;\U_PHHs@ 1{ny?c 8#8L^K :P|Ax5 Ap8hB{- >tuu'SNEDD= ( -[eee/^lmmAs)^8\. 8k#'(^hB 'bz-NAJ&^WBU1r63 K/(WEhc@_*7VggI' %xEJz=3)/gv5R^qAv=3g?sUD 2a3d2c>/vno9AA 5'lw+PpN7+*W*)eS  abRRW[ZZeNxdVY?b H7k_ac[233qz[om?H_g~?- 52Q/_NOO>QD 3g0 sE)+r\y84f y/AWr|B*XQb73  .I^6#3|tA ]EE]LDmDa-*F9`e*AHO-B!h)AN*z6hct*R\d Tv5&HIm abffR4ag4B' NF'S9!&O](])hH'r9%!]cERpqD#>6)ttD$ UQFK!9$fMtQ{9SEEH&H#a[' @{T> .e-8z2?tQ=)!_E7?r/(`r2/N ;=r]P})S3@=CD]D(-LA Vom >! 0._^S! o 7?r. o?~ !$~sT<pX tn&X ?sr:D-[ruBn|Du =%D> ^B~=hz`{lzK;R-v8<TzU'D; =gPK;ma-Br.tWNS1iO9]NS= wS.?VO:1 c'\j;/m@gTaC7bSQE YZPARmmmO='V-?   p-9 Q]0|{57 > .Q\zGu]o._^o:7vP%ptX}dG|k7<3En |]vm i.w48_>L&q@o Bc/ =@XHJWs4/i#? n|_( 8?qDCC#Nc_baC(J(o5@Fh o`+b\@b;f Z8|^qh/6V{^ ^ e RPP _t_!)o >{x=p?) hzfk~{Wd3^Y?#v&Y>3|f[3?sX44]vm-|#*J;P_f<EK!\|$RI;fi mpD o_mtC^&}?Y(+T8e- o -S%PJooqz[om?HO<#M ~cr >9G/leU Qgl {9j= mK5 %K?SNDSXKVQd~'3bbw-45]EDW2 e\A sQrs.sY5ASyJr2KY gDi<96Ds> L3u/shIx1g27  ZRh>{$ PSTT=c:)6:=@tb|5R JqVI0X5(U4m$#8M:hx buBcb=XFr( #hb!Q$DB:3!{9 7 _~7?UkONjOk;Z!pE]u9I N JM-O 2OCH '3lwndhqLdTR Y y UMQFb7zozCmCU6n[6+.KR#| j}|}qgT[wi0 0.( m^F/uim?~8hRa5V04l] 3sU-Ly:+C^ 0D-L13fgbYhq .2 #<o3Rt(`0u]n\fCgq+A a<Mi Mwbn|aS3TN^93Nu<fkr#whF .LnC5nM:p8\qC?;1=NthC;5|XvRp(F]C#6h;&GH|E+ZZB&8tcc3sSMMMOMM03-~&uB V}j|@wuA*` rOvvj6yKd_>vBoW qxYvi4./w|e5:~au;:c cUMCxpGt:8bx7~hK7 ( $b ~L fF( U;wY}}C>s-9a Jkkk^qhhKAh!z _|f|a xx Z(tCX .aoh_##_5t o[P{Y0n{-A(  .J*xeb}l @g 73;yC}% fxXW{qk?dfR4;=gE t93=Apy4 O)C7?h_>LBpcwvp0))IZVV2?snoX3 ^|BueWh4$z[o__*M >|.Za+47EVDNs=k+SAd>PY~212$.ebHc{.-@wK9 `oy_I~f;\sA.[a$'</SEi_ld+-.G1i9 :/332Jqf#|]ESL38d#qU$Dt&cABd8sRNcAEa#s' -su#hLDs1)h>{@ta216&J8:10HO2La3iT$10&FT\T$ L8&tj)h7#Xa8sXuH?K $R:h=K( 3Q{9 W `7m8]:p~5a`EgSO&O9&M-'}YrY E~EV}1_g'_S|]uw.?P] 4@ '+bvKg2~=d_uu-g;3bn3+.fLaGM7i~h)B)eWHqy%6 VJMg(!liv)/MmL./!H/Z} <w mrK3aKhZP.1&S3 7+`C)MX'mQSyFxTKNTp%{=NNd~CuN';u]W83fWF 1fC;yT<F v]1Jy&Cl>;rS d_#~nm{fjzb#CKcSc=3a~dlf99s:i:xp_[1im}]=M]5(sS^z[y@}g[. ]DZ/] A~LGypcVd'e~}(X{ACAo'mGTp[hh[n III<{l[[ ht zjCalGI_Y)/_Ap|sz=|X;Th gOQQYYh4ruvvz8xg!/E3_ Gp_ bL/Vke#d% Wc?{7*8V}FxjA+Je/Fcag/ <A{iXg!|g /q3^Yyf' o 34x91:^k' wz\C1dS$ ys BqDiii1 epQ :E`0_~Foj/WC~f7yW> Ngi wzOkTMMM??~ tg8}kjjvZqqp`hHM5T X<WU FTp Vjr4(aAM\Ry;Qb^2fGt5s';9 \=(/$]Nh4/yyb'2%&sv1H3mc/LCY4 Ip 4r&3fsVrb.d88s*:R`^Zr)5x6Rt:<l~\4_$F\zR<q=diL2!$)41IKBxp9*#@3%2:AJG2p&TDaAJ; Z!AG493@DRI(\PSQ_+@'~|RwZZU^*P~0dN/>%eRg{?]k'+l-?:xv  o<P\iD=mWr(:5.B~[>d.Xo_Zg_ 2;4K~P2OC{A~R/v`8h~3d].b|3 ;ZWY7KGg 1HgT =^J~ea4ou_9 |\n>=jIz:B*3Y7=hlnr.e[?O&eX(P91Layr]>Tvg 62NvO`9Ntuh'S]a qG;/gQr +.!mcNQ\z5m#93s ck/_A{GG&tD|A Z Qp4l=)854?U^zvUo5A._%Dp ?^I1(4q_o ;v|G%{>lM @u[lw c l+.Yqbcc 9RWWj\ -(;dD ${@T0x::81CCC$--mb;pO#99_omml 0uBj^@:HP?{agj@*Mk[!?oxhb3%$$e;wX~% }xe{<3gRP.gqAAV= ggFa&er@Bfj-d1pm=jsvh6#ao`SVVz!^0w\+~^{pt{@M] kQkWIfs PTo;z[omAGMUVV&x\~6 :Mr-;{<`e}G3`97/GmEA$%x\49Q(F< K* >fe!b|69WbL a%F] 8OYT3 Y<3E.s [;3 a~Fjaf:g4BfgP9'1Lig)HKKA #+% R !(LOe* l&AH=&Ic KxiR4a i7b1ivg0L>EKbCc qtd8amTx(_0iD#  DF^ F5h@DSy_DE!#v.|f;ug 49?pr!Z}5'jj*s.d\*Xq0TASC?2=SL 9{wWG NT-;Zr|`-|vy&jWLT3XC_5 P7~}|aruq65*-[aDGx3d~}!&*Ph _<`YjgM2-ydyIi}&mFBq Ll 0H6Rw:T psav nTIS 5:pCR]B$C>er(`UzG7g|g#tk_V$KL~8i1Ou&M~LeCYho@e5h`FSS5NZ1l:#~a skvM>blynh~IDz|NPDw3SsKE{K3)DLE !<$5z{:f@/wW]Bi(#{t`A(<rW}}XqBo9X!>|3';ort\=npD~yUQar>va} /f]c+v^#M2RcSeUYh >hZ^(:<< 1u f kWs_C MxZLw(@/|-Y A Z1 B^zGQ %X5Nqk?( hV ?^}Wk/]zsPxbcb 2x1OqAjI>wbn+5x1z*$Ph.DxjT_jaIA6r8<L d ^c|/7/.CFf =pgxtf?uSP $%7__c ?cnpnjq@b_djNwmvB\] a|EhY4(tS2HbAlz?3- 41M?WVz?mqh*VXE%YQ]ID;KI0\4E+rQU1j:J2b=z E$ts[FJ|X0#5\08s>AsU*tGSr3Ec3sh f2S  R6E3f(8BiN 1}N%)G4&!Z @0rTdbRh$28)A$ l0)tLdxldOE)1:7a123iISB7 ]`g~C3MgZ 4~zT~G+4\+^}qe7VZRKVs9)&Q9S9U*R'I HI6X v6k=-Txso[OY1EI>.1r;v*AX0?*5=/UX. dl*k'|y[ x6&xe0L|eRjfxmNy]1IjcBF]&3[^BLIf*2 sL3i'6V)L Sub/R:Oo7g4v4a)]3.qcU !zP ^x/x-|!9@!bU\ C8@9M9w^_=z6{K0 }f14_ =R? bY/}Kbx2&AmTB_`8zQ/{:&z:*X.y :4r< = u'#Zr`pxG34( J{ HI (`G#;*wevf(y-#qhrv)hFoJ>}%A9hsQ~3Jag< UN8[7]c#Xnv52]kXkl\Th*_VXv>121 w;`yG8>p>:'G U <ww obbbqqqsse@ 8Db;t8`;QpVh 79 hYg^ < Gy<vX\\ ($)eh+wN? H E`7/jmqW=eV Y-cgh gKCYs (]0au riQ )IAh' y' Gaix (]3vtjcE ja &Lj5 -36\)'?S3' jv`0LaHM7B Z(DMW]Fpd[n[ Ocojwintt |`.&;JASjWso>>>111)))p g' goLyo>*GD >wLwvnuNAll|)rwRO PKG-y4|y>:avj21g8  7fQN42ac?a>2RT0%iZeK<I>$!NKJJ 3^UjYI'e&s<k[fPtFB Ib;3 pYL>#3 $sl4l%Mhodh< pTrN!YIAai3?cu`Dn!AhJh!i=#6 l2y aiA`X`33iy4BR:4 aAH V^0-@!L}qw Kb| 8{1;: =\]`hOO9~7t$OVV //W]`P|4JM1iS=b=DGr9r<d8/@AE+Tk%6|9t_QysQbb(]RQf_3i%Wn`RyJ5F=7UlBgUUsWXmpj&-W:A>ZljagJHy}>=6Eh%'X514AQ v!W&)9 K+28uUQg%#dg#7^e$ 4EWK_2MAh `~oQ3@ >h0-zn=Glq(oi\8.YK %| [.0dT/GEcp^'qN8?& oA'}OGc~80  j*{*wQtUvU|-=%{s ;^XUbRN kYMi _[n-zsghuS}}uCUNL]jC'rCGRVK m k imuT;jFZ+-k*hXr{{w3H C?# > t <  V*F2 a7l8\\ !+t]pMRaB;EspT'$$azf?88}|.Ar/~^-yk VOq3VN{Nm9BKi9z5mA [8~J;KK/l8wVlZ 4|8hi[mJe9ugr>s=sY@JR(MPa>>8CG{i3cc71tf l &ij0?%9 H( (> /Qh89w}rrrQ6g?h 6|M}J_:ht? =z rLL~]vnm'Q '!g9 |7=SU_vZ^Am4U\YhCsh37SlmF4KHHzgR)I?eS2alrb&aHIlFYt%+A9$M6ld0WA4Tp2%ba3G. ) #`K>bqfnf2(|j0 Kcaa f0B3ca J6|X yY7m%#4  M`m#7X7]& ?_V|Kz!'g7/3nO%=[=S@{ps%4t/wwt9 m |)!BUUHUu^VV zNt5W\'*93tlWaJ{~bGArsnUib=cDs=|x!g< u5>#/Mx)WY^4ZqkZ IC =c&i9nL6U7^Ro3T:o[lu}F6fU\UQno]WSAVP\`B:.~9&(]PlL XMF7XeU(fh+x MA3QeaI?L54+4H V'$'k5^C 4buV3Tg _ W^ vc.KCK#C:3hY'ZEg Qt\<@m- N-CT{.l.EKy-)O<y Gxf||<{< =NpO;twxz}7eVSj=[nzO[EF3Fa%%j)h|c- [?49Vv4 }u433838[k2vWk&z`ih4V-+&kL0Um k-:CWjQ*}WxG :jausPEaUII!>~g 9=e@hx au H>twBBBqqk|(I.|:CHak#pm]s5Dw$GDppEQQT }}} =>>!h>ookv VUovGg:1rU6?l8Av1wriZm[Uaj>qV?D0Yj3agn>C3gDv37]Lsv5x{!3 $b(4Y8`x\@* + rAc\%btn twwvvv75]K/'GEE8q{>SSS8{3!hAO4N <x??C<\)X' ]?]? w'8Sb KKKzuvnI=J)lbVj8n 9Z[[|k{sSf_8S 3XfBf#>9 EgY4\4s!KOEs3zNK4#p$dfs 2EgDXf`=->e8M `iX 83FN'1 ;srLd*c&QDSSjR-tD<IXuBqs`lX&ecBAigT0(b7Y9<  F+5mg5>A~>CUdv@ _t>{{ynrM^(@3;R(A@ o/T\}<?pgt^:!V$p:syan'zgH%y|EE@YP\-+__ |bFWQj{~RKnquy{D 9u<3\NLq-jL V]25W}U}OD|< 4WU+S95Z`0?+Jo{CtzF97}2%K&=^VHY)TX|J_)r}BfR@_}Tk8XfY1&Y)I1g-]56!]E\ qR;P@K0y z p$(Z5I V:1F8m4/4Cu >Gj - t^ \.b-1 ]6B-hB_2i g:1^8&dTY&)/ u f 3'#'i uG:Q qy_[;.U{n_zV $]09/xsa/-_0;gL1JZK8ty43 i- m+Q &@*cgU3Sg5t;k8W;>k[GZ+*u U2MKTRvUX}j~cA0G?9=R4< 'pJG }z }tQwymq4\CBB233r9_~ @P`::?cV 2|Vhnv/T ~!$sO}N:TSS%JD \u-A[I-q- ^N*:@6i:8i mv#VNc[Db7CkUG {=og'h;?%d%ldd$cUL^vV:I17 eA?k7Lza3n-}|fg<sRly37?sgK)XbbB}}}}||0Oo'NO? 8p`/k{_hiY_^^B <Xq#g ^yn  :D7gyp+IA?/i=;N{O1gpwz)# quvnI_m>2Vt^&&|]{ ^]p63?-l3h1haMOc;ag#1; 3Y8R1gJJ}XuD*6$-cFaz 7X:>&:m b&N'u |ND#t^64 AF2aj|cQ)E e#4!rP&Mg9!*<1:@:  gEFXStTHP\d8g}3)8` \:4J#BYR\ >^T0/z{zxyy/oD@F^T0Y8|]( GhDxza( LN7fRhCS?{AqLL \YYH^VdEE]n%WrW# +/\RGnbCFt?83O<tX.'<N{G6f .eC76^kky >&xcR2\R>GUd$%5c9ogcFu&Doo95kqC17 gHoQ=4SiLd7I7pS7S 6&U:^czcFc2EMbdxx/K^Dil}Rjk`B+({=!Cd(=_E/W )Mg$~a># 1Qjm`qhU/z>6[ -KQ4:lB/za<Gy9x9\2H%t~\ e V^IdIt$CFEch$Y2Jt% GKcy-fhqL8?*N##'c#C`9?2tW;pLxLD'zC`_{ QW> yw}wwwTwVBRe_:k1P[v ?6CsD Zn[jS3W?: ]i2u tw]}f##mmcc #mZ>T(t YBW4k/*.df^'|}gxO =zO?E.}}> 4|+)lll###\@v-9*e$Wh+N[F=yRU'[7Wdfee 9r~ Bvr.qrK-7s 8ltmoFh8Da ]#Wa6@slg*aI]l%[Wma%|Zi72gfYsIAXi9l||[g83Wp0P3F(|n7(! a%opHu c8866PWWW]]]~~_sg[g??7?hYNSG?]vnm'~_qqtGg-]Nr![[[&=2F2gg];m`affz.6G XAC\4FT< XU7&&ESsuiJOENNIH cggXFq*  OcSU3%Y!h`mtl7'H#3'DbAH\xHB;KA8 qy#4. 1 HRG!0  e[e/CE0_xP`X`@Dp`gLAG3FO[X4qi_q<2/4s(?_>{6 D@ ajOO=8`Oq@w9[ j:/|V\#a.hiY<tEyPUiB9YY Ws. (: _ y!&lwK'>:u4Pg}S4UMU h+jW-i/&d/'MLP!#CUaBo4~]1;qCq]zn[ii7cmBgb.FN1!3vF5Tk&4|Y8?FC ofh;gdsF>)Ab2 $~5 & WkhLPDUf z\R/Z5IW`Ivx/K:3$ % )j([2H${>D4#&Q/ g:tn<eE_$Kc1Q(f@#v !bC4OFGcp syfEG5C$B|Gwx{*:tW=j6.2}-%)M_[ntt~J\sAgx3g4Ozj&{=}GJQe111vza`5 k mu@g]gh;gMKDu3eMekf ]qR.4LL v?us3Oil fIeiwSNgddvvvd28mtv  It-chol x[h2772S[[KZRKp+[##mvT ]6[i[w C{Z:N#V&[(Mjkk# 5%%%g:Ve8iOeAZr97l{6 o4A ?Sz$ MPSs~}cN<8k~n  / 8hpH)\RRRSS ; :rG< .LKl?EpOi~:0#rqq''wnmmr'Nm vyvCCC+;$F%L!g|8O.m.M 3  [6iF2Q @t~V:9?S9;%KAhsN* 4#ds'#(eYN 3 )|h~M @h X|#agyhc)h)!Qu kB'1M9):21:S@s c5C9/GNRh1Aafs63AzBLKt>Ga]Bs(:$(8AYAo05G(?|/ q2a@_od^ sBFgl0L| ivC O s>A \ u O6_9+.IE TEUTC`YYiirJYXOOIMhO  v2GBN s=~>*!=(MthuTs/ &_$='/0zTqFok/o^WoL(gc&7^aoM)!PmLbVoN7&`u;6)h:CfN p[IQQx8eQ62-_4\J ^ {%za613 =V UaWF1rfB+Cz3Qp+S Q$_2H_/'gh zQ${fDO}KtG%LEh~0yQvpq!AyxM#zf #OtG#;s~ 2wV(O3t[K!h}_znnYZO5E _ Z-EMI1/su=5gMO2030_;Wcb65Z]GDOfvu[+pZU3^ Ytg5ar[+4YZRtZTyDZYpERwbsWRc2]<}rx^.  0! :xpo>r7op^ 9&D; E[:loVami# p?.4??&)&&> y ((k@&TQAem_ I v^[%[j+Pi #iEh58qAox'[p[ V(U/8eULzi \l%|+5h|&pyT|B!pcZ\wBc' cX9s5 . )))aqF8{!< ^oO ]|&4g?tGW Ebtpg`~ qpe7L/6]PP? m~j//8|5l8E[Z# K'Nh4?3LqLLQp6jA de+2 ZX0+ LN?L sL!qcflrC9rYI)df qYLdg$LC4q$d`^: .]j:X::fYhCv&B'F4g 0[pBG!yHcXA2op#7Ec D2*$1 {g8YfFL !~$G|;z!A>F7a#UO?>{xy b3n*/z]4fqhw77rAn n }>Ui\ liI tEy!h E<q9iY_t%bPq4gRcJbCCR|]N>DttMEdSlGWCK: :}KczKLp.?s f=dfS(6M`yj` m5)I& ^ 5lkR9PnLL?O^TQfsVxIA)N_Y$z0xmBWY{^m(d)z(Y B_%UOZi?3Z8^(feT&0c34 *vIK90_M^pAY/z>!{9!f * *zjaQb4cN4_A> {y2O ^pqTz(f a|O=<t'c(F.}g>j:5Z=xg}_JozC9kY|f{5k%n--%BP3Z84}u hSOz`n`7E1mr#-cm p: q j;ktk urRMs9GFT%zLG+1]&o.^_7^i%aE4RvsazYf\nLpBq H?Io>0#8 D =g%%% RTYmN vm4C[5Isaa<|Nii |z= lkkDr\pb ej^bgGF LK4jraYr`e0q8B(G7]b??[J\{KlsT@@;<[.m_V \<[ tnPA>\AG >Yg;SZ&ai.hA-3Xv%!h8fll<oq/^X]]][[?//?? _ww7??EM%M2..$y8K%U!2 v8F |+`hh(200`mCmB;CO(E <//{tp(vm~OV| |-y+#\<% e\D8#3+8\N0;|.R.%4C$.x1z+Gxc)I/ h(Hgi&$b3'f>cA~U^*NBMTF|\ YA UD  3)1Q a EG33V!Db $HqbdXWs%a)X0QhnB?`\xhtpGHqthYA &y AGG8<!X!sDp`WvFL rj_  xu/|g 1q41oFr z84N2<A)hb0La?3A)LtwaiX3N7G %|Yi? v.sY>#35X1:07?'/3';'-315<.073=T3C 8s.<!+7I^4UuG@D{ XZJ)^enIu3|o`%~330[jcBN94RnN*L=j;\\5PmNckZyVYvlLcD O55_M` 1JV|c2 qkU MU6^ _kXPMH7dF4h5ogW'/L6Z 9+& &/&eAxn>|y Q$kX yNFgqC<.X > < k {zHH *^zfO? -au Z ? M{ }Z)hzS i X-/E7xMn 6}))%Js~^Pz#];083%P1W?W;=PonD\ ~FAVI\ZhB: u G*5QWWTJ+.%5D5b.j/Jk.HE CE]W^LI <z { <x|z o=oU>rwwZ7nX4tg&*8mW() ) Uv4m-/.\@.{Ceb\Nh+ Q/[-|%G.[ #n-B[.mzpbvS;A;#.MmA[l ~x~g M$- qG [gniUp (gR%vos&l36o)23?EWWVfcc#$$X9}tccH$PSVo L*<;Z~Rk>?sg[nW]x>>>\luuuWvnm'?%%%\~83;m BGP;|M/ nnn 0 d)B2r0m3Pfxqav&?g<T3j:2r t*IL5a rnb\VvJNttJ6V<'rr8tj2hY:E`t-1+9!-6eChtQk ?De$%#1dS( Rx<H: kPMhta !:2&8 qa!(eDhlDCb 7EPEB6  2CLgB3 t#)) \q4C6z(awxp9 )?h*~ XRE|`aiR:3;1 \QIiK^|vs18y2zhwW a?#WI;KJEEy{y7<s3OO/He~y!IgNz1:1=W5\U4QsQ? X V5l5Y5!#T$l~3rsokqCu KaysJk SJiZ5zk$kT773ogjmAcykVMnz}Z1 *x9!hX2W>dF]+6!%?E5fE!b:)8VBZ 2bp!R #6^$+F f^_WU/L(XRN(%O5zI :|Qig9qvhQ[E3Ray\.(`qL0[= <kj5`~DD z=R=TR[KDpgEfpThT E '}x A nbW[0uvw)j c_:(8&k]5jSWvn }=| Eh='z`ST_#1\mEwbjjINsJUfqUi[+GZ+eu`hh$:/)V*DU0:/ $$4TQs\kiWF:zK dH |p{ w; 8 pjrVX)HT;Nvvb{.?[BH5au'0fM !ci0 pq2iIRhjht p-y1Haj'*m G e5'QgG |v ADf?aCCgQZ?KLmiD3eAK%hSlE-y[e < ?K$T*o( ?#:<'_\| 7Gt!LY).TWrr2W%{pxrf i gp }qvn 8s^aU~vk&<00@ >g#=YH.jf:%'53aV:%8E@!ri3#L8RY9U]m4 K du>3Iq|M8OUS1 Ihl4(n0q\F4C$u#>d~NE)Gd8KFsLhpd?agXE0FT9 M{FX1T|0l~a!fn3g_PC>!~TdTRpYlx{>$d`|&2)4zQI6(l>g*>h LNRpwgp-.O}BvYyXUq~\ -VWVC/W+dyY{ Rz%KMCv6llSFt]rP_AOM]>;xic^7[1m6I_M4?PUcyfs@k1;I3\dZ-K>3Li5liLw$T43d7sZPoo0agS<Qv l n+L<lU<|xsRJw +Vpt c||~m4RJO*Vp &[TIQjB[U4/Wgf^>&\ Ke/9V$  z14 F1#c(I'dYL/KchY'y:XEDO} y a9sGc8xw5wf9DYB]me?c;[{}_~.lR ccA~`cgs_t5ZN~zfznv~f&s=M5a]KAh:Zm*( 74^5Zk ghm :>Uj[+1TVj2xs+Kbae`4ojfdu./Y??TQ8X^w5bNSAzYFla|hrW3 +1HC>O>cGVay@X+o3gz{{h4R\nnRQ>\ `MZJ98roay x;-s^6J_m~+mU.Be+;# v4qsvz^/+8?;BvZgKm   d-<sr }=[ $ u<$=34*/aFg\Y*Fza:9__s >wa!(;oY>5V)LcZZ~\a^Ngz;F)<dcvp eCvnmm`O6o:;;-qUUh?[*aYsCp9 [u1/|nBaX^q[He ?sf3#?32<0g(mVC$C1dVs;|65+Qsnz*l3L23V LtfR!kV^0.fq83X*b 8>'3n HY h6I5W!N|NK& :c:<atEN'2L 9 `LX0S=Z3 a GsTHP4\ ~B 3 dD_S9T|0Y1KYVg|}|Q^Xy'}==27!fXtsqw9MbTDXX- x)*Ke00R{qtM_^PWVB!\ J JMMI@#tl[fLKFtSZd]Jxy|pAwBHq-OUo4^e_kO]O=GzIJM)0`< _gV{C-AsCEV~3kF5D5EO)6'e&7'd 6OoNeYzV8(9;)3yU[gDoycUkt8$C E%xBM2BVK * > ^1I_MV.t${=Z~1|>!_ _$/WX/W%0FH>x9Xbg$g`A=4{6&| AT'x: ; | Eugzp Ed':SbMR d%D-|0boScZ};Lw4 LV}))--\3VjKQ jtzSW@VsC-3KO;]=}u ag$:Z&CJB*&w]F V }ZZmP]+ fMs|LVwIT]A|YZwIVIxEp *U%WDW*xal%{.gw]<VUx1%:;*8O?w 7H{ S ?v >CQ@mkE 9VmaQAGcwve ?@ *q~__>/HT*V#0Ph8Uspmu<-u;|vDQT-MhF[gnL:z'n @7v~|jluN;l?e'I8>hK6Ary {9h+|63 834LAYL&R Bn 0&tGG'9/g -177[wwrz !_/tt |z$<SIIIt{v?Z^pCn[3lZpvm~[Ni`SS#?*|s}}}pp0w]fsPJffg~'|f Po $Isx3F.mx4ma|69ag@FVRu$2+1. MzY )8)~a\zca 3gN ba13f1h`!Hd&Ha4MEQxL Nf#f91 h`8V06 3p|B Psdp`40 4!b:$z[MR D` *JH!gjGf6 goOug^~ pY  o_~ >{{z!^=\ n.3rf91S n>L  dy/+DRBHU}AQq^UuA[whu`bMMHUY/^:C6Ps.#;53%#)=1- ^gOA }.Y^hvy{[g#5p7}g#?MMbkZ*lb6Xf o iRI;GQi&9 f3g#f\) 4&P01KM(QI2\GZn7P 2VZQ K2K[|s]I lsqV3D4\3Wg=fO D/%XP/y6.Z 1J%%\KqQ1p^+X/:td(]4`gKFQT'z? z 48 DFHZct_5r E#%%J Q-_B u}! hm6;r}3~Pt_rUacs`0#^fk3m.WHK f = umUk:H[LxUV{IZl)W\+Q6`m%X2EECeyWs*uK K A (w%ui~Y~?l-+R|!?<+!;*0!S <w;  9v'`g h'GGGx] -X Nj[e 9D- UZ{xxPcaa!|rtFqjjE o%9HhZMAwnB[]mrA[t.p^Df~'mN ?L^)))Occ#^*g$-UA3' tIZb8!h=S ? ' g&tn#sagBbDx<?...tx9 ?#x866sgg'%3 I#-\SMoKK -vNzg?=^ |lnn>ISSSlovni_555uj~@B+(hV_<:::OX?/OX^fgmF]@g1Ps>A4*p3qs]tw^%A4f*O6yYAV0efFI&'9% LH Ns&#4j#+ T0=>RXa06: |Ne96X:2)*6y?$@ bl IP:. UegDqL f\3N3F1a~>1a!0&CY9:$5{0}}a&Qg DcUAf<h`Y&i.)g_@ ^~rwh/ ~^Y6<HrQ3.= { 5/MZV (RU]P\ bK#uu%cG]ezt-UEOV+-9t>}(/?z I^.Q's3W..~]}s'yU3Vp$[DfZ5Rmifo7Fi6f?r|l]VI&Sp3) 0@- oH+p7G3y}j1j31} V!V2)4zB91fIhIw2U*D;n;>K{%zoxc{lV/&@?Al] 6.doa%E>y7Kyk5 !]0p BV - p%juRvwRzglhm|x{Vq7PP<3;`75B995Z~3f q7;f7XvsJuTFoNZM7&U7W_/p+_ AF ?}e'= {?` t;t\ n[lY l 'Zkfj{Wb~V41^E; GZ?OP!Ba.=[?Ymj. in.iaYc[\Rk.U*jbmcXTW^srKa_[()(+fVzK`$[PS.Jt=q SO[`@kK/emmrrs &v8Bh8X$'/FGFF`0!alGCN A@gnvh;Q#< -c +0 Cu vy$ ?68222XjGlAGg> gqAN>pBYnmBYng5 0s gxDd{{{$-? >.\ 9 }}}f4`']`2|p X  G! r)o vql/gh@pI> V o? QCCCHH\ZV tZy6rD9\pO BA9v>NgpN43( hF k b9H`#1f3_@ DZT059Ag\fs81 . !  L;Xm 5 0\.hTX4IT9D^4Ci JD?gst:U YOw_wAg ngq=)C9g ue n. =!)#V48p l i73.NHgxiPc3~Mg Cu>tsmgGG7x EttmhmZZ[ (U8$ BR Ts#t0|]2bMUT_u4In%)u[ 3Fq|+ |0bYj%g5%Qlw3iGoLW4/[3-qAWF_6Q$<$8h +8r?mlO3w5unNvU$NTY1 M lP\C8 s:V@oM eZSjTw'wfk /g4q{Z[C5gwf41|sLq{R}gFNNMjn)77'U;sz_ =&#)&kd9F#/Z7WGe_XQg+m1hzz (>Tus lafe s} CMYIL_Dgt+$0OJ8^9Z>V#-eP4'GwVSBNOv vT csRf6W+erTuMCLXJ' 5byM@^W0\%+JdcGQ/gC[ z3Ks*D X_%NOK`0oo?<{^b_Ij;/ +;777gp~w%v+MxXB8 oIj^h:uwk&h p L@iE Gh~ Khg`ccPm4n;&&KG;6; mRGg?v|p; ~yhNY`/<97lh[vs>6=[R}{T*U*IRD9 zxx>m ykk7w9oVGG% 2ZWWWOOaY2|vLJx8?uKbm {/|o]?d v ~__m>n >l <o}hjj)b<j#?3EiVE\6?''f&g%c .ML.8H4FDB(8UM)99:-9&ZjsRtD:a2amd94!jxf |D4LB!) }! yB^ KE :b0vvD]4Qpr p>05?G@s]h4y gfA$5>q\a9@? FTpJ9\:0 H'Kk`Ig?/O|Ul9^Ovq=u`5tws=}A44+90)}'_4=DilBV1=B |su>GFGO470Z1gqd@WBWRaQ@vlftOFTGjxS|pmt`awYXosOGylMf/vW~<PI6&Thf5h1E> 7.bw#%%ZDD)l5lOkw ?Z h` ~gO lYvL; .8H<3%K#;DVh&3%  VZ$njUS*vd=[Cnj& <-`;3%] e;.]RAg}l tkp-h1 ^03;=35):LOLo4tcB:iG_` ga 7&Q'oR\2|}DEYz8%j E$oH1a#m0 ]jYhZoX nY. 5MKg$ hAodWDgTWLOlo.*:5c S5U]qUSutOh[IuH[%Y8csmUjsgZVo-W7hJdxD^# WuByMPE@ivqf_azoAKK%EiN/Ns_Ifivoq&.tg~2BRg#/# zl[sRB2C#}wW^}( G[o%Fj9hh`SyAm}+x:N v8Dp 98qLD &Bt N!hmmEcJ9?Pddd' q;Gi\ vrnVBAacyYp>g&BA!h7 1sfFfVyL& V}}}% *0|w3}r? aO]]] 3/{wEx)agv* >CGX {g?18n g~_/!-gGG&tlr(cwaF E1ln `gqm4fSs9 h#9g#6+) 83L*GN>c b28IX vslJtD%I CitXEHA:'`xbxhA0'9.+fBi:#| N GL  RPB0 A{&FTH0JTp` tPyApp<SEHb|! uG( x.|@(jN>[&}Ggb>g<H \a))qr~^tm^.~ Y >SAr;=q7k:<9SRn84OQ v t$g_Nj9:PgEO`R[8X2T:AqhR.TkJ35%?+ Ry DhJhM (N:yC\IWd1d+e5M-cQb{R3QkL{{ql!yKYK <FB L }=`~h7v9)`4#<d L)M4Y1odh9 t</>xEpYtkrh{R7|@M`mm2a^RO }d t+lE/6u[ensQsoZvoj$j#!'I*t9lX4Gg@ 3-;[!m WFvu4gooaXvpBAF 3z95f4dFe:Gdj B=8qsH8Dy+Bi''+OPupp}E~Qm[h(i\o[7[wqu S~^ 5/ 6K&gkalldGD;*sS5' ZkmGanKGVin4q2Ur6%FucXQ[(Ep2M#)(*(/L+HD]IE}=ETn1;`getuc zwaZ]]0Q@ no82 } ???OO_]ONNv QP|a zp+mh^6::z'|7%L&SBYw.mGm#\ \0A=}X B;%v )|~hQBvB? ox8F)TN-m?s1 {flkBY6(7<>sC2e*r9>CcFP~j s '|A3y>={ VVA(+?@={o nW{?}{wx/Y\!9 v3VJJumA M qNojj{o& h\+ 3<CsA#RND`5B'Y-E as<7b)84F LJs4iXv$C 4AH]1Q axH#&EG&`BR'Xk b6: b\D|sp Plm297.aj7#}' G0BfXv <c9Ag4) @)hL>ynPQB ?y7bBoRm`QBp`iB_F H{yxp:ep.U D~&D5Sd>gw3Ir7Vm`V r0F; G$KWis9 }:8Jt K9jmq|x+~n9%]12q(M{$8(t@vLfTwjxkd3/?Rc?8{j?2g<6&729)Qm$0Y=YM+`~i%XpHqhaoKywLZK_ d 4DO9g lhdhhZ6n/wWp- kY-wKD=QlO+fd&5Hi<gRFM E#en}N1YhagnNW-kCJ4v<HMf5$^CGP ssh;]T SHoSNV'ww77FU0~k\ knpBTmWPc\~cRy}JycJu}BqsU|m6C0qy g6?f Xic]'~rGhB QgMy}I2 S^@S3[<278eyEy;`X6Q5^1Y5[7];^ :1 iD5GgX{G['e;*FZJGZYZ%KKZ>Q5Us[sG%+-j 4h.QAW*k5bYuV/WH3JpYs8 ;?KS_WUQb[nBW~r(3/(8sjG~r8{;FF ]W SY^zlwK/?]A'Ozzz+H$ Pm %-<LD|N)v+?3</. 4  6(C NN+i3aYhG;].CvVayk@)#o aKXtq>_8n=97lBA~! hl[jPH>ZY=gHAg5Vmp2lQ&g #::Zx gcRM?c\^[XpV_/muc34|s2 e3_97~Eu| G8$? ;KpDFF18n ~9..>;Hf}q nwUssssRR|:e&% XNKgSa! $N$ d$i2+) : (azBlF|l6y99g&rU sF)4(RvaE i@ Fng2<9612- dA(.MHvpA< B$N 39ht|xH h48bC/$qp A4AfXOH# \?s9B*MChjBPJG DaXP@6oA!BE y=O9B5.h? nxs j6r- /8{agXw.=@!gA=r]X@.fXr)BX.8e 3n.OK/hkW\ui(\}HWcgs*E<eqf~9_{' $ xO?[/<x Dea0U]J:Y b3#[/$~&+/$|<epkJ3E?k6g[%==\%}-RB+A&9yoG%8rBeXe6\igb\2.Yhm5z6{9 _0=X2QN>7E=h4:Mg | /\lX6LFB;YQmi`n[V1InXypVPCp[3;3y=e7:L;:0=Y|Ez{L'Wa;;3{[ uf)q)8*8-F1 }eCLC_4 \5}nL/ a|uTu}+2U] jz`M'ak h}eM/l?~4Idoj%AloTgHsHS`hbrtdlzjn-35#-eXt|p[KsAl7G[K-%rK{PG\\k*5pPkK4@SW'RZ kP+!U*$=)]4II&6)s{#S;8M6QRKvB(5'sV|sv<l33bkc*R BCyE@S;^zIx`XqNq*p-zXvzt3/h4\77?BpZ(D(E%G hm4HA?4~|v#jvRQe%(Dhv ?;%X4{(;h{ ]|>A ;5K:??oeq1g[+!\aqXA! f&djLCu: lmcgYvX<8@||{_;?_ello=//nu>/BQh{W9.Fvg38q`.11QxQcqq;n? ?gG1Y;g;1x9=='yjfRB~&&SEHRhQz$rLxVjd&vKzVS?*1m6o$EEHAh4b4Ah* Q`=Aq`9>#D4)8n |  4 :##[0.#sW!' #( 81!0 kp I9V@ =G:h Fsl2l BV ?Q}y #B6zs9' H9c.7 Q)h /op3J=x \ M:h7|4]<]9{#DzgN{aAW i;g9uR:{1>s]@O_} grq*9lmY<X)2WB@rZRO=G@~3OZ98AU(Hei~`n@Nt{Jh;~2DKg/T_:n{B[9XkC Z;9& F2&+Ek V*f`+k8/PA+3y9?cqgb_1`|)XS#^{ #GnkAhY4.gT* P%tl/o/ycN 3lrh;bXi} .Uo4gw-C'k&Y>`66k{uF57:i Iq6nSyu\ywR}oJ q}:555=nri[~ZssBjFAE Lo`Wtq|n|f(Ay)t:$ bcm'~@cgmemt/*/W[_H[fP<[3WVjl*25S}:O[(NWgJ2eYL ml- o)k.57iE<Kc|SCHKTgTgX+\[Q<ZUVdBWwUvTY*mR}S2CSHMYSW-#F(]_BUmVu4sJ$%Y 3m=E}%/zz9aLi=@/t'S0H8Rv Z1;6-97777ooo///!o?<AQhi;LTP| fRWx x!!!]]]l6 f>Bm]9<lZvDZC '?}DH;m 4->H KA;_G =7 <vv5F`qXaM;wmAGhYfn9mv !v6x f s?5sB%_|= @ovvv{tl_O( `puu+ g ^'l]DFag8lJxwb v ~ mih5# 7i[[[<o/Bj\L^:V 4SY9yQ9?3gaA B87y0 4`t:R:Ly2YDY8fUP3 a\$% QLgLc:!si$9'a9Xs#)t$X!)8B8r(#x sB 6 0  #pV tTH0:/jQT|0 *(*T|9 l T@ Taosgi>oy2o|;ttq g wW?O 7>Frp eyXd}^n(p9[ ?IkyAXOvh3O'iOw46<h3.pi] S #GZWg3%lCi$]_a(6U|C>92/<=q7_Ms AW$ eby m *EURhe5u U@2&E/?gU}$ KcXP] LzP-: \|{q5E l3t@iXP.D< giwalw)JgjDY1n- +MXd3 7@!{ K#[K9`5A3 nbmBj\Vjgi/6tU1/s)vs}xog4|fT~v+b z\:_[2]07iYIZ59T_ C|udo&U)8Ge+}?}AqmOt2ac]t@_m7v]ee;%YptxWh[X[lME|Uy~Sk.$CQ./LeCdYQg #M%*6T7RdnDlMu2K[on)Get#4sWZ2cS4(T#.j<UuFglyXFyw<g[R%) *=]i}eKraFS%e}hN 8!JnNhkV-9q[Xa<3oP?zyy?3BvRp }#0`S:hz~^xjkkr9 @AyvJ&lHK .F:@;$*NmZma y>B4}D9? ~U# gl ~'Kqml > V~-88jX d4 ~ *J6ogjRjLa044g& >j 3 <5 o_|Jv#zq%! ip8'N>7sc?  p<p_x{;MXO~r4q;n7HW1*qB;m;o0j\&]$ j_|X6egq9'%Qf0IVCjj~KOL'.9 w+NIB^T01=>R V KhEcp:6:pnJL If^!*8(^;$><ST% Fs$$8 n &|ty+i02 S9E2$ 3FF9Bs B<p3FC`?D?DB 63pof|?.;xyf%(KE'll&([ow4B#s&70IbWB0gop4f]h.8?|U[I|mU EitUQ?I)L \ShV-MKG%xr~0 ugFbxEA?'#<O?a;u'?Xe`cB9QmYE zkZ=vFUge8~sRzox /CK#]4>@Rh *0<2X^n7g53zjcf{> W_ hXo.6A^9Ae+4{qd1diAWwc}Zjh-a}V>ngac|im[S7$ aRAk3:;37g\-oMiVgtfpiqq1i74W!lEnZuh  DCyGO] >Pt~H{YsIgE> j{>s v=4]sY(o]h_n^n i)4j ya0M[ :\+6*?';#?'N^js}@]MWe*MME:G~M]=[`kl*5VXtM] zO*U5bk:zphRE K![.L-)#f;S2KzK2s r9+sBcf\}FLSV\cV\( u1(L<&|3H~>a^XX 0pq CsdzvP!+l/^ _]K$[ 4GB LO#8NA Y{h #N mRh@S Z.?;v magaigc {=QVV]M>/nPsl>j7lPp3mBPjP<U3g3 < GBCakk\ P|n+== ']jCxg?z`8qo=TQ~ d;i{HAuy]7~u4q;nRy=T-?:Ii;L-=LRt$ I&4d$K\\4%ESAXa0#V$QX:)'lNGg!fk4A9&@L:N$|LKbiMJbd)XegN] !Ida.LAg el` #y?_8O|X? y|u y $98gDF#\ QLgob+CG xq9tU>g x|3FE x6|==]NfC{asgNx7iYM 9 ;fItn.p=}:JgA{3gNzlNUy\Ya@N@vpNpN47^*HdjKlcE*opLbUiv{f(_y<Wp8l{Z`n?n(78|g+(n{n:hbkNliv 9r}R33:2<xdz@ `.ZSZQ?z [2QCDLs(m- NMrZ67 L5\aoweo -w{S1@k.wW{6|ly{wfV5Yr[ yvm; 6`/]uk9={3Za`X4`d33[[4-fW'w4w'895YP>[3fkJ A2t 4xudE$F5H a _tgO4} k>3 ||_{YU] +eiS9iuN:'mY.:/!Z/a;?(k[n]-zj'k*B %Rq$'~@dia(} ime$sP gi*r5bSX[(PfkMu\CM6\Wf)*s%RuE}C1oMeFV][YZ:OU[+@sh<gWJy{{4((c$k+EJWR X0]UU)NO)\t8C!JBE[?dsSv|sNB9<{ zWZ vv`Y`Ns<;t8s ~@_z;1R -O?/;88(=222>>>33R\=;a?NT QZ;kY8h .}XQ : Qv? lk/-%h8?Cey#v[G3cgGly gLMOO3<h ~ ?h{6 4 3ojvgsC= <'l{-PVTT$2WVV#/o 'h;?jvaigp;{ gA a/|?] ?z77@ v.\)xpXb>BbbX(WSOGeqx3R =-+ NABFb\.Rqmf@Ua \01shh lq3(%YJAc45#Rc9S9kyrtDJ0.HAg `Ah~(F.M g0Dh7c(:48 </DXMD::nM>sDsp as;cB }k?0/ s9( 4QUADE`F9g~rh@Ak7+rs{f 5o>DgN>y|fh7>q9r$*8 !7\] ]N{Y[]s`a(}P$ T)tmy2X-2L6Zy#5zd|kK2CO x 3giNp>' ;7YqErCytxmL1!_ ^mf3 @R3jY~OgV=seF#DMg>_+6Y)4/o/`FgfQLygfzO!j~#^q3m~Q 26c%ak0=`|2Rc{_[seCo.MKyN7yhy9)la~ctwVwV6g35NkW4=]n}xgJ:)qu:kZ35!g _C<Qqq5N3>4 \ q+KWWC?3}j 4#]+u j>]Tu.*;+%ypE `qavX }R_l)Pf+Kd.IDC]HU.QJeI4G^ c0} /y U^M|YiK]ubsKHW_+5c( eM&_]_XAAh AWphg<CUyQIVoQfOazOAZWAjOQg9/G6?wIU[3bca57 -MYqou >:qp$tj0=Uh#p=VIj?<7@ONN:V&x v:_u|4Gw;)pvpPJGigvpGOAAZR~G###Up<oTt<jW^WWQ45m*~?3nxM 4x3g<scgnjL9g ;sypp^FA7.&}}} aP^^.DO?_Wc[s6Ux 0 % ~pA;WK~m'Oj4wy6NG Np !w5++K q 4q;nh/ ~7/.;Cl>L [;x%HCF'cL`~&hlNe@:'3Fs(&U $HFM9X>$HKg%!@ CB F g& phL5G.K &r<3:7h@:`197.a9aX!7B!F 9`=# d aDp c4qL}<YBVp#mV :1  cx9 o=h_7!Y?15h@7{zg3#H<)zOegNyH|sn8v=sj_x In@n(I^'I tuq\#>Z/ oh.j-j) o/+h(>^W8Ro(dBWvFC^8/<s_}o6&zA?c3e_(kWwF7&ilcR5@SmLsYkU/&kKF@!/~ti>3:4P.A;uN2E9qoK%swA>tzwLI=I L|l67 <K{`asA%nmQXo. asyx% }o9 `j03L4.>Z{f474p3[;[Ssf709d<HZq}B //t_%_smmNxE?p0qS G?|P:>6H>H?0^/j{.jz.iz%2 ?# n ':F[FKGA7k+r yq@^R_N@^2%YEQRgF de@5)~qpq*OWW`h(TIK25q4j UyZukucPM]Y#Ue9 b Ye@^/QG];P# (++/ttq44(0 [#NL$[QA:3s[cb2_yi[  GuaHst8 1lKM #U*/G 4G'&&l-6l - G a1m?m.hqGxXB;lpjv B; | |> AG=?ohnzP3!B*c f]76![!! +M gnhZ?yBYH; N> ~ 4lF&''o~*++ kpQbam3Ky+4;yJmt3??}g[= ?qG _ vq;n'_W^y W<4 Utx'IK)--}7A&Jt:erzYDgs|f)S9$}N$9xUYtFBl1 ekD@FjBsAlFe$RAr`jc8 DdJ>c gD#pG3:I e(G#)5 x%# $)=:HeU-dXiAdGP g3L1 D !uf.s}TS ?s9B*Dx6 |QR&{D zb0@E<\!=]x3:\<F;y6<h1]P .hux1+Ih }(y(8UQ*PELCy*R->X4Z:R2V6Z6^1-::O_)LSSpwNS6x!GgS:%kcqtkZF]=i6h<[;E Yzg#pEh=1F XB~%fmEK;-{F.% dZ1v+Y#Bz 5g`@`}py|(?o_^ !Sj 7Lk ;sEa}leE 3Ey 0zV}Nd^_:0rKF403[TWTc9I#[nnNPWPX+UUW:/5?Qv~T#5 CMT z>Rt /Kj/[?1|j<ArIwYmcvizhgdod_aZ8#ioPXG[Z[K&Z+FKu}ug08E<\f&veEF5%#=3#==;+^9UR[_>X-5hKTCeJ<\yE4EmS@^g9LX3<iE.\9i%%%Ye<8@YRHbLe0.=yb 3/;#ynkOi<6fD'xG(| - >hRbeqL T*iGmG8GGsmWNLL{?|IxSYYckXSSS d&9mv Sls;BTq>;`&U!B E GlG;aG@C711Q:& kn vZpn> 9Y6|f Oj[-gF|6g97&g9[3f[<00y78z{{:!X ?3g:2/`tBEX ?4B vNadWp1Cc#w^ ge4 sF&2H0 $r`yfdM>ako[odWa ~_7xHh ]]=!?~T*Cqa;l !Ayy9S`J5 $` & 8*8 g> 9J~f: 3vy.!FHcAD9I 6PC3!>HJp)XF37x^/4I.V$ ]R\HB)t0_ ZyPP_B-'|vN7sE%BvN&8HV`drDI Et&gx] Ys21x6H49' LG;tv&t= %98AgZp!<M3MD'%e$ MC?GoJ^ ^ =FTR\ EHB#0 Qb9 E  #BGh8 apcB@!(vF/G8Qa$ N 9 ps h L$FKl5Rk\% /)yJYV>tg 4)&[Jms=u+ u]3 JWV%2+ K\  Y1G>h:?|v1aRy)kCM.m9D;<ygly0yb$X.*m$|sk8k<{5{(qL 3$OQdM w`rb_>|f.)SH3nIN8>txo;1lr7s<Yq81Eh'm'gzgxhF+n3>bg7-5U\7'`zcNXO+;K;z V $)h?8 yv^z}kz VVw\7lwkwW&n;o.81<q{V77g7f0\$;dh0e<m23vyxut}t9r>oV]iA[_Z-sv99q3'F:-+3SS vqMeVm Wt5MZgwRfUt{-rCP[5T^LYnt[u2[SYin 1O\/el+d2-Ei)yI5yIuuEiMFnv0 KMeQa&&F^6\#1JB*hnYS)TW%*2*s:&h?D[# N?CG;t`&$^Nzdl/sF\A3w^~R~e?1dr Uwst #aIe~ %w]8<C 066fno B xS x v<~4He@t`tw~r D~6hx 4773 `g?gFk a> Ts ?Sg& #%L4d{iAhT &M;SMu;Fa `vuu1!?iW/nn1 0_9pk~OHlp/ smOC g/&7!8l ~_0po& & *8H9rn WCFr1|bIKU}\j3z6ETM;tK67`lYeu7 Fh fv%dK .aIq9Dhn%D .!g8KH Xp3N(OqX04rs$ ET}W\9Y1ndVtv1`AFZ1?QKjiX0=3rS<9hisz*f |HaA;G|vZg h*Nj(NKOJOLH!bS6Dyst$ :e^t2<'sf;bc` )SH+R4aXaI aL2ir34 dNX4ea:4$zg'ORX/)t|0O'3Gq%RY:ZVjjJxeN6j.sU{eEK-eQEZ=9#w#=_ekCS33#<xa- K+v1}5qNh5SH9lM ZpkDL ss&#84Pe0oz< dz~|d' 3g-UnL |~g@dVgTpL<O=Zs=Zw |ki%+N!G[7=u^sA9kplL>^[Y!gRs <@;KKg/:`D |6l<qgsku}N^v^63N)40hh4m4iH9O^6]{^0|1{C=i 89sv7Ng<<#'L-fa{F60@_ ALkfWO^atuV]*wJW{A1F JL5}9RH^*d? ZNaGj TA{)*)LO.Jie [2Ffj. ovJ}|V)Dxp oRb? H%Erv_)gPJGjJ**D\J`]JR* o)! t>s%aGvJaEk_jIII &A1}S}%xi}t='i\pVUVhr }D} ~A._ $ GFAtOoAE_F`U?| O$ <w@/_se%s+~IV3)xg?j7_A?SI>s%iM> ii?S )5g^`gF=`gBY=== (~~~C7iiLoy}Q}d*ei}E'P{=z =np+__A ypC3<lw7[ ia;l _r``m BfO}22fH`|l ^G2B*<pfRTTBJvt8 gh %'GMM hF{DgN] xs .b:4I>XEBv#gfa#gZ|p6tK#=Xpg!+Tf+7 #93QTu>#g:7h=/ +P;4J9q=#={GlqdFAf$ taN4SmsB\btTjB\rltRt$#8s^9Xu9GEz TFc)pF3BI Pe D FQ3z .H12`$a{c8)|& F4!CE4.sH D1*89kXZ4+6cJoYEZVj\A1 hT8k%jk);j:F9*>AQyt06;>G $-(H[S5_wjnO 1>1 ~0g^8xe%e??[pz3.8u.tP|{3}|''_lM>$< /(cs;&&9j5H?%fi78eoM8>E>Yq<^L)zg[S;V Va^sm: . .Zcz]6='yydceyii;%fXq>Dph6=v}f %D|{wmQ}k%5wV\w=o/o-yn;LYnN]0^(:;1g9o23vip3|_0\0^qW\# v= I & lMk-}3i4 ?r>w =sNO_UZ~E]q>cm;yuP+W `Mt5x w[FQ>Z' EMZJ4Z- `ArkC^=Qjp4)\-eV|nKsN*Q;Eueqqn)K])25*e#uZpXS.P10h-Bsr JMm &Z`EI?P.3q*P`?TY]mV!T)~ pb)nS|go'&&&$$0>rRO}2=_/C hB6fM *8Nr`W hm~?w k@?gs`A? V _ h?~ :$%%3ybg? goA?L3{6}?O47)5iA>/g;3giZ|OF37$$ O| < Y\D\yjoPk>)g\S`Ahp+< 1y_1TXt?^e vajC})gR%Rk4  2A~ KsSq^(Q dyNaj9sdXR.[AWjW8yf)K bB%Yh}Sxd3s. hq%Eb\D3I8_G7F 4.`:?EXvay5l@Fnq{9Hs9$ <gP)L2Xu4\Rh :fded%'&def` b Ro-Bq%D;4TYh| hJM6KAs\QsS'!(R01BGEb\Td<qq$/Bb#0 NDQp=#(*8#@ Ij ;j7B7(&u;~c k%agD1qaIRQKe'ete 7hJdZ*Qyc(W]Bwu tg^3-Jcp%J 7-:t39rpf)Dh1G-Om+ e@_lkaq{b}=.M35r`hPurxbyv3|-O<|p|}r&E 'sw)kR%d+' !:g{E(4lYC_I8pV6<W0&je\lO& ?Xq_?^u=Zq]?Xv>Zq_p< 6|e;c~`MdP|bzMA9g`h13~sz. ?EeUE-va_ Nj^\tkN[XY6y y_U0?k ^ jkXo\vlzO?O;uz'5SI53bk(r\6[?3mh&WWX'UMuGTj*fg'zj=]5*gGZam*3ULAK[cIh.7)]Vlk;[$Vt;6%]gWP'8Y5)ZbWjeZF2R#1JaTLZnn05JMM87`g Z>dj@UMB}Z;C3*8TA>9_KRAhNJs_;wSSSGG ill 7ax:i8h' JBG?N{7-7TggJhYXX1-+Z %0 nd v>HoDXZs@)Gg/}~IgAgx/999h|BBBd|yA3#3?SK~g?m@?;Tvg:L^7:$?S}}}4'sZ ~?;^ w_M |O+<3kg}6 &'']w [}f> 3? C(..y ~ va;l@- 0---c_90 H ~2Yk c'8:jkkcv +y+03 bL3iJH<j S)n)3z6E?HAL-!j&IiB!H r%@-?..s%E/BI| a?4M%DsTv F#0f jEB1c1nc9aHCY$gHidfdziF A#gHsRhtYXUH' J9R#987Hm^ 'SbRrjR$a1 Vh9H8+4MY\d8lYhcvtly] DG ;FhBP&C#H Btn AL a!G:>gLAy Qa zX>HGB>0*FC[o|F}HiFbEnj3;_0$*KXIV4*+ W [9QwTl {9d&iAY-~ Gow'GMAmgtd#Zk'KfZHkz(xoy/gZ|(3]oqbjg37NN ;E WOV0>L plnMl^c{CO7&W]m4M<| W / ;k9iWvEz]D(}ujcwHS7fDl:3vk%9e=_3Rh 7mgW&Gp9| ~ :mjx5' 4|gC:>EISsYn|rb~Ii[w=+#] %}u>O4ZeVNvWIF)/V:kg[]hSL7LD\+4m2[;:*]]5uS=rk\+ 4qq+ERO[DGD[Qj.k;FQEWQmmmPDVFeNB}QZ_ s]xZb$J)G*L-J]TS#VcCMPO$Xs jV:X)-V+*%7P^BXp B_pc!D;E]RtqE 2wOIIIL^a_AwLe?H-Ye~hMj i``@L&g`_D??Wx]L B{c27/yfN~?d{<'9H>M^(-^/6|2%&[$!~ h&|f36g:j7I~$!02-2h6iAj`2FP3u>39gNj}'TVa244Dc}}}p8`_y???+;aK555p#?=3 ? _#> y>(n t#7|;xD1k9a;l ??p XM>63ixYpLR+C#R2'-%5%|8e>%8u~f3e sTDnglC<Z.B/:`%sfXXOh$(&Qg!&9g-8!Xhn^ .A7l~a>%d3c9x9\A&(&8V D 4YGGf:9Y3kH<zc 3P\ugo:'-5F'P G:$ Hu HMOJVXO!hNI1<?:!.[y0V (4 IJaR: 4V$b\:* d Jm^3cTc!1QQ$L6 lF32pPG{ hG ~Z\4$F  >+y3 $FgR@_g-e khm%I g*?|<VbKsoz ~y9ewd]o/wfd_l` X6xg gA\!6JO=;155K] ;w ~FS4e;Hn7\O'GkM 8 - - .X . .w&wzV??^s?YsfwFoy 'wxrorg|}z{CwP1J7fae *uk77 ` q8;n-w\yiiYYK e2%eYsVEII#=\g3u]miyaiYjY;6+7&wOxbVl@ m7-MceeIgIA?_]-O_cA@W4BQ5CxQvTu2{cxlJ<Jy2B8^#Meg[iG{Ytwxk U%P+'W&r;pD}2N?VQAJ2 :)K9 \1rZhc@sA)rV3V!`2RO.g=RV]T). NJ B{%&&EGGL%F<.B*k:}A(<zyy9&&wy:^Z5===??B+' A 8n_M?0 X|A? s_Doet |>;:j>++!:/}olF3-;jg_OI:1&th]{3C=SgpCmvoPKG&)))3 _KG?67so2Ja>|{o\^5o?3K?7jCg anOxlW: v{8c.++}28h:9xm-1 6ttt31aXj@\&.gjxg2!.RviLMmbN1sX6uZ%huyoEYtIQ>NHv.t(_)Iv9 x (fd1<H DA*g -RA+R3p.>gLDd#=Aas*hMO&!23m 4Ag&'aDA vN4 ?c 9 x2b9=)470Lsw9.2( g  Hq1 3!Q( 9ENGDg#7CC!^s2(&*#H: 6 hZ0 ]#CChBI@?b ^nSAZzGWd$-iC\ WsKGQAL{( mIv'Mo $N^4=5<7=7da mtq!~% v~JF/?tXw=L _o_lp:-;9DAR3)3TIe{w@l*~A pRh\D Hv&; :v:ly; 9v6=O\?? 3e73`GuEBfBNz 7 kII)7|krsfsUs;kQ <cQk/W'MW&MWIqKwWgN^ h2qk}cq}~uv}q}~irWNV5:NMG.4{?7 s.N\4w9Iw;a<ksX[U]P`@t_ 5}hHmY9_?jl lZZM@KRR<\%QE <uYVaS9UP`|V4V+:k]uKsXbR)lu)gT#s{TWD{ )`lF:Z%.jKR+G{5vwVZVefRnnfepx.a7Xq:EmA tt {>WwId2.k%#]\hMDRH!s--+|HS`bgX(mrv7zB:=26+9 _$%%EEE};a 28@Q$./F?!YAAqVTjF#-A8===77)%# o qe<y~7 IyE&i#V|AEB<n|>3N'w RpG? y~~<55Ec{gx7LLF!3~'^a?d)11gn*~y Qh~#F_;?Zy_ >H< <0e}ewwa;l ?($ sb10!ih#33J^q<%Rhz A 3<Z2WNmB R@4 \+#UA# !A4I]hE u23a%4 ]BQ]\'WK7C)G~.tXddf|BQA if Uz@M4lZc9+3hv&ggBGZ )%|SSH9q4)D :9DM+'Sci4b &%fL MOLKDE!ADLa\TDr|l\dDBLDDb q #D:26;#sJ/m&=d/s`3b928c!TL4aD Aa!GIAo/t7.Nv+ 86^7x |pbc332''%~>[oyWh }A|xsAJ 'K de 3`Ts4l^fK uSQ+.E A &OG wES|g $B?g3I/~N&kckJwp{8+''Kf)~vrnMdk)^E6n`Au/g8H+mn^wcdphxWmgnO tka7cz07`n>7<7=wW mfoyF;7 [uXSw]2^1o>3v_i/W>K@gCCZm6\{g2=zkvkIWfWf_M[6_ ;8a1uPHVW %M}9sEKkglLF8y25W]]U=5S}3FOO cukysV2bih%}v5(;s2S= Ulk)j*Nnm.wUz:k\fXd? . WrGKrJ2^5W[*%P_W-1T8:]5J:V:X6VJJ!@OkI9>tUpT!uKEm6A~kI^([zPP]-VWTr`yPt!Lzu (hN#eRV%)g8[R!* (>2'%%%$$1Z~lsssi/f_^^NoW_}5??gppgZpjj*?3)~}+FA *AA.htp:}-y |Tp0)_t~9p7 ~}I2W98oz_A@C!^? =g4t9H2);eFN3mgjA #ygeLbgPL|c4:ksw??$ i-O?9U0gR9v }gsAA;pW0qo * +V__dBMM Bva;l[A@kA%_Rw ^h?j/?wvvC~&=Y((0LHP3HT$9^ jPe7gr`YUCBbh8WA\-G(sXa5$bgA.B)tqa qAyL D:h>h4:sD4-AClKt {5>c9 $M !J/*s?HG`rnzg*yNM&{A 8t6IYi)Aj097PGsaL4(c#a1cHB%(|!9>:D#s# V`hBcEEFGa9(lF;7BCE*a!GZ)v3974hI;g>|#2 {W#C 2rR<6PPt4jqZjp`B!y$G|?H{~YC4*NH`rei ~{\ iR 73hhn *=y2o^]yghFsj&1z5'2H&gfP)lactw .=k5mgtgwgkOODk& /whqN%+ KK 7m|0czheCHWmguG{8W U7sAggYlKNECYS %)'Z/Nw g#0^25m< ^/y #]Ic9 VEsvYkoyy)6)zisvVZ[6^[;t hkt:jrkqX- K_- k mP WUBSJrzJ4\+y5bGsbE9V+ .x#:QakVZJRfupY\0\) cprCLUYMJk[FkkT0kP]V2(rr3q9vN+7SX CT<+(x=rn-gA)tH9Ma~vb7rNo)_)G(yRr{dQa^?JB]T< $$$A. :>H}c?@Szzz|s]]]?gQn A $< zo(89p$/sAC} ?R_ $ f3\!Uc&K5226g}%%mA2~7BGGCDF  ?})+|O%_4j#u>37h9iV{fL-0gS3/Jg M4L fpmI+?pFq< |f|gZs/gI_?<Z?3g& W cL x0 va;l?? ?Z~~> %i^/j1  2b B>XG3vTj|TldB3@3.Zs%<gF<Hr1G-B%V!D-#ev)sI%bF!@PmZEbz9HB4o3=) D'g %gljggAi1Lt$AI)49I59dREs lP T&#:<cttASs9 Kfs<uA1#LGLi1Bc35JXcS Fi q0&'RhSK] SG #yx@{0FyqQbq1# h!Gbaa0 Qgeht$ DLu0EGFWW %O-L%DT .  9ER4 Ezz:Z{a\+.*[o ^~>@ Z:g50G's4%Y E~w'%)=g m/Fv.#Y.[wq.=gkB/'=_oy#F;MFDb-pkq5M)y G6]]IhCP}Yg~bhyhyh}h~`n )sw'wfF}200roz >mm>o9oldd :cr.~vF:? >9sftEu9e?=:p@/-/Nz7 C+c LW.&6_ q5/SV9; lf cu~qyiMv5XNUg/3mO4_XTc(k#] sFwwxT/17+05nL:j m8:kecej%orX= .^1\nj( i+JFEZxlNjhjYJR`j7JSD_.4<TsXfo.77r`)wHMMer]_Y_*PWHssTWjdA9GT!/LI^f~^MT *JTU2^_G)tJMvqQKs{n9.T B3_U.TT%V{I[+|S\6#*>JJJg?O~<B/ixsA ?NMA{9$$)AHo $MDUa0aThc p2 0ss` H@/4SqISE ;Ekm}[c\Rp|``Azig?8Z>77wuu!C ~)h:hLo \k _c6;; #|c~>S d2vgh>SU=%)X%Qx<7/~;FVTT$7L3axN=KAO cgg7 _4~0su+$-R sg~mzSSS_` vam?O~W== c~yZs8-8#%.|h?baT\.Xg?H$ riA|YhR3f)3H3Kzg1)>(&a%g EDAB~&P %E^)U'D.Mzsp% =.46Tc+RA4u yL63TLk9=Vs&gS bj jsR`AVF!LAt*?FLIi E5&hpVJ3?+i ;{=iHQMqIq1Rajb|\d8MD2GGT|  LEj=&<3GDEFLxhTXh|LtA}tdDDQ pbg6I-Bj= EEGGF8tp$>Pth( ~wI$S?'%44T]$ NFAZU_[[*ggf|oAx- HZ RzY)]Ctf7%~8^H0chAIyYHH+<?]Xs<_u<RhUb5@uY'v|y} &cv[-5cwf ~9bbM'[_I5 wWa|~A'pcgxhx  $|prf$7LozoN =i}{bU]5^8qN|VtNUwTw}Tum54m[67-'u']}0<9i_Wn:m[UWm'GO[\sN&01r2txj|KE }']ukzk]qC-CQ{ckM1i?mG4jrwW;;+JMrcxF.JkKFKS9umpHrZ %=v+jd m JZ%Oh)Jlk)JhSPjk.TXiJySX %pAW]^*BJ=F)6kKMz B*zr$=fvfmAJmQZe~#V !NRd+skXunvkIAf66KY&~^M\+KzNEX9SW`MrrrJy0-Cj!.n))IZ7> w1$b~~>Hh K}c4A6 /+Z6 L g_%tg&{8 Tx A!/ g_ D Xi_)Gp:39;{/} k(o?8d~yLs%'|l} XpN3un `?53~+8$;So{jmf`gj{ kTLAFJaH|__p.XL}I-b~gkh>ox<xv <0w va;lZBBgg_^ ptTRRv?-%|6ihRA.[mD.tng. FHvFKI(Ze\F3Ea $hZD2f.z9Xp_+( NRE(HA d 1BS*88!P?@a.TU DEY9$V!]) L;J)^Fg4o$ej mTPJ 3JSE H.O!$U(mL1 ^#n::X\PET3)JH4.N v1:Qm1A4unDGb9D JF 9zDSr 9z oFOw|(izaZ Bk*LA Z>tv47wUKO>&?|?dt% q0=9:IyT/Ry0G' ccFXvPhZ|qhBjgj$L }jfIl @g'w7'n4cU  / ?^>^WmOg{d^s>^?Z>Y /d )wf .X [6tkou&GLoxW ]'4-/^ h>7KM}[FfllM>&i-[jY lYh*l.ij]hvVk'*fjEw5//zN:Fgl6u?7;KC+C-k6PLmk}aS];Olw\O\o}KEMsU1n]Yv 4B l^P.iao7GDf0JN(+*qd(/eH$G](rZ)P%NNuaFeA::vv jQG/)PtBu v>(Jy*RU<5r=$a{2+tY o xVnn [TfvV_k4f%$F Y y)ae9IU5uaa+0!ew2Nc_ T s (2~[sIp%emyHHHZZZbbg}g8X^^$}} :^RqPoY4O 9o3'''(|fT o^ >HxN* !s&W.vOo|P.:.Aqhx[e+~o^[ c?>?/>$ h>>S  H+;|ngAS |&YTybbI>36H3Sm6>3{uYSdPa'<v9KZ__\.g>jf/;Gu%[d9pzga$wr{a;q} Kw  A> 'FHx ];.{pNcA#iRI<lLeyOFyf[(e( \vA~790xr8 {' va;lOO`'I~CO+/G` v` ) 3_^!3 ddDC8i@T aLK87D p TCeLFA;Gn:-$f8@.Mt )FVfFlAx3hq`{&6^&/-Y&$2gZplB &=ZS;s 6l56=886kTb!B5NVZtJ  lP)aV&|Z2 iT%H@<UCMr*U&1iJ- E\R*QE!Gwi1ZPt%5B#m&L\ \ 9.h)mshdMs95 d\. pTd<--W._yks$<G2cBaDf 2CpLrp2Sv45B84 ' g^eg {!f Z^;_rP}qSP=wwgG3wl^$W 3?Cg |~Ka kHy .pFL}m: y F0{;]x 8nt8kk7oP >\ 7wo3v:o~pscs nm.|pyw/Muf]}& ?Z ;7{_Lw'9Wgk=]W (\?wOD3Il?L$\ITX ^.D`h>|>PZi__)l7]i8Mzb_pk'o78/ ~uw{}seJOKto ;;.wkKiN5[Z..6\oxla-[/2- );t` OzGT1p)H; %qW 0QGOV ZzCQH:0`WU6Mjzl`.2V dpFpp3r4Gp1N5wy{oU :Z=\Q W c*aU1 $&zmlrznizaLA5*SzYR'Ku9&mTuZV z)Gm vt1Wgq]a[O 3 f0<D:0c7{wF !+wMjZ*2^~zY#=wet?qc=Y;T>r#GBv9) c#hv+cWO]Y P @`LrW:Y^{_S`b8Cg8#]eRJ'fx~qhx B?? ?K3\X$/|[a` 2n0g6yKFg1g`vRLqn6>SLm4 P ngx?abhF 8QO?OOFN@3|3(|?- yPE<)(<p_'oS[ von FC?`i?Fe|j^*sG?~2l==?N| /D<\<! e <Ch8tRejijqK.ZTt t5w7$vh7=#[F:qNDNn ~5Lh@]OcAbFjaiXb4c.^e6JYhLME#6Hga&Xo)F)AlD\/UBHr:YUZIDSSA#vVM$LKU80DQBLJRI$gJ)gL1=#mPe9 2pI B\h|.Rh# 8QiI`7\= -$hf% qq8(ySY4ZSUENr$p@?'q8*LMN(qAcDfdToG/pPhlh([[;Rh8~sr|yfeCew%}6S3C^cA<3I|s GWon9w sw~wg=T@/Q54cwvJkt%MG?zwZ; kXRf `uYr{kU2 vk{{<xK~{]|;+7787;7 ^A&0MWP5CZR}kC7]k]kR5w7F$fdN7Sg;;s<YkN.o>^iHb o>zr_Rcj>6S]ni<=yukgcgPfoZC .\[BgmY%- #XjGb3d>2YiLgSh.<FAk1d ]>Ko l=^SSwy[Vkhqi f G\qh&t* {Ohyb+ E2+S&Ei[#0!{.va s##`zQo I{fkh58JknY Cq8eME3yNFEh&eH0[1SFEL'*!0`-7WZfLY5vlQgo= 1@7Lt18Cv/3HGi'lg%ie}0#+1 b  ^XXX[[c;;;@ee\LPQ6s.mB \q$e1iJs%|QY / 9CK72Ze>Wngz |LGh%_6 ^)L2'gsegv)8Hk3 uy~~LTYg&LU4s e4 K8I v y h_|blL%YTV^ilF~V3?GeVFeln<hyeey= O_a;l U+J3rL l8g&Y`*kd`)sA=`)L$`M5gA3:$1&&g={qQ#L-B8qLR G <q8iP | %;IX# a m0&pY TALA;ahQ04IJclXM<Fsm; Z6Ju.IN:t3$`g5<`Ur+IArZ[P4DLAJI4?]!F KRtq |M;#|b<+XJXPDB6#FZr9&z2g>Q= y%a%L B>q\+9U'hA$L  4u_<A$ lc8rZ]YiGG'GO@_o tuvt`.B]]ks3<?vLl4 ;2Op_B\!qh Ei;C 4fQA?S!W0.O~xy+S6glYD5 714o<W_[mu??$>mWk4_= Q4?$YwW`@wv{qk\;}\Ces\f~|f3|g0cg'>=c ?Z 7;lXwz fW;=7Fo]n{Os|x- ^Hyg!|]t yFo&s<H>}3x;MrCbXiLB_ST&P x7L}d1;LslK|[l+%p +ZSj!1_'w2f h:p*I'lcj19$Fscl Nm75Lmh79tnco vklu : MjfUM4 sv 'd-lZNCo 9o.2Sa ;[;w}aGWn}y`U7X5m.CM6mV/cY'|'S\x8 DNz;2*}2KXZ Hb:YB/ 8F =%MJXFbTZWBjI1ew~KSWgS- w F]goOU;{/R_w $#cs*Sy`|35a'JQNzVe?4`Y!J tYcA3;Qf=eE>mO)~\Rn3<bFG\6`+2ec7* {;!hGOwuu3 3e}7(f;73g&L)yUv:Smpnnn~~&L%mP 'T<H uH %l hH5S 4W}3 d~S~f'<nnn2gQu7+&O?|a8| ~z.a;l `hO-$] l9ya(Agme'a291_#~7H9*2ga9 5TC vf:)y]Hh4rf<3 K}q& !Np dkH1ANdX|5 `Ab fgqh4r-|cvnZ>6R/v?q]&:JU uq`EF]ABh'gA[1!IEB1QZtjd:gU|Vmzg &Z5 <.-)@:iAeR1$gLM]XP]OsYATGI5+C5rQ-$|.Um &iZ6sky5U0WS-caA4oXOJ X|zQ>H:Cfn@_TWs54&M)4DaV8 )<Aj1`G* mn\Ce8cp$RP(he3 [[[]]I8  BUU20:}N}j7HVI B^^K<.M$WQ3O s6f`? 2r=k0X~?NWWh4oh 8C] Pz0|{{.;+W{WhR ~\]hs|py \93#o m79qca7-Z_7f7l1kC-]b.<vG]SIx=GIt7 l>g8 ;B^>8@?z->Kz2h 9g$&T }8@tymmC5E\#qX7+r!} T3 Ndx?Bm SChUCoq %C) p&0 ksglVo V+h;Cv5}w4vCM 4ePdMUs26M9 skM ^S1` :c. '( >k ._3+VUM]o4:t-.cM6U]m:!o79NmYHRG) LCk!$U?Hjq@-30$N1t Zynw[Sj 4olQ7aqT7O{ ][O d2Dy|4=%| X)lLQx.kUWWgE{7* %/\)BW<y `g9{aG5:J9>NS](p.*`d6p.BYp!J2!UB|xf(($=CMb2|uQ\Vp!3Smn5Zm yg 7bszE<S0Ji8EI8iC_35OZ.bk[v>37|y7s9d;!27o<7 -h/<?6 971Cpqa;l7g?c>?^Pe~w\YNzFsSfOU ?{\^z<fAF4S!) <S<{yK5QOsJxs A *)svq(L'`mAB9LQA5lcB(.-Hl EZmXpg3t4 K O`5q(vc5-&NeAlTa#DXyPMZ1D4qjZI41?(&YsN.z@4<H72TT+G#63HbhxQ -*DB52) H4Z@%(%$n6d$ \Fq&< \-JH 3C3'#g #m&p O(&FXgQRZb~F'gnmW_ev2./-3g&gLpvfS$^3'PX(sl&7Z[;;:C#h ):v& X~Y;DYv[E G>SX+r}z?4E <={K(AtF3D KLGX1 qkBS)4wI2+~&B<[+wVom!Gn^YyizO>7OyfG~6|b{r7Nhk;Ku mIFWR{BKLCl! y|mgu=c&Mz#s4&$!.C]6u!`5rm]nc]b7t&oV%uZ~F#i0mp<V`RVI IhQ9t S>uIX7 Le K7l ~k2l&I(fFo[{Bp_oV{0Hz#'9FwVMZ9>iT%Y1ksV}MTi=I*A@%+1eVEt 'ME!(LYd4tC`-M&9)iYI1 eIUotIG4Z P}2Kq9^|JJS9NI[( VVJZk\R tSjG.tKnTZsJw;6Bo; o*Ds_[v-~/~9DB_dV: WOn7v`/||HjTUJng &[.D'f=_he8}ohv.ce5U +eFh1'|A393;f6zN=/E fp4<1 ~2W&L;7?o66f L34 K?3aI3 gj{gZ^7-bpp&hj~n2'|zT<4opn@c3xy6o/nooM&<$S__OO|`@pgx208 v~vs~jC|B1;; H>+@_5 >*q /}K?dH-S|g2@(MQ+I*{hEB991L5  WDi9F9Jr#`ZT T9Gna. E QmG g`J}XLRAB V!wvpivEN-IJcU5:F gTr>SU5(eF6LZfHY.)Bk2OE jd8/W1l1-;X(X|T f3(OCrHI &RlH'~mTSYLJ|nP]SZkbY@ .Up 3t XUfJU\K hAs8vMMq?C4ss3 grb Sp0(Rv zSt:ea &MMMIp 07;9>j?|/~$0Hz>#b{Apy+^ye;; 7gonLwu5RypgUp` B1]d;kZ4QFMoZ%L( 3H.[p!Wh6Co-ax77><W?<Y\^yyzA[G</TFgrGr{|KJGj#s3R]h6u#ZCl> q6_-T`2KO=cp1 v!g_65Zi4*RzEJ'Kjq OheQ4TZsFUY3FET-+18q$gAYoRI]oFkqH#VUREMHMmCzM-~k4f69 kfEMziL-)<i6Mm>Kwr+lZ; 9QO1CCzigQJJ_-Hy!Kkr6M+ Y6jQ 6b&eUI:k\6kiuc elveh5 wGpk;vejs=kirV5YE*GYIEXq*G%i~<!|RtOO)I:nR2B SZ+8tjknB'b] uNPji]v'xt%>pc*8*EIi{e? 9rb<y]  fSI\ N^(?lVs@hp/*!s 6jLASFe$ *)~>~Mrepqsl{2~yG*k>|N z8yghbAv2$3eRA|+TAlngJ3 f. 73;%Mw[ww7H9H0O??3jbg-j`3|>Ccp9OcP8sMpS>3|/=e)'$}#S_!8l _Ur [;-}\V]IA?M3k``N0+%SOzyN|F6$I1ABcxe>5<nD83 svX%g B;a=Y%wu?LTari9>wi9q &clE #iG+ a1ir`fYTbu =tl)-HM:*MnKD3@Fm$ 6J4oh{6L*EB0V+Io`A0%KjhP9KQkZT`^kP)F.6(eZji\5e0`lJ BRF!SqF.>Tmg.v5BGH 8]EILK1'TmPX*;X.h.E@!-GHi6)Csm-t j&G5& g$&ZNXd/k>\Mfcyjjfjjnv&8#lbQSD&e3u  \[Z_Y\<^'NE? ?S~\sknn|xy[s7no/^1 knY7?FKb[7LxyqoMwno9weGs6aEHLkkom.wqG4!Jv2Fyk&.La3_~k#:74cX>botlv./:s 9??M \o-d-d|)|-g It3 = CSf4UfUUlFmKmSwJxq-t=RS .#RS#*YX) )A(I0(#jIX#he1N&FYX%yA FKZ /o;&&Y1ME3:YX!*Q(bFUeE6m~{Vz:{ QowuwD\ A{To@/8us6ukU7p2mQdl9M c_7VHL5-hc8tp L^.]nCzN}]4@ot[qw>k}ipAFo^TK3qx*61UXCz{\_{r=~P+kD.z@# A-'KDic #&=d/#tO1~sG;DQTBh=LGo8TRV<W }\;MuB{F#^ZZb4 9A 9]2 ;83WN J@KJ].o.&ef< ew3l'f/}?wK.15M3;:^`73yss]p3s4L3g&$mlL3 atIaE?3Ji%tA\<xO7}.z]lv<Wg6|fKT~U]Ixassi?3xe?+WVygx:!8l v{eQe-vNSJ/!LLMi:U=1 $cO<aJ9DIl4\nX|T8{t$h/sMc$Ii?fTAx^LDT !nN4-A8h\C3:i]d If:> `9BM#OFlupgjBS1B0h+!1i7gvFRPgF=LJ6pdQLt0lk?UcABSJo>[#'6t9@K+E*Xrb)QKZ#*HZ-DXsBLA87x\a0b:IQB.g>|jljjhT5%$ Z@6Q3V'RhJI4z7 M\XsjIc-G2S<&'`935ujhE 4\)J&P_Rp LME-//./S=<4~+e7y;dwYA[/L3OsG c;W Xkn?`gW ^[~wu6wWW?*{K(\x[77oniK3^BBpc;':=psc5\cJone.~6q9;pwgz>{-_ i+ B\o-<+fGYmJFGf3})v>g\R: :z].$I 'Ty)~ +<+cqU1MC Cm@7r9n[csZgrM|b]CvK&Y zXe kC\<2 iy 1A+0 RR #qD#KI@!8GUA+S:yP.J?%3V]nhp]z/XuVmEK#^DxYl&mlC+84 C1;m!<oI&g#M\kn%7jLOH&LVMvB)uSY=lIR+Nq8e^)'NT }2_!pKa5.$\\{T{):\jZ50{*!y;fVN5(#% E6Q] VQuH'V3d 6[<L&DBg u+~#{w~rIsz{N^Xfl z?t{Z ae-J~=5)~tegL(j8 ~X+ \6f Ve\ftYM6>Gfkx-8q:%s/UX ?3SsI>3v\g|\s9pvV9sfmmI>SMmlimA06TfN&gJZn'{zzh.8I Ca'g?Y? {9X|egXT++x *sj)8J%sp#VUU=|a;l 1g8q>|p398 qz0= v&)fdj`$ H A/Md hsM8'@Lp!32d7M>sx38 a+vdQ8t~9 4Q=& 6Ic9BgQb@#UFLfJjhk.a> !h6z- F<#[=Vlf u2&a5T' dliDMYaiRqhLn$gDDau9tb-BH#Cz9ZpW-B/LGQA *T&4lqi''%6#MKEB0(s|V!$> |u t6x B Ce^7PM<.Y4x/J>#%gNcKB1Up4&95675556L&JST*HS$:0GNMM K k++ s=v^`'~GXwE~gs^8ZWC|1I.>X>v \[B38`{+vV \]EMl-\8X6)yU \]g?2{G@P-)3q|eo };&9;NpuC?X|c[9 wZ7rgiW2l|cRs l9 smJ\lKGRV~zwRKl!sIT5r zm}NS7YU(Oi)4< <bWc=a=V6^Jq*u eQe1UqX*j*ns\9 0j*5sT9~UQ-P px1&8dBorjFm*QX+1aPn1)vj\)q>BPJq@.p0]Ur~H!DQ.9bj f3`Y6;Vb 4{ mmCwlCIX.8 e @ q( `Fk7Bw v]B3I5(mk&u h 3aGw qu0zjMNVIYH%qV^WK _mqhBBj-YXTI&iQ4gTyuW{EU7 p69mU?L|K*r wgGJ3 Y.3 lOH_?34VGGGgff ?3gU&flnYF)*V2h a=s4;+[ + e.l|&<A0q32B*J]s%~RQU H/<;;Wl34J#7eGLO~vCzinLLLRbgQ `V)U'i -)H71bIoP)t6eU 6? 5p/ M>3G}f*sg?se  37 ?Gcc#| a;l O|(g f V4{e+bU%U.&''a2Y'L8(&0:7Ht D/t H4Ma5ExwM $4ic-#H )+F >OAZ8P% 6;1Mu !nB J3idFk4:#ul)8v y:&qq:c%NC8HIAV\4rf3Vs&lI#XmPic(TiAZKaA)G\4RAT cNCkZ&*-D$MU2RmRP#j+DB ?`?*0! R BbR|+9b$vP4 KIiBCS3R^PG Hk8UEskk(dTUaaAi]BRvT0PKp^N?G|[W^r> ={4?lo_p7P==99qc#T2?1J'GsMM] Sps3 s//.R8?zvzYT259BHRlwe^#O~~'W: `[s ^{7V_k-=KQ_[}p\+wI*~ksRW [M 8@f)>2{a=y3co {k#_7rkCM~}tkk}g+Yz>|%uOxf{9?]i%=5'76ay#{-u9V7VL`:{= >kO61+q j rA Srlj %|oqj Wm s ( UF c BbFn_C:*Y<kZ Cq]W5G*JQ@%kHczyH- )#J]|G:-F4FHjq\-I y'EbV%[%<gUuv]jMejpV;I#j:|TfMYS0Zi^/Bv]4 NxlaM_?( FB uL`0:{+d;;]EJ)ct\QCJ[TkcQF J T sx mfcEAP#(1mQx\RFEMB5wxwdJR 0BK/c.C 7eg}c4r<fL<>>S wZ__/^?3gD+3E \V@+M) ?1]tqP--5Gt l]LATzYRzF)+PW?xLc7|o6. )RQYsq>#y-5u(yt 1Kl95F yzz<222j9:U<S)JF)j>f?zFA pXoo| YVQ? n>}Ssp#JFp0XC.Z7B ^|O Kp+ va>m?2?J1B0ZUezgf@3Q>+&L$gHR@G gb9gbMD[}%/tqt's7h-XgC-a68L4  .(p9hh=5ay&h+Q=gL4&i&3IDcK zshAri0fMrV0 Zgz9Jb@(m%UJ#y&RhZi:LDvC$Fe6Dht>FQrTLL;Ub!I;#VID+3#4< y& $9 mX*B1A0GJT(U050Md9KEHH15BZ4?skI>1skqLH2#$x^DFh <2r85U'~Y[JR#|W._#+ szblt7HA?CtdF28|jhr||a~~anv2fvj2QV3SO}N+j7t!O>D1~mI2{{{w/?xmk= \[i w y& 1=F3.0 gXyk !+a[ wIBo^#yK_@.`ARm3?>7x8E0xs}Gk#?X zcw&9N_{cL'\r+wF_k-W[3Z{.|3pR{|K\Kj! d|Ix3v6 y(dy<$J)W*QL-%(<x' GcFvnn8\gZf^Wm 6AKuKx )gPp._rk8Lj#JWsT]*^)PS ;=!KkqB'MIFu2!$BY4 QJafL'E4MI*CE4)YD/MuY4(PCZej$6 eQ %=1_w4Z<NB+IiQom7\h>6%Z3Mtcj-Q?)r/J{GrazV& 6MEVSl<j. &~sT}/^yQKT Z!H9!(x#ypQa^D 0Z_ _Qv PphtE=2v#Gz^&o!=A%a24DWrK2]pN>2^+e&;m{0.#L:`Gm&^`O3SpO\V |cePPc+P(OR aO TAcln f^/-7^#\3Sg=S]Rs 0gmtCULI>w]ww7Lr1]8 O 0~^WWpg^23AS~9~}ts3^KyQ ~s =*9X ?Oya;l O>z P$aoif.I;HL9{>;~?n^R)`6FC`5/`7M3)N 'D : DFF8)#4MN4@y] DA1[f ;mAf!iO4leSjInRAwYL86JK~jUVvF1)mFFEIRPN.?mCf$YO2 9iB28^PI !j7@'fZ*eXPR.!bIYU)y&.hlq|. q!)Jh4l`RA Hc]B!*>?jw<FAU0%][[SM3955U'8U#;jw]IKyr9< & D AL `UDrW.~Kr.ssgJU8{zR9?(:y\NeE=*Qt3KK|9$o-..`gg}sxOwwC}]]:J 0N|h6 8:?1'NUTWWXnlvs-Y\}/R#?P RK:8^6nf#y^_vW7? R}|wD9 X}{83_zM Lx;}c+ ?4?<X}Z.7.tk~i4jTpEg? ?N|u_kka+ 4oZk 8 i=vo`~GjwT6 MW{CmVsI}8`u:l.ik6mlk l&*U+!/(yElC0r+2uUU:*WU6-BM[*T0*5q**#z+*-BSU1aWALs+MZy&~<BKIx>17 FLP#RcZQZVr^P%QQj51:bTNHBZY16MkkFgkZl^QoT5YuMB/k5IU2um7;)3/YUKbZiYh)ir=z F ^e zw7O#So rtaGWD Co;'hAW2uaGw4;u O[4!4\`PWe/~^r:VKmRST}JKV%IF'JkI?\.W(;u'@}sg{98 x|mlnnR3 Q YJu.|P9 G/As'RC|.]P 'A+GN >!6(pxs/3- G. ? R2 ~G*Iq#T* |I`7|z*>}h+2tIgT|~yQ0=i@oupNX}}}0r4c~[Btuu1g*AyA|[1zGG; i3as G!?;H;{gaO2_u =XL3g_vNi;m4~sL'={H|  h80#ZUr #F 4akD :GH2F!r1U0A&A>*b#s5x\M8)vAZ4 @4uA km |VSRa1q;mholZsB4Jf#R8p3#l;l6hMF&6XuDp6Ah 0Zt>IY^hlWz YA&rF6g\%S&GZIAbrFYAgVig0vP &M%>5HS-EA1jed @KmCH('s:G~&ff}|jrT|pB5x0ql< 7@3.-))0SK7N7VWV<?gA cc}}MMmmm-MM\_W$t:IPstxN^fU<oe77666kktoWfci{bVT}O|q[7\{]_WYGl~lx3sf&gc %D d__z:h/R4Bg?XkKwHmamO4 ~~i =t{s?Bb7~q'v[C!ze>W/t2 =wc m1jmts)x}TN'l6FSgd J$ 0[6u(JeI8V+A)+tm2c9uK esbM2JcVLZQ);');+-?'RT*Y29F9bIKJJJK?#)=#*yYp%^b-;b DhlRU7 8F>(`Y%<d* *=-n!.q+WuN1lS*QVSVhjN[U]fTY\(\RO! kymp&o[{w?RzB.mr}{( K Dm`rmX>kXgY4CM`U-NC_9pnh#oX{VC3`i<ViZQH# n*tI8^B9|k\rUT}I^[f:D^lu)rIyA8|='].K$ \5c 4ps6D~] l{t!H3%+ .| ZfGjGDXL8QA1Z(Y|$s {p EC|NP Kg8sa> h\q*b|^SI  v~~>gzy }93TCfz 37h ?<j]]]JgX}Ol5J N5557$3c~f:3})Wm<>>T. 1|{^xWSvN 2fQ4 5O6= Cr- x8 Q ;#D HU6SDt<KFBDD9s0q>I 6<9 tP6HWQ3%$ 8I!}JqQNHh8] &< sF3@mhZAoPqxF:7Y<4|fFI G0ZMzf&:c 4rgp ngk(hI ZfPuj+Wn)P/4a q;$PT-& LR3)Z*G-hGR;dMB \Q^fX'g6ES&9TF9lyfScsrj31qG#bl6P.s?Oy$^Zk3^gt>?7;7;D3=3;3dD9s@kk =C4 LM]YZJ66_XZFvu >+BX j4yS>8*Hlw[][|2 Z{@o}twd ]>SmnOp  `W|-Ghw#hl>so o|ig?O6/t{?Z:>oW&;N k jIt^jv%/w%Ru<`'|317jCxf5vL-ax]v::4ZjVk v~%uK= gVaXVUfURCRUD!WUUD zyeKg?%/eYEY=*XD#R.SQ*5R0Pr0P*r+\*#>jvjxz*eqMY3P: [U+U W+D|Xp<N68&X%(D;\B7*v}nhfUAuFWJ! =G4Y0ymAW_3T=MO$?h:</[CVii FM[uv] BfoG]C1x*t.2Y rSxMMnL lZL]jrxQS<2] ^NXi)S8%\i'.)% mRSJr 4|48Z`~b1b 8Adx.X.3D-pyccsO=>9>799IgfV .+6k]< g=2@9N;X= )Tf#GOvA[3w+@=I> A ^[~#I%? '>LJwjpS<?|`q$&?0W hgggvvqBirww7 Wmmm(r8 :NjptuuQ4W!3 %r&QA?Ol6}1?Af/>yn` {i; S Fag ^ N3LII 2[^^vjv(?~rPe G&D~I /aeTX^x~FO#>!j1 p\d6Y>6$OGC(80v8PpSZB~m#NLX ^FF[rg?BDpx]1 DFUCD(=m9H@4!l $ avF#4i\$FhI64|V3lLsXgcAM3a6I@!ncs.h9 ZXKEi;Am C M9I(Y31B+aAsq4$8bB:N)G3*52DFSYMAZ.(dRO))BLBej+H !5|iy0|. 68(J C*ng] 90Y4P*R3# j cVe< 61\>Yb>]6Iao{kkNn1;30?7??07*Q'lf?>c T:jjlCtkkOw7jlddf<M\[A:j[P(Goon\D9zWW^szu$3'\{7 X~+n>tn><\M4?32oI(zGP_'w }u7!{<3 ?!H{ ;c*>x?N#^ h9x7UYo^1tJoz;Z3S\L;=uR \;cAsSTzah:7w94zIJ#Jq DLq|bGrp+R}YM9u9]US*U%Se.K2;-I^ #dEls[&r:VeUMY9evW\JPV%x$ O`<c-S*UW(+IKHJ^{IxEKssEU]VyUz!&:ZTHQ ||rPeyhq [.r.tJF@V RKd5uOXufMov;6kqY2juZ(nnC3wm+qZ6I so1sWGw4CqWvm7:tuVMQ0+otcng5zUX+$QaUSuT!+$jI3IH#kt+aUzx+$dI0_~YR*FV( kc>Yy.>xrs<;.]2rA Ap0|y1d72r8\ D?}-]`@'# kf.haxy\afTo\7g(y#_|s~r/G<gt y1ag=g2O|^F.?3ix88pJBE$.7*|W< XRl`0N777wttR-z)|I gxtj &h *P >Q3kT||&q?~nlgs>w X8U'Ni;mSBpVp?%8 ^__yT  L| 0 I8p+UhlNtf?jaU4L#k uQ^a<D\s!nb&b T5#= hg>S(]T|x]AN pc $g@ mL$yh93at63~ 4]fnUD|6Fh!Bu*NE:mm&D4cd1vP BFz^kjYFRW0dP*+q/hg94f*HG:fAo`LJSF(*D!H{ 0J$(dIBDDa|nUD(9g~$m8971?2BEf %44Ox[^ey~QO}pigdQ5mWW}zg{*q~}=?3==?; 57; S/uvt4w::Q3.oLNdW2k+lm<Lf3nzng[ksrT{3Ow/<8\{x\4<>GB4B#c8?8 ThL_DWA!:sp\[zb7-7<qD#X|hF9:/aO~5a\`vq>L7>N|b[#n\o9|gXhNgSp;_kOj1X24A?CvLz& >cSjVTFUea3W:EU6^SnUXev~O 5jaJ/MiziQbY}^h:!H<3M }KjS5[-&+l TmvUSun}7~([44\kRQ^rv1*D*TReUUaJ2 d!%:Xp+e-BE+Q;% cBPI_%qHx&>y =$dBl bY9FA[jTZ gq_aTF T\bCXr~P%jQZ'FEJ`l$YQgU7`Y|g&8^ \H&C1wWvwiF' E~9+j(mphz&CjME`4 [gq|=5X}@o7cU4czYP+x%%pI6*Ey<SUS(KZMUfh4qOMmiop;Wuc^vfGAa>ME q8} d3#Bt>2O8R.lgACsr2#>bG]Q[E 'h'@?|] 9)--][[+%h2g*>33hd ~~ 9pJeYYL}:H'ntc3</s8 JeBPhhhxzzz:;;)i lii?> o{ *t> :H3 }OjDw?{NvNi;mrq~a3 /]D%5qjAqrgggCCC.9 *+E\s 9?<#&>G *?45BFT|{#A*>G.?Vy/J1Z1QNT1<=`!qk4nI\<AGZLl<g4c 27nR0ZLd0&D3QmBV3 d#g&cFg<CO#mVEg0(f0I:5<J63W*zbVKDzUeHUp9`F!*pLS\WeH/A 8CR! d7$$&<P 8\HG-Ei$4lV4K<]JQ>>T]f+H%q*8\~ 3S$4!L4a;{.NN.gVW77 pX$)kR69~wnukC8QZ  ;W  W ~tg )><X%hZrwm(&_}W: Koue+o]Yh~a AQOL?N|kam\@w<o/}{q }ns_W&;n4u'v;=-CMWz2uNgr&S Z .uB}p: [1x>Gv; V-+<<(gCj^HVz)NhVE]3LQc&Mg{>ZB-bMLcp>T \ 8'= )\ Bos!JBP T|;vz= SK1~K_> F>kM_g!0Z*aV'UVMLI#iDFJQjiifU\R]wV1%<ZRcVE rZU|I@%E1lKy1[/rKr+l#D4T[<oq@#iq6e751alt CK4q\}GT^r +vL/KY4P mrZV% VgX a+Am['=hr:aLt)ImYWm]vK8aZ-Jdi*eoQg_d>S*Rt8 u)\4buttPs&gMgdH' tF=jQcx-Jb 1vF[>xsJ;`c}(@s X+@i]H^q-=Y;|\o$8\V(pY s/~>&bqL`>~(yFZrcHpt:|?:3=R:x8Q6~g9p`l68$*AS mb?y&sgimm- dyfqg%'lST\U>~% J3 mptyvNi;moo\td=r%FFFhhhC|\|}> sUQZ)9] !#T\h9Gh2q61<fs-z##AL$3e> kH!j 'AtD{]\v*JG\Mi|S3 v an8 B94jTA!K. Bd(5[1A}. giy'2.t>1BJ&g5D&htVU!p-DvgPP_4LBiea3jr6iz%R8(2*VTB I42sh9PA(eH~Z|&h'I!4_J gC+ YJP[L6F) )B_j\90=Ra B*5T3/<V\M4 gk4? 'T7Y?S9.^8?1MHH:L:;z{F'ffLDgZ_Z_F-:3B->{`eqa=:e\kw6c wqwmtA?<6 Yp hRo><\3ulP>/{mk>& 6@y Kn.R 3o]]znuu;;?#{q mek3_o. ~kqOgot{| Zv!pcz-|3sn\Jt%{]t-!{q! [ N$o*[m6AMPytC~8JPc!X4 uAde1yL)mAA3Fkju2h^onx=W0VLlNJ3l?_GX5 v m~+Qm!{6v Kw7ux>S5Ia1V'3+F9qkkZlFn0ZIT)+E>))8S}rWuJyN)eT<:ensSvC!WJV*\*Wt B9 d|gqRUlr R}Z[k9ediJnCO91G1wtE!SWWuuNTfuZhk5$Bsa'j<T%RJ%Hbh@ Xi'KkkD]vAaR68(CGO.80qsdX>(V[u$}(DhJ-^a`7Xg}fL 3 |sd<(ioJ~>#Ge|`ZV|ftt3*>Sr*i k|n/j \` 3P~>YgthNg< = qM?VB|]Q @SS LBdBo$o|{ @y>!sC|/ (_/R!z?6gS]vN w~p8_II _gNL9 twwScd\|XT <(K/PL]H*&<4XkL=DmaX!a{bf`AR3en vgB_4!gu 6{>OE<Hi(Dw&ADUagtA`}63rI^OX 6v Z>^h2 lIgt>B^C6InZHw&TvvI7ANm fJ/ qJJmn<s%3thH?/Z@6b=ACr)sBj&Ltc@#ry\+$b(; Zl T4' FhX+f>SU)d@<X0 =fWU*fCqXUBtiI'/|U<vkFzvw8Zffgf=7GG|1$jFMu4777MNUO]_<LM@3p][]D|[>{f:8wLvwoN}8F-s k sD~eJ.R+o/~ }{s/] g? o\x-3dF67^o-}caw' 6-oi9j>tn!Ym ]Iv'zSjc:TB9 MT/]^}Yni*nE> L*Nxwu u!jXfks |r-\_L<zB3OFLa# 2O@9HLrov/u;bP:ka^QVlLgl3iwb7K]O]M%wMmvnvnt1bmLk[j^lo6g#s-d]|:0G QgOt=keC-Qh= G<=>{RKq.2r=B4 |M9v1%9eb(\[In!D\g.h&eXV1MtnbVJbfUUOD7;{HvaW}Nq &E B_gW;KM![gUmk 5bm YBgkZ\miXM0k F \[%zEQH}JO?q8p3 MxD.3 d2 ^zudR d t:_>G\&>Rr0bgcx9s>8sP/h#{8\ +s|/tA@!3tE-$#-pHO{vew~^g&sq>SzNB %?_UU_ .]' { {{{clx/g.{Na^{{; Q.xb^|33g|O~O~GBO-bU~rg) 8|;#jJA4/y*JvNioDl6[|M ~s7(N 'DpZ[[|:!|<<< s/P ^#g*El ^Dmsgd>\T{4YMN5Adg $B48QiF@=JXv;EgA D3A t94nZ>c1 |HR8>g q1dh}v+:Lz#hrkFm@ )yaADyF NMZhjF4b7fBAHgR C@F4C *4?6@G &MPD\RJ})nHsrXRB.[Jjo&AP<6DB>r9BfB h<HuiG1&?KyU6xeovns}kWy|yyqqsss333S A.BMM0}C' 6)zfWw_swrxX<;'xdV?5}l< &8n_E-PG4rd |{7q'G{Wyso7.;o_Yxp |c_U3!g?ol^g::7]o-{yC_3^u/us 3#7GZn 55G'K L}`>B?Ym[=nv(b5|si/3jSqt> sNgk s |5m6aM:R:rgPy3:g!Ed @1zkEDVVvGq t7;jRTp)ie[vOROr];}KPK=^uzR] #o5m6]i lg:s5Ix3s8bw28_ GA{_tzmW_tvxNCCF]w66[y^YkPAZZ/O59D aWII6mG7dZelpVM\/j)\&g=`MZU1N:_%rJ9P^B Xa4C0uv}rY~G'_$Eg -444 qoPXdo>y ZKJJsA fo0 bsq .GY; Gx$[ P o|{83N POq>.W]Mwl-~aOb'<c9' 8G~a |>F (` !oP;bG1sHgu\OMMaEgN>p er0I&|(d2x/| iT: wttcxo gyy3*>3F?S3?3gzRHsLcL&;y0!TXU?T8mGO=KKK?S(|NI$az~ryDGp0Fx<\Gn|%:y!L(;GCqbx&!@LaA_)^:r4iL49 z h anGG $0 uQs9\p~/q8)Py >7Uetp4NtBjiF@ M(G 66H<XKx52e6&L$g&YMjT0vQX4JVE=9YB4aT=@? ysgKR *5LBSeh]FuA#DZ*4@e#ZAJ<8b]%!k*G $s>pc!hQ[A;KfWV rX1ApP_4(yf9Z);\. a.^N$QD1 M6ugV =@7P^X@NM   ommhhoonjjkmEsgGWggOWl4} u>oQ76eqw6ar#_C;D ;7_2t~h?{V9y A!6>}DFlsk 7V#zN3[xkCKo? [oS35BA4gd>C]O0vpAs:w3\ Nf;o ~y[KP L7[vM k1h.L9\n%S1|/\3.avc )RDc33^u A2#>/~!$B4y/{7_4Vm410zkVt9zKNjYo63!lKd9VV Nnt&6:8E*~+ATmFOt\ k2?;|ia{DkwB] jYN-4E#s\Cj: LH1}j>2#7hkvS&EH[)<a' V+FUQ+ZYZ/Odi:gX24 '|}QTw0].cChQ:qFQ BJAF}T#IbY8 Bl* m|6C+%uU7O.pX6~SjdZov\M[cTN ;']>|BTzo >H8NRxr ? F?9s?S7>AYgFf|E:[ Gx$\'G:)} GJ5 h` o OB9y<Ifw y$  N?`>R.x }3qKe3Usva `DCU|7} X _Q5} oegFo?x!) 'n@ & 6W;g\}. >O?yI+}[VV\?.=t:T8mCNLAA8Y!- 3sD|G0lw~R 8lJEycd8$#$DG DsWlg/U B3S3a8QMjG27yET3Tv.t8@  hGgB-X'B4:h   (A27AeP<3 ^gK>Hti4<3fQ6>bn )LRX)yR$h-)Z!30VI:z6R.1r#sC1|9((QI>*\q>#Ra)Q:4 L3c 13 av!&3hoB 9 Cs\N>Q5P3 E}lZd+Ut58yppe sK4778??;===u 8B <F@8ggWVWcD3@#W37{}[}]0%CxWG <*?| ?nfZs X(e}}AzDj-r?/O;7ga A4?]6.{Xlc-&;t Aye ]-Wk6ZkB=sSb\[/'Ku`)mCp>%O#y2Zc`)m `my_o z3k1rDi:ElIj@7WPa fh.a#mH !6dAo%\'7S 6`Z[ qdDw'/764PfC] nD;wF[]U#P-#-CM :zZkJGr5ZloYhl=^CG?68FAKm} K0zMAD;]na-kf#3D?#1h?\ 8>nshZ &5Hzi^3UIPu1)TP =GJa8nTM_048iF(E~-aye QUL/w<fZ'dpxrT*}/?X^~lql'{ {fgcL&^;;;[n4U]'T @s~/Dn w!qsr[ ('KtAg]6rgvSbDq(%B`~r9#9*]gz& vm> PUTT0O?mXC]3|] zjdxr8|6<H$g8ljjwlq`>y= }#q_th[[[%%%9`]U2_M 4G3J%T8mCaGjWVV4S'k'3:> $= Tu8Tt47L @LQ:fq-a>S4}h!CWS3!>qQt;dpx! oP:):t2vv9BN{ H m>V:@9lEk&JQ93ic19M^!A6 m1:8tVI'4V-b:h(>o3 tQ%7iYxg2RnT)UCQ5W!#Z)je-iHx uDVK%J1r!_!AU1zQsF5HJ\hTL.[*@3)sfJ|R.IX&J%R<Hg m|q :x@A98l>\>(|>op(rXUULfO}mnLF1{ `rW*Z6;O( ss$p>00?7EdL # }0366:y~bfjjvfnY^Z[l3IOhkPHg6lvs-{^W+rx[o\sp;wS asG$j!Apyp bh|&iR5@~L17v}co+\]x<g~~yg;?g:V`Zf^72s0M 7k!sz2soH^Orz)m C6 #<DKh9ssht 3@+)1'ye/WyrlA_]HWSg \/.'+xy&RCJCz~PF{V0E HbfqN5b5fA$Hq0m@OYEI+h$ thD6 y 86D-#jRL EMSDcB 8i<yed4l-VidViYe1<RO0| S) Hw}Gi>6b ;y9!7=f 399cofwkNu ;VYea:TuhA9>-N 4l$=^cKuI&lmKU-o(A<dS$l-dC'ZV9tdZ>6EllN[EtF+r_a0Kt%Fax[0 u5I:`oh;ak (nTGA`v4c~//}K ?wR%O_aR#~HssD Q< z)fLgv<N>7)4J(4Cio5<P.k-#V.GU(Di\D3 $@^doI A.i_ v>AUp\Ts?/v .-V|f}QBX||nltfs]X hG<3cvVgzm@8(CCCL~y'vP}G/pY4yV-f~i| TMMF |vv=ogg$]v> ??s} #[-?5 n3>1. ]clllXV'cO|q6X2V2 gZvNB=@XKcD;SCBoAJDR|p&Y8(yF3VDk4F#s&g&/HA|cg% IL#QF G`^pUaV*z9H Gh|TAEc?^J680}#=pzH q >]C$\vc&)S@ <hn$MDA-=LM nkhj'jZLc.BZhBI vt31f8+45P)Gqn4 aftnTW![n'zjvH6j@ uaqkW)Yu*u5xVYZM5Aco>VgPmUhI]Qr5u`^NJ6I qxH?NNhg' q(86*o6VWW#< 3X]^\_DNl!c3 B:N3$IH2qN_8h>u'7<W E~3?8N|xzO~}7Yf|?$j~FIDe\wY;E !Z|sWs?.<[#|c8:v^]ynWsk?Ur }1AnptomOxaw}w~`;^D<7 M(j >mLT 3.f!MI2vi&>HU*x\\$#;!/E0d#sb t1 )4Kf4Cqn%[c:I`u*KaFHfI$hRN%]s^_v &Lir8e;`o?e= aDY>7dWCsNuxi)>D])Vy z(6%5oM/;Tq> 0liGa7s)lUnA4b' 0cfi%0 Umo*j:IkfX5JMmUn[FAnmZk&^<O)9sIiyZ7Cu_a% >)) 1bK; j7t;m&UWI^g pD7auuyo9~xK^T???z)^F)><<D?3B|/EwrrDESEFXnAwi/=W^Kpm oRO<rS7*S<99<YLA&L7nw%RglM<mU* NoJw{=7evZi 6n d[8~r xfDuuu` [U}f3_}XsVD^Ar3BF T)g%s)}``1?/qel]HOxkf~?FD x<88|B0 Npdc= + Rh%e TLhx&:TgZPGeXh^hb~HXeL5 i332g>qk9QTp aQ!r4Bq1<c 3&. )z6Fa^02( YyD46IG($ijLi3-8(vFF1/=~.np)1{Hs1Qgk2{Z 47A(ho3DAI5<Fs/6-51vDNR54lh`6m4!;czCMuS}mCMUs]mkScc lho&vzXha Rv.E4Y]Bq434KXWC( V#< r`an?/tMhY{CFI7wnO_X 'c{kEWWVVWW`ecmmksVFXHdiItk`_sp2Jij$1]e_w{/}<8s- Nn8y475wwW! $?q#Ra_f4r?$w '?w >xvd E<s#.98=$k_[}u [0k_ O+0_%Xqj%@A|W746ox y.9NH<]q9O D=z5Ye\OZ^5KD#uHmC*NY>'BfQp^P7Yc`q<ap5 i~P%Q)fU-02pC$ChZPt0I:hNZ18jUt(Qvr mO^] 3} 3)s.`Y.>4&=[j>]o1 K1CS }M4 9;iG~df NM+Nu6oq})wa}]] aXAbU&][6e 9af)7-&;6u*WiwR>e z7NG]^x[88^G4<M^(I8=fUW4fhSkai9hlllkkg_TuQE~ ?>7`} _x'F2H$#K2gB1|rgeNI[/&(|f[8.R[/J>_)nk_oZ^p2|f#<Mo1 `(teEsU?bfbbf3yMi+|.n0vInF)s <].a K%e{%gf7o P aA \[[VZlnW\5 >S=3 >r8+g<*m(F|ksxgel]N/8bMS vkuwwAh Qx=0RL<RZpN jJ91? A.iH#g)YCTTAt1\=sWP$(1g8KEFQBS9hx&%Qsxlx9;& fR@- e)mscG$whl~PpD9]`@xb^@3zzL=LQ31BfuC=hh@ Ho/jrP~% ~Zy7`KKgqM-(nkl)ho46vyn#%K8tmM1l4cAyC3!jWhfk]m=:SSY:::\ VIA -xU-F2<c3n | ;AHwv67i:zgk ED< fRl&|6'yl&N9r O_w;yQQqFdsgOgO?'N#4^SE]Ap (4 ?yVu}=Bzco$u@o<v7`9  +g=E|ouh;^8 y`yP; >Yr1_2]2~8e( ^u:;Sv)Z4iE 6I!cYmEQ?n$ID)V@mb >/OgF F Ffbb:AR=A1 8]k%MQG8EZuP d]q59tWLy1A4)\Sa?mM3~]&BP2z7k+9uw;mMs r f)! kHxq.M0JV5`$Izu0w c7NX3>soxMq6f$\G sjunMeSnX[VUkBN]k(Y%oN-\1/Djlsz<Y5A'ZRX$>% X@:SAE&y__<QG mllloo%#+is)ha2O^p<F& (^S? ]fsgTMjG3I*Vp\t>Ls#te & ptO2]p{&i\+DEkK.yy:0I>3}1)9 ;R[.|& ~f8c}i >L+qnsII>W  mndZ%_ ^Af}FEwK#hzMf~< {M4\? c[[[ov.el}vo~xeRIl l M.Ax6vv76n7S}nlr)?5JwF31rsuNZ(& 5gLDcEBLB]DAJ>&PZMT>GEpryV`BseqJiEB)gT)IH-BsCN $\tnc(!R sI-B& a;?<~AAj # &3DAD $ D]tq uwy6(y j U;`O@w'!R- m(nikZ( hOwwv57 AH| 3)/uuF3i 9s)DJTMmHgA5t5\I#aDMD~:h<S=7P4MA%1B#ygtqTWU 7ph%UK y4Wu5`Y9$1j]'q&$ &2e3C4Fxl{k3 2RhDBT2NX `0:H8cQ87N9?cfww L.$ b?zB <n7?O><N|tNn'>!*sp^? fAwo&`0 Bs/v t_{d_/l QrGJ.|'4OC^dwC3 N{gu#Kk0MSVV]OV0}d`=o=16^'`B%?GUjrP\XKau P4;cC:u 7bQ?fD <aXDG FLr1u eGj&4bj=fIBFAdY4c-]s WOVdI&hQ6Y.O;i*C96<Kuks^}xtB\S0g6& S&X&)>g z:`t Sa;aAOA^[ui^}A`OZQ1mOYf;{s}w7c' KoA<dQF Swc.Xb ]4V |16x(W TEx(_Y/ Id/sZFCTp>' C2&MWF|m+_ }v=hlllmmaBO>$ B\r9g0snO(3(zzz y'xXKKKJt24!s#h6f7Up0t9fG{D`R|n3<?3)tF3[K%s\/*H?QVpW_?Kv_03|;o.U6|fsI\S<IWWWFTyA /9Fl[Av )C]v9 nmm e6 7Lo)|V1l;\ALk H K^: n5wx ej+?Aqg;UUU }\v.elo|pHgR ;&S4L>QWU]g[]lL4~xf~6gR$ M Bc d Z*h F +$h&.hIJ!1IfgT )%9p)VA23J ] #gQ)ME4?&POCT!Ba 9KL4Z0:L3kra^N/wh` 3$z6H] c$fp}c}D C] 3#}=h!B:3=$ 4 ;v( s -}2#a v4hQHQu [TW +3&THmD]M~mkFkG[sc)5X_}BU]ki9Q_[S{juUt =dH4\_[[sZC} .QO]W%#a?nk:N [6Um.SxlF4|T4rt> UM&*8#`2 'bg9F#d<spXR0@ ?t*Jeo]?x=/h>r|z7Oob /~'wnF}(a');))_}t7M'NRIw;  aaW7_|cw*k<c<7{=_u[v..9O VVaf/m'N'%y93#I8v}5{$?:Ue\[uAG4zr Yss.R(9<cE0fq0nF(a-Q= &$M$qeQD4!|q4F E Zh0#+`.$Li@HD~mKIY.#& .Et&MZiPGGU$r.m{9.Tg\Zi: gGs5Y.G~C:`Htq6?L9qwL(Rhg0mLG =t2>c~g <fsY K UaD.(LedQ#\P ) x@:6!N+~MHfyhF)r}Q7+ Iam W< KG}ahtzXJZ8WDm6io=(2H&\\t6g_+ &]>3? K??Seqq0)AA e)4#`GzFt\E?x?g{;06.?d!3~a?0[n7932'Y4X f/&+Ed`2gx~`57nLZv~)! g AZl\Rp\=WE33=C D *sss333< Kj<m~fgy*A.0X!0\`gg)}Q(yb dj%L/FW^v.el@@Vs3Kx \WBh/c{[DlV+h@We1s`A!Q@=$xY%234M jE4<5LBYKrsVPksC;tQL|CB0aAaj~FsgptH@3Q=2HuB{h47y|D?%uP4vww7ySmCTA(|Is&>L;pxi> `y6tK3I>7t4|kC]W[ Bfpn';w)t>#4N7tB#(v&?XGfHF68_ t5bmijlF\uTDF )PZXV]R_W[kWY.gu\a~2n46upY9IcDsq`5;MT6u;H$ %v` Esl>f2T2Jd<%gx6r0\!?sLO%Dq]?GmTpy{=DEcI}~00nF>>Nn_}pT$<3Bff>@StORo<r?/_xcwEF; A|(R@zy&3m3 uUe\`;s[)n?= Lp} )R/Z LFLxVCUP/c4nq )tDH38Fa 5bf0. =& Z6`9Rv<u`LOBj9dhZg%7f6$ i zU9*TSwC)%D0 =CxuN:)6GO^A W0iM( FH[aG(nW[P e .])4rOu*hC16 GA_W4hQ#HFaVn4fV<%NeOEi:&MOaSkMV]~0fXCv; 8x}Qdwpz HIQoum~+OO<JW.3rsCxU6|LRb'H?n[`w38ZgZFl*8Q84qQQ\R >WlTEk1\\>8Fv$#a0<\>Rhv$\\t^)$o0G }3 `1g&\>3g|k.  '/gf/7i gxD J ;]^|b0xvB%=O^x8GHmOO0_ 1?L87fop$7A{7/]v>f D)C8ZyzqYl|G?HkLc1Xo{Y$gI<Y0g1BX\4lbxT+3_-5sIARZC b4 Mpt *81vcBdT@IG$!) CaAY<2 abcx Up&!a(aeXo@(iark3V'k@L08rGQ:{)^vhh3==DLA4u4u6wCJL'hL;S GO;L bIARU[:ZHAquMpj lJi Un#7u Sj5gJ|)h5W]RM2u55FpFWyi)pd67upM &i&;-q\8m5/gS7 ag@r>p(J$ QNAwLs|s6^v:GDKy>xL-\> d;Nn{f7 C8 =L}uRLAp[Xm7o]sljvY@_{5 yJg }%2MNBz%43 xa M+%7W|dhhx4i<|f.x^a@W9R2V) &] $i+7HY3i:nXyC U&! `B0fjC9s''af<':C:)s&hhtG#vDaBiDZhCUIi$-ITUKfqD'6mKD<}o^ ]!ArvULN8i.gG:f|zRH# B#4 N4d5COOg&cnYn;FIeZykNe-C uMu1&Q>3G=bA#]>X{DC>H@22)Wt%pA-QhlRU EhA+Zu%dN#Q&K0hjWt[]NNg jSw{\ q:? _7k1]?zr\\\Ya0%%s:W?l6u:C3ltN;gF.DX`2mv.y.%QHr { 8*L|S(;>!3yK(tfxOkY5}n19HygXD]3IZFL\9 z|DB}_w#[v-/>3B6;;;55599g5V!!Q xgZs|A30p;.o0?RWt 3*^__.)el] }Eo[6 c\ p$O[[[+++mmm{w{S#cBfv6(egYlK4L&GS94bIEWaEB! ? mqJ B!QA:P'1D]|.3S3x=XNJ XpPi?K70&c8FSEdIE |\OS(O#| jxho7I)z|DG htd(|h E4J6HAKm\ 5GWgWLF ?CaF t-)Vkon>7|2asXvh7Pget455U$LPsc HFx.hXX1(s<_vjZ#%z*~iUZFq$QhkI}1WTv`?NomlTI] H<9Rj' [16#+sc|;Ut.h|g=z pz{/?s\ .$ s[08@J;C EV;oNIAtqf?:IHErLvG_ (|~z7zcw_|#Zng~\ `d{ f_!H?CNhzK~}/l^=X<y9]v_u1!wmi))) Os{j[Vd 2>]*K:jEW `M V9ySVDI8f#:nTO!NG F<<EZ;xEAXEhh 'h b(zc L `N4#|FA[!JH(&;d92]uk W_K(tytY4rhN>']0H{ts>CoOL4C sl}0%T0eI0e&r3' z|u FsTfZ0- DYm [tjBNMuxE_Vuud0M-jfD/N4XuMi5Y[>o{C 6Nj3/~GGGs|QR*B4jpxxH]?71??F3SL [|Q2|IiK.?G-AX. ?3/E0s9}=^LgJ%P\:aT+8.J3 o sC*T]<wxx\Up/>ag/2o+yL&cHe~8i2<gX VcLA<;hzFuot: r<`VFoR7 6@$Nji KKK@b0/O<$\_~f#r3%u `%]GN2~!TOW\~o~Kq.el3o>V{; |jwg?b18ihh`s u2 p\ )6RBKfIrRp($51-.5 3k\D 9jEQ= IANhpHH+RH] |?e$5 Fa2a5R.AC A3)hlPh; $cF BfC(-2.!@ N)hXs?2D\ \& 4Md@ 4Y!#~F>fH>M;_<B<#niln$A&$#M>uktb$HAVgTpfneaoTXS P)jFM2\:ykMJMu(%g$|hGTWW]hl:uA6dWmez^2KYI9|K'\Uf#>N}6 mLR R0Omrl%% yFJ?Ng/ e kRpJf[7__x}.<x7tr?'b?8[7Bo = sV (.:7>;jaqt #|> u[ye;C$*1}&g3^t ~%4D 'A_q.;O];OoLA7T|pU]qH1]A(asLd 8a%J3v[$ hot2^L3'D!g%pi /OXP/ j94 s!$v Qg!h% if13ER < qtd]Gh3.u4$`l6| Y!7aMav-%3(O-?mNS0kSKM=3%;aNz .{V Dfy(6Mm=G s+ 5 ^|2V%5 .Y!&VC_E`^-X)%wRGUw^Qkou89nO<2)%cG )S_nmmwggg/eT Vw~4=??3caaauu?S| 4Lasyr G _HX8JI`6fcXP4W0XI|IJsI<}.V6l6\\'7r9> dp01v*OevAJ}{9x/<{<3g|_{f*m- AJ?EQx68==^5u: .3 6yfs |c3 xI7%%GK^\\dJOk32L`0?%l]lwH wI:mmmU|W2s}\f:T__ sP]AF *2Lb1A8@v&x5FL; ]YLB3*I4Z <SG gG4Q@ A'Z+H.3L QJiAL>g2>Q <3 IAn + y1a9GAwG0:<A54H8qQMvw0D vIvnko*># m;{Z ] aGsc7adK_G[L3;g8Z[ae6W]mnmlhG^MsM}5j@#GcC]RFcux$j&hTv]Wljl1\Rk]}'Jp?X-)Q6E :dnK){6a t~n}~.I# 4:N2.<2i46C9P4m{9@bQX^~Kw? ?;sz\f?K%vqJ<]R0}| {Ga?$ F9)f@Gw |(/I dzagV~Zijg '~Qr \abby;)4?3KQ n*y>'yts|gv{zk;sV1iNl  _E{#*C e LUgE(eH_9 ]V8)&h9Gh :hB626-\' ~XH9A.< 9sD:gQ )f9<wAc Bz DBQ>C a hF>Hi55%X+E8f$X0mQ2[sk^]-G7])3dsJv#G  #4&L eo;97e)`ISnAH1+f)LQvY5Vux$.Mkhb.mQ67'q}]i(99x)^Ns1$jN-ittB:6NvMk3tC<#hfVui5B?ro~sy``{PbgP {D6 b=l<;; @;;;LL$}V.7?t\49]zyxr{cl.vAitQ-yn&+`Ih%pQA<9 ?V/EE3x<Lg{lI>CIe |f> d3RFsy>3F-U(CS:D;mlls###p |>` yf d7.9`+Rz31?7*8 *& } .el}6??tGhSg8 Bsqx_^^HV'ommmNMMstWWuM#r\W(IE aQ0g4DK 9 e8I 4 *<H@2iA%17x e2RLPCe<QAX4)|&gYJTpdM02( j1qt p B;Xyp@8:LGS4oh;G F<&U *sFz`.@ G5hL>39Pu Q:XmpkXK-M} jF5GwkQ.rbR%l#u0hA t}CMu{sSkSC ?dK<XC:a3k65WW5XUA8tmU*xM5Uk (auu]5u0Y}Zr]]5Yx]22n5!BVI)UzY>nS-pQ:: ZC pi]{QXZXlonln#A$1*s:/{ydww| !d5\'Jf;^z(>{4|Lj?:wq^0+xr %9u9Q[1RjS I'O d ? -7y~_n__if'r3m0>c0JOkgm <Nh?UUh Ihp=?pB0;~m{T %unmU 7h>BE c@jNjjNd-YLQ3|.NQpAY45B'E; Xi=/R_1opSm5 -a'5mgSEj9tRe mwJo~_G { >?/=S_~/S Zd lwGVU-0aSYf+q/`\vpD!ea\04XcR4wgi kv2c.s18u )Kjg)kf i.TK{i1E CfNdhV4y%gQWM'1n hx8S k4ZM&YGF^j.iTSYNx3G2*m;g}y&*<+++ X %l<p {{7 q fJ3>8Jsy}bOHHK\ lj9s.BW\]/1%5`I lvef7J] OO%8#< yFx+}P(J |KF_*KI_0~oFAeb0![XVXGZ[f3<f3\?Cfd20|tZ___YY@ be>NOo[s[ tyCv\d#<`8a}7D<hyOt}6<<??^v.elOO ) nJMtP G8t7(?A_?d mom]yN##vF13rnXjdu 11f gZ@=4L| Z84V**G@WQL4HP!QKMAcA8P=gxI~ :b(59 &T:c'`td0L388#.6azO@Tc}=c}&;I~ tt_qop/ imgm--w57tw3&[a : T'{Xio$Z[kIATpts{c}gsc{SC Rh<P1fT@7jXu5 -Md!:a0=M/3@z;6nmno$'QQX x%zI Kji'$z@b~y ao`U 4lE$1&RU(PdcSpe2|0moonm#^_ w6Zhg;JQF.>+ RN`84*|nDd.:+/<QqJE?x|^:CF#N3.oajG:w=?zV<{7cN3Eh{F 43 ?:AG_ ~ Ao jnV_<3YqD@R3>|'8/{_y|ygg>Y3t@7` &g7& 7'7j|Cn?pp}x}Xi >M$*cy:6#|faTG[DpVjrJ)vN[%I8C q4Ls(x63 iXM 6i :jD.~DZQuj :8Vm(F7aLNdCa2 kcrtE<`k={$/>S_|S9 Z Vy:D.M 6k!@& D7e-;ii.Bc0mo2S*`3ga85aNLI.%=K=T%`PUhI]n5!.7&aa n]W4Y[Tqs9xt[mn8C~_T|q0&n$#>(?? *WB>q~ x2tJ`zj=[^^#l67?{u IVqd^{V$AG%  Ef2M{] @ )fD o dUZUUs#TQ*T XUL\ VA\2]xvtU ~ :-LsrOt RGe(f(u(>99g<8De3}L^L hpLtxxSAg?`r_iz NhSpp}} nX4|6Lyzh();>Wkkg8\]v~\:J3}6==Gm}Oc//21'|o/Eh]?//}Ys >AXfR3r v  V)|kH 8jX^@J8e!<S6HH bDLmL4QBjZI2V$:)64I8#G% eaDbaHAU@$aX5x0CY)h>+;*C 4 -D(jcR2. jbg1 `_8\o+HLxrrH 8z2.dq:!N7=wR3 !&2{ ;+Ph7zONz:0Y{UC mlkhm{:;94cRjAF#g B4Q/4Qx7p S4LboR#Yi&y{B]%MI.z<DAmoL:T <u >:E7VWom77`[_mnlx!+sl<\h:PAXt\:8K}W[$_NoJw~o>9:eJbz? F$} nwmNob!~9W/<y7Uy'wsnw3> ydO?+#Iq0qa wSC-;g5Wo^a|ksH=K}?WbzId'V89m? MZl8i;BFJn2}y3YLJ@ZgrVsjs$=u>J<g 236*;*'- l.L2D[c 6 MmO m2)(ccJF|:_z9A%=|/~Epp3~c)l=F'3^DSLY4Yf}'c8gG^bp']F3)P8=/z=?A <l<)Jh)x@/zK33 $-vvk.MA[n[<Iwfm ^vz^=\d+etQ/g4qX@2 CpoQ`/YT6MhQ-W4h v{CK jOOagTI8V O Ng8GOy>jLzj0\XX`bk3qPr^ []U|JQ%SppTM~b Y>H23?x@}<E}] qY7sy%=o>[{f`B{gFL4\1RfL9Hp $ !;g6f|r]zKez\$WWWv#8 #:Tma yf[89/3_};W<K7S!v?Zgv*;\iQ`< /Eh]?ooCJRU?/o L(Jf/0GjYy.-U ~_2:Xme2~F3*8)hLDkl\HAt3<X)DHj?#XJLB(@L]! *QcuBJN!3dv6 \Z.$Bj:+jf Tf2B*{FH<ZdP)\9X|; \ 0\ xdP26BiHAXg@  *`c8<IA(!  BFF\opA =2!b*b-BN{8z+a>R G'6M-Uxs70!YfNw);[66p:;Z w- FKK+ + Xy=_ p(cAIoG*H ;>s*97$=OZ2~c1b==:fh d8s{E#hs[MBi4:+LYt..hJn %Zp0yil>sh~~ogB e_u7qB>$wp3VG y Mn|pv; _`W 'ws }r7z{$y ^AYOk]X~z{gw sr;3z ~#D <|5xm%j&wmiq>_LO-'Sv$g bg]FQ} ]J+1Vra%Q>:R^Q6 >-<ks F#v2$gCcuCBw&*JLBf6f [piE mD m8(Ao)gY=k28?y' C &.]?~#=SjK&0F']4|26~hG)1aG=IWyUpM MShHr; .CRp!x0tE4)x0O{SN8Caw|GsiVExN'c!xg9G#hu<+xZI *%gtbh+ tz[^uwwwuuL/O3|O}^rrU{#E=jhhD4 {\< tL *Rk Qp(4VJGJHuuDlK3=V%f4#tU)3cg)AXr>y vL| f.~u&!K/U)8P7(fgx\(d3ge|4\* ?onGZ| |?3|k`2pK?uppP( vcnn(|;r3Qpfx ?gzm>v7>y>4y z8 8wa{xx< ??.Eh]?& 3 0=*y t: wab }p;aECL/L42FVV'Yj j: 8OM - >[J 3Q('h<K'I#5DTQjhpF3X@p% jH6er|Zmu 1@=&bIyAKy9ID3:`i;X& zAtAHYHpR02*C\R[+tq=wh+gN C=v ]4#=>N%{;{ql.C Z`KLs+?7#IDsn4]y $)Zal;MW`{[KScC67ELD7bcSc<3`83 RA~ LH8L4n;t=j$d:;!DBx]\]Yhjl}m-MlnnoSl:]l3hx;(%Z0&L1u6stP~7k0kD|[pT.s|6H%n<_Y.]' _E|} 7R%@7'3f v?|7W>n%o r'7VB:@Ca.}n7]t>/~/}ws_O|}56)RgR=|s ey77\B3[d18!q)|32@t.E@LiFS9 r{ ~ =g}yI$P<SXucvYQmxU%c&!jA#gt]coy+YcuMwC=rva=?mklR+-]=mdYV9p 0v8[>s4]~K#ih/O81:r  } M4<t5Y/z9Sn|NJIl!vI 8)yD]^`%\ g_atR4 *J{?dcUw.&JK&}abtVP+F'U) gt9d ]0JUlQ.KUI>$~0]/R3`>C>q7~0E?x+D2d3A3*4BXKkt=yl tmI b!f7LIfgYt-(cpa{l ^o791xyF'< A<x96|?L&% 3Ud03[%I>MEB;J|*?UgPn*Qaw777WVV}i^1P|>-O?fg6f dgA][<}xXP~gVA?/8?]v.rwKa3 0]~^T2XX vjWA# 1=/2ZmF3an%gEVh nYl'V <#O69 IuLJAa3#lv)J(7r:hU (6|CJmL`g&qhAkI:gU@3rOJ3n(E|Z|E 7J\#h(60\qAFhAK\;* Q !3pz1L[`?\d ~q4Lp ~9% dM-]Ca6N[@ 59^kV ttuub4s7\(zOg{lx.|J)g 5: IJAznijdXmW67j+MMc_Wg*h%7f|Zt fq[ bw-bM/ZV)pD<x}n^_P%gNl# c%MlT2O2bEe3<2R>Go^R)r{F2:?4=5L|G+7]w}o w#Onc[ N  v;{0GIT 6~ZQ~&i)6.?./w[DL$!}77<^_J;Qm^%yy u^v\>e?n NX!c)l^}1dI>x5nUL{V; B`gGvb=;SyV4uYX[0]o`}ihy*sdUJh0+jhZ&6LmfH%FA %1 nHO301ZBOy)g4mfRS)VE2M> Mh .=gd r'<_B?q O& QtLJ P/4*hK5 0|h~w8?a_/P1G<8X$?< QNUiW;=/$s:Idk6]aW;TNKF5fpUf]k-JfI>dKFyD6vG+Wzzz>3!3 )A*jiK$zZZZB ?}\~c+8Q|f+<F 4'ibh FkY8L t3@3w *y<n6\>o[ L { u>ku<4 `20kW%9r&F|B \.3khyy6f'N7 m]fg g7 %IWcz4)&''V3<9FzGy-8S L@*>W== ?3/F t&vK:7Oj>7vh]'?w3- | .^?;N?G-|q M_ZZXZQ<^.24m!g< :X<73H B--JHQ qk(IYaEFhIYfXLFBCJAYO&B*tq`HuRt;SlTi+2hgB%XK<HKbPhdFRpPIKLV2( Hs)qBYN 38<* h;*F7JSsIyP8CHm;GC<Bzh   8HJf jMa=] 0JcSrh.k`E]$vhNg8!dFD\H;s8n-TcuVDd06$QVhmmknITA3M hBaG&|ra{&b As6d)M#3bZ` }kN(PP8{ )/WGlI{izr#[]\]YYZL%WPg+M0Jl6aewg;{\. s\&w;{X6[_E3BfWtDAK+|7w}I{1p NGw 3tB1 FEr q~s?)OO/Za6YanwZD;0~{gomHo&X`>|1;>I Ysi fAGL|PcIUYz5mC[ JAC1/~}x3?SEi4i{>!(O!|Ty-[ :r~$?ftmDq`C]S% -(anjj cA\+m&t-=?$cZ9yzQ6i)9ygC]Jm}<mSUp~c9l=Ka[1lM2xX3_#u ->fVj~>B xy2 zyq0^? gqQpx7Ebz{0[B#?x gYO~v>L{aG2h Zw]97&}m6hy(^1KmK>V7&<SbCZdfI }$>Mj?Nks:Wdb7MY0(~> 3nfXN R^GG.g*jK3ML8WQ0y3;\uq3g3Z} 2*]=3\w [Ve`9{^u9.fz|cgFL:eGsI_JTIwD/1~m05&L` 6;T3bORp[8l6 p'9 sSyn 007iC6f& yf3H8\egB`CT 8u3 #3{_`v.Eh-0]~ xghIRLxf{;$d%`(N l6|1TL*$&U4l@RgEb p.<YK+gUAH5 TaVH3]gryF9gXA LvHbGPcA@(8GyA4L(XNp4W%YU.l Y!cB>&R(- A5(h@&#yx`COb.z KF/g$<N4>=*8J6 5:Iz^j7 PtOwWO?s:{`AhD3)4\6D[(v lnjo%5HV7^yLVC@s aW^jjDGXiW {tNG!{:lO8a[6d-! V 8f|<5f|Bv8>q#%pfXOX-xNG$. GJS|Hh.X-/Vc+ 0Vb+x<=8xg 2h:Gw] p}imw7MyOO}_]Kw;7v?6&T\W47`W<aw+>\|#MV:g/+?~?wvM-wo;olz;>M;zccWW}1.A<>_u^qshSXy1#RcyFb g}W8NbYcVgX)$ B GJQA ?Jb ?aZIHRUL)MB] sI <q0atN)FC+a+6U< 0#g E Hzi(gKQEz92Re.Mw0|PYJqC=q-> Ut\tFt|}9 OHBC OOE(G ; w Dp^ (]w#v] )7vDdIgac~t zoyuJ8FY4-~C^]dOPP< #IbF`Er$_6Jte Q=%p8]]])AF}gF@-|&W sW[3>>s&L6fHcU0Y8(4{VdI>4X}{^<t-(pf5n3f -EWo>)~~*>SnH! ]QJ>3vQ5:]v*k}^1L)U 1\lnnvvv2 t.Up'+5oi%fP oD%VH7\.g|8 Uv~W*>k=S4]h%8rd &&fgyTp=sh]v~d|3{2x%;PulU'ztps]. }T-3:k5kpb#fRPCm!nVDc`iJA*uP+&Y)DI7*eKO E3H%>HuBRP.h!)&XC|L H#G$\Wy03 Bc9hmAD!&EH$tRXdpx>F?FIA 5?#j&aH {:8XI-D1L 04>)4=IAupfR 4)JVI3 $ sZ!;3vZ5H&l'6`UGce Dp-tc{kkSCCGlB6^|yW/>1#7mqGa[1W&=39`y<9^L{M: b[5J5)lzX24 shP4D7*_%5~|iZ af]@j~'\`> qwAz^hk+=^}>( [8?}k{W'{n?qm_7S ||; |)_\<MALR$ w-O? /A>>-~;ts?[AoNxm5ry~[ ^wX'o/zoo-xAO1m.G4]2>m.u8bOj>-f:#yx`EW K)/X-Xj u[3HPb&u @a3c$6vpY%0i>4A g ^ #tN4I75M57i^Ws^eTqHL>= IFw4AofHz4eQOWJZY' I l9 ^YAs GAVA[lzE2Nk>TsOg^e^' F'am#rVa; <B^?GFxB/Dl pg2g%3 hd G:lK^ M{s&bn q>m;YhG-%t(^0K-erYuiCn1NU5 Ed\>]cc@gg>9~lnn>}A*uupVf z!._p&&&wvv?U?Wh qTgjBNSX%  qf*]>AWU | ;DlUVA+>W!qwVy&J3*}1|dRg}M1)|.JtZV3.e80d`UA<SQ5)|[L&0Zy5}{ d4XjkZ'6_6SC `|(y|'q p.Eh|3|318b;9iXWMh}x<LG yX!;:H(401V bgV[5J^cV)`qVE*)|& qGLzu mRd4c Zn$Fh#<3A(4PZ:zB>); H%iY']!JhpI91R + \3xt4g(nJh)wD04 aH w}lO< unP3g.I;3l>`w`E7 h46zH-.v~ } -dht;l=hik4z9 CvF3Ii9MH6S4J -MW^ykcC;Ejnlh!e[0RKcc+FHdLA?77JWYY2g@5 Lf|'ke}~MGXd{k!xk1x}w2|k+Vs* &j;) ?A#APP4+AtfJ16.~? G.g\80?q`l ux } =5\73nfw?w=%? P3?(n;Y7R_/h?.l$?^;wR/ s}3_M$~9?+h%m$ \ TF1 4Bbc2fWEGj9BaB4iKp]_99b9qk.*RPCiRyp9-p(Zn\OmnqM -h NgFWj$1TEv 8iojqoC9. ^ >gIYlhC> }S>W8 }8mgmCs(nu)tASg8 OM@w]xq0n= E7) 0]nMu{^}v]=.e}bR Y'[9b;p@?Lt e$|F b&v q;C>bda{~ 8N> 9@ wf0mMnh7<SfGM%dXwVOu1hN1a_whl52jGE%tJ#~_yaRh?s(2;;KG ydpppbbbqqq}}=Lr9y& 0G6ysJ B dKAV)sfw-*m}@WcLmhv}}?lb|&=f sgU0@d4{^MV+^/-8)k0|9$v :iu8aASTp*LsW3v>Aknmm0>877SO17utt13\~gyfiA}8 |LF>C  B6|_UbF/Eh]=1;') (_30jnA:zCurt;;Xlyy9<^ ?W]4;N2i48XIZc% j+zQ scF9+glgQJn$)hLL t 5<kHKI4ZJiD1 MHC 2 ] H&|VAEA`EF3oLL2<8& $dQ46 CA&!`?oO@(4qAE#x.w&h)`>gq1LF!-;XAt1NRmA4]%gZzoG<wFA M >BuU`[oWG{sc_wWZ8[)jhn;!mM=mKRIAxF'a@ -M6&VMW45\% $;+?n/OK/; f}#GJK)d=r\Y^\ M{AKv zU8Fx(Y1EpAU&e#3Y%w'$ChNNGdD40!ND?M&3y%wN62% 0?lw6Z^|K~Awr<c^?}p-w?wc9cP4n_ $~qiqX?0?!VD w?;9737f9Eoycu_]ym5*)DJ4p(8@uE 5r\u Otky\0g1>yc:Csuy>]6PQj1T K#Fs2^x(6 a2wLBLAc%AA\:bzNmxJrlE1YSW5u`S/ Mgnq-?Fke } _ Ay[ZAB+ wmNbL9Sm*G7# 5wK6{FIlSdPar26<qA?q O;&l3.mwq^C s~BfN- >S1`)0Dm^6v DoP4{.h-l-z.dC[1MfC|QO{K\ r pvh; nB 3my  ]Ss =}BD0}UzZQ|$[0IszqP> g=H'HRRN:) XP6WMLL\|G }tdddrrrqqqcccww7 0VBLJ} l]UNEL|]}fE3#g6>MOyMZR[uZUgx3ax?O*x(~:a'3FiIMa~V@3-cD577'Iw>3p3MN3mE3F\|\[[RD14Mmjjb gvg>e_%B{aR?3Ox@j5c zwxxa& ~ p.EhA ;:- L(E?Q ;3Lvo`?aE ]x|ee ue oQ@46htUZ6T*vJhRL:f*B<#sVQ7t s !:e:RL=A4;`54L2lp63Z5<hYjh8(CDM3);x:G G2jCC!IHIAz #yTJ3EGE#C5`h`GL *z'h'Ad;$L 0 aaL5wAn?'+ 8d31l7z:1d)t76 ]=}A ^|(@3RZsB bA4`Vp h(diVyniJL>o a&LhQB*+nmy=aG:L gD`y0>X\=-0s^C!ZBOn_^xum`YAs&`Jy)~qVIane1MKMU2A@mD'\WUxI#+cKJ;/ cW4U`A1:/ m&E 4<d?*uwS G7S y$w+7(:{:I _ VBrq4)GT=#vwI-^~'Uqn v&&43A++X  WwwB*I6CF2rzg] >+0R@@4O[h9O 9?#aWSin]FbGw-mpq[xV5N K`*Q(eHT>i a5 E*ixQ=/8eq i4;/ (^IXt-A4IRVyrY*cWd t*|hv8n=# 4 ]w 0O G5`@B#v4r! iR.lsN.h+9h+TA(z&] &xHGYH{A gT5lyq.l:5 ><i+hLy+` *jUKfY7HdN/IF|O?k>=g }t ?n| 4L`_+ _& KKKXLvxxH>3.*=I3!oUZCjklgD 8Exf(6]@Fo$CsS@Wy8t>3\do988WB9\?{>Cnbg ^  W!hvAd/`p;ONN 81L'Z*)<U Ty^n[w#d282#8D[?0>l4<'#`jZ|gy;S*\?T*gw9LcmOtA.Eh]4? @Jf['2a`7 (^[[W+_|E :/;t_Fm=C?G+WH\ XpIE9(FZADj+a&ALU c!V24L*2s4jh\j:%Ur&EcY+E54f17 B>)8Ph7Z~&hJ >cLxe15\PH 4W%E+|j$<( F G%=$ Ty?/sG7O;*Zd;Jq3t;r 3=MXjphdc2UH/= fX|;8h&{:{z:H v*PL]Qfphnmn MMW^A!77645` |t4?'/i{+Q\eGYhwm1tgerd!x0z!d!x}s!xwe7g^]~mcN4rmA4/Fli)7eaF:aSn9T[vKKma%nU1<aUk:A+!VU6I6Q^>2/ /QK6O=E7Rpv \K{ ;#nL>gy?{<r<9R?POK2+ Nj;wRC wS]'fO|g06Zl9@s0ge]8K[nL>8 K!bgXj0hID 4Pj7EBRvyc(&(Q G% MBvN8t!g|FYe$ Nhuoj@ku?./IG| t!&^1(]_{]ldI:ZFJBeo[/< k |q^78gR88Wi1x YR6E)xt% `<B2o1K;C/y>fpi.M'}2Pf.3[`NM >Codry^ b+ { C(u!txe&&Yv@h+8a{n  fx'F>#q?lSanNb:I>W(p610ozt]Gm+6Y ) Z3?3^z\.'8q^1x|*M}sG)z z ~ DX v` ` o3{>^Bg:&1t]k3UvA:3ssf'~oe*}*3#h6-'mcc#soUv:ZWJ\kQL0g;1&Lzrsa r0T3_pc:<<_{{{;4KZj{G ^_Fog\<TUE ks<UGd2 >zG1>j>f`q\IR*6\v.Eh [??3-W|>O /@/sYUI0k4VX]] g~Jv%`?$nkE.&'5aAMZERvK+1QXiJ6VK#6-D('f*iAB NcRhX%REHE)=WCL-(g@cB9$i8Y$PzWr|&nQ >K*1Ba%hr82$j&)hq;S}3G% tH`/=cD=J\Ryt 3e0rA4ttw!xF`/ @R@w';QC;m;*g@Rs[.X?3m ?3EZ:Z[ ZAscXl&!?8F+gOi)dWt<49b'&[DRN4B7bol:q{9|c!p8 h' P}Wrkw]-2Y)Gqt(^&:N-b(YGU|i{_]KQvGoy9;6Kt+np34Lk_ m /~yE4RO?.n.n`9t[.onQOsgd]y~y;Qw[K \3Yhs>\1Q M3qT$\h*8(s&yG Qm 1Re\*jH6i*<14? y*.J6T%wI6(Xp`I:.GdCh n`]_Uc+eoY1h]+bqegd#goXKCxS{?gEmWP?) 2 M&aAR >=aCgW)zD3%zrw(1PmUL MA;].xys4z &sF)4A3qXa51L:Zpiy?cB17mag8+`Lq1C nYsk6<jX)WqW~Nwttp8444 Z};K\?yNr\TOHh4`_P(]`lg>U*\gA~f7 lFv#sAi7}tP< |@F} 0RlU&V]}} V)0AYaghLoO=<1oT}in0/'[U)8]sia| /.ZcVt*FA}ITj{{(L2y~ilEz3A#937[xA}4]}nWvzE(2y~~*go8G]v.Ec??!vLL CG-jxg`wRizv 4 E\jNNt pX)^lJ#mh4F4 m&|X8 {usT.u{;`A4 #rK ]9s? .In2d$}n$tw5YX{`>O-BC(MRC*PCgIg bh!egd> jq fZ` 6iffNiqo7Eb.!f3Y1X&Se)p;It!a hX`R2AA99}0Lgikejso[swkvsC]'6Z@ KNrAL3fRWw>Ww47 jL $s]UEakcm?fJ cVgkk F/t=A99 B]K3Lte{wL*t;n{H~2+{o<n96 s{3tO09 yFfI6YM5} ;//8h.Nuk;# ;r<0jq8T)jO)<eLRkI8eFfVl\2Ij`A9ZT{ou_-}xo sB G3| W cq 2P>Nc >_/r?]nb?^ ssvLyF|{)-@Tc3{7<|g08j?`'y(5os>92?oyy97sA:v|Z* Lg% b)7(sp&9N*e8cgmL5}H{& :(zR{ZjM !!Tw^7/+U (qgp%8<#X X`8P/}. Fyn=SQw([^q[wvE3+&^ V^5KMf#W4I+4Zk6C'HgM7 /-eoam7nX6Hms>9uD]\^#T>1<)>MtK8TI.mE GYt6CM vZ*LY(l=/<s3A !p|^JJg.JJJgqn.lq<t/L&%8><<<>>>W |9s]JUhN+>?>}4'>Yqi [*C\DXBQ`.zr\0/f3>443b15DljL vb r0|f/ `>jN|3p L+oOhsx 3S<zh` xmoocwO(0?o~f/>P 7.?_(xKWYN___ggg|S? 7T*}2wun]7~[.(ghgggp$B]_d2O:Y q}}@Nfn4[4*^LF6+QYfTHm:5 rfVYlTILpvC.g@kht/33EH&FH[1?SE 1( $@>`r%nq Ss{`i2?BF Pg b6)w2F^j$Avw_ )) (2YD.X47^F9FApxft>5T[+PZ =4:f~F8\QXWSGtzF2FU%+IX.#QUdffw\f0t{zq}GygoJ6 [(>v& Shs {galn01i7<zLC  G 8S89G`ds< m]9vC3 jUzSjWXA `X^}*LEPL#kE v }nAi+>:[| XGB= f~}tQN` ){<yg_ t?_C`u45W9O1 OSo%dgo {!>a?wL;cFo @ ?oyF%h-vwyQ992rh6Hj9`Yd?Cf./A9 ?Ywe]PmSSC(;[&9Yr`N!J:g]ay j^pqVjdEQw /pF 7o5&K<s;]y R .YzMvpt(aY5WU& <kvyp|M$+&i Npq/%)4mYr:TkN[s=t|/z;X;3~ Fz^7fy SLhC[A3MF38xnm KnmCOKPEa467A2Nkgo~&s466*F 98B* E?\BfZ-?+**E8-?5$h>HX.P9/K40 @ \XtbB@*!]Ts .\bliB4g~M8 \ 5WyjjXlm~.VaZ|Sr~~| +r[[[\nzz'AM 8in2F4/Q&y Q$b0 Sb?sqJ07^KU P<={o$n?{ ~xm~n]vs pVo Ct1hDqgU881yrr;j5(ev?SiV*AY K$dk% Iudu6\7Q8Py!y7Pyf2K!Tl+S5b!Cm@bM*/ vh%aqP~%AgI_ ^^Dh2rs hY?Di>wQa]0fg?K3s{PynLf~tD tu0FO[3FV{Zj[|n'sgnDBB .6VW|pLP]tmQuFtUeKC )m@)s&qa.{2s]u5]WS`g.US8**ma;_}yjkkophs<t =G! Qo^p?f=m|v P3>? > ? 9??v _ 2&MlM>xvilCsn]^*etj895|p[ zt:9B6 o>>G5D8g?<}>*?'v(7ZP ;?ij7bNN~AE~_uq(&.9YIq<3A>M#=b7u9/: |Dpu;Y' pc j8ulZd{rWUhX+8K{A9/K;gDmS<OLO1#~&>La^PC?'tH:?+I&ECW>HXF;oi4jT jins_/'7o%O}o~5q]u^=sn'ovuB\YfbYdY=R&Ij NLI*'e$eX3!z[ujn|7l[vFN3Lz k C~x ^v3 ZYt``hMO#CD~CIxQ:bW.:Tpq]`/XCAP5hiz[pxpm_WN>fFJ[K0/S!?pYR=p(kP(?p]7>]`fR'AY3w|Aqa|RtL]L-$?R3/ 9&roE.pA_e.B;C:!gOn7; P\(Z ^ 9 a ya[p^!\]v 4X 7z?88`+++~2e8;_}{npU7>\ ]\?s} EJ? 7z t?pun~bA? 1 0K93<~v)me[L*t>>2((> U $<C @8&e<c)L^61Vge &8< u21YE$hzpC$PJHM`/` 8 -DQ89H)} 0?8+P $?N4BLwwf' (@3 !;z K55w4wVE*t ljQ lEjA753sliFt}m+ X lsmS]MjHhAk d~&9C+]^_S5drBf{wQ2DvEUV0F5 w# &^;[| wA'>?1?z = %mzdc<=[8 :rLa| t 0> A|nAx|vlGvufg570R&i@b0Or< ~e1nqf6 ?G7  ~`s$r<>_G g&>p |7Ovb?^ 7|c-731 loPk}7<`s 3=|r03>c jg=b@fYs^7ZLg- y4965<SjX'(X$k6Y^HVL UB|R iAl KQE=t><+ ZCAA[Pd)agH$)pL `S4\EuLe=1`T=0#v+zgAqg@>nV|>W<Ff CLh~jrf2.F# LZ QWVv7m.EmwN:aF;#]JxzX52&i(Y!:cg9iD%<e/dq*&^RYHijYsu.2W]u5g{iM[[Gbti.aOt. z ]thbeHhZ=$:UQ]+llG``1j@U67/G+_JS9U .u h Wxdb1 G}M&t4MRp]Ro-oPh 8sU.b3*0' |4_}*8\|RfBs| .2 p$>?=|)e]Bs4qjjT* W8Zn[lmX8$s=g>i Ip#\:.2oi0` zye.XwH$^&4p8;jp8dW*=3|cr8%KO_!t xSbo\/?^m nEvun? O^{sR0X3?L&}<pT:d V2DpQ!LgjT60$8S ZYeI&FZ R `L&Fh&]\(8+dDr BRQ^F \|l(*!8! J J!7TA(  Qz )2q0 Hwg{] J=]X.rP_`7X La|DB}'y =y&4gF`R3TWKE U[ d:sGSc7)gV65v4XO5k)p2kQvhml@3N]5b5VF]]U]v9CjU&3\YVv<W][]UH(+/Wv(?Fky{?psBdzxw63|67r:?r:73GABM{1I}29 !U{ Y M:OCo'|49{ 1o C*Vma6j>cCI9.m-+VM { IRF:7`Uh?5$?1 4<Xbgt>37b=Lr3w *:=3 7' @sg3`ig mT[~>EuvYh6|f48gM7 H$`Y63  QjAF7IT CB kED;+$vL:@ts98PYas Q=1S9ifjS# h irw5[[}S **CC~s6803 3St*\N&X%bh$2Ba?xz`p_/yw\Ma@*vG{ rad5/Dg4eibJ9+NMJYPLiQ0i' 8UHJEdQl ^Eer^s\ ctngW|N94X$D K; * GzB'S )cv6U sjlS )E9.{H$6f|(a+)g&:> /Vuvv6i803QGA? 1_{KkYQ$>>N./CHLNdA @.Y>I$1 q\BXB.!GHxRTn1b9<<</0g3?3a766seK >lr=3Np||| #o$ 8;Y3~T*[`<%@|L5p)@dk>CQv]|.0-|C'*<mR 5;]+ ]v[q'|3pgTgsg';?8#h(+7cLVQz &aR!MA( Fduf3 (4@`?^ c$u CGXzKSZC08)g%h^ho(*BGp~>| 3U\0Q_7lZD =g l(- 2 m$8 {;Hyf4HOFsg{_G`W;7nliimo%3jLfZ4vP&G[C]w+Q8Z0InoBv|L0AsccMU+-kka*tSm57VJCU%Fh)0R0*HthmC0p;tel*{ 5HWUVS~.(CTU((qmw3{}o =yNfBc<GNfC ew5l rv{7t{Bt bmg7nBXpN`{q > ]r]{~p;6S#\u+H~kX+MId}>?K_M~xt7 YHF*f>xxi_ >8Z/SOwc}6k_so|oe;oD7<?O0q 39G?<#'[vF~5lt>G5z:k6Ed{J[$6Y.9eR j3sAgmRGn1]:cC/CK<yQ qT4iw`87[myIg\q oV5%l b ( loqu5X:j=vJ.qg|t~.a.Df`2RD(Tp24  FGGF>T=]e % 7^t-5QGL&x`7-YbQ:iri*eSB-Y 4FhQD# Q7J&YOYI|C$8.g3n}:N^J12nSB6$yvAtiq  aFPB$B*KNM8j7CD/RsssCCo=z<dN.N *WyXs1}_|K_F+++pBg?_jlopO ( RrA#884_a.NQ:^TU ]Vl~]X>6`s_})MT+0.UvUt]qmm`f\b3l49n 0sr^:.XM.[^^g [bwA$$r 7}t:po;D ) 'o09+VYf F s]`~.x[.PExBx#8sI[6gx^k]vu+n~?Y.>dhLfR)|D @8ciH mR+UYO$$_4alyQ!5*PmVzgVuR1//K)H~F 8I336cdh5YvhRKY  b d}*!K$ `h 84A !{6#D-bhrng v;iG=g46S(aksKg<wniS5d#G4 yfRscW[+Z75t463F+)mnm uu8XhVuD{c&zd>#Di(C(5X`-yewr\JFWU ^.2=W6Ls '*+*^zm&7 I8\Gcdz|3wc 99>8wG~3J>|Q(:ES1(AOOBhF@G}p N1pG-;m FEM~l.:CHL`37{[]xx!GH |U(ly_ 8a{I$?&~}+=J0 K2?yvoLL|+o&o?A1cP| ~gw>9v2Qua UX^|6}u6m9xB[Td&>TYry*]r.4mI^w6i`s(0.GU!L]j/RAe07[g [pJ>)h N L@5O Z 9IGD.I* \T/d=(bwOucWO6&$2ofvvwsKH4s|a>^eBx9KKx2 M&'&c$5; }^?6:fB` j~gnQw&hvF;lrvukWgl*( ClS&Y5uNc%1BV:S8Y%hg\ZQvFC %zNXuLU1nE: 3vuJ:5q;*fSFaC;5 vUZ.S*fI>^kjj7x{t: RzUvOk(5 uuu=/\VVxx&]9K# ( > vny\8 ]`.hBU @itu/8{`@bnU QD98:<lb3jAx`b7>a3&23 &J Z~gN`;=jy|ibd3 {mX [n*|Fqa1K6JP8ZCWa7.UaO>R{|xtW^a ___'^vun BWc?f=j[[[ Gh#@}OopL&(ITIoERf$Mg>LJK'$3fAn/@CxE+dL 3QVt74VqUh CjX&HPAR8LgqTKBmhqK{1O3>/&30sps % DF'eA=A#P *] PH3S.vX3@B:Q IfN&/L=LlAlohj@1At8V0a`]+A 5Mho+nmMV:?W6T!@ 3`k]eECmuuEYCmX UUr)8_U }IG: AX^^;q!;*^|;Pul;gtA(; OyOBs3Yy?NOB^kF# yhm e`O qDFuorLq\h~48p ZIXF#qd>Cm*4*NaCoyp``[w~HV YW f?B 3\|x}tqYiro&`3>\~17~l;3xs?XG B|;KA?Kogqs%O#?N;OB`n}@D@OG^SP@YY]U3vCb]Ng@s*SP%:kPNE\W 7$Y&T^v&3Dt;&[&['Z&[CF9zuJ5#n/Kn(MU yyX?% l m5;{.rzl$VR{l<$hd)ID1/F p:_]Ix40?773= 9|^tVuG`||b|l&4cDu5/7_L/5rwe:SbSA-z846U8 +/:Q qiV$LXKf%Ehiavh(; iS-UdS1T !4\ZI)hvPG iVu\(AKZj& baGjK8pUx***nXUUp8 J8g 98(./.hhZ@?|U*U\x rUqI0W8N(|UZ4QZ|.-D@|0*^@_e~J$I>7*Gd^|U7<766ukkkS^. `=^J`C'! 3 8bziDTxG|3ggw&8_M KURAi LxB]^7R]/gfv`0un]viX483sGzx C\k0Wjxr|G_pJ%w_lA&gZaV<R#|Ei=2Rf*POcRf %%yVD-EfF4Q| dhBFPB9(d et>M!$)AQX KK-{Q=p2fU]Dgr8#!<t``?}s A+5 Ly% -Hhka&gmknin&BSQIghnbfDrD73s]m% UholhihERG Wz&lqm]7L\rA:](6VBs^F`hJwU_[2tG? {&\w?EG?<zG9t OyCgK|co U ?W1I 8` ;Qx~4f1+mM#}Qn\3v@=ZCQZuZFaO_~S&/O?ByxN }[o3_/K|7~_|mL|^zBYRS$>gAyDFczO1mtqa~@O'{XHo02r[w=Z? ::U5K*44Yb /#.[I%h$\J^uae6) #Kv%>YOh@T 09 lCY@OCuVMCLeP04 &tz +%3Ial0u4Xd1#:;^ noVT< &H^Fpr!fD4YGGF<nt;px\av ;>6:>66 6d4L/%``l2twsg y5wGb:K5bZGQkne M(2g^*B/D32B)jAD+hQ$&LrY4+%$RvuvN $I|>IsWeM(VU^viNuJ+vUU1&BsPHV-XPc%?[*':_HVK B07J6m| h{.mwu<buuup8L q1F.5?%h>@s*t}/]H b2\|.&_.H=JT.!>3'-scXV*[rb;4s>'wAK\BgItvv~eJ 3(g97&&&83'3nefN'GT~GFFNNN`='`rxdB^|| Z*BE93izK.{kZ7?A> [*pb>s abX>xps_VV /~F-pW^O~Z^n]v.m8sd|d48.b\.jR KHvu))F9Zz4 aV+d& L$39(sPN| D427!aXA.JPGg K.IgAmED$5x1ox&3yCM T!UUh` %(/|)0 tC] Fsh~&3n!2Btvw2YVgJ D9n B-lFDN[[| h<#IuLjFs5 R_*=!UUA(* i>P[SCs%n%;4y9GtM%b7#Y+++1 gaN5 Lyw&>S)$#9<Yp<>$ z7f j^7r<u4<|qst Z=3Z m.{ouNMbn]Gu(FQy7ol\ <:]H@><Y}x'c7 xt4d7G+:Xn .x#?ZG33?7 Qy7_'3&duZtk98 &)3*`= io`Y:Q aqW]UjSaa.M4g4Bi2I8oe2 (mBe$>c9 mSC 3)aGP>-q}ZNe*e=tPqPB'jYfN;N@(hYM3hdg=;yp|xDjrt1YEc0X1T<<\N&Hx~nffblldxv]N]l ry= MNLLONO/Sgey9IWR T: `B&klhx/+|SU_xY\9)^H=Q3{YqknVejX2)d0nE j N zi(K14f8cM0aopEWIjC#:fV/qjQDE<N^e7` T0fiH+zjro\[[K/q###_X_z b2wr)?n wGbo?766%3-8bb`(9_hiG R!B-9 |UFK:[_e~3\K_vW 'rK%Y@ .vknsC8e(Y+yONN_xsa%*(T|j0{d`m 6a 7O(/[  ?\ lWe\i*'_0K7coo;\%2:0ZDp^km]vup ?sg. pdH JOA784\^F|snW_~I-: ZFe7jv`<:@frSAAQ(#I Q^Y8B 8 ; +<H|!Q^f3idu10;OBg t2uJ3.F bI % 0M} Ks[K z] mj;#ygk:ZMQ5%5:f~Fs]@!C++1*)3Z>b\Y~6&;<Q`9*MXvzf zw&=Xgou |Gd{f$=a(x>?`%hTGR M278aap}L*xs<<!y3zn l;K=lA F3QqtSBnU{^ o<GgG =B4W`c'(Mp(A9yyka ~/=4|d8u x/2^d+ //?=}2@37qJho`n q6uky9~7<OU8Pk Tu*H|mRr>4~)8&M&):CYj Z3- ;CmSYI 3 `+PV1 p`q(iuCP YYw@>6 hu++k]n! $T\\H%b'DHxx. th*01Ar9 vifsnm6xFs3sX4Z^ZdVTj}u5\3L:&BQ]]u#37anSmrx F-c' u)bl'^ 3HFA3J_9jhN5u1/;G*F# ^h(M0.*nV$(MZ4ZpS<X PQmEj2#4a|3f ?~KKK]] ?qdO.->?b@dg~[YYk( NNN8 yK |Cs=v3ti\{K?.KhDt$8BWL|tM;c[]dL..@ }I3{k5=9n_i3^Mwbr ro\a |?VVxE Fe8;bL&o644={Gs|q3g~fgnAbUob4_IoaKozr6WV_k ]vU=|s0V8s=j >GFF8YV>*4 T*bpl =\p? A7J]%r(MP`>JN *TAQ0pA0(I(P)71N.UM4/AM5>'?$e$9t _4`PJh Z@/#EW-u {H7}AhBaDgy^|hiiC=]=Mnhcgfan17:hojk6Czlr5m8HhnTU45TW66 aH~FtM}uHdAj*DB+*+Vqvh(2+** } |[j(y | I@ t NOBcB3d{:= 3G1a?8p h H:rLP!7tw4'\hL;-/70mPT;59fvh(&PlWf*fU2e9[~*; E d }<G4~tA _ow ?zx 1 9(/~`O)jo.%X L7Bo&_[ %|mq_Y)0? ;<>x*O8;f1761p0y4 3 Y:PR 9RYgY.8i<l0^6H| JPq %`(X6 aA V]gL3i3;jzC)hLY9KWY2KM(wN#ZU}c\ lu6s7oxg)fg63+G[{;'g{q Dsst1t2L2h$ LO 62m6qaK.-1:22LLOG~<Z^]YYIJ3wWWskYgskk'b1- S] O}nV-+vG5jo  %;lL95 |QYQddIX^ZF0aD'^ *fy`3\1n/4-CiT\akop#hVD U)#|<b% 1X555pJ>Ku/Jp9q>/C@ zsn /`0-- ~[Sb\(@68\(++4 r -^qidj%K|>K8 \8!`b44?|.^T>_+rVnszz~p7vT);|5;;; xJ(?{}Qa> w #oxt: $74frY\\dj*?3_%>s|W_. 5X:*&|fS 7|=Deee |63G_)uun]V 4 X(38' w\}c8XCA?[V.li*9 XI0*\ 1Ry6cAg#YA)rR[h9L&QZPP&YE&>+j1.@*QX'9:oxrB> %> ^C! B3{GHx.a_@48IN?wi%6LoK {:a! y#oP`7a hB MsWk3ltzv< Mmmg*bA 6di&3)@f*+kj;csMEaPIs9\Dtc~Ym442:9Wadu&H&s LZtY9e2N}m.sk/'I%co;> C>p\.&M9 H|3\G 5NpH LOa'Skoy:7|<E- q;zG;mB0I79$Ms.Ml..kP ?W|tg($lp`Q5n|`;[0d>\A;HN;=)0vp^Awd9x.I|Q ~wa?'>\!&PQvt[{md>vFL| 6<59ng #4sDQv#yJ2T?+KHJ$%i)9 f0 L a0 9M^^f+Z*DU~\~so[]eWm906 8O>/Lb*GHZtS:**91lWEk&QvZWj zb6yE4$K6)N!l(*BEnObt{QIpWH8 I;;Th{t`#t8X07jtm5+p: 6~@apLNLK++`0X4Nv6Fzksc+f:L%T-}9a$.lN##=;u 52I4^Uj_(rA7 K&Y&*WzU0#mh<`@qxM ;<ul.] ZSK/jjj \ p\ 0+g|]!N[w (>sO>3/DP>::7-B u> m^GA NCl~+:=R|ye]Wfj/:k) Y)o+?%'s}K fA; P/tmmmgr`~(^1v}B p]H$< [r:-!m^`~9N!Jq:l~P7BuQ~ k?A^  b9!3%w{^s (|TVVg18%s4oO<\?p[nm-Cp(t:8.bA8U;<<s48U+&~x}}=DX1@ \g}6s)d(>5P)@}Z71`A=Bdg$4 pUh |BCst 0t9S|{zqKSBFhnPd 4kYhR Q^FwHB Wui$] B; DhUt;sw2hk -MlGG4 B3m 0u ;hcA\z $7T\FqC#e^F3U 5Uz^hGVWQR^|ZtdJ U  4A AwVa0^Rtg_ <^edG3n7/ggala|qahOfQH>vNgHr }4:?x4> _ K0 <u B9C^}A07DaH H^2~_O/7|LHgDpo~z0i &|^>G | E_gK^z?C(A=?L4Y~=0?kK ][ox~<e;C Lw'{Wu{w- l\9eFjPpiSW8Iu 8 (@yH8`* UBuh< 4@]B5S*[V%k[7wG2x Dz rjQ{n sJ6&mqw68:\&lMtdwg'p(HD$ YvXpSW}eg5{SH} t8lvs`ft:tLM-.X4J&m:o7777`pcc{ ;Fx^_[[1<w^-%1acos= @r/1d:!+|9#5#>cAk4%qf^u.a_GV5Z]lD MqDp]WyY7666VVV>yG(yo hxk_]Y_~eB?pwrr |5)AA<f)y$k{b9W@odSuU `HHyU\Grq^y9K;_WrY0m:Qehybc<\e~|2A+al~+&o&JEQ w lBoPeX|Cx~[lcUU@f^3M^0~]ayI {d)7 /REE\f8w[m-RO?gL&w8X~2DkC??B!}RQj6 wZLTAQGfdqYLxCL P?3CqFVB*|&3sL*9=8:i7z22 4Hh~6(v2 dnPVgt.?c 3 Egn%1Qnov?# jOk-Ro]GS`]-A!sGFr4Begp;5sj\WR_>fB@4X]I8dt}`scmu}ueME~u9Art-+Qp&46`BuEY:9X-VH5(;~+P.c3(35g? _xR^p1|h~' 8qL: QP|&tiOOhlu>?t1?Oc}LthrA;O)J= sY7KGH OY>8w{?N hNh Z2nF{'>:M|z(&c Fn}qi/NRMu$D_n O3;-7~3a71?c{~zegF[L@C}4?<i L &;83K  QL$U#c#>gEi>%SCg?S?jSICT#2>ge1TuYth\$e~E*gIW/|{NXr^0Pv<h:W^TxYu ;U YeQhYs3VTp{lP2827BUHC+U78X{<3 t] +8o'(ZGGG#KKPkkx<gnlpvsowv$rAr;OjKg5a.2M1==pCa d/~oAOIvV83*Z`mflWzPa>W?LU.ASPVC]i~_Vh~~Xe.)_yAi Njkk<3<J |u:uI BMcp566>/k48B3s) B G k{X Y 8n BsUhgxV|^ t.C Y\sa:P\ 0( 3caGX|fNi*++aJsR{1[F`> g...Q%I/{LA(AX0^6?3y.y` L(}> Y[@i .7 $*AZ A;) q[Ur[nmyo2{p78[S5N[ WIYx5(\ Yvn5YLg0Xyf/t?YU1sf:5aV+(D+ fAt>+e4YaA4Qq IF3:vhFg;wk$!jtDHuZiK(5C>BY&-%himUVee PA@1- u0/XOM PntR {9yY 02uKmu ilfs3a3vQ_]YG Uu te-z+kkJkKJH0A&?WCU5d~fWsuEYBEtyW6B];qdf R5JIDs 'SFP2K^|yA.v 8za% :3Y#G? \ F&du6;x:;. O(AHf bql|;s><8B3 x?Mq %2$tncUw>Lb+/^/7>?OC B??I}qa A~?| B^ v?:} o_M^[(:<b2C qo| @dzh)o L';-Q w=AYA}M!}X j2I.jWS*UPI2 PU eGs kWGa<3>IT &y u]IaO5yEuR2{=+~_Sy9%?A(J mo _ ?:x`kP4Z47+Y\y144r:vAhjXF4FGFFGgfg~8xM.k0K3*[{or +]_sO~#5:lF ec%2G sjeb ~ Uhc.Y03Ja({<^ QY62(OW3YU*JTaPE/~Gm W?y2|)uDLyEpwwq:O<>+E?W%B : !xJY@m+lYXBg^y>us^_taCgAsQ|EEEIsU\`xgKYy >n:f}L 7yBj$o (xZ d<La] E !rB 'TfyY;u\0p#Ke#T \< {(LoO _m-o{7[p{5 h :JB/ 'r7/nq8CH&Phyyydd{dv1%hn6|C?`6q2C# +4Wfi!0/:f8d#41Fex1@B4422e:L!D49d=6`. 9R RuwvFs@ Fsg vYv:>$H w4I 3 hlq u44YL`6o6# iDXW_Y{4 U9 ZWQPUAg@]UVZ_]Y]V*&BWWU0mT:si9 Ra23h43&JQXZZTTrnqA9 \}?w. : 9Z@h~3wlq;v8zKx ?g|&Jf; :lxu 'B<=:&0adyLBcH2o[PlM;poio{'gORH|@m|z$I_]l}u[?>I(~W owVF/K?OzFqdfYz{|foUbXp<moopNmw1 LRj?N5aCz@^h?)!%]&&6Fl(&GQZvUb@ LSq\eSF@M5^=i; OUi  r 4KMe}:K.sQ>l w6 b}a8f/3 ln ] zzvhe9\KFp0Ru_.LO=48vHz[l?C?0`GR;vNMN.-+XHStllom og{ogC;;N[?w}7_{*<|td^K3<%D??Vl~<lqun]I=Vx:NK V^3xQyx=zN}ChWP(}W5=fAWSzT> %{aP}M7m}gtYY7^7<0'uGZ8}'oyl^\\6K= sV_1Z>.\Gqe so./;ou0s.6K =RR~'9W==\m-VWW NvC -W@WM%J V9<<{Z aolI&+++hV|=EK 8aK / XDG6c:NpGA~|CHY$o$<u^/3\N. >Xw7M>n0D! nm- {zUU O.//0gepYKpSRRdG Ng-M* &!Y doFuVFrAgJU2C%*J}KIV1V4=Vxg\/1A!3)F%9AEZ34AGqDKQg&#ZhTtkhDC eWZlhlSvw$]9Y{L tl{f<h~&GK75U8DRkPE560&:3N3Q`sm5[yE*T[SWJN!DGmu]eE#T7T5Hj3qHA%L`iEiqeYiY 6<#:.-28 Mi%4XFvr]VV\L)iGQU=>Z=Cw]c(>{<g#Q? :7g (J*RY|>u M;OI&y6Hdp#:g Cg A`M Bxp5hjF;3Ma14ta_A{OO$>;OCJ &h$I  _CoG l>7| /|<W'N2Z`!Du 8gGH~DK6QY<<Jto .-!}OYhZl@P`DPq'2mW!O-=^)tb6U_u;V]U6HP5SwOnAjQwu]~mmF:j-~[{cco&ozrt 39cD8cPKT^(&'.edEBr:%}m- &t;t(<=]dDo6\Cokgg^vsrN+Yjv]O ZC}>hNJz_n.!dz MGusuB;nF)gyIgX1 PzIVXP ^UB({U>g)T]]TYY)pJ YR9ZM 7y_>>ot'|gz|j [ .JA{g/YYb (G .xG #mC?2?U}jYjsaolb_?[B[[<SHp`DQ 0. T8KeRT< KLOOUMAOxhL~U0 ^xpH$T/h 50^?N >4O?kKG&*t-?O7<*PB*iiiY5| p8 r[nMKJtK|;1-Mo9Bo}+L^ssV@! 4E8lP:QLF3j&gBAVg=#qE^74 G\hNChh{IRg '06KI\8Xv6kl(2B;KLdI1[ 0pDS4)29YBC-2 A60XhB !h%f-lji6s S8Mh&9FvhaRX\S%]DGvhotkc}K}m;QAKsMUK 5M5hf6H#v|yn$R4v0 hn EA dqkP Kkk]zKP.'S4K`C9Ij@tyyI1UWg&Bwr4Ks-+A/4:1KW)W / y;7q9P !u`U4E/MLgD4jH> <RYpf3L-9Xh?i??9qms9h3= M} |i; i W.en~r$YgR x8I PF zoS'HzAn$2^h3oN<N1aXp_: N A>$3Bo#60!crr 2$VC;I!j$ :ZP6U_WJif>yO1ghW]~mOm@bq9+NmAgUAKLR?nkZ2n6UK7w6mndg~$\Jw<{g'NCKZ#T4 C][WK 376TX t\C^VWVt{66 8sE T|C55C9^z)iUok6mx@ uC92Vm~UHd>fy:Wt]XG/tz3azAV*UAY#:8d WEEE -mQty;!|o!JY~000xllpbvA]PT'w8@MDgsh77h-x6/y#+nG9%+:<KW@us MY 8KC %3yiZ+^ \g~p.8w~~.odP8pPl~ ]]~U__J q|gq5X$` ^ \RkF> ;/[Fbb8Og* Av~aHStA$_|?-DjNE?x/nm-sOOPS31W?E9e? I1@|%A66==]YY)\6qCLgj:{$&kl>D[fThF<k#d3uTh8lV)PjF 'g? Q!$ I4hL i=<r=v38h MZgUw'R k9#)Cs;; -X@!zZ[`#CF $U hnd9 [a24JfT3oJb>y95Zbn 1 0!6XX3DsmesaUyiCMuE 6QV $s5iUvFsQ >XAu)FF4Q` \\w++Q|#Wy~g3~<|?yE tqY 'Hx2C27 |8x<:fng1^t>/_xF/ w|a)F+5 ?8$3v %=hq/tkE/4j' Uw_y/gi767//qg' b E?>@ {fk7 Oze>E*O27kK|^?/)!Id~>V@O#s AdhipZ2M|2KpS9l:Ypb}PN8tq6fdZUDMudb\1tt]s rDsMt 9}'bUecw mcMCUcJk77~dgGn ooj<J3x(Spdm5 XV}A=46[ fCGt:v B YY^ GFzcy$}o 3c5_{w#{x?|iok-H' o7 tOnUm91 ; k6mRoH5J 6d .5SwxnI1%kZdQ@K^y=|_$SQQqyyy\8&L(Exoz;w].___O$|N%W5?]Z\^)YP45%-A< ]?gIFBt$J!xvB]|K9;N~^ Egbb:B: |avuu6(\\\Q9>>f d4 {1 ;9kss-0^pWRp<\^qpB|nPYA gA|h}!v./g~J^B8\6(N( 7@<3dxSj?t+&r[nm-7O$xFdg8@ipZ:fs =O-1Na199`'3`rmWHgA@@9!\*6?hDp)vP i]g*W4*eW !ASl qr;w2&lp W ?KCaD(4IN pCv&nte3@_4JGk3i ^;o``;&Pqhrnh#34# !Am655T[QdfscMe 5)5775*+ZaUMy+kKk**Kj)DW Ck*)!(GMUeeYYU^!iWPV+J)t>W MwLE.s+ ? .|7y<N| Cg7qz:7t>Ohf ><! e X@@3py!0fl/s zQ q9G3C<#|cq}-;cik;?o!#6igwV?GFMo}y ;_l~uSF4i'hx|x w~ + o6 @El1/88Yx{eIhZ|c+oM=\ {/ _< 8u8 |@9>c}{]bndD@1rFFh/WXp9nvN:'0tQ4<v]O8 !4.ng!ZD1;~U[7KCYb\6tmfZzIfs&99Ze GG`oOk(>KVedI/SKFZk-?vwG 5\NnC=gxRj*zh%\A udhgVw#3aA NB zxxbb|nvp(mnlln1y=A Ph6Q1y;o&Q{zr| XZ{o>XK>Uh!~}@ r#nsERhrv c$]4Hx9MKFW5H <9|&A1iM9/ &I~ aL(** ja9 '}=Bs3z+))m|ppp||3gqF@t.#7PD) bXpAgIYtY8XYp&7uv%[*: m+l6|y+> q#-Y!v> ;Ll}}]_V! g^ I&`puuvvZ/ .>%bG9-M2e:gswGYss/?UH$w_jZ h4;  r[njC?VKqLI5:Rd lvv.s*?FAp ~=ZTh5 >174iY&h4?M*E/8| htA}W\hV$Z#m662Fhih6R!1PKe`xF K#pA!b7 %$  $Lt; m8vO~O&4don&3w6771 As' efC.-Y;pN=l6VS` 3@(& H\J<Wzj@[_]gLhuXU~r )FQ%3s &Q\ ktY]Ds@q<Sa;]Y$J#N` WSLM\z/0vp~l~|[l* `08@ nyc#Al/(J ^{Bh?C=rA3 ;c!& zc5o2' zmn'//b m[_l!b/R_A Yj>7(|w ei:YB*7pi49 ~ y0x:8qdT8 y ?1lJn:C )7nc3a+tL3+h[5jM5g@#08AjY3IcWOjZHC}(>'nSEEZ-=~\!9`^2H{]ai{tl80y#OvwqpGw_~ kgNSrl}-\OEBH) Hc%vmSc##CFlm?8t:I CCC# pH<g|x.})P8?~fWpo^ri{7A Q3 eJ*dlZ*+B.dQr`W1IfP}f|.^c{^5n^KF(! 2IE-3{=O=wmhhSG^' 07:0WWX ysvvVYY w @purrsXhB+@7vMU YeQ8rc N- /ngXY^G.*t^ '-YQ0?Ug1xyyYBjm\.lm-gffFcX~pv;`g!FE `07:Y7*?@G ?`!7}]^ '|rjj}CaSsp(sg@_%NzY._\\pvd^e~m]_~?VL-r[nXoy3A3@8pg8yJ-upNHY `8x.'`p+\TFb04vIyF#lA$s&%A&o!=kTP9C0$2 r(Q9ck)sP+FuZtGq jN&a9lu&MC#Pd2aSpY vimQtubwK$;)Zg6e 37tvp72Algo@\WmSM<C+uQ`+jnTA29Wq`4F6#p( ol(./EHve\hbkq![9p%*//{ra1Cx.)AVb>@UxvK?lL8G<(2&^L_K4B_zFF/F0[p}<:t M;OH&0s(pAo0|;- f;`>2EsR!i!)!OvBiA';piG ?;Kza|a+0owV~FhXFW)%LxYYxG3M2 w'Z;3|q9~\w_f '>h(DP 73g$ilL##82?n#=pNca`j~MO)VUU^g Yw1y Y$cG b6ep.[rja$BA1; YuecW5h 4w5::{jf:~ ootw^hmnv3L TJsh -PtC}aslt-#I!&])Cs@ &tjkscks<O- 4b.!aEOON~?NF~~J~47^G`paXb(sO}FI C_E?34~ zYY]A i:tA/8z<F $k^1A)4B#]42{W_@jllspea9tW$W0:JM~ 8*--`P?1C / : ZPgK W~>UhqX. ( (:*4?P0)88W.a{~w |C lf A.=Dp_< j7 >7xd[<h&?s`( nd. s-?s!L2!D=60< ?Wy. i.T \3[JdYeQS eWs6Unm-zymmM|NTjp Mt>g3 ;::?TYZl5h n@ F~ZCvWhhtXf5#>gt+-Z!}LI%'/4JF T;VY/@gDiG/*b%{3zR6?wsl@;4b3;U]vuOv e UUL tBxH7=V0ThrtuH5Q!H&D &vp`GS={A#-R[JGZfq4TUh~&3 )ue$JWq`=\BFm u.+iDRG&y.($ t59\j myq8eQ i;tMW4+JK]Tgdt)wt );qX ;# CB\ S4Z0ytG3N?^Y !hl+B^u6y }!;cmc[}[?' :SS'G zb/7go|qGJ0A< gD^ e1?Zg~ixgV:[7=# . P&gSg39|u:=} y;c}9lgMd~6Ae9yyNN49i:a1jt@#s#FhXh6uYA}`bW#XtCu*K#\3-hfSM7)y</*<{#f{kWW6JHLpsd8>SKt(L mo?>|pzVh%At> &tkr 805152ORr]v;s (> OOM|@2H%pC@ Gix .3=Ag$F3<c/4o|/}WT5ZSk](fp~b=E}g^Mz2sNX\wg=\4J`kfcG5sB] K}Y(|+gi= h-4~$^)yg 7$? 'T^xnrr2Bd2}xxxzze8P&&sYA _E( 4 ? _B1CHqs^9\-_byUrUUwkY<` |/6M'(T_D47Uww7zxz*@;:XdxqxWVV`7?99|llL |;7K7?5)? g/N%c\y2<g8z(LyFyA ;yyB7 ak[%r[nmy 'rpnug3g$<tf!p^!#](.{j@glQ6H6!8l h{F;EfFGgqg-caZ2)e5#U4&O5*zFA!3lD<+L$J!c/475R iQhB(A$$e=j46}] R1Un5=]V59r1y eghJ C ; }iG+BG7 %]-;[2FhnDsC]G3Z[jfi P\[*lP!!8j[P]  *X]\[X[\_t k*P@GmuCe%RPSghT7r$iU\ Kj]szK2IPXrK+J!`7` E'& m X Q6I1spihb c#=c\ %]GSN46L7(hEagx}2g E }B@ O;&Sq M;(pwuo!Ki(#gm~sC;y_]n}y |uy?c<|&oVKJ/!9ytO?^17~>06^_WgM#r}J*lyL*>&wl!uo>2?R3; s ]i5pH{ 0kC5vSAQs^CtLqW U{>IZ1t-L] >i_WCOs#nW2 Al]6I=Ehi66U3ZyEhTa<vXMNf+Thg/ Ex((z( 0 [_<51>6:22v(mrzpppxhI!{b||bb|vffqa!x2HR;;p>:<d3}w\3;o 3Ko\PNOVJ$^ykT /~;9mwXU(Pe2</gGg(3v$&cN1Xw-:=.gY%g-Z`4677+v 2D|{Y(p /4==-;g!Pwf*JnYB1@%Ag( Y(#]Yh\fusv :RBWu@\8Wd9WN@tYMc|qq! YYV@6fAF-?o|?3y#Jq@ iOOMM4@Faoyg/U39}w6?a9awY^^.*xagAz- aX|*y7sf%sqY>*499^VY3Wqp[nm- Y}>U u gxl__pQ 9/v0\$^[[zp%{Oqf;XO0H>:6Yh`(A i&?[>@tP OHgB5JB B[9@RRdmRl`E!Z61g:c Vvc%h)&]ADmp <)vQL{{tG-Qpn+39AvhYAB=ChG]gk\SP]*A#g!43uGFteiq-Q80gZYZ&smf 2$J\Rq5^N< .'PLnt]TT^RY.i7Ko<<j`qHviw|a&/_v|~\(8O03'sH ! 49<r4hh g\S3#8 Lm{cAjg2/<'_&>?}v$i .7/ l#QN||0A#P po;kfoV_m.]wI c_D6dSL z}*#8< |8~mass.syy@{aly4eM N';? W3a&ss++=JZ]40 9 H$3]J$/[|*_|aW]=/j Ei3O7M~AsrH PAe:9X*1PF2sAp7:AcD (>RN DG#?c`OmW iK`aC>hGDQqp [TN +p Zst4vmohgd< A?ST4c@g&4a1qG =H*ibbzzz7 OFII^<yLGfn#z\AH }w[YZZYNyG^y^[Wf5tbQRzT]_WtvB_AhaN(E_F0NC/mf<Z 6A [*<oW^ w::kll;g(D^gy^jnnh4NrB'AB Y'?7#ss5g~'qE~>d[W8B ->g'/y#W> # _M VSSC_|. BL&9?|.B9.^(v>tx >h---a>My|+Rb6nu sqSm .\D~ h9I=o0IYBt^NF$Om5 3p]^jY z.#r^y9/q3 wvv pFyr?lYmX9NRW~:ae#e2<3F#M2d23wht>3 \`LjLA ` e933C=K!M#E `Xa#HX @U5ZHUkC3%-MA3k[2B-lJgCj6u:e6i1hC q6Hne!3rkj+M-/rtU#368k s%B49 ]Yl*foF:tyM*-fiB4< Rd1Hfb!2& VbLX~ eRs1bLsFtaaq9sfqZtSvwX|iejxiz '3sA_qO^Xw0]wO^wM^q(5: 1r0ddsvf0XW q4Ln3 0-<FRbc&cwcT=h]wfM>=?K><\|xW7I@ j#b5>] ~d8 A] ~17a4!_@{5q1Fhf`z6x83tunUuh cI?3wf\7w[W2a\ /#zqT)0KY P%5IpFKs?$DS<F SjAyFTT;.9T 83~=7A % T5+c%*-EAFG+hS g5$m)-QA]seW}YocP{P{SEN@4 OO'~FzaE`L~f{F Bdvhr}>3kYC)$q R!YC9sL4#ld|[o7S^Y^u&7:v>L-D@qCD:c qX[k= x 'O J. fBAQK ]^4Bh }F4H<9nQ:Zf$8ZZ{GZ:5NK:S/Qr= ~'.tw*'A~gyWnht/7K> :W|2<sA mL<| F*Y/eI|I*7d0x%/<GdA|0A'OOY}9xjp PW H$? .I@.[V+|t (o$ XG ux|)}5WFXVuG x2?CAz:NH/^F#l<;y >@ vysfyP.3Jk?r^* _NBccc01 SWzv8bpt:u: w:^TuAntfmb_Hea >&3 $hlPHmT L A)4%A^.)B':QH(E$Y-247!j?SBX(oo% 1a]ga7e6Y[2@tB[b5Eln!m]r43Eu5 j[LJ5bu6TW5Yrj`JA8t]e9A]e(>#kLPhC#4ghk*+b -Qj.)TVx'3sraAti2fx&#403<|E9CrK?{k|<XxG6l7X7s4_u[8MWk.M5hnt0;~q! (<B4ZP@ Bdn7zC#Rmx6g eTh[}}0uG +cFeM ?Nn~~{u;~3zo#p/7 RA~/C<X@%t%E?I{2P|~7h-Myotc{c6p03xun+_s8)$LlMsn\5A?/j.03<j:3a}*bq$2TX\0IvF=Kv0HB2+aX(?.qO P{]!ycPS@>b;%n|.^\S$v`N#t3*Y4!nFkZB^9a(cFD< vVWX{7Sl d( X2JF#ph 9ydhbMMM& ?gvx/giV~^b 7PxMR3J }?Hj3 5X|9]qG }4K {;KeN4juBgV#A&>;t)yLGLGK+U :1iy]uFlS* m%hF?<Up~@wy ?Qs^\'|gpT*%yaavvv8C&UB9!.M2|%K|g>#qOG}qF :+$ tnaKMt'uY\FN6|FI\w|<j i<7gyyW7`kN4 +DrI$X >e;~/>w}|?v gB g h T-J] $f_=cs9#UIJG#wzSU~;y9/}?wuu!G.%8 'H'9=ga4~9Cl 0% Q\f F aI=:5[Y cZnQ(0wIpf $o@8h) KM6i}\+3gBj|sfgEC 23-Z;S\b hR VR1fAcFL!DqL8 usnin!3@#^5UhQRFFy}ue=ct #9*0 2t:+3R3z*+KI(.g2 -&tS+q 3xg&V1F%$o\|K J)/1f\.xTK^y%>c:;gwYW< cMhQX4]w[7<7!N5'cqM\e\8>$+.317lzm>p Lv}0114QlC} C k66:Q FG#1}t>' nPK?8Xxxh]Y+K$D|6_m4EGi' />A.))'ioeh;woo-o |?|3q=~9zevhf>r1~e2]upzgFvwm[S}>h2>^5S8PtKcAADF?6*AgO*t[ `vRQF3n yCOFY Y }v? IW#caP4cDG#%vxl .y$ AbZ8uFnUum5Md/mh:FNsjr) Y]9BWvP X(p0 -&X4 GgI7[I 3ib|fE`z#p*\\XXLVWI|nloY 4p 5hxu.[wVg${scly}./..$ ' C'~\ccEb@yN-UUm)sD.*46=tM*m[fsvU;SkZ#p}u~>Kx>)?1 _lO<O~x:::~?)P5N@S|$4_&R[V!i_rY q :WsFr2)Yy)\ :k~v9!:G*jA782zmw=0kOvfGO\3?stt:#n pqVWW9:P#s} hqBja3Rl@(5$\{^ {ldd6{^>7?rgY5OWQ |+c'WihhSN?tdz8T0sr^y#r>u_tS<33O[5i FbO>G9'{ %]crhD@YGgpBZ5:dhi!crRBufky-%I`R+r\BgB(8c Z3F(L$t1IC I&qaI6(P)M:<3U!l2C.D1#ACmar4#r<Aa* 3Hc MB65dPt}[ 764T!jmu+0 H{456UWM\L`e96V3tyuiq}<C)s./cE4RVxUZ\TYZRZp0r(LyF%\Rp %Pa *.|..t yau y}c&3*z;y3ye4]L ^spcQ3yi(;Gk C3y b5?;r87o !?A[h~0b5MtwYmO>]L?[xz3ro;zw+zw3`'p/qo'vw7qo/p `y?~-%S?_bgK.>Y0 4(8(F!:|/6;_oP X[&*h c>7=pevr _muRcq lLv[Pyv;_5W& +B :1 k'34Ah#.yG$h ~- #-z`XWVT-6=#%3D:=Mwz Y UhEyMN&U1<Ne_ u].;b}J2.3Z*+ ]e}MF9p:Wvw rR<P ZG E3j7 s4gfZqjz6=5=55kq: ^'Ed^XX]^^Y^&ys3:;]$hMb>\ SLF3?3'(p|mn{L+vVzyqqe.SDMb.p?r^h?~G?hnqhn|] jM<#o5[%Qx{hKpsvRh 5fK ^rxs}}}ee%g{fggs #230|Y$5/a0L?8\/Z-:d|d+iYosO -|9Kn-Y97;_J<^tcm=&}R`G4|4 _ e@kb|*0weN!7vrh%p1??e~ kK;@`0h0W*t_E=<+.j83Kykk $ll #5a978| gMK $ <v:<0 <:$* ?  oq>y9/ ?R)|G<tB^p<3iArQ7`e`.<c 'FooO>IOOi2&8#ycdgnezc)@t&|U5$S A1b_aKWHur(M`R!5YLZIX*@fTBlbaP-A2. !`MaY[QLFt+Q[fg=8hAC KA4B77L&s{SC;AS>?r8d>!juekC UqA *Kib^zQ#EAflX[N*?#me*!KVW \XZXPe$W1(4It9/(aAV2tp^~ R 8-+))aK^|10:L>z7dj7S7ITDDI\uY:cue3s8rN0/4a3t3H^uJzpv$;og6=PL] -KQVYDG~~AoWl{7#-3  -|so !e}]p}u ']P0( (B ::CwCSD z=~mnk zL WE2]cp+nV3{a|)fvg=DX3wnXKc4 \BsjHTi}hFEE B3>@<hB-9C@F7O'i>mZD^yG PUI}.i[slbN )=h2 C= m_QzU~MW1=(Z mSf~LX?R\P'l RFZ@7tuuohExl)Np( mt]Y?C17v RD<]^Z!WQF z f0&X\9:/NV3*?|HBzkkwgCiY]AI m m|t*fd2]<!k+MwP3-o)Z]2-k6mU AIXGiyMl:BNK]z(sZT*Dj5+#x<\o;z 4?+ooN;?g|'xxht\`0 ?_)YZts#W+>p Y h:w>sX t/D@t9s.&7/)7/9W6>c> Sr~>g+$>eepv*v;&tww/:|H{|jkk9 o(odqz2$SV^^%: `f pF@>tkt o} >w #@W@>'{GCOY; J\B%i|>|=T])p^y9/0.\!\Frp|]ZZ 0)z;WxB# H(qF5D@bt &J3%YA!4CNj3tBn/] aTuH<fnpBkbg=o-&yLEXBX LF3 %I[4QEi$lLho8BVc|R?0]hxF hA+2rJ33yYES a+KA$?7d)vjSMvxs]Mcu15HxF4lWF]UY[YNA.]V3EZI|.D507U MQeG1<_X^ZB4 ^XRXEE\.+..f^h<X Ls ^~[sm+Ss#<>ObFhS7W>'cW1q47g1}q'(g%La}uZ2a~<~47v03?3|h G :=usgat6 /~9_ O_ B~Dy'&SN&B~nv0ZC_Z|<)' Os Hhu~ooa>o3[^^;=# ztK1;clY7lLv1?SQV Wsg d&Lrb ^E*CG{:j(t+ACRN0|:G18-vc'>kP8i00-kv$m_ %tLVFa}O F5~MW ]rVK *M:h7 Gd jSg7O$khJF#T2<ch&/t B;4.{>7= 1; |` Rd2Xfgdxfm/cQ&8Xc1~;(DWo:)1o1Qz=?a{u?#JNSNRD4Dgx=QPxW94VOvd8cZ<%kQQx[x{5TqiyC%hwj2ggQ1gxbMMMyy9wcsg:9//:I?E>K\uvv>/t===N3K&D?y\s#+OFZ?sd^Gvr'_?qdb{)Y)rb?Oq|=M?; rh`'KW2TsOD+Z |jb|::|R#CgAg8p8 -7$?sLg~5lll@8 &5i|voo/ W[d~?A9seZ^!:ddo=\9k' ZFa6Ig Gi y9/___y Nrqg.Ez/a=;;;gHpH$1::xqDov B`Nr$ |>%aV-% C$gUAGhAahBT A! Z1^Zr4Zz2)Z v Z!l'E*CL8Y.he:s3`gqk\pehr>AmQvA2=YTh!Q|49cnoagTifj3 V3Q-nk2 ]WYAF>XU*)eB4[B QsfqTVT23s!P+J U\ZvR]8rX UPQZJ\2F.K\PZTTKKQX.h/..-.*@vGY:a9Sa^/2NM GI$oly~v h;0&43BcZBH[m HA/}dk y g :LG W Gq=?c;[m :M][ h'M?~$7^!{?/><\wvR C4H/I@^.Sz/b' vs| wB/CS&[X;N6twBSoOL\2; MM7lFB1F#Cs/iLdse #Gt Zo0Z @K TTPdg.)uB#:eA#?|R^4<mGU[F5AUjPXDXLLiGAMr@88L'9 t):Sa$m1I[1iI 3h\d8|ew+G{kbdhd)XJ%Xa7 ^z`P ~8Ex *b7Vo^g^b69QF AfFXJ9peg\ C*=~^CG6MjTj!\H&X2K%p8<;=XWsls&m5S&~zj|bx[IXKg56YyZbW FS2 zV+~N0|rcccYYO<# F x'AgY;^wB J //]__ g@?'Ir|lGpd 2|3_yodf%>y)z/rQD7;g~t_vYSIKO>e%+s3^s|99O Z(&PH K>EEE^z)L;iL_[[[\\LRx >\ Q!>n$?=9d~[G D:0rt\8 yw9n^)|3yvCer^F6V+}Y/`nI4{W?\=8/r^~X*b 9}]/ ruPs%T-lsy ?~1XovP22cFVE3A9 Zs;M`gqP %P'o3< OJtKt2 r; U :8 zJ*RZV:QyFaQ>Ne 4J !big3j?mmDhj41S4V\WaPj`u]S_U qXSg&ACyFse9LOI8Lf4&VWq2FIdTVT*JKJmL4%dq Lb:Q!3Hf.(/+kEH($ /~~;~'O;yig~ind<8PpX-7U[W1prgqJBn >SP0gp`va:h6Dgo0 NoO ;=KcAE1klw`{GP9Z~p }3@t7[7#_oX /C[|5lE*)G Gq1og~{/j~B@u-5_[#f{^-T{6 #4wk~qDK h5 :9I2G4 q^W2@2n)?(] g^LgN0@AA(-XyN0srP7#gH} K#q.9!Qhg|PV -Q ;FA-}[7<: Vl*R8.n 6zd_sj2 ^?qtpp!I(R800 ]L&RGt2IEP0$hdqx^N[8h4 t*17P;;og{of^L n0:0g%}&Nw~}a7a}Q^Y!U N% c oZzZ['F_<^3T1R5\9VcYTuR0huiEN)g;BnlKQ_pFQ^^5<TIygF$8_sC[b1?<<vC}$eJ;Y L~iG@sZty]Y8> }#K>msK1Knqya'7PryhNFDi|>ro4mmmmkeA'=O .7 t# Lwk|83ldz8wpp;< }y-ha%tBx8 ^[[#5B`6_~_p}&t~ZA-7N: fNy9)hy't8gITrf b~Y <y9/ \sQV8;p7-/Jww^o08Uh>Lt`=ZQOj%ASw')sIwbg@'Qj1dgx0 ULL XcYRzebDH+NB4+Le Z@Ah.P.A n a<k+mo5S!zn#U@9-0VdsSCk]M5&Fs-*hkoBs5.]M8h<WU43PWQ^DsU|QATJuf(S3Faz(72.h;Q3*t\ZVXPp5sFF/]*EsIqKZRTT\ ` %rD\.*(tO NrceM D IPoo*mMirm~mZ|g]mM@{` $yv2b78h2F{Vz xX;LO_h!K~z;fW[q$o$n'}z+oD /z>[pqI oB 27o;>;^M-|1~h 6]W=z8 ^TdT$tP^tb\6wQnqX*4:I4q<GzUjX uPHPFy#-h2 NA#``:W?w UD'Ly 9%YP. H/]7MtMt-xay{q+5lX1[MKX:ca}|@S;<i:TpR!0K[c*dO1n];ytFH9//:B}` x$m2iRN5ig3omn3yg{)|&3C;1o ^8o g^%c?%bz!J_xw9<vj^8dze#@OS+4Z$ViM6l[NF6lsvVI|rAK=F|w(w_RRR[[ -w /+{Py~k)Y[ZZz^zttt?~d$]9. \KZ)4b| 8G>%#sk1z~as2/9N&W|i^@:%Ws?8|Fi\n6g%H<tX-K|-W1|2\t7QJK___'L* 'H %a`>?95) V+'s< Ltl\.6}~3: O1 _!oVGGG vN>qIRq; Gy. r^y9/??T*n\|_e D<Y NO9/p+D^l6sFG yDou9=O~04{X.R`V@VRR@ e7hIVrcIzL-Lg55QFyp A23;yPE!R Z@ d\26M98(ikas[MI6ga: LAo[2E3] A6\nanU\Sh(NM+\ZCWPKBaUPK2 Drigq  lnje..t2t.Saq.\ZTPgf60 (@?x@G |4_c?o2M};;S-e@#Uo+nFp[LGmp> =0JLl}yb5 e[ :na^ ?r /|+ -?8\yxK[j+{;qC$a`VhF :U?/V]~vuO <AQ{_P<4^tY~?f`ox-7]7 7=sk++J8#};S=MKL^j.1neL:*4 Ar21J t28zn?G{:*4`Ha t#9#cVgEgYS d~N]x_6reTgqmkukmg{zhl \-{V ! 90NQQw zZ2GD@O|;7-cXt)HCc9pKd*I;D$ 4c)/xygVgAwwEssq_V]0% ~[iLo1 MM4@F||c0CYmfdpJV0Nk#}(>Bz]-63JiEM:jw]G/;=J^zrbN~/8IU@\wZu?IS8y_z898q^B?9f789K99KO?x.^tG^ !yh~v7/>N?yyUSlWsy+At SYo7pq:3 gb~)y[WVV F~j.%xja @g!.a`PX6l'w93f\.. 0 @O.[>od~v@)Je%op&=$<[&He|Ng^9wz <or^y9/J'F{pT]]/U^FS04 ' d68i|rd ZP^FiX:[P&>t Zx<b yCYFIPhuAgY`;gh)r3K$oALB-R!gA5m YngoCf4ncjs\gaQa:m@sqsQan 7?7eB0g0R[%jn A\[E lh?jO8V?52FcB#sV*:W|@r-i@( Lfq(.()&9;?v.A.GE*z.gVa )I.\..@syq1 ]8B 1(Yf aq9.]O WICioC [~A*MAe*-7e3}<}}vpvg&A:4[V9ItoMn[6=]K ~{oV |s~yF$tz;~o'[/C_ok/7_mn=hoar97 <h?<A _G;omomo LZvn;M=[nMss spvk9LX5M^Mv >a\0<B3Q%\A P :1#Zdc4)h&4?{~MOEBt(~$`JC].IA C#4bIuA9tvciVj6=e Kx>>5j[0]K]?F 4.K9TQxvtg^wW oP8Hx)O3G:h$%dm4CD|eii+k[yfI?33J>Bgh.FVWR7|ZLLym~>!3W R)6lcLyH`T:Lc! v}l)=lsj 2N|p%3]#:DjZlW W C-t^tSR@jAs555>]BZ?=$\Y_'2$_VV3+UUUfv'&?CO@g99 uk~ ;2E>}rsDg' ;%d{4)) SfEz(D F;O wN[\gIRH[^^_9-V#A2EuJ4B~_s?Kc}} PnYY>v* abCMO_p-~466Eb~>Y(:!7o _n7?t3990|r^y9/J n}T@_?78?N*K3^y% 8Ckk.CBuhA  m@4ld(Pge7ZSrPWL dgT)de#Su)!QF!#5a c SAp8#DHxYhaf! \(E[-hE(im13z`>Xn4PnD40&FK]m{S805U(GTaPv3FUECMumQY]r}u3EW0sq5CF)yFI1D jiQ(Vr ]t2!Zf=#g7.2XIQ!Q8/L]\.8psu[9r=y}~u?Ff7j3|ow(D ^L =?rDNk# 31Zmx6|8;vB@#yzhofp6=G[-V7-]>[-{{.M?M>IN= z+ D@_mF&l=[?Z~|5{Bw ~ {?5~UnvxoOZn [^u P cx{>V{=dwkw}h6wmV(hxy6=KP:9RC/%5!f9~uj@WC?48P|y]_/ w!9h `8)AtOop: rf0D3N&:w]4nz =&lLM/YW}+^Vc%tF!}lP{U.V4& 5X4^{ 6W.&PGR2)2[D +]`&Kc3ID`r6\K\H63? :`g }v)VB+5S `tzy9>YsaV1!i6;Z jCT5F\jK-tsjZ8i3jJZ<j$sC'swN(sdR@(= m<kjj pppv!y#)F~'.]zg/\PWWgZ= RU9&e9\g~?j cZtd gTJ|sWp|30%5_8I.=S4g> 8+;|OSO=E:93t`0hKJJP 4.3D3K@.'CeV^  m=8>h]}\\&mSxns~ 'Jp ?y9/3L 3g:[ 4E.~:w1Xr6}@i7Xz 7zt>4@ gtG#UCngrJz#<+lNf{62y2UNE sY ! m@!Ir?aXLBg5%H0jPFh3?c!<sXD hAyV03!ii!6HvF3 Y$g2Ah{AP'nk Z(86H3F YQX4Z[@gm0F=)[t#T?BtFFGjkJYpa5B6JJP(k7JQmf Ja(#RYQS 3 f{fd&/t)^.alUZXb6X|R46_$4t!?2B3s>Xt ?w|gun~?OAdqf`t7QXflTlzl ;87F hB@A@ |8;J Hl[?<-dK4337 z+@T7J p%KNTM!GN.r_Enrd$woHjl^66089y{0kJi;@' 43Fz_=?'N6NK_m-_<;8;jkGTq&rL/_=L|xA.L'kV^pwPWXs -ly3dy;b=7# P{D|5q|{[v=MmlYyj4)se&bV cm n c^S@ M 4iT&8=x0yp ( $Y!)DvF:`L-ha >#R8R)YrJimLi473&z0gTFeM5kS Bu(\5'2 wM}|4VR``1MC#: #A%(R<Pp1 KDKt* _fF& R#Es@GGTu${pNgJD -J~wxxM{(>S;/I kS` }^67gfv}:B}^G6z v.6^c 5s#}!plx\|U|T ZQX+ Y/^K__f|_\~p9LPYt| /k7o4L>/..2s1ys]5X(K8| {b tq\]9\y Xl3.bs Ld<s|OuSK)8 _m%?} |F3ji G(JF@S>)@7q4g%gO`uxLx|j~6 *w37JV33+++2V >pdo>O~kFZutt0g0 g0FJ^~w)\v.el K%. (|4.9^IS08sKK ?hnTYYgBG ZMhAeLuf*PqBJQ{3ay*> j3<M -&TgT9!G9l8hB) $K^n]T8k yMRYhr | `F}Axz( [fGk3IoP3 I! A3SwVoT4 )s# - n@OqZ\ZCs0 Uy#\Dm\!<jpM5H .jBF-+P)}+XmNrn{3xg>gk}y7c ti@nc7{X}q5K$h}om Olf Z133<S3As'7+^gZ? bO7c'zB&& OsO ?`=&:Ol6z<F  o/}?dWKh~UQt9>>?I(`z78'8&MmA 3}G-U{*>+6A5(ynFYNRuP^%^#F1M B?#<:jnL5Wq3 $>QG%*O By8FXqNCQ%{^MGu|KZ.K&'iU4$Qi[ieZ)&mU10$QaPLujaLs`&[4eWHB4D|+8) -/K&!>S)9g)$|S  oW|] GRs)SwJ'6DDH|<$# d0E^ v=.AG%>_:R n^ Yne`yyhVrI8C2VpJW~0Ft$Fd^_0f+W0Z|q}_K~cu `?M>q= AK/c^/766`b8%D_hH~hbpt^8?y.B3#H?8K8Dyfrtnsy+ ?<KXI$Y ;K^<4^/;Z4gg 25?*5%e`FM?Wp1P(| vPQS4u_NLJ 1]7J. xSR?;!r3 F 6=>\l.I H$y]]v.7l a  39i4] @r\f7iPDQ?yY[[sP2H aBZ<(r(RAT\jfri(!z p6. ?sg.sYS|buff!n/AA>AS44K zMl|FS@/3]>:{:; NnJuA@3As&/=FBjsh7[`jD=7pu:7nv\h7SS4 l$PVJFF 4n pZ)zS\_Lyunl3\O]@9W6@]Og@}!uPS3EV&NHzj$gU&VgB938`/_e4W^ZTmv}i;vei 6c`zR|&TC ; k:o]&v&7mP[v}~gVkn Q s3ARQ12<KSQ'/_ka*8|d/|OlWI24= :*?D Y{=D~E&E6e.y&y:/= ~CG_gi! )+ H~~+lE:h;C=p=}c8@;loY5y6)FenZE ZE&NLrJJHQU}! j=*XZ Z(A<& -R Z'8h#TqtHA#^%g-*(As2vD> US+Ax;8%JNJU*3*k&UIet&]zFQ'Mm4MQ6;:eToL+7 1iL'Sp~HM#-1wci!EHx1 ` -\B ^^O'Nof&dhd7s9h>Mt.Aw#6>~o} s$0Ln%VH<< itrdgQ_2 y+>l/eyNn:y}6Nu2e !.d;$ V*G~uo<1[[[[ZZ^uoWGG <|ke?A} }Auh4'?wn{^g@)o9kT|.  Q-!g2 J?Xl-JJx -uv%/F@( YX yX;\?omk1/ /:<< 0<^Ig}f$c*KV Q.Li.|x4+Acxi*4<db/2 KU3@2Jxd\|>s)&DaF! DK0>7 %?s)\v.el# [%8#%RC;<Xjag*1N?yYgg'?WW=G2T yS %4T&!3Ap4Ca rN$j% 8E4b7 9 Lz[ Fs!3dCA? :#9@  An nP8LL=a< .5t1ypnD_4r9nR`w=]}7ozQiO d 7Zc{LD#3 h&37[ |DmM9$umynhioin g&<I` F65``=& f=S3TjnFtD|XuU(PSGm$Ph?Av]I jBFuUmMum5W^/~S> -63{;~S.aq F |5e`IXm<pm}|968n9&& Sz>=;~wn]cg]fFiAQll}B6r3A%z3 _-iq3r_8tk8{ $CO7B_K^ q2t?N\#</ NVn<\x& <t/] ;?J8?:<~^N^-l}+`~)f|3w]$|ps(>xk:pMvN;P-z2B)]2L oLEPIIrRU iz4.(QQ U |B4B@X6rt(xpdy\4&^ ijZ 3JMm2P@M2ejF6ksQ1iFM4lyB2Qq@Y&9Khz=P0J`'hhDpaA/chjcZFz3E#2andM 8B]<3{V|tD) LW>x[OLm ycuuea~C>oV. o:xn9^Dy+r {g]C^[}n^k + `gxBE$G5}qgB6 Xy=/Wl oQY2L&Xrn-FB[)\|.?nt9jccq0gJ??3V;5@T3>Sr >_ a37AF#cIxT7 Ob!CU(qJR0ebn \ma8)Fb1O^^' 1b3gp7_k~V\ 9=S<33|7'? &\XT*R1l]vyo8b>|}SsV!a cr jroiaa8Y4j>8ZpUDm3(FhYX@e)oDdp608$68 +1goA:^@tR  H0T&6DBbl xwEGH js~~V9}l?`BFsP)D@d@O ;xWG{_F:G67(m7oPF71EFSO Dm.&fI=m7nL=7Fc \&)s 9754uZMuXres]-1<WSFk[P m')5$p:j (;Wc .CZBuASR4k| 084}JzWUT\Fmu+o|a'?G)Z[sS; ^zG!!-0c*4CXHw=& fN;&QawaoP;fY'mI#Q3-W^)?wG>J\r#$9%NNq6r O|=<=_.\ OG'Lqnq~Q.}o?]q/ %~ :ato|0=yvMy9y1 =}@s5;;;oMhzQmAoR78HMIP| N+zhI`ri qH.&jnDF19?bl*`'Ty(pD`1vP)q-qL 4.Y.KV'dI{S pU/Y&')ufZ13FIf*.Mh2P3.eT3pZ0ZaT#jA% 6B\&nW$KqT %!BG0x8>g-HF@t|NQts. ^.en;1 #8 & e\emuiqmiqe># lnmv^x N V-#]>(-s{]^'6gm5'v^8d<RQjQP#JzYX'~$G?_~_g z}Y 0 \`jnn?/x5. 7~? //'I0i BFL>} |Lg&y ^ryq%hfX8^ D3rZt9Lc:\L`@ fPAY+ap8*F\fZcccT^)yi<z< D@^)f-%?(Idu%3MlgXXX^wiiD1wg?c.L&xy]_:){s1o|[4dF9hLO r'cr1 6]*]v.7o9UtF{Jx2 Q = 0J&04ZS4FJD2Tg&j3I B HspB&$aP?8CBX &ODvF/4#pTHPa#4A?1K@lA3NvuwI ]B{hoP4I'$N}s?AsPGe;]gp t gZ)&[(|; zkr4&wn'>)sScK}]!r)TrK]mcmu3T] iBs-\7fZ`Ib~!xg07\S]}jnPsc]-<7T]VC4jh|*tDh+^@5jT+_|;!+cq<}5}k~]4:{ 9`%h4BS=B&t}?zP{]u7s=6rBy?fT[rlG7-oYr9*gRgg_'?'z?NENT8 =yxk gRxd7Kk'qnxsq.(2 t5_#slPbo7hz7t53wn7<;D>pNu!cbov|eAZu;I'E o@7l'qarRpY/XC-KcI1W&DPkSq*I<O\hVrH@ E}!@H:g9+`GQfe17N- zeR6%_MV%pmLV1gAV&&m;a 6iPU1iS4?&6=IUkS4quFT-vdvLr;>o` $: i:.$7HA(9Ai~3{{eIcP. d Qv>O-]_]Y]Z\_^L.//v'Jmt8F:. {. *NBCT T6V^G8y=s.Hmqs|<JBZ1@K#ziT/i *e]rTpr6x| /^&{***Bx`XK{1?} Mc8EqJ4$< ]gzKu@kJ.bs\2++gs1L tEb |VwT{IJO7Q|JV3[`>8 fa)|H$uF.?_fLxI%&|x0h4'ut=v*5 *_yZ% LL \.\V%by< .v.el#cd]?i!0obbl8Lzgl[[p <8k&rb\JD( bUKjF `J{A<; )ffW3R Y0U%\mfEH4g1Jl ##x =CPH~8XMCF>Mc <{`&gAz:qY28!g6:M F ;[AHynsB~ne b>@t!l.DV;/B#7 n&Zt3PGVD:L 0UH 66T6PXWhn%ka-7dPW]EQm&\zJ\u*M !=HhDmT 8pW# Mgfcug=H e9G9` P]Avk:P=kccr1qsm( bVmZTyzA5I'v4~>li. #979K'pW*h-x#.UdcTI&+~x=EH?[_-~06al  D- +`~}4?$ 8&8'0s8<7?;gjsF+8IQAN))p&D?VDh- D9/ p<.\~RD1jAGYF9tH6%D(l( bOr$$tBEhA/ZNhOSedm\3juythRJs&-&J833sQ>UE af418EZrfCk1E>1h?.r< Xtmy59LR7s9y&4 B1@npMg|=a|m<EG#[;Lr}-p)]c^wnkJrrn' 6C AQj8( CVHi1 /C>[2 ^ o?` b.) ryn)427$- v0OS8UojjzEE*d3BI~ $z {9xr9 AdZFs]DUb3UK ]&bb]d(a3r <V 8JT%-qwR8CpH3s <\c]=\| ReX]  zGg<::00qQ.?[sJ~fYXXh`8T3ka\VAFZw| p:| Dh7\9#g]i+=<\B< Q~^]v.?gJg8#18BcUF#:%=XG.^pj v)tr\hH Y%RKD4aP-AS45B3;U) i!<L$D-a0?=&b BF~ank4UgJ LEnL$`M?MVw'&C=]dN/z1@t_G;H=$j!dvDC[zq8(}.Lc6g76t~ sku$^QxZ loM PSTkP3I!^ UJd>WW`Laei5UUWT\R+VTTUJ2O^`%]h~vri@ug>2b}LP o3MPG}4< FN;'wk{=V-~onlw7-jsV&YmL*?wA/K^P+z 'I6q#43(A?LEdbTi2z 9^  \x ?D S!T3ala:s9?[|(0^~df`@DF o;s{ncUh '8z DZ{Vml6z<5?Cb72YzJ kI 7M+c1W&$kq!<*`mJ7PaL!B UQb~AR>QbJvX: ?&ql}ZEi:eP%ask3- j6e42FuvA p37}T:mgMX'4WTg'1 t!5'8;& *$ zAC>o<Q/B ``>ph>T*s4>qDg4476}UGz7 }J8{\j}mce9.DBQ;4kuO W>z}~_ EAq?lz BLSsJcNhVT3B+1GrV@+rK<At)ss5'rJ(!W jO-$XRm/K>= |1Y r.RQgNV555Js@< _YYa3E2<kj]?XQ]B )@C@+Q%Y'o_](QLtL?` \F)=3|`)g0?<Sc<3L9R-7K)/\.W}: ) 1?Y:A^4j~.Z3)xCo/=dt 3]r2G>}Ev\&3kd2+WS^} 7Q2(?~2y]v.e _|68HM pDgfGSTZ?8ui2_ v.]2(^ H ) F4h!Et>BPbGgIcB;LA 2a*;d> B28lAZ<Ug: 35BDs $!C$vUh>k7J BH!p;x^ q y ;M}0dt${`IJB{1s%h ly nB3}(2$Amnd7lh=:@lKi}nnA6\$&a;S.4 4uE57577th{&zq4^'MMu5HG\PG-C]=u bj]GH`kcC}MA3Hu@>HM UR3?G4%Dsqj]u59jj2]aU\kR&d>2wn|g:${fd(d?4B6 G$.kj57!z;'0\3?FP [6 [v]iE7cQw U /LrOsL?paU:d-jY ; gOrGT8=t>_xyQ7V Z?F!;7D|T1^@Cc<pNqO cQ|7dF-m$)i('Z=z8 X9jxmJ:)Z<Gd4QyH#rV  3TL9 }!@H2Uh:aLO$yLH\VlTM+ My>--iU4v[AM<ihg &}+HMh;sP0fI4D!7 xEl`sl2]r<@<y'ECA| B^]ZX_1B9TibPd}}}@Ed71s[l |}-X_^ZIbDZ?+ pzdeCtD9G>cRdFQpTiFj95'U?{Df{NqCkw=[rgC -e# (9+y?TZ#$qg 8goiiilld(MLL!yrEg)G7stt$_uuuZvA?ST#h% anC9G(VAIa*H3FBk8Q`^92<yUbg2o{|DYhdVLPt\ vK8I7L|I!_A)677^X V<Y+JX Xf4aht' ^>bC}a{ii N .?S\l$y8<xgV3%~.?@` Ho5@o.V]{X.el]o Ck`FgpdEU8K:t&8`ZFykp HC0/S0K+R3@!ZB3FR7Ps. JAl(B4KI j0M!1pi q;c hd.&$x0CYh8$3 (07&~Vw' nuaFv@s#:uAFnP/t1<#)g$rL%h3CuG{sq>7 1a0qB#o4!&zcMy Fyvi%Bt#>bhtTU^k R3zTVS{3aASsmUE=As3T77W^yeg>]tJ j3&^]IThx?g*__VmNnNM:w S};rG]?-Go> dQ h+PhmmHG]:Lynwg0s m6oVU%z-#Uz?Zt?=IPyr$ 8\I68 ~>$#_xMO P_@=Ls'U'O]jGn5Hcv&o3{Dy6{ E@#xmC$s]y9XPV{1-LrMY Q t-.c^/O yeR Kz! ph3T\.6Aod!)7Bh 15/bHDFr\Qoa/33 Gy<53FurJ3fUIh`y}vf;u-cy)o9g'nMx2N aL> fW3l~+/:H &8? X_]M t*C 3I;L=7 a  gL6lo'jrU!r \^zyH\5< Y-%g/hb8  aIj8qhjFr8` {3vHd9x# 9< V|JE(~{g~_\~w xg/Ga1<_{8 c8. v8 \R|>OA:f%qq+q;8- %KLySAg&JX}me9XR+!rK<(G||&Z<xb>q xg-Gqa&fgj-dgx4* 3\XXH$v?Xkllliii}} SM%h3 GGW d%ODT3~'Syg t[(DA%c&po9@$y %s9)&oS8]o_]z*O&cVWW.el]o=|G39 pT~`@C( 8ryY%(b8yB`@ ?}y0 gHDj;HXE q?P=S(e Fh A wA xrTs&g*Sc0KLPaD0m H C`L y P1$|Z b Vau;p{34X$ X2}gg<@hZ} P E#{ MT-M Hunnk'}C DQFkk]ptn@tdp875s dJ3Hj)<p]G ;+m(5BJrDmUD<(Y 5W_r6qZA&umu+o vZb~&9WS\J/k_}ya\=7uNCy|9D~ l !:h Fr<0s Lh{[n#G>pm6vNy3#cb>Jip\!gYz[H0*kA :W`~?P~Hg4B6*4 QO\8;DHExN2qdGo40zDf OIgkOV?J8?F~x~%S[~3?c'ng8tO{D&B4Nu= F?N NnaV#Z-4B/t)C oW(DANPh|ceDs^y.4I Z(I/c3(K080P>`l9BfRVX9 )b}J5jcF>N9>O&uoo3FZm 9}z<*IiAF uNE9&oB=gnFbY'N(qpP<RGy&Y!FB~Bt>;X$;<X%+0wLDfJ3{wnskkk3[3oxt!BndRCY^ a;eE %`9Z`uTF0mP53r8 m '3P;( 9(8!t+J>H8EN1Z=2[^opJ?V9C5Nn-?1yVr p}0R6.&?_;wz8' WTc[S8HT*'r0 if]F.1 iQYc MErc\>/ ]lz?S@+ DpJx& ^X({/00K0 O;?0-|^i47#zt:ok ?k=Wa<}&aT* axaDA^3CX/ \oK>|OO.sIK$qG9 qNKU_Y yK0> x{{{nU_R%l]v~# w of p/`/0]#3%%|g-<cR| b~FRWIDr360ftAS3:JcoDL1LqT. hf:I  )a>`?G8gBHhftsu> >9 rPOA  tL4g Dp&^*AN) 27{)0$ Ch} m$^z}m;o&@ChMyz[S j8d>c`-<fcu%5U$/\hD@W5L= (U\UXSHfJ#hTkk(lAUM+kq+(dVQ(?9pW_ed7jk#(hBar/QF &B|3ug> S;N] }m cb9w!PhQ$oFgG7mMz(6MmvT3#=?o4]y(`}z| ~P$*x_eOti6r<J s&z/ s8TAy`E:y2UrW\ %\ FZ X #XoMo|c15}1*wT>pN}}}t8oGa|H Q%Y q`}\Dt}RF?OIHWqBO caq/ pb*>@ ~ $tHsP2d7G'tD@OHW%+6\7mEs6h-9.74im>oef4Nu9~>m['nnlSU3 ;=mmEwg'zxrM/Y5QNSA6c cBc: <4G0:nA XYN) Jn f3IOf+K+Dl9]~_15}f^3 OK~1+&$#+ZYHJ] JyHD+9P jN\;B+Ua%;`dA+p=~#g ^<{dS {^' !4'UJTj~X'I jF~Z[[o|;n< L\ S__G-{{{ Tmbb 0V\?XLty(a\fbF \{]?Xb.?Xc3+F*+LoPKjqyry3\. drF` AU*I<yab}> $I8q lh4Jg?3Z18$i&oA?2YL W^yI {'=Ofhp<H *tU ./B+Lr3t:WmmT .el]o?7pS|T?Xg8N8<GSpPw&J+_jC/3:8h4?|!?A hs7YLdd9qAcii!Gr0]LLf?s YR UhtA1y#hF3Ei'Vg{ T~BHn3 Az c zd;S!=]}Pw.07Qg&g6Y =DDiwN(AR4rEq4yTghm ]m7]?cfk<Ld-js{ MhiAF]-E[Yk&)yD|F(G 6t2S4G#19LgTjj)Q5uLTvF3jDO&`g8kIj!PD*4zjGS +oQ/43 [mM8\Qyf? Z7VFA@|uk:<n#F4wAHSw :(:Uf(nL*sQv<_. G %c 'I*4pO'G>tfF7W[''P/Be?D~} ~t% ZpB} j7hz/d}/l{;`~nl||F )|F3<:tM;&n; {v?C }loY=fIz~!hyK5HsizR jyPzar\lLH'$iq;#zB6-* %\`A]1p\04(aF$E}a`X  (AGN@@ c%bJ :[|6r&m<det>M-Muj&]$&69v }H;~ fY1;-.=LO+2UjZ<&N9; eN~cfw{'>-nks~ {!;Cy 3 /'KR< -.$--/.D` |0U9G6 q+ENoV4<'`yhkZAjL>&ZVFcy919{^=0 WpcyiUX*Vaa&sD0<iJ-K0yV_|*}K.rl  gv?W L9=q :'<MSQN s;03t<s`@ KH~4OjI [JT'P(_JxslZH61^ygv7M&s`CT&7rf3 Bqh3Lod8.l4^Srfs6r;7eq\sr D/W%!t :=$rQ6 __uuup|7:Af~^\\@ 0::j03/Lkee}^9Ss w^435?vyyy```r\vqp1E7[|&QKW XLvzSNo|#}]yy9mz f\?rcc#;(pJ*W\rU_)e7g#Q|c09~KB /Jghko#abBxeg!.h~:PO9xP 4RIL@i=-%4@wK]b -H@LUqxgJtoovbm-4j& ? $%ot43#yZI 2a]$*Az>Or  `Cs OQ53C P]y&HxNUD(Ee<3:j+*`muiImEJh*\W*4%BWSr $Ae5TFs)jhx.*$J5He*.=k;n B  n\'*4J4Fj3:!9 #s:@d|(DF18A$hv_Klucq3J48:O;a)|^y L'>3?@'>[0j@ x M g: B|@@hv;Nx-AC5:xo?/>gVj.\jgOV/^OX>]?^xx zxx4| p1p5h#$5xk)XL>\}rAh?Z| M49g3PQ!;t Lh1 MO;hzo]t2nDNSs V:T;.5LFLR;r>iKao%:wM#]VeUwQb5 |$_4beS%hBt4?j I*SJ!oPf/iH_wP u =A~lXTHP%*F6_2XF5jylaB)actduCEGTo!CGg=TgJ3C`rH)4>35Voud7 oR N nsL:-XENh=/12ePn5\vp9 W}0S^EdlX2wbP>4PorX<3 %eZZ<DSD|N MA; y38&yHV!8t#:C@_yT2.i'nhd>yXyD? #|CGjYTU90/7n++c7xf/u g:^qy+?Ub\~fQafq-\\#M\S4.?s J#P0W3\@?\B~`nd(r^f2rmmpfT|\gFdcW`Pfff7(|f22\2;=VVV].`cd~~~zz: 85?{<A7 2x?X@h.#@: Lu A~?|{5/|A~/os~&yvAM|9sz/2a~><-d2qGpp/p~*87~w%\rUU*|>sD.-M05@Bz JKKo[2~a&&&4s L) C<Dg9)zJi#4rm B9>S Z?S4x2 yHdDz 8Hh)8$gmTr :qYS*Bgl6LTjih=m-koxg@%et;w3<34nvj`D&n%R93)V !<7MDaFwt=z|AnI )? 6h$zDptn3K*+P&:3FVVU#$-> ]YVta9\ZTBCW>*H`7 ?{]\XPV q$jq )yy(*P3(d-u)l| Dv9: 9v9o9 Lg LXck<7 0 ~5JN`qA{H{$gj|My]e r(RMg_KT%O~y{15bg;f'^D /~y l)ZJD''['?o%6'?Z R xz c?' G?3?~@~+B6` |k83B%].Ss tG.SP4;WBCf=fO&Y(]7M} 5lE#YTet6hbo7K;Pjz) 1GD0/1V#`O+$k;ehImH#:$5  <kEex2B*hH *w\buzM N16 zMc#9[O: ;#gy hwRD^1 .j5thQ/:!p 6v[-G-#lV!l7t6YNI]t{<gT. }AQT) DUn O)IhRLbY?S.*%ZF.%V2M#CD 13-/9VaUa~t+FlQ*D+1BRP@?cwy cF/4 (8(#JIX 7J90.37?f)KHHRw #|o|7nhllpGdM!d\9Te<gr \9y{ W^AS]?3)KS6$l4SrD3s@_*/(|u :sHws c<$XXX`quJx ~y y4dnwkk+cAx~ee FNE+O )F93`s(X lWd@vVk'.:WVsss=89\g& B^W\rU ? vv#3XfMT=5;r/4}]Koh$3I{ZkuFD<=lB4M]}Z>rhE/\CfB>WA:(vC&wwP 4?S9S4*y=o{{:)lts' l't6=A6d> Duv3n:.!w TS#4<-LMtnynG-8myn%!h{&zus]oVjlG36TU4hE&W4TU6\Wx#&h3 g2M -<W`aY``q1?M\T8RqiE +KIh&sDm3MT|&g2XPPVR #Et -(>kJwFOtaAI7Tk6eriwCo=!(w#{Q l= Ww2aFov9i 1b7L>1l?<V0>a>G>#8:p-hjs ]r jwI;/v~GGGO|| =_X>?H<xJ<z50|Dh`+OB/>?g32;I AN(> x?d~v?`;= l8%'~9thZ4l:v[5 G.7-kQaLM<e6mWuegDj[4Ig5xdi%3j6X4Lzpr'Gxa>Qc(icv@r;(iKDywY^hyW &ieZ:yA+_-KEq`4g9oZ[v8C4nY1+-ejp7]m :3pt O# L>AN 'Q~~5 ]fa ^3>}sZ>L)$aqlPxAyO@n O6(v[mN BBiG1|R%$SY~vEj\( n^1+5b4Z-AgV Z3* > <HY 9:%B1\D:-?<Nt u?qy' 4sx7Mj ]\)@X)-WTTTWWWRR/~/?'ry9'r:g}n3T]wmN<7Xi ^`QfN Eh.?%M\|pd>lE9'|#P)9{7f<Ll^`f^ZVVV] 9ovg 8H//s.233#| %kZ ~?sgf0}WT E~EQxP}*obvq:.&>g-pZrdK=C1FN!:'&Cd3v*v> `^f/ ?_rUU*|% gk:tF9f0qb/}K~?c?{ r=Y0bl6wk%bE IDzsJ# &I $Fh<Q|&KSF ;(f>*t:MN3F ]ogBag(HnOK <>S' $L1V#z[n1Q\nkE&FhlI`-<#<gb78 l@hDs67b oVVYGUh$l UMu50W*58Bbja)5H(Ph(>B?QJ%y.!!D$#-F3yV %i3b iLi<@sM9//5 $ b~+~ 7GyWLToHt*7 -g9[&'A @#90D|>Ad| At<nB4bum'aIqc2Fzcv ^(){]flv % Z|yh%x-45;^l>OM=Bsrjy''>j7' oL>^6t{ 'LA? *4!oLy10a?Q;4$v<lp:?LX'w 5g7=}7?nq>7jmlU2nS5Co<byd/e :ljzg5YxN;BKo *s*1XC<tAtGHaD3Et0.vcpa|X8ETYtZ. 5eVe%< ym 3x o OChpxV|? 9vX{LX GCb?gqU;v NKM )xKu|K(VChCV*$s*HFPC#)wtZ-Yyx^mUj^un_wRH bZ(C!W ZZ.BQ>19%GTUfYxN;N+Dq8DNfuR!@/B@5B8#(}]>927 4$=a~D!*aqhX SIcju>'}I@R?.}m&BK9 2gDWy?SSSo v 9h<KKKIZ\OfN-:'C#dkY23s L!Ag9}TBxH?9/wr.h3#sB4?{H3[1Aa}}{099r0 oPR( nt: ?)L\?J`e& x!? x^A?s?sVs]nB^vn }Dy|}fffB <%0. N8o~+q\rUUqlF/L3KL`z$o fS0jkk7}_ aE6c^o6Q4c<y#eTs ))J$sGM!QjL(4OJ83{;P;$yPB t ;EDMHy3jH@Vu6CBym-vA%sgscy <{Zi !}f-j`|P8P&\UL)P*RGQ(#gT ibBo ^2*GWT dkGqM%e$a%SwoP P tqA~:g$j 3lg:(4*#Eq{-lUTX~ f+zG7 Qeg 7 ~ApP4@9G E%h;*~iz'D o>!:4: )&Gc:^:;.GBu+wigcW'nN=y3lwY3`''+'+GK'O6b7&oO};bwVTOcP n>Zt?Yc?lj1!aA m{~=Z O3a.1)Q1f<Q=Qt ^ z{T[v lY7}X-H2E7.$Z Zts*1taDu3! Q'0?1J%hj&NDFvAI[=qt UyA#/ +DpiUbQ5C=j6vZt>{ 8'G>89d}8n<[E\?HA{Y}F sjmSBgEfwjReUbHYlCuayU!1} 5B3fG)~vMt;F ^7Ur4@ K9t^+]6.yJ!U :94 a$BO+p$Ap4pr bhDB EA oP :8 ##JUNZSPVI#JI\#OcjYB?1${LH)..+d]-3Ef5Eg<CNg(0o;??pp5d3ip\ 4@39uc2M BscmH!BgDew{aay-kdK. %|/7q:A4X70g'Brr 7\QQbfff%m~gd2' w:< 7~ i ooPM= z |*)|OG5g(u[ovopJAzIO zj1LVmSg_'I `cs@\.d+e\rUU 30{^_3WaY 6[r]XgVTT{j<(Ai1+D(f AgFEDb 6 44K aC&#C#KGvktO/ak)YDtw-..snag $g; @6nPF ' tkL<4:V Lo7#F;gJ~N;[nQ/43<.M|M}XOu-EWc.amuCUq;VWBa>70h{F3 bMudDBEW%U%(&b-Km)68.R3qGStI>P;th`QQwjBQTFHhogXE)]wqr9]+&5}{x}g4rh |cgYv ^1  a? Cdp8N^q7h;7[1nPv jjG E-N5T8^_~/'1mpg'AT+kgg{9d OV . /vCBx{k\ yS?$!? *I!DAh~O#8OXNGg^'w`UzJ*C 9 yt^1(!1 3P [Rn;[-}huep y|6VcY/_IHJPAETSg#$gTR8&9@7&R!s +(iJ:;>OixeKE] 0JzxWlZToSn_wv{Q.oQtA lr 31?[NohZt )=a>&6a jEw*!=v}z(};p}nHb<~1qo|01Fi:o<KuYZa?VEN'[-% yMoAhY(9G =pw\+^\)T *aR%BR B#4!r@EGA>=}*QE/T?+Q|#tBGq|l@p[o1}%wTvD_.S>+]k_{ ||0eLfg ?g]nr%k.mp<0|Q?}#afjvF]ppg(LCs){9r23gnRGv(|\.Cfujgb.[fKh4[f8U{+yy?' xB?P]]~477Zg.p TgQkkkfUf>Ui rwl3%[$'U&o\VW%2t>@^eTI^_8jE*W\rUa~B:37EM8<`0ls-w Za2YR_]5@)| HBJDmB&B Lq A~:y&8BwpPZ^=] ^h(;wwRKMD2@A~;j:sO[h3-|nmniB3Ci:wMgvi8wz|nP}stm}eySMEF7QM5U8 lFcss=YQZ4<8Ls+jJ(p(Pe%(2#J)6@w2+ s?R4tIj.)6 5xl9X2VLFEl3q> GH;)AL_'4 I U} o=qc?4Nu'> 9 Fv vwCgBnN#xp'`;a>#7: dkui<];..9}/o}|{3log Ow>yJ<| J>]=^>Y<]Gk / EORGPl& BJ~>b D~b?<oL8iAG'bCi!~v{D;n:3(rO}&?3qpxGc#0L }G3{c]b}fu*)}x6aO }+zpe(8(DkzCyhzq\#SV#B*4SE P I[PuE=Qy?>(s*J2?c7f `Z4iS;.SfE]Qo`7P=3 MhJ |U$]cQSPoPw }(cZ=#~#XGG #4sG@8f<7 7n<K[cq TQ6A=Fm@ KInKP.f9|1&? ZJ4(!pV0R89 B3n}\*:0 #?E88(*$q<#<K3mwz<%%%+|wwUR/g_\Q_l;r-ATs*o/ F0 [^^g(Ienp)9\Dg&|e2WpDf85 u<2='E9Ld6xN>9w [X~;: DRs7:|Bdhna XGG>Cr>4gsss%?r4 +&x|vvvqqSMZg(@ fXxNx'Hdbb M94d%@_O0Ngzs_)L'LOW3W&|Wbv csd8::g8`r5| 7wU*W\?ho 3.6I3 8UBGFFMR ]_ !b1RMjK)2LP9MAd-2As 2An0S!D|'44:^$G)D1Yg>w85vNf 37ej3n@D3I VL$lyXv> jMo (3u7AQDjjqnAi:O!Ed+oRsu% mj+PB4tmy@SWs5!hXtBEUUb`YImEyyQAME9VVTB ^BiJ*K(4mz1+0t#E$^{^h~. FHxNFho\aB{EqF_coX5fyg9Y'g! @qAo # ;}'h ;l]dr yrF}HdQ-Y1R8 fBKMt-u/hue?Nz>Z ~1xwh/<}5tki*|+l3<5+$}?Z~d5Zk'p3FW_~%yqbA!QQX ^m(>Vg.q 3(w Odb<5 g1#xH1 zQ8)T}x:l[5#vC/_#cX49dzf58S38(uN%Fn0U)(L DFs?Zc=A/i%QyODm|(F$: bX/:Q-+|4rw5MnHdh)#bi=3NEV89Oa'? OXG#a9.FFZG. ]f!Dn }Dgg>tD|>(I zt<v ~+?> ch?n>+D0 RO!8Py{lxQSfWXHV5H*4|@O|*oV;$)($BhQ>AS9#/6)Q<0^hahHSH(DK&R M_R5N:jYB-~Ie@MM_pH3lp?7w[\\J].oPFytL#Am\3m3tl9:#l.\8a3uw*\Jq]v^a4Cyfj3U*f$h.4cgL3.h*K 8X |c8N*dp_fq333 SSSD~)al6Dto|v 3) ~;Ei7IKPMWj~if[ox=0f f7` % 5KQ\9[ fviH$bq(]]]y%>_rUU* ??agR gadI3 (U PtB 2*:e~`@D'B~3T: aTX&thg@B:|&t5ws;ZACGS {h`/ $ |[ <3(Ni1qZ>C ~m=TsU=m-h{&3H*4s-7k[Nz$l#t+Ps4a E-y!R3lP<s]DnXSUWQFhTAD@2Ps}ut\Y~$Ub:a]\QN:b7`& VE1RGt+%@!KJ R>F9qMcg ap9q=:Qm. |{~> srw (pMBgP!\wrtw0 X uAjg>l|7 sS5  v f=v8Xy ~0jQ*xw y|xJ>J>MM=KMC}|d)XgXch%GkGp33?8?qQG1 $r?h LX|q; gX-wUj-c?{qo8 =fv+\CP y [BAb}szN6w<+3P I19C8 p_g@v ZyP'yS#Yd}O<<n;Ne.[r JN3jA@S3<ptnqr.J9`=k(>-^[ q> OFXwi<z>B x[}~}Cxf5&>+:IA3|<'lsQ;f5l5nSP-MCK?yVi<dY8M A F09p@J<9/<M ' ##0+DqdRQ#(EYU6E}S:T^h<sJ/7n0U[/Un/s2ApueT7|w)))s9gk6?34U\A;b2Tiusbs39QwLk[XT u/!?gHBq\jEFpd0844![fVY@ #ejjjrr&*++}> o0JF!eDy0LfQx<'u wUVV >LOn^B}n9/ Kl>t:Rhl3 w}?~ pUU*W/w0% 5;C`/q^0AnXW>_ ? CzW L*B227<$Ik= xK1MM#u!C%twJI{:PvPZ4<! lGFj4PAHCh0AX2 iQV#3uTmgm&XPGQt6No5RF[SCZ?\WJiHuA7VQa UWH g}nYsy)enU7R!%5Uv./kDs ZKPm.-FpJ* a2pN+(*!.-./FSteYiI-DW3q>A U;.hlhQZR\x:6SbK hy^VN7c lW|h{no LX}4[a]&- PQs u/w0:`h@8x| A-w mGf?#uCGG|;uwDt{yjzF)_>MM?ZO<Z?H %c7b x%J'O7 F?Y+CZ|~*?:$\?YQ @s~~~q?dGg9PI{'`;P9< gPBh A^=r v D|j<[V8;Ma 5SInd+F%T} 9A::M9N!{yFiriw{Bh_O|P0 nQbLCVud:l4)jLN5hunn8u[ 8?Q JCrYvh>;aZ;A;^XAlz:n95pL7MJT> Hcd-?Q|NS{>3j} n rj\:3 [n\rw] >;$pZ+ZGMCy-zI\5kS!&*MC$2A4l $mpr /<J xcJq\%TIUN*DFP):%LA(DgS~6q555 ]m!\Dl~)s/b8_lYWo@ 7xw)-- x<g-t0a~Ag f2sr)pFu>s \=Vo>T;nF:a.YB4gf~HpN9?v\n:U6?gMRypp=V&'7(ovr# \ZZ0oP9rO3$a-<O(z@`~~ U)|}&q&R9)R@gS3 / m]lL= 7WjU*W\?`q ]]]0e }dcaZ899 :R2(?_@sZm{ gF>A@.Q3Bt!B>lItf>0^P&rUMDi- fP3kMAhHS3 '^hGgC-Mok*tWKBATi`GSCk} CwA[oY@[M5U vMBh&Rs3Q7TWReqYL|7\U*lk U%Bc BW` <WUa B9rT!/QE6XUZ(.*Cs:J\]QJx6DS3:i aB4?<7q*MxAd$F8M%EEyy!B#{Ao0nKyq3 B8 tz <Tyq7| ;(d#l:jz-O#'> 5w4n:^p`{G.)QIrf.?_o9<Y??I%n&oM?H>HB<|yAj d%p5rWG(_'>Z~:j_-Y6gA4As> a~ !m{AkOMTt5cXC6TGcD {4.SFyF4#!?ca(_5LU|lUb X34yu/b)|7f6BA|Gfo@M c uOX_O|@03O%&H}+eiM]ToKnWnnKFCr B y!9|fph8Eq L4pt>az1lGStr52Dh mMy  .tjR~C|0Wy^{c1UjH.TPaY+E}Jjw^+!HGBT&*D!AtH@s &`R)TU JWIoJ i o ~ !'@_]|9`qH?n}}aa%A3;t9u;s7ikfb69[<39g9mqv )\/ThfK3x K\3E*?HYl9;1[ftv;b1 \^xBD$9$x< +W^O'L?k4a*;@ >KKKpx|| {!jbH7xf` xEa:g.9#1?_?E7do8|-A3d^G=T4c.JU*W\__O<aDN* s:5*p|}ifKK ;e' #:c DY% .d@hbxih\|&qiEZ.Q3I Q# FCNAr5HSEPDNC9 i~MQLci3[EFG4BFRa94y' D#hAt>#tGS#-MAuf-:|>o9v} 6Z4p4MuM664V7T5/tcMu}U QXFs)ZtuiIUIQ9UVVT$I HA38P*b.-* Q3jJ]L PiLhEl0~{Q]\Tbu>4&;;JV nw;n\3=A~l~!|> XOdr:q 2:Fnv8a9Nlj4`: H/Ci{N|J&=woMt{;H~zJ>M!yjfj O>Z BOVbB -Gr1#5$=<4t?;>?s(aMB#?n >w6<S|z\zDgd>1IrD!zu= x44vpH9FvG5; GV9;6ud2 m 5|a[7j[1/ y|b[s$  m-F*1MhjE0oZ)L*BS9sgH LCApjX4'W.hQ^5nXF #eWPx[ Ckm-8vHN9)v K(>[&RIMhF]wb4d;}?h?cwHo>!L>$Cv b&r4z=bq2n:miq1?fm=z3A@WmUfUy ' T/ DS*`?ZTG`$b$06O*aDH}HB4GFD-R d#.hIB#ZD]?$PoTVVVUU1Ku.R_}~;>d#'fS/4k_[QQP((F---Qy#39L3(fX334a-g\/'nl39iL3pw7}Ni:g@! pfYN;%Hvc%3W% F~nc6W >gJ)F~'nokkcf<40'kfy 'O&FGG]Qz91ghAA$~0zrwvzkt^Y{z3?2g9~lgy`wz0tB 4 n8cccpVpLW\rULnnniO1Ct7|q`YH^2s)#'L/a(@3ng@ 4R'8hL!B$o ])Q^&H` hI:!;mEDys7? PFY#]$pLi #A[c=lH{S= [|/XO@ hF(t+Mlj`v jG74c3][L[[D MisAC7TU4V ZdnrxZw.-)/BM*ATX\TXYR?Bp.=XV4o``1<R*&c`~a4bL~\.*)~{itG3 27(w{N]ybKu;c?g1-`?9)mHv%]bqE #tqa `zh~;=?-g8 OC]xc=f:7=_b}y=|g.]g?%K$sy=u?V^{){;{a$@ UDUun{6W].v&dvR7SwO@H_+s<gntq]L=;-O>Y0pi8kGG&\jq&?}0_~<t30C): >soS~h|0b:*mwPapz0z#f cAA=JI?b uG{iftn;CyUkZ77L-9iZiX4.QEBTF4AYOS{jT F`NY7]KFJrBc]+ B*XViG<KuiIjhmi)7]sPn:6 `.3LY]BC3 $eo`MTnQ k 05e; Y4qXdag|hDq ]s;4[(|6b 6>fo@G~O P4#hI4r ]t KAs-.3vUtMq0jU7jja*OPC^hD [+&*:]T~ n%Ygm!tGP^)/ZZYYY{%yEH)GFG{oF[#lqe\k{-c>Kc-%ft*E@No0y67dGima%97GT'CS)8P_4)}CS2(RPP SSiZ /Yj 1f$AYX fd?5' j~)8*UnpNMM: 9 SBCsh9l=9ng)p 1?`T* PJJJee% 999qCSFmmmX Pl\k |@R-E 3_vN @nhuvYhZeht=7(]Jsg*Ag 9_iB:zK5KD2 `G%*8/U]BvRps.+Zg.@8Y4L`!B2r\./EFA|qBRmf4'?+4V!A~V&QUt!u <MOes:h g2Na*!L21MgLG:=#9] 9'aHgs&ga)zXo48Lqh??H;Y42j<)4 t&1L8:Ba>+L:>t9I|kcA0}s!XvDHq8i?v 03O mG}8Vv1 5MX&Q;b5jz#[[>;E~{z pcyk3/8lof <\zvtK -?Z <5_rqF> |aE '3}4iaw G#2? RUAGc;mOp?h4Nozop1&<B0fwma-6 [Mcu]X5i& Mk+j&eE}~} q(e XaVYSKs;goW f:\m*HOU8[NbwUL{+gg;1iY?9`j[7<fPoUk5.L;gMJ;o:PqWiW  yQ ;<1~FqH!M 0!hG:F}{ /D 0CC]:a|{nvG-d 4 @7\ n6 k}q4?g[cY +%+q.h`7y8.SyusjfTu eGY7]U  v1Mwptb[I<tqxfs kt\qQpF#9NOA0;;;pT*gVVV1LAtX?9(iPtDR-eeRhA97y5UT6IR\XAa / ~f KzCM0~78e%R_p  /5xI|LZmmmCx %0\]]e?K_ ?YZwA`g~y ~pK uM`1Kk\Bv B ' {D $D1o; yd(hhh__@rr2 V!6%X+)))6`!uuuB4sGEaABX_g<7u5 n!L`7)|f:_9.C:76_JUN#|F| W(\Zw Rl@#+8YD%E5W.1y(-%YRvkr\vY4g1Ma>LK .[ L%y /0`I~.I 8xb>LAH @B.;Je3*! .` 4udeed+fgf&jrb!BL;s@)Y@aS!BiBbass9 LMDG2%8#hlH9VjPIAx6+RA*L;*_cs}@3M}6>iw7f' m~4J5Gm#1 g).Gso S#W/#vy8{{u { 1:nYa}r .hqVro?*/& ]<Og5o'SV /N<]c ?X@kUK}0Xv_~y`/EC}$NGy:H!=7`hzz@1`zBat =wm[;|&|i0mRiAk} _o^5sCmTpI4vMh1<nX 0<'RoG3LBO#DtGL;3+8D;6(uCg:5[=^'o:~ GJ]z' Ay4B{2 a7p&S`y[0 6aw- {$9Tso7n=n ?#[#]2Q r>hU}kn~cyQXinL>0^?;Q0j=efJ9M k\^uGU& {UY4hrtT:]wsb>#V3nj[b_?{7322233z-_C1K5 N+ [lmmp8FGGiLigWL:7nP*M>rE^r!!al ea<GtI\g>c@h0k5}@-tB>g)>M^{Z9rYeY#(f 8C5Njz r322UUUBZX3R}C_TTioo 0>?b=;99qiC>YVAO#r2 j#Eo<As%Fz{l? i*lXE!@E[E[EoFe *YC %R*B(rac$zAsc}+W!aFsM:L; IMai@ n **+(}b 31FuW1\_~cWQgQr)KbC'3rfxR1 D\ZUvE4% EW Q_)B%>_|1jIe29Sy /b`r v fF 4Fg|'\=/3#'-MOH3\f&'^N2i9A}GzY3IAT$)F GtBcXdYp$?'SSqxNKOMIbsNfq%A# uN xT:>>91t8P  T/ 8? lYElnj0f9b=f5j 1 L';sq>Rq ut/iww]0r> 8; v NCo#=?5czy0~~}>tk(yf7kn@&0]di' O' ?Zx}i+7#7D:U+yj k~0Og?~0 D}?Oq+7`GL{C( 2F 13!yfFfVvu]um[;;|wmt-}uSSku&Wa`P`ZW 7.ac:yQMq u<@SeOYgjf^9Ys0A UvTRY+:I?4Mcca\3wlX;-[sr{[p$;Tnc#}Z 0 qU/h (80O} Lt7h Xpz8iC{\phs0lDM}X)sk sVcAXl7i7=GLD} mdmi_ oXvPZ:Wm+E]- i44s}z~^0f34C/=(kZGEcX af z wr3FM^m3g2B#h.ecCAovVVVff7B34!W`88?W|?_D_zwttvVPDPAK<J) ZPB.U@9@*POKh3su1iZ;#| FGY o(g#4_ZRi p 8v}ff> LMMqp*EbZf#gsssN ~ y]RR0^t f?MXIo8l.E C-*o;Kakb'x[LPH3 J}}= ^o mmms~TENS2J EB_hmm7a F-4ULL>JDTv3%NP 6Tc^RO:IW!R eE]2*D]#]q3V$D@ L;W^B}<cAT@ReUK\VTXUKQL>K(Bg6<W K .`#mL|! 4? ++ R_jy9E0hvt]t2<#ysANv9.p!BJIlyYi)yLFFNz9s2Hsp$ B''NC)t:9R`r<?'p91y|.%!.}'ndA'b`%AIh>Lu Azg'u0 sg/suBtq?{3lF/%9#nvClj1K;>X<wv?s8wgf1 9 O9{' 08t N8P10~cW+H//+J>_jqCknn|Kfx.M>}{<?~& O=L?/' L~/!~2= {?t:s:w:v>Fv Z0Lb!A~q4j:)4*0iv7u7{57zT;% ]; {i aoYf ?uc_ e7*ImZ+VhX6/ &DEu#yecB>e3k<A &]Uw{lwlwlW|f^U7UZntai&ruGk^5@CCqh70E]B EBd2z9&m XZ0UQ=h>j 6cHa&cgFYo nYoOocw }nk?6j ^1Yuk2[mE}yAX4(f^=nyFUZRYrD YuF]a>CzFYQ5x5M3&qFYf6UnR6T'%%#L^Wps=9s?KiPpHSiR ER~yCP:<CbiYd;eO+8(kIIxaCCx=Croau e$PZ|0 AGkXg=4Or7E> _%0/RMM< KrM@ &2$K kCBg` FJ?] Y: F|y +uM>!JJ g*<lF=[UUe4a- W_}P*mmms;H~oKz#}K>FdpY%J?i J};::^y^^yjm|'D pBAsDWpeYZ aCUWHqY {b 3LE#TpD yFF-/ PUa)cjtka{i12k^).3W1fSX\g=_3'Ey9e\|k^3<9 | F 4VjBRs rl.L`~v&f4rdy#i8''')h4ld9(pfvhA9)!; uFr DG (b: 3Td G$'vNM#FblLJRSl{f s ;1298??^?%1 w{ uh{F 4X./g%y~r#6`9l 0mqD&{Mq)w0sLcw:ggU GCZRe<n-3? 2^z<`yM oYnm]7SfG = }8?xq4+++V__!|v~<_.~:O'3(FX|CWIT'#A~hrgv4f hv!|(dcV(FEIpzv747!Fw_vo[- M6Pi_njfj%[W~SyE}u ^5 3gEUEQU3C yiFFgj AvUj}/JbZS-SMi&CmWxvvz0 ;x37hpv0jm~<8 >`9 9bt4.FOXGhGw1 r)3;i F;6?>HL4?c1P&<LgVp@v?hF]so\1s zQ2{P<3Zww5 f0 GYGk+8nzL>)tf nj<czW1<R6\L{44\ z W ;^$J 3L}> \k/**29XL0aeshBr2:eg)|: @z zD:mUFf}@h)2 ?ai pEegiZB`r~;?33t:'&&FFF ^\/h4N9?/pA@q_7vK  #D |`Nk_x -shAJ1 {ejF(QJ4-28q:q }_\\ gG?Oy?G[E[E[}wPfpKnk~DDX \PWWpO~RUvhs[1k$ Bg6o lOUAMh4m*.]GE .a-8.+/g5th~19*QE V&a&Bf.HqKHW*i@_%Bm2pZhmi|(4#9s^ de1|Gga]<hR9#;-)tfFNjRNj$s i?2aNOJs*2Eiv>gbAd0SPA:$'B&aHJL%_tF9g` Jh>':=wt`I:: 290 K w>%ctu 1AoJ{iZ}mizT7|kzsYXx3dwg==W?Rh3gg C~#3Z8SGgtQ| B{xhhgKXO0fu7[o7~y8`ff?/9 / Zq}:0 o?)S\|4^A|o?O$ z;{NTah|8`< ?h<|<nc6 aL H>cRp7JvbgEAFfu_v_u_t]vmY-[MS+Um Wuk3h3hTM-+%}Sk+E jIEBgn? H!!jogLG)} EunV?~zXMkMn\7wl:`Z mjPtzqwSg#]8 <ik` ? Pn;L {|h314m`RL2uF:&7 Y''l_05{)kKvsA$sO A^g&KkCzOWSS v3~*3XP3cYBPZLyNiU_ U~k88`([@wpW5o~R'3g#cIw6f0SYiBXf^#lZ* L} $CS >sY87d@^@/9MzVH *I@GB A4g@M7dUg??v YQU3`fffjj|l~6 EEE^\R|XD5jL?Ku{|^o ?Vi zXBX aK dl>W? P_~G@5aS_[uuv=2l[c^fBhhh?Fe*4 ^___RRG_kAJx= U\*!\x9#W6|sK}mSUQMR&IW2T|Ru yJxRa-G\KgY1 3m ;q%+/`Ax<.j7pJbET\B|D n_!3Arg}FLg2v =X0-+UR?dcHQ<>_tz62ss4*2|!S#s7r/_@X=Sd0qhl0FGJRr\lFrbzrbf*I(Hsb4R@Iq1i$FMZ4f?*PR;YI`CSGiS$3-3g!huP}Ig4-F/*7{TTr4 aIfLq 8{P<p=p=x3pg= >SaA@}qhLM O:'KG8%WG/l)7xxxq O& ~9ls7^<]u=Ytks' /: L?^u? x pbiO>zn.'l'O>v9>r@ |}BMb>^ac b81D~Cz}oaW)Y: Mmk!|&y0(-cA7*Valh?Z/i%}3vKj'9hW/|\p^YI\OG\7>tWcIm\P/iVmgK]vJ0~:g~ :<oRE[#Ia9 ac#=BDJ&KMcVt +{! x7+A=hw@<dD =` 4qVu!i#y6zyxQyv- ~c;+8V)YXD teQ:S:h}m6|FqyTv4cvA1K9}<if5M^2yC>} S9}j6U)qd.+r-iup^3_goVlllYY^w8 0?gi5y{Y)Y4%2z DKsJC `P[VlJcR? P?M~&e?G4 \?KoLVM`F.(vX j2K/ o3:i\?;|xexh~a>+q\iYzH -An:kZa9g0lV !?KtW^%awQmmm=v]gt'a\Qx%! WJX!54m%4a:^ryKmu3Jz*8:&Z)bI3QA <s V\\RdT|\|W]*DjJ_LgBc(rS\ CA5q21LE0)a~)80\u %az1'$RE%. NOl@ g#RHQBVf. */HX&33%)+-5730?+JMFHSSc''%R'<9y)XqsN=#5B33pFFB|9N(t| V dz6bcR`@q4B A4grH9w:sg|Rd@Q)A&d lG{c66 ;\g^p:3eGx=gXxu1C^mwQ+Y0n<\DBoG|}}9l >; L= L'^x4t`ye8y|w} ~@wSwS'[?#s~l3n~w lG1+6! 3uQ73BQbGs>nnO{GaW- ?cmA] Vpo^14aa}_E0ueeQiZT7.MT+GyVYS?{O^EuW5*o@)g1]m@% o^7]D5W@[3oR9a6!}Z6BTOC[#==?Q Tdu`@>=<Es8 o= Y&H1agonT!322!ut06 VfF|(`WAu-k}%}mYSk[ K ^1k: Bsi9m E %j Q1nU }&t cuV<Kig]0pjO8'&&&G?_~8337Tr#$dw +p=Fwllv|>1h1)cJsY*!+G(MfN&PPf~kiY*B0jBPsopOsXihC#l9lAi\V|PZ2RY=g=55%^toG8 9j f\P Kgffu0?`0o;B7'?KPh}z-f7{M<4|Z {J$`IQ?a_REE8x_%---f]WL% }4q^_?xzM5Un v\tSueCe9+[S7T^mf%ZZj#*ng?_esSHDch`{Fl9H|jeX r Y8JHg6XLs ^.()@EHx gLD4|2)D\WNosJ H (np%yH|(% KiF Gv&Q:;5fXv e!LMNM!MGF1gxmf*RR1L$#NA4HtPA@'Q9=ueYM:hq lI`xH GL@x991 qlF tLL'hq`:8Y&1T _zI[QyO6 XnZwXmNgJ/cUAB@ Fy]wqw8cg= pq<5l0 2^>D^NOpa13 = }87pawoPv U-:QTg2]O'kTpk}9/ ; |8ip?Iq*Z9|L&< hF{C=NY}0Bhz>s 7lZ ]ken0+=o:V$4A7F*StHnY!bl]6(4HM+:4H#&Da :&c5FSBCFO H3^/j9)h 8mj[i$g?h6mC{v%g; n Q`5#}n>G-3||o P@ eov{vk N201f 6kwA MbooPA?ojPUpU;{46;`\1M~#voM +%CeA}NcCmZ+`N)ZLGS sz%94N;#v))t?cifqNg) n}OD_7|>G!7>sn~mnR?(L+E2thY#BCc(?(e)hiAiUCuiYZ91lAg#tI7p[Xy_E6BRp47?K#xb^XC5 p5Vw+`Zp]|Yh.}]9111==X# ~&pJJ9 >=r3kxdP?8BaX}i8O_XshP48diAy+XZZ tuuL__OvF!@E[E[E.I2|2[qkQvOo&F-4k8KQ^*)jk J7Rgnkgga 9'eLFA1lgVmP+hILAW`0rn\9]CJipRX^^XK%E`Z8Qq9 >HettQS4o#|F\qde!*<)D9/^b BsRssHNvt:-%223sAtE'SIHNiItjB<-%X#SRJIi4L $0N$b'x95) ETa2 LB K!gx.>p9rn?X3H !{9K` +^F JZ' Gm{ca|wzw c=]7}wS=;S=(b9Y6s i(bv5k<Z 4?gSm|9kn0$S1LW_.O}4o|c> 3t'_z~O ?}0a~>J9w-w7o_LG ckp =F\ypT:a>-&O7  nnDLuC ShnoZ47H.U-+h]1Zr^5s_4-ci E]a# t-}y]PZ >egmWt~Ci7Lmu3bm{ dZI#}{Y<hD-yyp~ FGygRn4{#Vssrq1#F0M 7oGxCYwO{W_G-BkZz6+`XUS 4M Ks?dl[rz`25AupnigiU{`jX<M>U7.z ?SYSD[^-*8XoigBD/~qq@.]N ?AWZjjjfsOOYXX)) oKcUeq_AeS3Y|5rj24||CFai< 2R/Ks mC75[8d O@ k?G@t(f#gm NgCsp-`ttthhX&==]\&2n[&?gs A? 3^/arr; + * J >$Vz|Pp0yqYY:lG?R*4 8H`{D[E[E[}\zz%dYTsO1 \%+\fll u51VRp(0\8Q@7d n N1]ePq`#hBWs@ ueuqBk(MlsF HKL!aR4ra(aE)Z9}yf3L@!CfA_\r!b' B`YQa1I *$3W .d9r.($A^l@gef&#SJMHrXNF.LfVs`9=Ui ( Y 3qy / SV:3&F<9}cS-by4L! Yh49=w~r>w. LONHHC4 Uc;w \t|l<Leb?1us11oWSzzk@0R`Nqd CgcgA Ia{Gh\ S=w1P}8:I7^th ~4?zy6piksOF'o6Q~LgG+N>X|HU/_-#;fG?|2i M1=i{z|w|>6l&;cff?v}g; br8b&=Tqz0a;tP!)\okyR t>n7Tm;Y;:[;-ckub]eh42hh^IAT@c#1WkYYh.Vy>8CYBS#:fjrEB z99C[Vm5s^-;u[]ibkN/|9=h9sLoo&aS d~};=xGCERd; |6jc01A8DPz@Yo#|FvvS& swZs6MvZ8#sL smd 9u~y]QCU}D}D4^U/W-ZYMeBl@eyL8Z}N.t-mNeC/ x9'# >6?Z b/N wuuklZENZBqZZCAHT_(&)PT *DCcbWU=G=y~#@L> *A!s/]#JwLrB4\m0%Pqq1!gPGGPLMMx1N5q'?Ap|X |tt {fPc4_}UQx8e [l_X_`X\F#PGCd~~~P T* \3lLX>H Bhhh'\ ~b=KqPk Wwp$.AXL!go ^jyJ3fBW) 4?W ;487.hL;8|J+KRsp$4? r9K%R9\F#Hqbg3hv> q%P\+s89 yga_\Dt/9#BT0;59 ]jLIAhda\di)I0`%L(HfNsVZjJ\ 5` dfSSN9 qqZ26&Q=5?pAJ;SD./h*JO!g)x&. x/_|?R6jwM;CB78=G${Fgu T@tI=W=WAuq4&N OYKI$K|C /<[nl/~540));~_.M~0w>=_z>v:1i?f;b3b;j;f7a }~gv<n= 5 &XyPU1A 6./ 0@wh  cgz [A!?|Cuw_u0}ij4^tl0 E )egM~mmF%b *VMU vu]0_R7tz_w-txi\tPQ;FCFwzA]KU>e- ek&XmavnQ-r_7dDPb]>-7tYuB'%j>DlC8:V!APb q 3m gRv vL!#oc\7v 9J) } f{4 9U k Y{3wc U>k(3e}4`A`h5@cTu^`>/O!p9 o[0v;tm ySw&hObbbVVVLL3677{Z 7^W_}wh4?0f6%iYs4JI2; ?9eBBPtXFYjgFnmPX=aopH+IP Yz/e doO_YfW :::1\g ^^{MRzh)fMv =a O[^l sjjjZeddblwDb|)<xt+ON>~YA|C`KV (`T? mmms/x` /+}=6ha?Np(sjj S|ncgEP#5L>#!31+*a#L*`Pyl5;s* 7j^HqjW3]bA4gJ>W^*B53fFJzXN0\|*M.)ZZ\VTXFi+lx.#ge4.Ej<Hgx'9rHxa1`f_D Gv\4Bm rQ@Ps#LCAt10sd&FjS684&LU tDl:At1(tVJR:c8JaxhNJAsIpsByL>;igF'a97sV;Hc9[YX042gaHFhzt?7 ~{@w}p}xc1Tf]3Gv$g!I9pd$yf|G^TB7rix}GU y4z:|<h~okoS==)7~B+'+n5|lvs?/3LHx D Qy~wTL1< x [wgt>[? Ea;CXAEko N8T7 ]ycvn7 -Awlab`gVO2kNSka>X5`2yI]31k^`.]_T-j/aZW0^YFXmDkHM[m]Zeul{T7` |2 <ibmIy6 G4:>5]8t2]r>Sox_6_ kj{56v!h0GAkvMtfn[ gIeS;J8eqJ.XPYxoiG.+Nhj[0sV?GzoAo%:aLNNG UaJ xEb555&g)hiY9P5?bNhXMHu2k3L!#54B%b3U[2peL+?wsh Pn[7rrrev+W__/s]]$7:@u >>>y#hQOeg{1Q1X 1@~adffZx?O^qVJoUtVSe ?i;n2MAKBg: '7NOvla>@b !>7---g.[[ O |Z{Y e| .N'\jlYi)5U$|FXG M5J3n>ND3 vgM t9 DIAz`==U b(CFK~2Qs%k7J*/]EW E Dr:.G3;7.EQAs L3/da#+sNl_DJ^Xi)Y\X0?;SYlJJU1 a:33Sqy& M |VFg @IFAG:I {$ q)HIIKM&4J6c?+~Kk7w%IQEQz{A{I`'^{$wrInrd&w'IHq g<88s7>U)80$%$p#!ad+I97 :xQwS]Z14Yr`o.96Jq.v +Q< q>`s>MgF>5m0v{Sy IM[?aO~P~/'z<{S={{0 ?< dp?Xy {xp&'/|{>d'z> gGPmavz{=prNb-w1mb@aij/A;k:Vs4 msL .g:Tk5jE-^06f;g<p=D1aLkj`=k9hdZW :R_OUV1f+/wB[oL6h5BMxxI=-~usZ9}j@ jal\4`S# ` Q_V1cFIn\sVeTkWu'QXC:Z;-!()H rC%{k5^rsP !Zs-&o@jw*pBMIu=eD+w'ZaTL*pJSUO*&TfF;;aU0 ]51r^k[[ aT4li 9333;;[]ZZ:|p+~-CfC;w B7NZ)57hi 7OB<D^^)yhU-sPhAFeFkeY**J3?D3M= g? h|[g); *GzaA.((+j9O[TUUuuu\.xXF!^ 78 IZd~# t ig.kwyG7a_%]d_ Im$#_Eu{PxO0j? < OR'jzlllbb9g8? %[b0-//guqO( SvTXX(afV|f|%A_G3P 5Vq& }?* Ah;-xKg u&knma5R7.]Nj>fRhrk^=Wzv prRs\HTPXR^r5 q.C3*86 5Py&j7(\B- Nf8MIT!\{/D^n!s'V'pcST`9#('(/R l$`dI4IJE{r \ \HS`JHAch3z33 '[M] I bFeIv&F#% 8 %.7w R@Yku=vS?FIqne.. 0 F4! tG[LX;gBjL+ata: w=vwyz~)tO3#/fG37<E`gTc/'aod] b \>^; vkw.D[=&f;1vKlw#!TFYu-eI2 U{+A'<gn^$U~Z04i] 5k|4<;Jw=J =(3rBO6PS-0s'oN)nO4*xwgUnmbF_;ck:$i]_[cZ[=o$5n8gl5qX--hPZi. :jCl9ZW 7 t'L]4 s44WHTgE NKSLyB(P[ 00zSgl BR@{g/MWO)mxk&@|wLqg rR] [&I1pkh.w[]5 tzRS3F<9Ry Wp.k UW=0mfdddee}-*.16A WR~Zeo|)pspp LH+S@KYtT-b.QHIShFF 1F et$E9_P#ub 1# 'axo #k?gbcHOLCCC?H_TT$466+Fu;+\z3G@Z_7g5n=s Bpx\/oIe&AqHI#>dRLAG? za; U~#C$SRR !FbKl-%o?h())< q1z{{;::jI9Hzgp!IxkW^{//_Ki;%y#52g3x) r.h4ey 9oZyMqU9^EnsWF*^-/84z9.=g.(sgCn3jb9Rh: T3m.;ukAhn%3>>Q L8 C>$s(]Ah:EyKQ.33N9 N&9iE9ydx4\DTpPrj0mFFQkq42g6l<.#%p9%!>NKeFNfFAy4)trrdF w<6@;w<$ LnP9..-5% u asL`$Q/abB?`;?}4mn)a[l`ae\2n o;!v!Q ]Q=`8O[kAGuZF fTA|:x'f=}.Z o37=oooc?? z2=?G9x?oEa]v?okwHe ZBow; xM;.6)o u\TH sACyZysbB3Z8Y}< C<Y} 5ahOS33>3f)U%RSD=t o4t+0 IM4^R 5g).U^&3kYC m~/uj0ln_&ghaybC[.1m 0:uki`jtekB{Fz[(z w.=X/XV/184g'=gUH=mhSU>pC]Op0TWS`8g?Wld~&\cRUA<&(v+[yM R|jGd9Y;c= MVqo&LYYYqG?8xoG_;4b^^#G~dffVWWjo sZO)Y'HKr8O`UYW' 8PtA0igYYY ]fi9j\ mqDzOlP_&YhFG[7_9o< D---`q\7uww Y4<BQ7Hw!Fo^p!7;/Of? o? #RAGP-.yeC9 FbJ\ 8)))||M9l;$$$'N-%[caa!^ <|@nN /iNN}rdz/cLg oa9tX)hrpa#/\x( <_hn vfL+gQJ3W| j?Q9 gNs &Zp`yi fX7d>nfq0vFLjHi'<~.As.yJOy9UX\>s6[Q\IKg;t~^~VF~f:1gB Gvvm6 7nfFnf:cd-NGt' _'e:17+3#55 \8gdtz'c4:l{NjBt[|vl D#teC#!Pt o<{6_sV^&@Y:lv{]FX3ffegp :vGA;?i03i:vla>9AC.wJ[ko }5IpcOo({ M`osco c~F >?r>G/?~>  |N-Lv;m.97v@muXAZefMA>-8'9LwviKXqj8JaoV-06D!FQmA S 4i?67uu ~4c_WyXrzJ% %hv&6 ]sd&oI =`_Gk7xj3YCjX7o#YcG9n5a gE9Tp'hpK w6fE.d@AJ:.RN\UPb;WsYvj$% 4& HE)4ni&O;eSPUV oQT5UgP]x5_6ZIALUc$W0&LZXVn_8~999-.\oa>8 b__j=IOOF g /-sJHg|#PE5aBJ}!p$meB5Zj l9YqYYO'n/.~ZZ9jZCV&>GEBdY~?GFnlCNnF`P( G---C__ g? ^< 2#h0 v8 N)?wgkgRyD}-?_{oIHS2F89*t8'w 7o~#%[b?SZZZkAYosBx%%s{6*oTn^.+0XA:D1#}6h$[Ex2:By[.[ oUl(AYhq` f`s /3|qsWd~.?sj9>D \^rO/  q 8H D!'diR?)B 6yfhx9%@s~iwpi37Js0UD:'@4 =#& GQ^n~v&gtqdgy#XtfN0r`4:tzRb(4)9s fP :51 v&A49:hdgE9Iqt&G2QgRm28B'% ;gDq$H* HLWX{%^c9`nZy-:KmnFM}; tq[G-0 #y q q>Y8`B`g}8x8~ &@*>nYJ|80 ;=O}g0{_ }13tzw O==<9T/7z t~g{M ]PMpt atEhQ4^vjpd;o0AW^wiUfz)7A|#hQX27e?Yg$(qt@W cZYci#RFC G{qZhj>IA7ltP&}hv on?kj`_SWkCPpzZSc14M%k3ZQopLQhSN]]YR/=^Fi fu7{L]N#7M7[=f.%@g#g.% RvYW\cCv@i YA~Ccy:?D^@rjrJSM3waP[SNi5OJxQ[=Vk17pzp4lA1&?XyQ 9KO~wk[[[mH}~i|QoyF~?11?O333kkkjj'9O o9m:OY WD#UG v_Q zYeDTBcb U Iy[>'}ZeE5Dv?gXFGGOgYZ ?23JeYYxij;::z{{D2h?xYwi [[Oe g lJ%B4 %2os'CGmDZ_d- x v# !mB { [bKl-%|+??M<):@/}xBx%K5wnq WVQpWq |&95#Hx)+P_+qyoy;_ +e}1\zZk.C [<1 g s9It$Qs<HJ >ng(sSf4y#Qy9'OP-8b1m@h?b3g!/';=57#-7#=/NGL-;-%t63Ki 3SYh) fR:-9 NMKiTv&'&d2sR5aT<'S E6LQgqB 9`^s6RZ'H`}'D[8mi fu@ K_2@f rl ;3HwG\qB}0|8`ok:vz0g7zmxW5(zy*0'=o/J^hAw'~'=BM|>D c/ o9 ?6>?ok`tv M;] R= 5nCN3l3lg5q :kDnND7(k4oXhjs06S1 L|fMhn3j)ht>|64%Z K) QJpg/a2ZVV_SSx^U_Sa55{UwZ1|6U@7`qG)4j`n77[*\$nCGC!v-Z5]u<o0m1]w )4{zqm4=8lF t# rim: gmsM9om15H06MqB.^NDcM!wy[UVW2y& 4R{pjWu*kp :^}nR]YImqufB:1D~BSk1A?q|)}~L0>$@{?o?xH~? {< SLZC|x_D(I-?\'~gj#(R$e9+pHS ~_YY |GzR'T@)8sT4oY]h=R i`8::*p%R8G %ONS*E|j2:::zzzgnZ#? 3*aRAP(Dg{t:t!2|@`>$y>sPzq>. sef({%[bSr\\Z'X#_-i-vk' ?_`37Hq#\u#\$Ch. \4f Jx&'ep 9_'Ga.MlLJc|YrY)N#D?=2ru9EQ x>Ggh0&5s2L9p '`23sF GV36XM {fc`Zqdepiy(/td~NK%)\HCtfJrfdxj3 A6X4)isft\htj*`NDl-D3z91#dn@c aTBc &| S '3H`$%&p)abB;zrkmM5 W;Z].JaeZ4n[#N@b zicy H1<` ;}6TgFkU^^QplD#w7RScOo?x~1;%p)cO h w_z'c z 8~o|v!v#d~?y%c&hNIfzI~FQICY66XAi 5G+& Ay:hBd0MX>Sihqk;? 5HC.h75Z*QI CUTkrbJUe]5[ u1l_0_?f~M#R3Zf5 Zp)`6])[oiV0 +p?a(=d5oY7e6+p*Iikek3Y8 0|B*kmT` :h:ATp(Gn 7(<CYhdtos uNq7Cg]0mlp4ZNA #4I;WXGGW5BFG_ohZ5FIinJ_?j1 zLUTWBEXjkkwvvCRo:^*(w}7ONg)Y`jbeeYY-EB!N#AD#R BG= E:3GN` m5# [6G]e z?tT#H 7 GHAqgFcccGO ##G `?kza]wSZZNYgYYg?3l6.i7H vc-+~Fe aP \(3oD6~/A7d) P?;::DqC_$^BI{ [bKl-%|+~;_v$@|l$kI# ed}}}vn3o^P}z ;|ZrS/R$ss7 f}y lyYsfFxWEm m/?wY6?zg*<ndt$]RBne|>;9O3^$;bXUA8(d8/gBgd'rs` 29dgU' SLrs332hb9=? hHOJM.NKA4?-geyNHN %SQ dbYaJFJRFqp &SSy$ HMIKKN3 04ktt$1|NajN8~%1| S kB'a]p%I;?h[ikEZ9[R3Uw7zk}AcsOj6Fd1 3L3v o7:}vP+NOA| C/O=<{acOY`4jCznl xco?O't_:o9=z08tjm!+Fty;\22oC\f5p9?g660s5jh]!&X+Whj l \Dqhhi 6mfy2C #7 MpX4z: z3?cyRqgRqwRQVTxZZ*=*_k5 kkCnfP;pk}4fGvE}+~w0H XtEGbK ludx|wMrotVp]=]&X#y3F- F^m!3[|ef ]@C=om5pjh<A k&<mlR|`76z!<zf0&U^=\[sSZkh 'n LPyFBnS?W~ dddPB4YD IS kx>o =z+**7FFF&'' SpH4+ ZGB!r BP]0:#R 5?Gmmt /E!jYf>jy*97?*;~e!k!*#E 2#Az`/ H*A-jmt:fY[ZZeKHM]vpXF'*=D!k {zz% 7[y>y@.] ??Kx#j`R-}1u@~.eU&q)yQtqO9- qJZ {y];::$|! 2 xb/cKl-%oe][oQFDo?T'+Cou;jYAa8XU-a|6 D%54Q; D-#-tIZ^Qk$`4}B9Y| Ng^h.(b$`.nS $ }3 f3|93?}s^RPID|.%@(!s.fsOD9Ta~q~S 8H219gtAefI2tUU3ffI3g`CY-FNHhX`K`|mVzZ&J3%%v#EB'!LkI k.h$sgRp`91x T=1+SZ0Lo y{<i[ 9b l-V:Qc^1o X7mVl$m&<`;xxhGey.NmKu=f8o<? 6o2^Fzz7=Og^|`Ss2o< 7a~1D0d/? / ?}kY.~gme~i0ntmvF;)l7`e vYvp+$sFzN`56t[ * 80 >| AcebC$^&dj9CebXYK6%L-0Y3[(s[B_Oc3g} F5jSJ*X{>za)T%d[1SY[F3:E#.Y8L~=li^(Q 1*hk]oXotW;%R1]L}wC\N p^Bs)ma>ngN( E l-</a !Bi83&<Y:S66YBPq(h@LOol65(&~J[YWY_aM } .f/nDu|=D\7C5H3~oKV `rj:_ 0*><|>L<HGG'Oomml===lJABG` e:g(Q}>2-@K bB5.p!s<Ke# p`wvvd Yn~ - hhYY )<q~g`||wY=#XVT*;^]]p8DY1x|q-^Zdx(d<p\ENgBBHwo*[\76?K Q>o_+ - 79RU i w}7dh<~ z< 8p| ;vMKKk[bKl-Z?+ %OdG}ug8 ~ x/G\9wVd-3yBXqs`3 ?FNWkCg*3&Bv9 a+^>{3&]-0u/RWDUpklNJakc5aiJAOnNmf4}i>l3q9Q D!\%@t9Y'sOTQaaa07'.MyX;xt~OP07;+59KYY)!y9HS r 5 )X>HTdB[ZbCfLLA$4rq X)# w>N5vNI3q r$ymM18^{p<S0Ph4/95KN-V7z-ku~vm!gD!. NS?c}>#yBun<T#Oog0 ?bTF{aTo 3#OO>>&?u}2?Glg}??>Bla`mu7;(aN]K~ZN@ 4T+V++ssjQ2m-6edT/Z;/[aBV|.hX?O>E 7EQNO'[UW{T>D5 ?WrFz3USV45ZA4~mq]gCnV_3c ~S!yCg3d3*8h#Fe:KfvTCw6z=Ng 6#1^mGMl\CMAz RC|U$F +vf3l_iqy]H9r2oic1u8tF^2BsA!f{yFqhf55~SW~F3z<)]=kpfE#<DZ_'3'5TV3MhkjTwKooz-F#kHFx]QuaQD-1kUqV\WWh`cwwgdY}4 *MA3g#:B)Y])5c$siez? JfyD)U|p l)QD(Bap@#b7DvbrrRy (//E477 Ma``kE$- 34 /<>>7Yn93V.f32 UI_bCeE~9j*}UM >P_6^-%[??D/ottptD0 Zq.xJ  `_p^uwf3!JA\92+oM;\tHq^KAgZ3rf6o eW |c7eK s& } |-3jT=? 3gn!?s 2J>35`|tna.=QTJ.H>.;(<Yw(' 'DN)DaFqA>*oQ 'hr)!sQ.t YxU]CNHNxKrVzjfJRsQ#5+-p194h4b 4^ng 9d N'& gFLaR$q9!x  &&3Q| cq%aYaB|rRRqM77Z Efbc[a6T@#v; ;#-jKg?#F~?z K[*~ Nty8{}/<;U`E`To'!X?|T 'Mv>{]<C _ 8~ocykNaM@ <owa1;DNfg2x>k. j3a^q &w7*zBk1uy@l&lsJ EBflS *0(mJdWq<!hqq[64u!?7MFX{]VxZk>WyTU } jkIQI&^U5nFWZ]5Dc{3ySCT#FM F*jPdnf3iP-B^0c C tWN6 \kceBv*8 (@cDH#f;4;BF-b[Dj<. ~ vvmxa-\ l)hVCs#!f5t 6u0p glD4Bf2rgT>#^ x*aR64d4.zp DQQgumFvLT7sD)DxoFc~V@Z b>to ArY7DY4h$|gy'0 @T<'T PE(K&>> ul!eg)~C@~D:? 7yyi[ttd) u9$ p u> O~Bvv-3 < o\\_Z& 5JXxaX2 g4*=~4{>?(|{ph4c G6VTTvZZ~a/Q0 _0[jXEQ~SaTW>(keoLH?4!S >N%<a!_ 'cl-%m-_O+Gxv&BW>xlRD~^ x2t:E^|.AAlz.] 5 ^DW9M82t-ReW. 85 EnN}- v%Z:/S9_4fvA9 #4_^RB<yKN^BNG\E<TA^iqQ & . N8/E9YpUH.<4?ger3j4Y.f :8?Y$@ Jdee4dfgeJKdn3I:P4:Yil)Pc szrR&g=:HSE'%y#MNOMpm*SM$|/LO0N;3x6 %0G3H58`0o~psvsKv}cZ{LA}km&?;`09vz=}$RBv7\kj~7gm'/}> ~J| }yzm`wh'3C~!_2W_:9h);i- Z tw>sy~Dge\wL $vL5ow?;4]ZopeBg :(p@nI5j%seF 45- ss#yj^1g%;lTa<mhb&3fD7`4f M -{ AcYY '[*0Y*BWN#F<}jBf DQU`i[le[U1oj`_S=gFX|mQ)8M{2IH` ;:hc]]ez ]`~YfT7k84;N>Wx[q ;AY ?H3a#jYJjBc3?c $[\n!ME0+<z/eQPO)64|vkp '^}vJ[7CWs:TAX7+_XX! Q?_k!/wK4S DQ(*<9vXYYY}}Vf? *=K(3h9unpR#[mlbp>;#?|+_e87kID\H XNfT0Em 8$.hG(8@OE(ER]_(9~(nR1d  ;6h4fxQ#L6op?gF91 J?! _7/\.o&}}} OLLp@Y F!V'f{y><5FegD4'V gppxv={?9?[bKl?|L<tO '9#^<ye lS^{ %o\<d j`/13go^h\Vx_hf\Dg (J[UBx [8PAt|T&(Yhj!$F / >{g:})  EORGOA4GsQgO' N[W] Dnh:Q\D ) *qL4oes6Gt?+=.fPtVfjrNF pU d36SrH Jhi$vF3tIdNv@ut\9)J 0 Bx 5Rxp.'#3k{?^r>?gSvj6+^+`ic i .~+Z8F]~mwm6}0?GSI!OO_{> u>7~u {GA?~>d?2H zninGo3am` t. CbS;uN-LVl;R5nnte *e;NTAKill\/|^(i+v$sJ(`Q-SWdWy?yKK>`Ij>cHSS!QQS TP?W~& =f 0LV XyZpqd#T;HW _ ~_T#m<v8K-'zx4PXSZrjV;kiTVm JK$ Gh[>:47E n0LYhE1Zt8cQ LQFW5x AD{ }aRS? WQV B:M1U?pLa:rHoo~ xv@_? ]SS??A8 ><%- Z#EC>#y!K I&[uX~)lr x? @#L#01T !E /eI#Yx @}gx<+0==4 yA_}j*JTVTTttYYb f9cmH#ssg 'NgFF?!o*M\<TD8lyCj> vCjO AKu7;9|8Bg?xG__c/cKl-%oqR|+!qf0noo L|v{SwIAQ!}ZnTq;W}'lM)8tnjA0F|St^p3X~<W>\5 ;#g.zRx /RF_?s(9 M-x>W>wTdv>s1KO>yfBAO<QBv6Eq prNVq^9g#|LBgS97=('mYt^VFVZJfl$4pdS:'3#/#-'=iy|N8tj033l$ fPj:'3=)) %$HN7`dq4go`)azJJfZZ99Bd4HHQl6QMh0M( wX| |\36MMbwj]%&iX5VX>ck^R~Z8l{vy&;C#F> XYh8d$ ?#O>O?L|C(|`<hXD g'=_coc'(y2;hz 5Dc jp# :gYV2?vL; [m:m-2d?w0M ?[5`|^BD +VUB545a%\lSz nPi?yjWmMAsq47/Wm-ArzC U4D\? U/y5!?HPbiT Hzfkk}~ZW>W?YD^4/YCk@M2glsZ_\g-9#mm ]\ +0P1agveJJF.\^Uj!hZN@;+M`Q.XZadSS@u?G0Kn|47 --0@BhH{F;tW5SzIfaJS zaJgb}G#v#&:Zz 3 }OOOz-_ac^Z|||FzX ?uk ?nxLf<Rq ;Gh@dR3 G?KQL PDe)h)?b27O`xpj:R-sT }@B~D}Lc5? F8TR&Q :z(<^l6^ommU*h~$niZ8d gY9?sY~f LLLvvvL&)3 ZZ 9r eK<ve:?Kt.+F? c}+[Tp^DCP^^ snJ=?[bKlT]]I>?{@K3H}V:?6{SW^9{c5ob sf2<W e@}w|aj U^tb9J6.. d2Xs .CVAc a\B*/vq)e %2o\sx|]S3Fs vn 5g$yflA3if OfS9 c9x2rq;j.G3F$84 3I;#/3Uu&  2eerSy(#Kx&tv6` Y5RHJF$<3L.t&S2T>SmX2_mNJc4t} sfs2mIIBIy#I90}s#a<jv\=a.N` /9rOSewj.r 8pgAFc.$#s{vmv?Z>t?gV[6`<4?bf` ~ |2xGcm}5y{/  |M|6_hAhg``y ~B#?ouw[ Fdu 69U0a`].twh v ^ui]H-eKi8o[45MAKy@Ey\u9U.5 2U2{P(h+.|gefnp~2?` ~F @t-vjjAMU0PA)41 |m56LMY7i38Hm7abDAh#QloE s<hov2e|@h7&#MPf6vts krrK0&9E+1`r IYPhp- f@;I?j Dt0k ^S^}OZ_K`qD74OiIM ]vLYcB {yv GDNQ%R{#$eYdr~3{Ufvbbgeg}w^y<>LW2 geeN8^I;z ?~ ^y655uttF/IA?-D(F:hAen&R ? R+-cCJeziZ(-Z xoti i6tRn}_8#~NSq!K52/. fY~Dw?Hxn_aNc OJJjb1 *9KW\Rgg4xGR! 5C4YbpUoo/<M = Yy/<]|32S>fY~+8_wO- x23<9&+?--:}4?kM!;'e3prU8|z^S.;x493rioO=Mu+p@Ety~&yFp|At3at4O^ aD=B|$?c<ag3 $FJr>] ous6`o QQQ9\M\UHK*3Va :y~..*3 O&uFyP@ + n[RBrhfS p3NjVNO-I*7'73si:pChNOJOlus##t9:;33sR82% L%l]0 uNP4+LNJtNt:[3H_!sT}YviV=uf4?86;!c/2N?{) #;pwtA ;C a]YX3 O=]E?x0j'_/<^@h `A_17x ?F `w{l93nmvXOKw#z;Ln-&\ .=!.40F:pta@?5 k[C+ MX}2e4< by[ry8&0bU.;`J%s;RhS- XgPO=y=* Gpn[$Es}Zg$f!8 +;v6<D~`'xud#ZSL[N:IC#NcChH}4m({3L z WIkv5Dt6kU:W*;@Fh9 GR$ 6rPyr^s\v L>/Z;p7YSm gtJYhSY>_>kB |0\48:_vPOOO6s/`k8:N2?>U[[6v^:33#?>(2JBW9:W\dq/ >ex9sQ|g?Kgi ]{s = c9Z-92=K4E ^|q? 9++>Bv/!}ZjBGEWRt\]]]8gL2k1+Ei<TXkMc~Lwww7{cii)oH6AieY/yEUYY&gYR%^'`bbB$w]Bhhh )mv18coN#Rn89Fo9'<\Q\tTv!3'[r|X  =3vn<SA4?77 ePs<Suup-& 8 Yso2Mgvt!2? ( t5 *V= ^vTX j 80a3QLDByAoT4?8' rd(sT@$Ql(% QVEL3LO:T0 s6`nV&T9 g6\Hs9t DRE32)M:CYN hV@/r8t\I~s*p7 ^}EV}^tVuf [{ syg#^##[;wP k Ce6`So?}57dak_/_KWY{t\5lG.>Y ja { }>V \ bxx7bA{scA w>MJ3X=p|c.$;Tjpk`9.;W  V`D) ] )7#hW[<N;N5?cYp(C$ f[Ca @\pk0\wj7H%EbDggtg`A/6/1`$#5<c&m4dPrAX.[`rkvD C *]$X2hou`=H% #N'PL[d8J[ssgX^}`F [FFAJ/Bff5$y_'x> 093y trE NkMh F3 zws'1]gx`6XAgMm3+SI=7w1a?X?~+?s2W@Y3`Jd2y!8]XXSVO8K7d)yfeYJ&E5:c/-o1\ AK}O +!@ 4a814~t  A9Y0RY<xn2 l|8 gx\r^M/Xe+vW3g k:M`#ep8>4}>_qqxoliiuLx^ ?]*v ]P8Z;qTI c&9 hBTHvAuuu.K.'I[[ DKDKDK?OhP|qbQ4YYpv]]]FNYQ|Y9>FsO4^`d`} Dcxca&q&IN>UY8&'#gr oh9z\%Fv}A$yV  j q*Dx5*Ur# 7jJ 2?.->B9gh8LcV=vgG56j( MRL;WT|4BsUi dgEr %]07~.se0$V_gt8SEL.>H sss28MTF q@9C< YNHAdN 1|Af4jZ8R%=91F$1K~j1wX]n H`(=`pq#  KL;;)==~w'g~ 99pfW_ <EticPy:?tL>O~|S=wl\_.1?t~N |tQo zp}0u w{ww>~n r7 -&>#qhd*Ah F][ri1Fa]Z.xG C#93ge>K#v4S5SumSELlkn N50>o=.&lY@LZ6BP*x6L sy#Y%X.[- ;qlX+We37gdlb!BGh@P{=jg/!h [X pif;:I5kpAD{iv:H Yyt `fS1{\*aESe jHip8.h\ Dd-x^ayXED;5wbJY` 7: (P9?sy:o%}yL1 I q>ggg)))KKK1 R7$:PVwj l0^__/((7W_}Sd|CCC4g+ J 5o@Ez@aR'XJleR!p4P1%C#<G8y (SpH?K)pGR>}V1E 2t|-EO)7#2?`2 2??/?KR-opg6^|PC?s.z< N# 3+>SLScw iOX DN'<n`v^%x=K'Rst9ws~9O1[~a;_ ;v <H 8 <|#--~'p$;U~F_J1=K83[ \N;X>G.hv;#s&R FGsYR@RsfF4)&8|<&qX4% )[HXWBh h<KM|Y|<BL=Af|[ d9(7>eeBie%s)/(Rn FX.>H0dr.` t~ni~nA64`IJ>gq15 # ?fUz&F~Vf 3AC993G/GzNF\ X|0+ 3%YT iv&EW rB9#Ch8 L8cnKSi8<Zb: B*P=ah SZqkW<n\wPuZT|p3mn :oozn].3_zg?xg}SEI><7xzXW_M}=?W6t7cp C]j^ /c{cOyOb|$?@!o]3cc4n[4!2fhm%i8) bRnw!'1 U&UuWGus.#Q29Unm7( :dm=R15&t` d'o9 ARA4L`BSpm q4;6 j&+M +ps 6XMK.AA^*`>{[. B<pt &dd18mw[~}uW L[~3Vj>#mr R7$ F4phQP5C6UdX``mx0sLy?QD2b@v XF:L g6a HgbM KC3jNZm$n_i..iq9<m29z*umm{Q 0C-L}v2F e_|W_}XKKK[['&&fffaYVJ;y*E8gVgfeIY]BL 1stZZ.H  vQL }Pdh)Hq*}*{&iM| &+Eew^AVwtt={V^x#ZR K1;;+1 ip(a1dv\LR k+ Kbo +Ex(tt {/js%;bf+d hhhCh7q/W*k&*8Gf?muI= >GYp4N7 cL6StS#cjnc.!^~'$e [7d3]~* )\KykND\X\3fa6 dFhg5teyMy)Le5em&\R2G**j++8\E% |.)*Gr8p./-8t9y6J r(a~q!8\SR!tan66#/30/a>Es20LsD3^!9/%9&u*;2QgEiszK6`p7S22TgE%GFW#gF#S(!)LB. xCEzZveze @oZ9|};&o o {~j;w)}w}ck3Xi_{i3ZY~8FY ~=phl/]>`L/f>0;T M|<j{C ~=BNro[>#gMl9Abr~&~3w[X r!7Cp6a&)b1g6hDP : ?{aem r*?[ W!z T!!wkv<]9CRxurX5/'n= 7\dZtp-Bq5 f)EDFV}6Ky>GhESBlj\V 4P#nU v#XbL:7\u7<KUk.GCzZTh7*.Si2^:Z>\pp1A8@:*2HhJm6p9qR3 ~F {yfX6wr%3Y( ^]mtS#J96l&Urws.zm[HwdX9gpq94MHy+vYICS06/OUqI1 ?+v^<[?[XX*3\_Y~ | ' a_8yBXsssMhT@VZ4Ki~ 1gYRLkLWAY9j;K;3y2YNAGa 88U3:g1N2 ^C )rd# ko|g8 )?6Lz^V<|~ 9|~?7CfhQPEY4?makROn! 258t9)xgnH_FQ|8 O??---~g;OfJ)^O{m``xxv~hXins'[4pr&B3 M72f)iA9.6 o9vtS#fi?f9sqKa d>^W m$5E)vhpj iX 5B #Xe%EIQEVR> (fLaEUdK QTX BQPNAfgbm8t.<?3(7Y 3JDc:9sZJvrC=35#t3eHI2s23VpfdFFrR$3 `sFj*W$AV=M& LIN&4tK' 8J8trZj*v]BmzZ7^p?1oW-UN[rcz- ay\rAGD{ U7 wamGgy8D<yq]7_/ }5TGs}_|W3 Lt~>3Ow:)\}0:cO'z>!7wkem3\u|+]mM30v1 M7C.]+N5]l AgdhHh_]chlA &$To]@wcak). ]ffA/%v[(7$%VX ?%@s-vTpPyFwyagdhBiSU+Vv^Xo8K+NQ*v zuW6j9rtT040ug % ]T)Xq7<WS-HmX&zL )m4zgNAuoPTc-8?]nWC=0K/*aizo9{t+vLQ/E@(HEtq(9LhJ;#gF Qh</Xq Kyl*L>p-gE7Jf L' W& mLsUY_%rrr <(JJJBPxszR8Y3B4okqYRiZ;;;&&&SpH4uG'eg))8dZJEB8 mhER bjhZvfL?3v_#-z.*&`^^{ e6)hYFYh&eYp2/dgQ8}8XZVR]t/_vTq7DZ(EYZ_8Ac4w0>ZuC|$5De_Hk!4^o AGW i7?pv<1?<<W[[[s>a?-- #x=&E!^Nir]i8)g[NS-N ^>rs3+84 Gc8G3'O o8K3\VgvhbghSgH}*FCjMy>Q_w10*x &zB opY qG+* h<RpEY=]K3>XY*A Z>D8Y]bd|.;QZV_gyU.&4\)t%rs`~De*#\IOI:c= 9a4n4nRfs.J3Rh&(MgdHDeFNVfF!<Cr`^ 2UFL f 8SB>D`xVLN{9`k#9osU9PckXsi kom= +w\aW `[;oa@<Z#M/G#:Fz N=] m??Y W>] }0h r\>r+Oz00{&{?@{ 7w C2{>c?fvnF%YW rQ4vM:ITpsmJXnySmmY vX/YR3a-_5L`7s*w0Ki=>N[QiL[]Ev6I?s :SlUD 3eo0|%z6 0lny5VUnS1jmYB`i_0.Y0>;5l'J *hj>lT;.CO)/E0F6T9:\n F?%p)BhFowC~F: >mr>Sm$6fCu&lb`h7.V_$faWF t?c$/v GSyZB)tj_7h@Qg&u3?m*QH)4otP.N(=< N`ic\?^KJJ#g^acuHlXfttW_o3*j^&A!Rg2J/^DQfiK a?K2G q8o~2QRq#MDE87dM8e|^`/Ifh:::Z[[{oV Ggg'3 3#IF2&Y*&lrf pUZZc_xqxxX$eYsDR.}\ R|A^oqT!%9({v*/^{?'Z%Z%Zp ($epWR3V^dc8 SJ8959t1t>S 84#&MfF<yB!]+rBpt{1L;7gn9cu4 >qp8\[\V`|p-kWT3AfX[WQqU u!Fu)5Z?UVsY 1\YTPU9g-/#saN 2rUep|3} t!q|4u9Y(f;4 z )g*/G< 3x`66gc9 vqf!. %)t0`* rrjrrvFFfzzXLH s28` LINk!( 'Q4;.CI&5F*c s1gS.8n485k.moXv :k7{vkuq{usukc^Y??y4hLy>C]toWC$}|8`OaL)g]?3\l O'{>{= rq~qo$Tcyq2Aow_Wt_o:.M\)6MdAL95\4l8`R6#B.cnk%=[F5]CnitkhF}i.QSuJRKmv.t zf94N| -?/QyA:a8 4-5PAv4>3.m?j.xaf{f;F$ psd8[i7 #%{hNn]P)eXy:R+L#FzX?C_ d^F:hl'^6wRb@Me;I+/SbYp(5D T3+8XG%t6oX!1DiS] k3G_I8voQ Gwvv? l3U33_~v/KipP(l6 OMMo?mgvI@7dga~YpPvQE(Et)h*:D4+5o2<4)Fi)oE$4!2-|XP%SB:fIG|#(jJ4_ H3<?K!47??? s2337?3ga`TZ_AGGG{{{N'gXvuuV}WD  /4k-H7X|1@Qq/:N:LYVpY12)7{*n[]~ UVV o>I?--#|ddY~\{fS{8tACC<$ xK Lt' hN><pTgH67@rI2<c1<h<vA$G%`3u'Fc1Aq ALy4PSYGsCmM%VWe%IT-K9)kJSpmmE)\Y\XCTE%D` 4 :`4 <YU:8/yl3PD3 taNVavfnF: )@31L:<Bd3NSIA>3d$tZj i V\tFG3%(JUSNd~CfTFSISSHpjT3 g>%''W#/G^O;f>:5.S Fg prg;Gz9Q135ttayksw[RgX |gt/'{ ?x4?@_~2kOW/g ?n0??T{~M?2 M}:v7]JA3d}oqin-V+99fiz&!']n`SnX`W ]{{AYfi#V-{uAz\wtl8jLWFXs0`X1^ 0q ~g M17>w?<nk [~s1<nf!p!pYC ]xp% gFLPzLe Y[K%S2zZv`B?orR:nw7}a 1lXwcKnW1E>'Hh7A{;V}ofktw3`Bxl>|l5/5gTNX%4MKVcZk6% x@ 5k;u65f`VT 96wp bAl` H1KYoPcYKU1ejCu1eU9cKO~ ;'}/ g?_Qv5/Q{=Rl6.E h?D@@YG3hTU`YVc-Q(TXZx :<3moXqAGg>5Qb2PpH)fhFl`t4 :7 4g? (P$rss[d\TSZZj63BWWb<Emff ( pX!n .wpzGGG 5-K W+pk=9:K1AX-f_KI'6=7g$>'Z%Z%Zpy8~gq -7TTgs$< s4f:4PAOIJ8 my#\mT j3qTv  <t36N`0$F-\<ZS} V`GmQ>sL5G*(kjqVs- (!`s kyIj?XgJ>W f : <X^8p`3ers~.Y^oP\XV# tVAvsF t6kR9p$d93 J6Xt ?s fS43e.; &RdkP9s$2oFPI68& $)8|(8JNo/b^{ibU;5k^GW ]f@ [}>!sg)0&1}qe=;5Y2Uf? 96= >^zy 7?|2) 57' L }>7yoSl{u~<T{S} ?x_7m!rMoh7 j?T; 3g2ZAjjnet7!53z6vK_4tB^MZw(nU&;4%> CIg?v!Fy99HAn} c~Nz/9uhNz0 7s:&4G 5sxT3kR@Z0T\0ox+D9DFJe2rhh TAV .=LyM>Xv;Atta3 NWe\t#Fq4 Ld' u;at[8K.[[_3g8C P)a ArZ4m ;:iHGg8=oQ sU9gQNQ<kQ.$)G- a<4e<m|_~9??7~mv YNWy1q}x^z_%%%/^T*NNoFGG'''6pTfYVPY B9ZJpiYy/-K} 8G7DYh<A>sEZ' u ATp| | 34pAKkr ?/iHgx#A=C`?SkCCju]]] ~ 6<< /.? ?b`gg' 1vyxoo/7xH24W'}!}+m!l<`/1DKDKDK T78_ Y{9N43<'~O5 ce>a|y>w ln:CSbg<MgNsjd`&gl4E~0 3 <^? kQgmHc5Ut&#X]U(|Z5k9]GpEy=7*9VW :_:Y\P8h* E%y sBE raPhDXg0 QlyD +Sp:|%snf:K^VF6RC`935 c Cf 9S(gJ0uSC)r2`T*GA953= 3#XVJfp4kYT^ :9(4f L'.LJiizKno6u:5n-!\^kot0<|s;Hy( 77 y w rno}cwW]' Lv1hv'} |0ty'K;#_!CrM ~ooDq L~2dOz?h.F \fA^G\nx1 !DZ[>0tkv%5+E5K;l]mDlH ]m++K]o;XN >6U= FvEh NCtkC 6Un4upA;~6hf]03Ffd2 k4H3UvtpA\'QahnC ]_s9p=!gCG:$yo%jpptZnW[ !v I t)1kvZ!|z7q sfW.` +]n;g FW'G 5&/4e@:@YNSX#iJh+;u\m%l{f .hQulJUhUf3+m o6N)utu5't5~QV o_ ;G|iLc^''>/}`WNMM 0]yP9g+F&r2pA Yt4vfT+2(pRt4ttt :a2K9U)K-;F0^-f Zu3YLRJE(R5!5o|HmffF}2z{{NtRSS N>fY!$k8^f%c j]U=\KK 5#c~~ &~ +**D'%&% )?m /}bX4/XxSOW{'N$>'Z%Z%ZYL8'UX3L | d|N5 O?}'[4xgN7 ?K^qe !jQ+0s`=_{5_ E<.Pt#1gEx5U#*X]_]yB2gh8\{\ xmm5S>7|GXADeu|.)G\UyoTdX|Ryq!\UV_U:2<#-!hGsa~QK`IA Vp`87# oAVf>|$*<d|HNOc4=s@T@g H:f.ss2BS92RQ~AA3Gq(e Y#498/FCTtz g9 $F*);Sc(y9vCa}K!r~V-mZ7m[nnswKA#An!Q/ t`zTcsIo &' x8rh zi^}4dq\|XXd ](>Mv:d&{> dk] || = n;.-j7MjAH-rK6:UKMDfEaT;NS 5uSCm{BlzuMX/LG=]jtt 7|]f!1]-J;c2o<g\;-Q)26 eN:TkVTpvbT5}lBapkW uDw5ZPaat jFXR]ETmH>V)k@ ^GrXCnumdWs]};F}o#.5 V%U+eSU}U \l10Ya=nE6(k{x2pE-BKyQW *80 M)u eN .g+:<#^qh?#tWfmVE)#V!S+3 %>44<<^ |+X#?ttturj]*VP K/oTTT0v\Em3fB)Y:g6Jml )p_G>&yYP6)yyYv\84OJs!!3!#Zeqq'BK3&yrr?H3Qz J% tRCCp:/_l ~GGG|e-.. ^Mj%gFpph4}iw3?WB:@&Y8(8rA9-W*2 Sv7Rx ''' <xDDKDKDK `H|~DW8 Us^p2&s^x~/9uTO:qrt9*2%i gN<:\ nn?EXx'[0%b@tS uGkP|] HQW{|s 9s40>RYNj6? _LJW2X)e-; (<W^ftmeyUQV<8X9XV=cr%4SL0; 3)5?v07(7; uCi\h{0gT=g c3</gcVfl'U@3Lff|#2YdH1:K90RN2L 4)NN:H>g0#q0rA3&C?^{[t[o /s]e~_uj|`uoZ6>Nm3X7{m7G< w`9D<3 G _} L L~93.OG /?^jn} >uk> QO>!s'Mb1gSL?x)7VNFaKj -.mc:4NKKxznQCC6u\3o[vKiycn0l-fjn}vw;unE roX[7 :Pp m~zk`s7fQc[KUcgdhyJ97z0z05ledX[q\(4^G(t]uiVG \s=2lL/E#^(#Kr)%2avN}mk'01[ &Vi[;Ah&w:M># Aw{`/[n]} (6e}b%hrz\6/U{\G4qJKCvhMV!V3@5%XdP6U2y^ C koW`E m:WqyK v fL9cAVbu>}Tu~BUue?^+((( Z(' 8G#8_?>YJg3_|_~y555p>#f xp G@3!IE2 VZP h Wz1Q+MhfM8I- EbYj1RftCCPcq(1hc?Ah^G|#{RQVvH REx}iiiF?\( 8P(v <HmD B?F? |1L>OLV+?3AK5+&2F c1} f9 K8/hhhlg5~t/ {}^-sE8 H.<L]z4-O`DY&6M\[ OhD0>p8ZORyA6 o` (+897S%bh; ik$5_TP81g8Xm57QV=s Z!0UP-BWX] I3d \^UR\S+W:hF Dq\E.d\TA #t9`~n)tr`iB<I65 U).)(B 7`3qfd3yf99*0J T>$&/9Sr230:3`vj7\:#=3?S H 8RXJT QIB^vq`Z|zC|g-evYhW5~2{ ?=mB7FzS[[#;w=\0;/Rt$OD= /< ziKOG / > |47LC2?]w S=zgd1{S=Ms.&RNNfyM!bB 7< >;uCDuMk`af} -M6Eajt(w}-6F n r(  [ [Kfj t;]8h2_[c~ -{{m<}B 4g?;4+[Uzsuvjh-!a2& j>kV / uBMTyUa ^z4!/.Y!!~D !8AB:l8*$U.N6Y N6io80!}em|j^tV pPr ftMD1 3*M6 lGU0] KeS' ENC.vo5^+lyk.X:MHYrlvXgC{2_\2\uzaaaVVJp`6V9g)/{lg{n_?up>j?_vmffjwuJ -(!l243!d)f!85de)LmVbD4 U )bRhr}-sGGc9C84-? #48uOx?v|FFF <<a?-Xyyybgx1''M )EY|cxIA XT 09q-Yt_\ddZ/3Ngy^Hx+ y#--?~$Q?(3`^?|7 K5 =rT 7Nki @IAJAn<vd84Qeg5 =r(iEis1& 5K3InD\#FF<ZSd`sC4aAi&:R!smy)%<RUYGv>:!]lT3y.-AGi1B8VR BVCVrRpQ!U%YZ A@3`r  ADR`eR$EK~/f/jjfoj/\U[[ lW9uy0=`3 o\^v +Khdk@a$(EQ(g348g$ACu+B?lu9*h{>B4K\B`AX\P@ \TZTHHLhqm#dT.-.|dd4QQR>Lghb 5';'+ 6RA 6<PFdtvn8ry sVS/ a!3 0EAkr q`% hFhA X+YtOnz <7_.Njeefq[a6<g z~1O~5;;x'??mg>dq~~wO;&|F m{o $@b3&K*1?:u<F)T0XvK6_ZMdU5tELq{_{4 v L^\=JXP)u)WSpAMz4I&AitVk~;<`[m qw{;KFIbug\^C2`N ]gvFG+DTPMNf2E(C0G0 v >ga SMA($OeR6847o@MP(F.6|-k^f-8abH9A$:HsW7^>)/wd]Yb [Hhr3cUFm*tA#CIsoH84! whR5Hv' G l[%hfZ4+hK;l^ eDm(9g VUbO6hBnKhW >Hcc 5?C]c{p{362~DOi^8Z#?zRs\N'R|^#}pyW*lllp :t7nz?3YApHfcA-2>>(hRg82f/>dg5ZLt(-5?sCZR4yP:^K?e{Kyj8]Y R8xVf 4L*}YJ4C<Kq+R3jtJKfn~?Kww k?W?.xH0Q ikkc?LkjjH`)nPei0 -i ;( ;2~=-np?.OW l33%S2%S2%Sgw| O|:>q${:y* >W:#BM+G((#qgEK lE_)9[t 2Fw;h F[YvFs*f2<#stf77| -PggGi l?|(b1F ;qLhFicu5'H4Zj]_UA.h9WWej1>ZSuAXZm &Vg\VZ^\XKuYQ!*AteY  r+-)/)G'b`lR33Q&9K Q.D!SI8Srt9P^&3Fw(ggAey9y*Hy8BqJtN1j #M]9[S:Z]W\[ 7|:l_ !mBp8Soz6=w?z =_N x:7gBzyI74/G<#G;_L x4;w <>% u9xIT& v4o>:8PAv}@+ugX AUmDJh@?Nuq';l9Tq&=MSj \}ne SUD?0Eyvk0dc~A+@] b51` 3cc }2$!lAKE3 a6T/VJqk#>}xu& 1.MCCEs! h`3l z` pMPfLxQFk9N@C5o U)>zk9Lp a(>A3@vyL=0.[zaSQIV-}BTecO}*Y&r uhV=hu&3b}KG!6D/V vjn2CXu YrhmU-X+2=[;oQX+v-}6|9yk=K]S cg@SB8q\y9 /W9J+;CuQ+ZZcc#  :s+WZ g!r B)#o BR8dg=?KEt9E[G&veAJsCSi! oT3LW /#U!q$hV)JBdc;YVg8^*>;Xb4 e}yY e3;d@wovt\<3v0[bss3R5H/ gq Gd7^ AD6NHJ xRYWW p?#>S2%S2%S2i~$+}UT0zJx|4v :v+:aVA`9.=dsNo` q 7Hdn1O's;y>sgF&gm4`!m; (Az0jxA6<sFI:CO nn@3/b34j<Nh| GAgiQ& 4vl848 E9uiL <R{M?X]mQF3)%ELHqQmU)s-=W=$seiq]UemeEMeE0HXTjhT/ fKKQZQVvd/telqJ.`AA0p H@u:euFs^A^^n!g QyBDg 9'+  X@^C/t^aA+dr=GlXY y#KW]AY6-9>dK]h]cs57&n<g/[k=0Gw}:7.O=[x<;aL$8CPf[_>{t'?qef O|;t'`7>@&~: %uv`8$}J/ CtV2v(6~i=Q(;N* }T.u^Vawp`F4H j[CRa3%zM7-o2{ YYk|: q ;(b( %E CH7G1 lG}T}W5 q}:F@4r9L{  ;q p@I?8`Bs|B{p6l#khvb%& z1*jW&=(>GmswQG_bAG45`^G=:oUh8 # zB3lJdYY2!) !b^s=d[u9A37e$\mgCh.Mgx+$;t<i0](IV/#]PN a.1BPzZmv`CEq u3k-wg[uXF kon sVVV}}}YY } ( !{9-(>*>^| G---]]]<==- r S<7d<2b) Bi]  !#?Kl=2{;d{~]Y*A Y*D BK ByfY|~`0( pgNswM[[ bggbq\~=27YZn=7#a>h4z<  d3 vt:kjj ~K<c )Q/!7Z]) Jt-E2GPr \ /\)))? UWW>C &<x <Z-D{` IFS+5gR;A|Xb*LP 1J5gR/kh9lghsgR&g 6h!3%Fz(?hins& vF 4`) 1^'qHAGb)|8yQFKscG1H19p H(YGY(G5e%GPv&BmUUR`mE9:J*QL.BBCWsMEes()Fw4)7d.C ImFt WH/= F)B>gqZt6P.8|-eg44P[0 4O{aBb.z) 2aa7(AZWa;57SI(>e<g|x; >;AvArq%$??hsj&|x< ||I7}_ |ugL??Oo6tP1guAe 6!#xYtk@xMv<kAKpj1` 8AN]kn5aGwZSEH.3la :Py Iqca!' o r|z2lggk= sAsoLAFmd W&l CGf* aX1D)oJ ~G>=UODxk5c'jp 3j1Ig(@`bu1-;UkpV]U&j#/bnD=1PDa[ Q2~o- Ndvg-!no [ECbUVU nb2nejhNm 6UC7!8VzaN ` BG0[P\hPy)fYdp. \w]w 7{9K/BE;tZwYf=c68]U$>2Y+k $FW'p/ \z@& zWsrrZZZ_jN-XL24P8hB( 24yP*D <AbsY`U2e0FJ 2#LyJ BK9mGT {{)R(2G!uAK%hn{V w.23pFQPqb;ZWWlx<L`Yf7f8f5X|@ A+vjCKooB[( Q!oH{ ) 3gl)))?=|$<i xJ8z}VVL67 #31|k;\@f||;|tf2BS Jij0sgNAA83'qgPs>3 Fs;f V4Hbl:2<l?Ctqgq')yP&Ryz19Mt jGM3 u5U(5 6eV@? L@GX^F\TZJJ*)f/%eYJ8bD=^h GXb0c W;R#DB;!aH <<rIf3+h{As.LuO;g#) h<_[fM= 6S.a>7%56`I F !;LWa5^ sn9G .hlOz;M=]/|+zkon?$/&]/'=;vh=3v : =;xf'<On< |=|_~y2l~ L0p17'Qh~mZ65.&k~t #OP:N8]hP\9#]: h9=HzHv!Q.nK~saAhR0&5 >rPy :_~^x6\KO 85h 7 kD#/Fa24DGYi ='?[bO c~C%hK vkN5!UqA@2#D ' ~$B#AHCaU/3FSYQjoD-= d^6F7lk1]gn4`GMs ;og;vqaw6+jH&@4Hbi{11F e \-zCd~& BAybG%h:w4`G>/Q PPgM1og5 kJsmi[Pf ]q|a  ?1G[$ k{/ A( {[ZZ]RXRyJ7d ]=Rk#g^hhXwWY&O BzQ p +K!LW%h+v -=8$CF$H'B*^2;t:[t%#IaY|fbW^*a:.#YV?>23A 37f}> |0W^yE}ZuN? =/!~ Y9*Dtg8T O)))??677GArO{d r<L~ =r+ h>~R3Kigk 4: ML d#4JgOv&?C~nb g|vL>g$otY H~>| mOL>Q#:O6>^D)kRSl8SJx;DBMhTqN*4]_SMJ(DTWW 'auf :BtGTW !3\m +SUh!IA U(ES8Ka 8J*J9aAX(8\VTg?r2Ff3(A#$P 9!&uH}$AsHvf%yGjF9xss!zX%4J(>g :TPU(Go}vEu~s(Akgk} q6{gkrx>+~<l~ :|hD=?7O|g_<b!8Oz?t9{x;F/f>'Po4CF]L##!aFu^m5~3`K-omFTz*v80#!gpS*[`MzV (Dcqi &S &+N G4^n[ =Me S#-kD18rko skX-d~NLYG@CGI63MQ0CMkdZ~SW 1+9Stft2'H|h{dfrD=8TLuL_9Y7bSt6D]Q'[kt=bG-:TICX\%GNe 2HH34+ED\f) ZK)y.wY j1FxLT s X~ 1\:<Q. VhBb>j@ lx5o2+A=F)F.;s^:+}pcu3KwL.3Tav%hH8r [7 >\WWWTT$O~r*>9hy7H DZC?_?uK?;)!VT4j22!83C)hT'rc2vP$89`A\ zNuw/^>QE&DG*AK9\>3XBqo 5onW_}kZBqbSQQhl6d?g?KR31!DhsVvj|>V {W @x_v\K#?KIR ^2rS.Djb-e 8ww__3 3%S2%S2%S??_p7y.<A { GFFIl6>T;_H$s;  DH/;=7|-g 9=Hu&23Du>~ BE44K:zMv&VBJr4e b` 88jl46A]:sS QpF)L'<P:xi4l:vu5P cj SD6 hh~Fs%KZkkk v)h{(X(Hj JTj++pXT^r $a//AFIatA0<3M$V_9JXT k:]O%c` ;r buID}vAgs`E4E3I0A2s6qL*E05 * h~vCn?fL! %9`% q`rNgI7GC @ > >3s1-.fq ?B__.tLw|'=_ {>p}:|?63_L>rO ;R#wG[F 0Qy^C2 vuA TA6l[2tG8 V=(2QWL ]bg84<q>$ZzEClD+%j7^G?.VoY:k3;`&[I4xIgpvjb fAha(\h4?j%7%a);YAf85amh vgx^2$pBP7 gBp\*4r;>rT?9blC_'d^tEPW=U6PoV %t e'6FgK_N&gBD\hjh^1Zp#bBPYNm;v! \*}|6t.R`IIf 4IXJV'F4lc%Kuri a3i b` 1|3uqK{\kcwF|\TTTSS# :4??hA6R d/fffz^z^Fq:nw *RYVa)nHg_82oe1bLJU(c%*v/ ZB^+enH_n5Ox<IYf0Bg!wE)?`A0+0AB|f^s__+tq===7n= tvg XY4#8o.~. mzU:/{IS|#_|}~'R|{w 23%S2%S2%S\kx?~*t@Y_({ xV'Ix3LyPT-az/]6=c(aw:l ZzrHx&3IsgSDv9p6HF)>X(}njd9e2HCy[Oj!]I$/ d4g? Svq2>AiGjL.tDH1L d3 h{n?rGHg2iVpu5G+ky5|F:4.(gs]Ue5*4HWtf? e%5-;TeS\4VL!%FeiI!q H$B# /g;\PK1:0p^n^v6 D@h324H9t<N))*CR:3 EEY.`!1 eg#*.\ z'?7r{EzY#(g@ :`+DA QGr1cfh.+o}43c&-N[ D'#?y2?# <m3)_LAt?x? w~0lpn?~Bg.$o ;` Dja@FGK-Eo9I8h$ Yb:%gL99P:]u8^u pUa M8+> o;aI8ra[7C6knOx'=}#hM -Il$Ca{oWr.-9oY$V6`K\WY b>7AO9B[4)e$[bS^>$&``E2YL(;\f|u NWgx W?*I|ilZ_[_XCKWu(Vq\h&F  ?  /Ds ^] *#6*RY0wIo.0p#l_z )#`_8p . 9}^2+=Kd6LjX:aEFRs[jl*?c!vSC]`S.U0%b;g!s/Sl}s <H3#8Woj v L.((8Znop kzW|0dsaa!7t:`yvvV7v%o2!A y t]B/5C7?UCf'MEX*#?W{}XeEJwe|?#J%ZM~2VaN sD^V D3==di!c1G2bv37`wx:::cXee% =3gNg.R{07d_dXdY)Bt!&!9x7_KYY~&Y>S2%S2%S2<{@O?TOn##gZN<UW!BL^p WHK&ZNls)3 TS!az\ gpFs- pLh=})s;>g<F*R0 @vqdg[#a qOBV =xX=Oeb?L3 `uGjL#j0v5|D>ZeQ<RY8h+gIZ]V~QFYXhjbA e9) VCD5d  rsQNhJ'DIyDcE /-c &a>C-&t&#tA!d z3QLl?R:!K0 08' c RhhA# Cy7?u`SY [ ^CL bq:lH ulN>tk=zw1T~/id_.4lq on~t#Os^ {273 > |B-M_;0?3?VS'} Nz |``vC9PyoZV Y%bF[%& B[Ol|Fl8+TkS!NbGpSD$H{:P:afv`DVo }7mh6oB9h~A= u#hYG#dy5hF%FLW P*M( Mksv6ymWkq~ mM7 H#CESlc qBCGN=:bA##Nq q8nxStI6P-h/B:aMpE1gG'}b{q[&3{1 -{W58FOjM07e;dA9eCIkN}9i|FM] ^pgvA/P|sh1G2fV* SQ0~5[ zSdW1y)ks%M1g% 5P6uCSPcPRRR[[+C '8>DKR^yn YJ&Rg)xW e3c7Xv-@:L4677e?X <iRmVJ #L|-2!oh_TpNO[.=Bd^fNT?]EjW.L)$hiL|fgT>n!FYjVbg^T*{{{Rz;;;aA*R3GJP8P0r9nC3==@|^;u\MMMBoll~ L?Ll^vO^]@|NgrN|M8 )))gTnx?ex<h\^z{'@iHEi y2&E &37MreJ-$#t+;IF3Y/uK) 0T3ip)6|L+8PFi3AilHxqB%eF/4|5gg(4D@s*CO o s=z$6l8#u>#M*D=lmM#kQc1G*q R`]e97VWVi66(FuY t(%FdbKK <fJ+Jr*]t8 LR<stB >}8/th;4'L6cKH'3Q1fnet; :Dgr0 SXTiGdgefZJV>;^w$1)V>3aA[j6em1 woNx&7?vuB`[G}0KOf vqW+=OG-=[ O LX ~9-'|}vQ~~;yI 'pu3`Zwmm~e;hH&_=L)r1a K $#h*FFS sP D *] R* TTJ@oZ%eVd 4mkes=x0 v30; a!4Eq~L{ HlN % 30f'BhLVw?yKMLlUqI(V[`| a&C B }~Ej{Y sW HMCk(AL]qKo&=u2fw%(a/.-=shX62fuT!byA{%EJp=d#4a*2DZ)|0Sl[4+ *)az`yhTeBpVM xM:p0lviI|ClW-Z!;D.X0g7g rZ)g<K3wh-7f]&TotdC\SS'b_U ? /_vYi`HRZYAW Z7XN/kqS666M{XRYPId Z<tI%R#KZ0!ONN^p#A gh&) |+Wg.9B!Dz nkkhh\tj\.-?Kp1# 7 wKKK0V zfAEv8T8</w'n<M _R9I i{?r9+$t_ pCb4w]|dJdJdQOxXsf| >$<cSGIa.^x:}Z;A ytb4{(;C- PfjvlL3ln?{)d;<g@S`S Q|nj<xaC?Oj< =MMcB(dSI4Ml>ZLgLUh<\@1DjT7 g2H U (?N1uUO5#2X]V3TVU + ]Y227)Lr.+*Ct E {RHY69\RTXDVgL(*9E AA; Bo UbQFXG.P]Lu^nid!s4Z\DBQHS{S{Y1k]qjoZ>coA[|%l1!'P7.qqwr~J$^of(>=?gsOgG]veWw ~:7@}<7d~ L=3}<d)VGlY 4N>pQ? q> yoD =[Pwyd7tQ:r d@YEf-R5\:t /$[l Yz 'EJlu <I4 #YT`}WwYfG)zq2PmX>R2Lkc2`JC}k#N ZV}F0o 6c!kDMa z1.?'9{ X !'Du()I0PEjCHYp9 zd:oC f@N2S[z.-v zC]U<SbWDJlxQ+ }5XD }CmJT%a :-} X(iioQVu.k/Zw j)#gPp]kakq7ESlYmE{3QvhX^&E 5e(>B95K6eBB9} f{sw\]H0+f]w1fon]1@kZ}Js}?J%m=eeeUUUQR]>l?(Eb @OEN2O///qg 4Z8TvMC*PKTA ?TN'?KR!Z6fY &Ligr%q\ C(Bf 0? JBd:AxweqwHBS$>@5vgQt8u/^_Uf?-v~ \|h4:N =88( `YX+ `u=n7*}#x^x~C?(wCf^d' L@?8@I No77o33%S2%S2%So~xj Il*p K$> /@DK|D)KvBpQ|Ft?w gO3<4lG}k@r&8? 5>x 1gH|>ngY^fm -M(iD75C^7` mf-1R5gJ!0A=7  v#GQ\cu5HS@!w2huU]U4TULh@\^:sYuye%UH(:BW^ (2$44 (#sYqapEi1 YZ\ZxcaZN*4f@Q<$iQ?sKv<fKPfmBn#/?/aDpKJr IaF6qiNv6=9YYKC l8z-qGd]cU FX ;`Zq9a9:7Nxg}^K)oi}gG< }gc?7'sO<3K}0c #OF ztw3A?dIN? | d{p# Ua&hD v0ouk^Cdgz;b5 K#v+dY1w!+ U*dT*j9nfwr8|(hULL & pG :`L kcJ|7  ucfolTgxsl DZ(p{5h_ 0P uk# }$UB|[s ~%KB*>#Hmq1.dW)@@:BcLt ujDF4+:IY ] 6AWSE-Ql]D_5/Gx;Pv G v=`ZGuLd-2X<cvFX!!UX2]K+K P*/.}Yt!#dS-hN*<#)xmYBV5JFpD:{u6%4` j} fgu3g(yK \]uJ$Dk=mmc1tyKBlkkkSj<C8#'hB=?WUU]z l6{XH 5OD YjBAn{6v 4/bH-#:W!b06=BI= nI9e+'%z=h?=@agYV+K/Y RX7`W_vld@ d3[YYfoHC7oA' (~*^7KT~yPN$s?j'N[ADjF@)l)_f/GLLL?7 {}N9G0?\SNgm | D 4F8`ib{+EcZ1zXCBc 2H;Z)fn|tKsgO3'>uDC+QdF0+1yhq u>' c!86 xjsp 1m+\Tk\Hy]rUUV0hMu]ey\ZdtTq lhPg:WUT;4bXZUV4\S+|.`#4E=ey(.((`AT 0-s9FS.a!MhJ .At8S!$9;'kLf{s>'rKTd3&|;<fr 3w5%fLQ?8euu kr7- |0sN>) /=`G0oFK_cOga_/=^N <N>xMgs|4# s0y! ; aZGt\~Ol?fFZ@Z]9IX94I~cd=]'jSD Jn8DNA6V !IRBQ ]/3$Z<yq:[~Om~fyb!-d\[|u<[ e3fcWQ@F5Zd^D{HN! R!\3>h E{dY=lS uiAg}KG65@@<B<LFGM^Zq' *T-q2Bwk>}auTGsF#VP6=HGzRM3Z`I ]C6B#4Bo>184lZ1i|`6l*L$tj)Gqj VlQ wvilWT`BdFwgo33+`z=1:>oC={}s3>rOdeeO>qo8!?u)oToo/x8i/_fNaeh S% >sYNlooHCf{eA2g8H)L#]OJ{7YTB*: `+vf; G-s>cE#<yieAjjj\&ITvuu555^{glH$C_ZZK8~ +p8`/h( GP)$9::?/ q<2zB Y`:Cf moeppu{dJdJdco O{1H]? f](Otv[ZZ*o' t'b7:_p4w:|Jnghl=vhQpn=cPd&T;>{33QH>#l#c3!B}nDM< Q65C|8&Fns` O #'7Gj}MvQX6cG\8Ns\s(5WU h~iM9:]QV[YB=#vSYfBm AdfM#K+K %%v.!hTq@iMh$p19 *WsYIq1p^.Id&i]1L`tdoFC$V &O4Tss Lhdqd :3caC \9l&t9*WN1Ye.3}AK &ARck=. u^x~s<tnOf !yn -O~4l~7}n?7qDp?Zy0p~l/gO>v-h>' :>|EC?A'M~7|uh~F9@379z) MN8(ctp;U1{_qRpimW1RA 5FN$YW7bW7B?(/g]w !]o)G=Z[6ZLk  pv{A} m57n XP-P7mXcwt94^G86n EA f `Jv fFIts6X7`y!G[na AE#8T?D7U>RE (8;S$8<]n#emx!R;M ~QD&; E&(&k C^2.zWL=!s]E-r9m3mk@[029BhoE Qtbk k.l`@YK`QpEocQvq=gY nw1t]>K3))Uk *++/RT:b >d'~C^;W5grRZs\%M>(UwpHRs:C'S'>e?2J*A8d^HZ KD]%YL|weB^}$t9 >@?^c}}-mvvR/|uNhzzzN<)N|^xRYhPe0XPx<CG@cNSY }&2F}\RX&ok^sC[ 34$ G{ 9S2%S2%S2= ~v} }OiYu%3<|b{+t^s[+[/@sG W/^`.6jo9A$A mj wp LS2<i%#t;S}ClScI#$3gNY 'AQv>vq 4@g?cN7a j3\X={c'@?Wp W~)p+vE r9$0SsD9 *)J.W._uVmAo3S]Ot~5T6TW5S^as}-{Y|v`(tmy)V  ?WbauYI55\C5q!FD{*- syqQz(;MeE%T#sI@22IAL0)G GaiQQ< yY ?X4Edsa>i<|3qi>vB;41 =Kca 99dog#| ?9+  A(5ysq 1Jyb\ukxtaquP6[75yk5b %r}CC #p2gG] nwoy$.> -?yuc w~u>d~Q#=]= xMwM1B~ bQl94[Nm:5QTaWT]#B\5Td YEL4t$jB/(a-e@( 1Rp *3p95g? (M*`G%jU*[s(#n6Q8GooxnU\u*N 9^#00G}6R*a]Qy46L| jZZ#AtM=!y.+fui-vAVdrq! 7T9N[ !KbQa* $.! &{R:@ ((/+AK_4JVIeR+q*a`I?]y9%@`KA Dh&H#(IN$zga!/M0K(5UmlNGIv;fu(8c~yVg}g>fOjz'4NCqMkW=&|]qYsOv2ITPg@=y {v9?onbrJGtJ zPfkk .]/'OtR?s@)1yC> A!m0f+YUH TNPu4p[LfA~/S?) g&<XbXF N 2Bg  ;'s9~l{V@7\* DPH$? <=pl6?s>A3[d!Gs>7 [L&F|p!7X3gXq*i9!(SY LB?c#|vY\HQDvZAAn3G OKKK_@q g6'+O{*Is'O\$8'r 'q':Sg;;DK q3270 49 ?J*t\E' q~;+8 HynA3O mlA8wp(/3jfrmkC]k= 55 %s i (!u\Hhji@]JXkk\SUKvF!p5fQYN8=c H;W\Dh\V$s!(d]E0%2XHr1%:H\Z\uqFnvV 94|DhZ o``>BFQO>D\FnCC9@p Z4a( Y|ZoYrkB7m5Jf9lXvWu^[&*a~cH0J3Bco<R#lbKc&&?|33dnk?r~q7'=GsC&<p|B9Y1F 89>!;;>;w [PGU@H (b6S?#U8BkVeQ $>8//Lr+F^LUSB1HBfIjBVY (pKD<f^Q)vPi 1u(VT #FM\\HV`Soz[Tp70m>|l^CM3!rAWCAUeh>5 Aj:8n-Q4a 1!BNiQao\C [a FP L>d%<uF VTP#vh' VZf)0Cd5W-8 l5=^GfH5c:P&MDaz0d_E]kQ}?;5gd;eRfz?LEtlThQ`$3T/$s>] T)|pZ Ygti]ozGD.G zqKuCu&L4J&8***|Mvc zC'{E`A(hc//WWW:ub}\(H%&oEf9ael s;nnd=n$'~/F& stdF2/ qxdsrak4e\Vw4 ~?EB^TT$G&~Ftu'XCRTPQ{ 26m !&o E?o2ojj?ZVq$MSS[a3YkMOO g>> ;'?KaBSx PR )) bF vO.v%]%]%]Wp-pM~ +6<?#c-Eoc j3N/=>4f hF3!i<|Dvd;P3MP3 $Asc0dc$L'I '0 $y(>@FXTgmP 4E7ngh4RW#[Z47)R( `/4: '?#szo suYi jDR?C.C9-XZ d.A\TYRT_]]VZYRj$rV0Ei 8<%6: 'o4d-:9 )0/01I`3s A dAlJ ;|oLA:jf3332`t)jUe@xuCb@ QF~K oOg3(AKP^=fZT3QF z{aDz[&_sGojw+7tX}x*mG3of >l'G_> 8lxO?u?d{huw].]KlU$lnXlu1huFAw3G+XE s(Y2JxeC ?d:vEJM$YAgt.5DM4:tH5%v%Qvk}-~D-qg7Z6Qf&}{A!90En[1)B$ex64) 7x$ ZB57w afy97# y#hZq^WAM^#Y!D[XC`S# !u2daX1KY6`B&)2Oj>8q?6%|&J@#!4Ah 5eu}'4_1B3i!8 8h<3y0N~2<y0fL$4H s^2.eQ6;yd?ECwF3L0pJ{[Fhm/vMh* W^7s^u'~JnU<?'#Hcc}^y7x d3KR `XA\-86YdhhdM6&E%F7Rk%8@ hh0 -V uHG'$-{ ?@~JJ Z o{5++ guVN bBT \zN{a;@ 0D`83 w ~8o = *Z0'|> qbSgYI@pAmc7xJ9TYl{/X_zgX//{tItItI ^Epwf bSdGlM+;_:wS]H8{f|4vAOcL!D`W384q vX'vPvmg>F&SP 4gvDC&=4oaInj8 B#v +cw[0|0*%40h{ilvE<avdFeI`XG<sid>s D~F{36X|.+*(.+bnV :1 FGYi)iEd{. )F9/my.F :? Q^h +DtQAAN c7rgg9 EG@d >t(p&)0=>ft&s(!LgC9ECfge):BH(/C=?JB2 8ufT~ ?}cYhU8N[:_:[+WjhlPAKhYe<Xh9g4?= fzo2t'+.7?'3C&\ Rio|uMMX> BtO\h}A;n]z|qnFE 6ub +IlF9LU?&*h75JV?~TM#v(VRL$42$q4E#7 Mve3f)r4$Xh.Gao0iPOVHDSM!1dm`1J2{ 14d&taf*? CQ l-1-4oa%~['#44Bn cXGo Bq .* hrA3:j]1G s_0hGO XC93cYbw }B]c9q9Z;*whebA>9p^Oo-Y3l%QtD(jpF3/j7;k-QFSoV}[vo-6'43~ln*@$u%BFrx*++??+}N KjO]}7 gwp8\]]/\__qYoSA b tC;bXvN ?'&J iB#Y'Plmo9#( :|Jy7G qq7F2|H5?<aap?YTKFR1f 2??_*&>g a3 YpAc~~~jjj|| t:%Vk8 z~^^n~E p |AX ^<+k7;t3=<b!Z?>M|W ={KKh?!D[R?1/sQyRD[O; $o9M @ UhCS! 3'Q>8mc;l0 I Q56sS# AtD Pwdgo-`Yk\Vgh7 5j\Uu|hA ;2V\VS^VW]ERX|./F:L255+K QZ:s9%<XSV\\N3N9 '9[] rR`9h-*D3sAs.gRav.ss10fSn at Da93 |87''><8qM8`&CQ7qy }IHi5)}uK.K6_V]avuP7n YAKt:mSTf9[_Ox ra'g <Zhk-]n#(;B}txd&p/n8?fc6~6f?9[ a75[]eUl%&i*#%(A#g6?l3g=eBK V2.jwdUdBLwYLc\;F@#6Ed`*Y uk mxv?F@l 9A=9ieoSoX FX`A(08[p'P !4*1%h6/%buQx3Z|7` @4V|w5b}zx0{uAGY08: <mP Bb^TR[rf 6?\A[H7bILFsd9c*dF YlEL hp 3ymtoD.f LH~%h{FbF<`.ZTVwja (Aj{&UWgt 2?/i S MwRs2a#+o/V]:rCy#5;3555%%%/yVS?POLV8wcP>// .YPE> 4btZTl {BaE:\Xd wOKySZ+:A|N?%y7=A!8@'#y A'9%yC~(QYY _o-:NTJWiht:> ge`s0Yf5)l6'? U* K - 38I5 b6>y TNOU|H8sgffvMKKK=uk*d`{Y6##@~MIK/j?XASD~G^ 39 B&o5H<qd'q#>%id 9CB:<S qFG[+ 4y9Lvhr D~>XY|>q`(#-qQgo65i &r4TlTH #3T TrR+QFt-31Od~fs=1g%EHbs5(&.]^VNYFtiaAI~^)9Af- QDt^vV) lYq1yFgo) @:t 2:sr QhbAcn r=9n*sL%^Ff<x`3A8210f 98xs6M3<A=s/`K6S:!&5.]$hGEK;b9o|$[' n7sgG0vpf<dn75G_t}9?lx1g#G9> 0 |0dA0=Bqc6Q5I7XQD :bDe06&V%+;h(gXjYFbB[evaEy8b@y\Qj&P6l06ub{Pkp7mayg`3 9^c ] HW7Dr[)<=dw`hlSZdn3 S3 EH1LG3+z1Gli04 3YTa8U?cFJ$oY;v]A)(6\A]3A @rbu+fY lC$fYg|a]gT90cb3?X6$9%<v6?#huFPg49Bd@]4*4 c% Pdg a+Pt33oD *_tMzf } M7Ur_.8.|Ky*?+\h7xb<Kn(&|NiNZ<U_?N<y>nc3 S 9%Y H? |c2N@U$07N B W%P8 2 ?eAk #OC-loN20Y!Ly<?{s Zb4 8X8;sk4R)H^*HJiiB0 vlf)!5pK gm\ff[^{5Z)N[3sT/-u>Io {7=u9%|CW+W{B~_%]%]%]2_t)n-~e|zg{n/m!._#L~|gAB[>yAX|F/4Lg :pb>CExSEHB@jXzFQ i'3:(Nhh[Xvn9ZIOn @tSkP# ?0LEu[hUU YPkPZ&?CgU]U%+ !58hy&@&1O >gX*/BBped~ZBg./).%4Bs.D X]26a(Ss6HQEm EL!9j 5fo@#Bm m |sGs4KH5 >tof ao@Q5}o!@_NNh{}fE6CPk ?7!}m*+=G>s<}upofG N?>'l~]^w}5|t/n:@~!'#O1jhaA] mWww v91b&IR v>[0XprQf0(?KsnHf\!r!daB=Pl_&*)D~\? .GN5A!#6XANoA?y;5 FgM[34V%xn-0R@L96d{uq9h n[`-qNAW##B75(>#$hxe3'E?L8hua|D0} Q 1aorS`<C)DPGZv  dB4luA}]/e<Hl.RL3~(y]B %j&*ma$;.9=B ?[4MXy$BgF@qk?NpcR3azn)@ ]<Ztm+5<xy\yeL~L]'? .+ zF;%  ? 8pg^zYfXs$bYj!7!Z|@ L%@Kx .nZ;O:=bmYPl6 vomYwSvc)M;S Q!d%h8GZphZJw(bR4L ` B0d tB b& NX+ ol63-PCNu+g g{L2Y\{<HBt%A|N QOf?MV ]|ootItItI_ZV :=w=~0dY&v\@ip 3}@}F.) O ?3y#$; !:4Ij>vi<s4!7Ni[OcmD~n!sK[c=mnnlcEgYt34S5FLD3r6Hs>B57\cC#SGj?W5w5D tysuEy8H.ASti5Ljf;3+JQ^.-f:Gi!c7LJJ)a fIIf= 9%)SL!R`>.$hZ_H2u\*39u8s#` J O<Vl F>25HvV WqpQ5PC8Bj3X#L@N xMBI#h>x /}/>@{%Yt_ zZ :< {AZ=R N}0{px:1??/x's#Of k_: :-W\h~dr?h 0| 4}4}:l?d0=}] OWw3h49G If_7Ib6U=?H0<3c$F1et6f6|>[>P|967072xd'[yY4?BGl-h^n=0j{5BBK }y3h LA39|a*Mu^BZAh&ryFf!*4bCh 7IM0;mUa#`D G-cuH ha1b>;1dWVEMvY1WOiox4}w<p.#ZCY^Kl1{Fhtlf^lJ<(lJ +W `jvq ~zpia_Ce 0'lVyW8|$[>J an`dp@ k .C;o Iy@ :Ym camL${[5(>_E UgRs]a:4VgU Ouuuqq % {9P}Xw9Ym_u?ycc'=+'&&B*pA'7|){Rs+~*'8PyS)b!ZL9'3ANn{F= CL~+ |n| l ;;;+|FQT 7!VTZ1 i'tN+8 ;V?3n9sFx_RRXFE{8Pxi? 2 MAM`&? esJ9%Y7SXX( $ ~ ~%]%]%]o~|%T wdL2kQ| O_gT*xk/Bkcq[ d>$7.=}Dy :>hdr>Mv>8v ;8 ;1gy0Al^Mf$_qqRHc hS#Pcd~FStC][cC<m Ef9(]Eic8M dq;qv-6TS` A)mj+\UVRQRTC>j2BWVWU @3)g bhq !L8hFsEy6#5 Q #GQ E$8!##t S'F T|2M DyW\ xgbh;LYj!b`+*F2_q!)}I2o[ VUUqg}Y5qm?? <B}4 Dy~7#OF['_^w|91_<`-l   QO[uT3}3;^ Th@8QrZd(A6M !4a| a9Le4dEp%JX6z=E* ?|CPbE:3p9:Fgkxt;o{AP5ne>;8T*LgD@EF`vrw=lAV 2vc3`a3l{{qw86QGh=jg ::dfslDhdC7Fkuki >&wMI11CHG&&s=*V7`PEG %}+fKTlU1nkih]G[U ]) 0]<5zka5Oh*Y Cw*IdXePelSDF68) dFLb 3ALRQsyB .{fu=9#VxEm IYukZ55MyR {J{K} 7|tOjz`J+.+\W\ \8V''33DH<22=m-AN)_|dFJ?nyW~kii9ugYd1j~~~nnegV)./HH' <L@@ r-o1E'9x|4M )%YbYshW ' E:y6(~W)uG}4Ai|'%n \. ->}v]& 2DdW _Al6= 90 I7<<j09T5hX6ngB[[0 +`;@dnHfq<uxaLP l#__??tItItIk1\%_<5}~{#8\Z7y '/?'39 lr>GSq6}0%QA3 QpAt> k N[M#0HrQ9njh# HCF P6)g-3#uGy-Mn#MM5U kQg64f kiABm\WUNQ[S ;jIa*-)+*(!.Gyf)duf88(F9j4jhEJ)A I&G4[#Ef<9?'Yc`nv!njYk8C0:a O0=07;lTU0#LXm8iv>hQ M4;p_ye:7sDziR;e3fMRNC55XavPr!o\Q|~< x4=$6??1gG?a_<1X /o>nlz?hDoZA]|J9z4jx4.Kl{nCTeSD5$bAJQ5rB$[6H!<K.b!feEL\aL UtB#; %yE7JvAGJ;~^#Nb(>#gi_Buc+-L0 ;m(DVAFes=]Y([0 c1v^ C =1<6F0F0De;Ajp;AERf#V h34K! A%4L`:!#5k5Za;|050]2/{=ViY2!f  .8m/eP-%DaX^M2'yyF3.$5Ym !88pU)qYh{C.N/O.(/O+]T]f }S^Je(>zBg2B.I/rueCog? *`]y~={({7bFn^+;v|777wtt?d2|i g=BXNo NpgAdf&2o7`{|lCJ-AKbt&AabHoD1:}FSq OQNq X G> 1?mT~LjrD|2\O p8@ 0LettNIo$7sX:44[<3^Z ?~ ^]PnD aGl:9y09g.)mbx6|B>Gw4U {7...\.^_TT|)H?L-?nJ.kdg0d5S)-b>dx&xy|(%vR.a'3.``uiQ mG4@H@hs1T[ 6!Xhs#[Y4%/tKB6LL-u(>z@@7y iWW6c \`*auXTS^j1|d.A$?eD(Jr7 ]^N MBX\Rx|<Ls `kyB  VNVHfXg;St<r7U_@v>fe W18^0p&-Y\1Y0 n# jblxf/47M6a Lu4yNfY VUr G H Etcz{E;A7<_p=~;7xvSC M}3; O}3f w>l5ok<X>?>~}QmSyUur(7]Rqk\]lSj_5%+;&FXV^B ~6?/Q^60ycgA?0i@$Y%FG/.u=Y(S(DOj 0m 8%De N1c^Chpj-[~Kk XF11uV0BG};C#;Ps11 gFs[b F q7 D zs= <dfycPvlMK#|w1y#B!DC6 L hiFne1LpGE*e=J=LVmC;A*w>0g!lW` k>0 V9Z6tP ;U6Ih.[d &X^ YF2S.@o > 8b_Y#=SwM/BU_R^V_eoxA ]82.<&p]vuko J/Z_Anz38{-3?UO)2X{~s @ z'b8y0!P9T D(nY LA'[HRyNpA'777xpM<.A'XNv4MH' * [[ HCEZtY)3N'.]!K:ND*>XQ@9v2N3<<<Vdzb:o[Z^oX|bdnFN>Z$h1q*G)\<[;p0SxH!KKKKwp3\(CBDEp )o7^ .in3\7dsgu/=sD6N:w= >IgOt##:g  wAw 89}*j GZauh iee$.0XKL6h;v(J75 kmf3N|FG44455BG facnhmkknli D]>6 JA*jjQILcv5e4gfk ^Y IUI$8W \I.A\WN]cMN RQ&t9i( A;t0^#/D l!??7+KDk.LZt6q3 I\&<3a %$MPh <H3/T )_ .fe;]J&4[ (A~> w}zuo`*`2p:xvZnoLz OzL O`_^|y5g\| ~:jz sM !<w {Tw mjFLQlr`H7M 5bVIjCyM/de6(jP`3+&tAS6gA^aCVR!aV \-z }`x5lDyrk#VE\KC6`Cx|g;{>86TFZ$Z$Qnk[9V6Y#z>*8a=Z]6#5j ED!x'zo4m`4F4$Xs# ASo  ${t1/!8a3Svl* tx>zRq-0! 7lFhR[d g4@<y X1? Gv}lAY2o~86Lq<lA lKVE6zf L5:=]g0CT9:`;T{g`-=P\Ai)IiiM [}D-$rtr4J/P^u9# g*|;H gddLOO'O s~_E^{_{3'/zFy7d^o \\g?kmm<{b f` Y+w\b#(AnR|N?'7zl~FI (k_ hAjN t Ar6%/?#0 oLT[|pL&+TKE*r&:::jjP~2|f 7Oy`a4pa ;px g[{b?K8r KMOwk{<aIixNN | %OtItIt/ZQ-:>{mV}p W\\'@y9~8yAB@h?h<L<!{PhkFS'Hs&/tq24A)hijg 8[B As :AGMmA77r h$&1a|\[_UIEsmEtbO} J$57p kj*4EjBph~FFy &V (&V#sAftA@OiQ/(()Dar3r:\J.-8p<r90Kt Q&F0e >Gt ESX`nv6 ff >EgDCg~Q>&Le B 4Z 310QHd 8=9d#?xKY6gd+vUY`Tshp 8wklqC&Qf c-^27h:xxbII[|_}y51gP- ? >w {Nv]b$1tc(UnoaC7l_-hW!tcF[1|l0A ZYjb`EeLe|yM/d) i bda$  ?APh4?4X=5iG>6h;dlMxwc;h j7<h8[^=dZD~ X046it0F#$>o]cvc!6[A 4?Ps 2~mI#(70#!tl/(6olYXq4pFfD\Zd;`Li\ ^^nYE;0 fv\@5dS|o }6q`ufHq6N PUa]>vAvtyN#goLzIUgN *!:FYu  fS 7W34`vS>6B6J=+7TW1&4&=Wv FE%Fn\ |P(sQQG=+JYf l<99g0A 3;:7$?cXJ4{N HM(VD dI94 DL Dv#w)B o! u@_8H`R__o0 Dw%tNF3pa8N >fggaxXf3G\XX(K.?!w'Put? J{<H8ZRb7]& eh:9 w__ppW~<]%]%]?|)SxF\J )C S p)h4A(-Aa/?w P|'9j'3FY>5 l>~Y&tcmgNty8[nBXk#VhG00Z] 36PfsScQ5Zvh!tUcm5A9jiU()7TWFqT`jjkQaH~rVa3tbai}MuEI1*Kyi9X]Q^ZX@ bEl{Dvt8qT JQaAnQ7<e|G5ySDB\%lNBRMqy MK4f dE+1 @)hk>L$lj);ZtK4E `{t}Muo1Iyt 95> tMkp:u7=_; <3`2 >8 OL=y<o O 9Q!GCfh m ?Om;N]ga jh+}o42{WjPAhXm& d0hQUFYd<>=yEm2o2fB[2 n$v[ui>^mizLoq[\G F h< 2m[~#Af vlQt`(b<hZ`ka!kg;l3lEF ~u#h9DOTnQ d& [$Q1j + [7 I}gdgCa4{ H]l 9JQDIm3<5*dUQvc2L`UY10C Is&9{Chf;C*U9QF65:EC?:P46oN=iw=l }AB/Y |gJuuF5Uw/z=3H&DmL._42fhmoWz{e!b`iii(=04:{tW//|?k---dGqaIJ< tgs 8s2|C2'7Ks:^8 ZY ZL`990K'K+`~Np29boG5%Ka7zJKs9D7 E!wx%s1J 44Pgagd9SX|hFfMxbbBYbU`#Mxu`Yf3Bo ^wtt4!PY? gPqLI=8&$& O%?{:{xKK;G g<m hvffhhU:V _8{3cs\^>u<#3!$Sm>#Dv<[8q43l'^hl&s; lG4t;|dlF1B@!s om>Xh78R46G&JZgqTWVHBBq&HYFosU2\Gzv>S`=Uety.()o@WUR;q|ys6Xa$eD(+3a@BX dVNaBC'7 Dr;#(0)hrf 4c<##-Y6SP`: odtl :q`<+.mN.m^% 6{e[ HJnJEnr*3U2 _e2$g  w#@X <@.}SH7.hfJ2N']S ?zejC3{* AQ 73h~~4|0z*A D v: 6 z?zQ!? > !Fg}Gs[cW`0v4uMSO +acsEjIm oPYN .]& :W-up jpQ\6`&\%=%dnY4c7[U6Y- OKeUTmye&F'9mo6 wb^?g!fuiG7f{X pu0!slY!W0p s.q*7=3LvXs*{}pY 0vcGuGg~u !hdhs\Igc+`$Laitt`y Fw|F XAh2op#! C l?HMXGt5;m(Q_+>.ZDT<h. fc*mE|q6]hf<jPLA9=BfmpSKfcF>iVNZg3yrA3|IuIu )mMm3q< s@N O) qv xJ! _xW^y7p7e2j #xxpY^; bj.Dk7bKK?C - fk  5-P8bA; YL7%r ;J `B^( vgY:Zm|l/Fa+WL&NP(}I/xu)r3 !@ ~uxNNNnp;pX1EntttQ?3!; ~j|08? /qUQcQ ~X__' #9#9#9__~TXZZ CgxTZ<Nb x3_nj~[WAN5c^y^v B=2g#$Q3L#kqTR]uTQTAXg}pcK`Tg&FMEy1* %%ig4<j %HQRT;K<Z*tq1| vX4eIhry%zta9Bp#lAs00Yt1 -p0s jrysV>i9l3h B*4 Hr$\Ffvq4r^0vNKIPti<$Qg;b &:wcSiiiNA)uZC! [ vp?:$yucB9iF g(]*un E iD~4[/9 x8x8zh O`#v }O=u}5x0D=t7o'CF=_unC[T:f#CW g$zHaiZ1t.;1+xY5VB J4sZ%c1E%c7D*\p5t p4+K: #Q !V0 q6Uxar*pu_#CECfh^Vy{7d?v[B[yo{pDn}`!cq+h;ZuNeo:[n[am2\ivAC{><zg alA0 3#m2ll:[ $7nfPWU1&_7R3ur`nW-eK&*U69/[d)Pak_9+Vg&_l% ^T)11Yefkh:zF}^1j9.oPL(U=idZ:iK&mqMm)4-eX23B!E6+973h5;[/|') 3$?OG1cd= > fggK/[o544uKPlX~ S>f9 Qpg!sbg> u b `%qd2fLwQiU#AY N}|#a? iZb//^xh4t: ~PMl0`0(y@8?tpHoo/lj4gx ]snG~o:%8b1F<.~s?e^}?7?31<9#9#9Oj_|<2 !}|jQ 8USA>V!Iy ~1 MD/^W.^ 1LDMuxUK.8b *8pX2HhEy+PSU[^l uUuf\^:ZTW/Dtqr|& }<mBF1g\;Xv %eEO)jIsXAX |T>XP^rb.#MGd4Q07 9t99'*)]s5y.3 r9;;p02YSyNCe4)_c!I6x73h;6SQF3XEee!&3Tt:5g:}$p uFl&L9O'Of9:y#G* i?yp>+/o5'=3&g`U8TK$X_rO?=o`~=~rA= j7<k0z|_a *8h~&3-;6MRh]|i0v!uh%]}mI+e$ +%0 * \%fymgD2-27\UpxN?:ae HWM]}*giWz)DK ;7vMf~\ NH w ?Gyo :N8s^z \Gxo7 pla :{m5ktY#~KGcPk5^Ox5 C+!n V 9a<0 ]A> kg95 Bqo0+&cs4Vg/<8n;&qp FT5ytd kVKbZjX-k69*08\#MkkFbXfuY Em^t/Ax{Ry>Eh;f1>m1yuZhxy:yS^2k4j7hkgSX86sWv4EsyPh2oUgs\^^yB|S%- GE ? H$RWW'X__mBa %(acb S2(\bo 9~3879fKL(.&iK<P Pv ^!B8t|>{ ~xPctOF3~ 555/x^~Zz^VK+WFv*6c`( ch0gs3\5B3Ly-BR}]~0L&;t|4Vpe;byYfb* ?`s yb~'f?_%<9#9#9OmMiiiq:pj> x:yi7g0x t^kjMQ+(=/s/6!X_DU D4rmjqK=&qXDt5^U[CV 5uTDDE \;XSQN(ty5njZF Gq33MJr &%%?BI^h? ># 47O>s%ERD9g. Dsv'aKAN6\8X3;#d^hBd|9$ADT5x9ErYbSR8 z49bJAcaYqQh`sQA8:i yTy8f)tKHa'N0Na=qf)u-pn_Q$wzlefG7O9)UW9~4z<Qg|2lws x2x2xd*'G'coF_:>|1`B/<VX(`+vlz^'gXJ`6tEuhcFk_KY1JpQ)cUltlX%g)dtzuwCKYn&8MnKENg R4.S> 0o~?uL!Vz{A~pmwg0&nz[~ v 0#L$n;}~nwYw{3A~ p-&o u smcz!v;^~p4 :jgx.[ noB vCxy [<s ! B~*DfFphz3-p\2E_$-s |>SbuM0iVRVyFFs<c -aiu} 5m394LLV`I1tN$Y1n UZ'Ap9$o+=|>@csv;|<??1u<rAA2o6<i4J7`T|aLZg0^!n3GY F~$ c'k7#1EsZV^^Oct /^q_Shx7x/?kcddD[4\4kFfyhx^c`x3lkP(oO^M[U*OO~x/ibQFw2 A ?(~sA!.<9#9#9OpRxd)>5x ^]Ya >u ]mqBzeo M) }47pN.+W/^Bxp 9s d( $mbLg?T_W_]gZJ>HA2XhjTf3&KQYhoL.%\^R p m%siI)iYQRX|%DFaq~ xeE%y>07v+>qhBn]9w..'UL9lVa^nL5dgfeWE >S:3 EOg|PK!g69 WTDzsjVFe{S1|&jH9rc)1&^3g+LK%h9B<M['y CHAD+T^* Ri; [=UnS]kxm/|{ 9|vq17$o'}NL x  |uQgX$d QKXe~}:7PPn3Z8DW ;yg4%KNRgcsN+RZ \wR. unfyn627u53]*[(?jvitcz7GL{\&[^ygnn-(\Z!}?hn>ZRc`AAu%2 7h]5HPo{]9F.^GM1yF2}0h_F-Ll!!y l7m[>]gI8 /h~oBqG5C ajU$YtT0#e3Uk;9 4J-U Tc |/Yuu^3n D4L|FY)ueJ:0JAsn[VM_m\:jE/G-qeuL:3k QUDYp 7HoHo]{`\xqwwqv _|5pgOM>;5xy%%%hiiQT gjjsb} Z|B17VF<|NbQ XtB]x s16h+FpYJC ^x7+y!7[Pp2'u: JeWW{l7|SL&o o0 yp3=577;~v V@R.[Th4p|pbuY&Fg> R9zx?lm?w 7;8w: !@U! ~]`Zn\Ctj84mG 4+XA$6A/M) rn\uja (>BXWQn0 ] +I\WYJd rX8XVZq -.+*;OgE$\HnB;S Fux3R`!J6\rx5&|]m!9[83vd4;f% t [)l95=L&usNKKRFO#553=3SR'eg3jht*U1#i)d 2CP:G] Tt;1Tm*iN:uJ\Ax.ty\12t3^pnS~ =uaT8H'(vTd6}2v t?=8}8l_ yA/vCCT{]en7vA4r![dfinzMzAecl%CQT=y^$ e^1j3OX$ Nj^<=RkVQad86mYi)mgri{ny<=:LASAt2x1P>V>VE viML>~c;h] p|xuo vj8d7`u&YPMvwPakm- dEG0b4;  w{pf fcwy:>q}< ;>] v ~^Av ;m;A0 vRpk693j-Jtoztk(ZpdP:j8?[T & 7H%?&W-RB-r|)XJjEcJ ?:%&j0KjmlN2mw0=o^6uk)[& 7>3ic*8t<;Kv UVM$9<gQy gxya9$G3e?ysk@z[s_o{ Fk!nz_='k{*{bff&ypV3== S>(oE%W y7oum#> S2(B {%o~G:3:31K9b1<sLQ.Y^^iiiS1t dZP&]xQoVGG `0}}}|GY?K7.p o6<H_bF {du8 GF$JA5 7<] Q_ 9 KB=b( ~7 M:POP}}p6hoo_ilu73gf|Un^B82h{nl}.S3.a`}|/^Ad:/5]s]e3gH>TA+5Uhe; YS^gA&s)8mK k8\QVIK&|.bgCy|%rq2rP|qrq gE|b| hst{A^a^N)EQ_DBVm& Gv>B\pm9 YC`lV~n.Rod#732A}6hs}6+9x $8sTvV:N=} iR:BR@!3OS9=31|&Z(pfq`.:F4@@> Fm?<z:## .GTA1LQs_t]Za_3= 5? {aWw]z<u3{<y4~0Qw;y_9k_QW #6~h\j?S47pem=ahnHMg \5F1ZQJ;c3o\@1 V@zU ]K N<\*< )\MlMxvw} >P^W# S& yvy+`\uj*t4[ 9k??Q6lp VskDsEngnD|zXAeGwn'[N MX?X STm 9 |Mv 6Trf~ xGk<((VRAc) *xBDPZo&z1M++<(s&(5a(1LetKa^'\`9GyC.k.J9lQk%)E L$s(h$3z3#s!7vz p# h N4u` ! ;58'U;|Oi%c*\SfHw`eTzH<L-hP+o gXRK?'Y ~ 477 0Sk& c  }O |F<;; Mx^{5UUU7od h`-0g! #>* ocg! Nhhs|#>0-<80 Kh(K(^NhhUc|: [ /aSwx JKK1gZ-tXl6!(\ 7(J3G C0|CfP(r <<s|V8*3h49gG?P>(\c^'Z O :h))e~o #9#9#9d??t:3?J?S? 8 prW.R3^A4rP;k.nWY9_x380LhepI5jR:W]P]y spyWU6R a]*uvFFe7AJb(?HD+KKQJVE/b`ZY}i bEpl)8XK)szsT/x 3ABF0?c:; 9L>Bj@3s0m-9>C0p%/;>c`6 zFEgYtzTMAt&iNp@u t iL=B 0##= T1s9@|J8<0+Q:%]x={_0lI:k-:Tsv7]R]qX1  f t73}Oz !^ <r}=z&r}5y8{440l? }F> s>T:6?o7 ]a} N?cya={VmPgdp{{$|hdA* DZJPAy}\UXZhU-bIfS.5v(8 N 6w|C{W w{-)2VFang AXZC -q[wk6|M6B;RoT[> gC;^g*\*VrA7}zx<~{PehFm {{!OFOO?}h6u& M$1Gh2Bc%14B;5uJ ;U.z] 3ZY LfF3 J0l'X63iGyZ<EsF:3W7H(w:H=Y-fpq2P%;>iS lD;'TmvL>[1k :@3s %r4?u!X! EEE999H$69*^ ybbcVVVVWWq&''?(2?': !@?5 >Fvk$tq|C< HIxAhq:$ oGHA ?_ C7|_ZZ7e/ x5677 %uuu6fYV2h4> n) dXSF?M9NN_~Yx0 {77;8  b1G}k Gu&{QXy//HHH?oop#{mE0kf} z?yK?1 }o nJl1Q} /<4V3|XhD][j4csj9Wj[H+++q#L2l gF)tyr 80+Jq#!YXa] \H<]DM >.d4BiE8?W@) C8:x2[Sg-\J; :'[C#<B3g3s23Hgg\8H3Q:-ZN>gYGp3z0LNI%L4}1_wJ|)46#=L!FLdvNO:3L$&4q< u5Vt[r Js m*|my G73}z.#oa;d<h`a1#\_ |5b~A~ Bsk =f:pwmj%+%U+]00g)7~ CA'={XIf6?:tQ3y80&H 5VMp]k k(|) .[0]*7 5 & qV^rArDl|#J7} ?GB^Fv ^[hPP]urtPng+d0c }qG <zgJ!+^N+!A A92jkdA^)lb [}h6Ma(=bjLQ!Q653b/'XY+i\*0l#h>m4a'^p=*|fA4N@Yb%7P@ket3 K[XfemV>hULnO!=)=jS!Lnwh;70F)9A 'wQ2IVFeTwF-D&`EqgD<$==B|f CPn7.?GOdb2zcN'1[vVu -/kv7ntww aCN(|f)hq9A'l!AqYD bsL`|Y(0e>'B^:G MG5&\T|Q:t1>zI 8/_PU^nrl6G?GpJ[V+|(-|Pb4g\077'n^ pGK&=a ?(Kgx[ 7 )L(vQ:a1g+ ~@xXg}6;9#9#9Oyt FxK1 bx<~8SMDW.4P-yu*-ovQ3W4^ PPwDtcm ARM(kP]]WUqkLKS Q`UY)sHQYzR|C`j=6rQ~ + vC@t1GaRl Q!C\Z\T\w)@WW (/ 'ptv!j.C KEd;$3 ?ggfc^V2Y)gfvLl<<R`ZgF7-+= n3aXgJ:% )Nr969 M9dfQ|lf 5U:s>r)<C iiiw9+8R32053QGgcmB9e5b-<+0K^o M9j~W w8+M}=pL1SG/Ga+CO:?dOzAC=W +8)kSD=MmU+Yu;gUi[JM^5t!& +sFI+y|svX:f`wL^c1r +.iAUs41]z\Wa['w1N^o5U^~7c =5 7qtM pA 9CSB7G l{[# @7 nPhy7`7I=7rW|}0 4ocuu }iP4Zz!)0I{(B_|eL&u~-  cs2C 6YjIIf%PoV3| 4Ur z-Pqe]uRa%K+o; ] |^0u1Yu<Y4mjV7#f54vNk$9}Y89::gVXNa1y3NsuJ'@ 47QyXv{s wAm}7a9@.0kK#j+ieh8Fu<>=c_'+++?YV0 [t| '68e1mbHc.F6 ^919>6>  bN-!OObpBis| >&Qwc{^KB^?-'5R_jb}X}}}18<77!dx2q8 z y:limm3vS;/ 727E<|o$g?|@ kd/ua;K/O??%?t'Gr$Gr$GrpR$|T(p >''cpn 0?-H/PS}W|kWn]g<_)k.*G|9}%J/` P]w5BnAA7X1]_]XWSWYAj d#G`g<T`.r +F)3%y>WUEUe9LCGEs!JKa<I< [ l*Dtan)r5f-@n3'a0@4 a<0aK!^; tVXC:;+)4g0+=A4sf!mF#tZ1Y?KQA@u*i9LH95ZM Cs1J#-\ ('>nx f;t*6R)hGe I8}t3N3 ;TeR1BI:oUX[W^xgS{q w5?ks<jE^a#>|=|<z<|0j'G<_ }6/m Z>rK+ zuNM 1$5]sUKZuQf. wYZflWMU|] ]B}^D)V2G+Zdp$Iun=a<lSPv L)]T.}^SLe l{u(vk?vRO ]CAW wl^Nu^uoDUnS; #(h76ma/` w^ti18ab(*o >NVox4;u6 @.. ~r4.  mz4N&gCv(E3D8RpO0&86ub5K<lUtShx^' 4irxY ycdAhEsB|P6j$iIe Zrh$~u4gg[pNgTbT|& [cX %=j1U MyLy37FX;g>7 &KoF\Uwy //O=l9<?W #>*SG?w/:u 7o1 @?111??/g? 17b5G vNh=oof8P>YD t cHb 1c s ~VU8'z*Hb O*5s~xt:T*JR03|>!gx[q9^ Yl{5g@777 aLWSF|B!g_~ 1$9^YvH/{x? ZZo #9#9#9``Q Q #[^ykd|8KBv2 7`acC4Lh455S5ap2kzg|P*oTy)/(U.;_hb `>8_\Ue' *-% ^V\[h'v +Bx3/-D\vU6XZ((3LXGLU9EQ ipYCd.sj<ss.:0LaTvtd&Gb4D)9Hf8AD 6P8X4qTEq9i60Q8p1a/A3(i& f=Lrh TS)}}d.3>f_8{31L:'&6?K67]#|@c[sM> |gopx y$ > vI/|y l???><nC1K$kN>?/VZC{I1m#s1jX&lA>w\ u O+um;/Q+P`pazk693QY6w/::kv[Mp3;I+?Yjwg|G1{RpvE>V 8(0 vjv&&Yp.Y7bri!; `^5.6<n *Rh3Fn$BCB&A#>h6:PL+_l{gg 0` v!Gocly1gfk$t#-0<QZ= F .W6>K6hT3Wh{EQs28dlXV 2B%E;E/cNsF'J0LyF)hbcY!fyIS)5h9lyg\yX<hgL>Qlv(@LSzv|yHxFVB{O=yFvL &xf{W?.]t-Tj4}>P[699)XgA C9cTmqZl~?h:#GaQ2Mc%49AcXbL=?!)TmmmvJ@ng2[VTb{pnn.>{^?P(GCYbpYnpl0{w(c.{s7Z)SLyy%|0s m>JYk t|9>+W<O O>N+Nc!d2!#4W0|B(o\DbD}expuTs\Fb]L>7\EHM';4g*XR aM#h&Ai(G]AUb&1\VZ[JA+QW`s)7s`Yqa%F1|RVsp1Msx.KsE-XB6H+DQTXG`9'9 xFL)Bg#Og##YXVHQI2g6 &aI6j=53|C|IW!dH;s&1 sSg2ay rqX1(>s23tV@FGx1\M2ta!^0i$NaA4D% OyOv3N^|xqL#2`Ijn_d isppd~=7Ta__ =<4X~IO:~9dQu~2>g}5<}z0;VkXJm6X'Fbc7RedQ!UK b~RA jE}l v4a}USfM=+fY?9JvyBPn5&Mn&_)v Hm>KfW9T a8pV+nW2mYv6o nU^F2P1;>UhDGbE-Z vWcj:`ZsbEd@q;`)h9P Qe6 g#:zM#!C?]g@W vkWl|0Pz:Z5dhpr NjmU ~S0IWMMok# >QG4O4L+6LTmPnx$3` BcE Lie}36H`Ni$ x#fe+lug;(uLL(Z'U3$RAgL>(E+G-~ E3n0Fv_`l999B uV|L1: ?( tsFFFUU\gqc1#9-YY xsC- [a19> Q( qI_CxcB0|#!b&GRcQ$xErar69d7\[RRTPPjQh0|s?Wi@`Y?vwg zCMs>?@Lx86P)G |BoV _Y}GHHH`cT F*?5/ 8 $({ !|*/}kWIq[o]E u@s!&kp.EvA$X/u>7EsC]KLoD/G-^ #45jk9\WYQ[UAgt8JuqUU2Xn@]VKh<_Ktt`Aa9KxUh{&L;tIYqs((PQRnp %T D3P:n:]XE1 ]Hg XV\9!mP}lz`Y05:#=%`4Jp!v Ap2./x 5N :Atvea:3jdg]3|NBKG;iK:tle:-)'O*_x IC{D#_>/o~4x< zofL>?>-jA~a7cF<` F:g0h `'/F<l|C9d(`k'sXN6tj5yMVlZ3KGw?w-]mF9g5vwmpGLQFh6&J(dlgx^=#>Cjo5{A6h-EM 2a[5a;Ma;wN\AE>f(?h\qWu=>Cr^%!Y7-;>#G}7myTVJGA~A.80Fn VFVpl Y{QIng8d'hvBOG>oL6[vkUXB;[( Q/_{F5*8^G%;7-WmJ-Fm-AnpMa%t&[u(VEsg=YdmpF+sdZ}gZ<s}Drym@HY9Vwh;gF s.XN[-dxT v&-t&01nE M9hao9Dg $3<p soPCycO~g9Kt /y>d/J{^z_?{l]]\rmpVs0|Z ~bZ\D(ftL!c1#>fbiA:#|#$ >9b  R^ Zb!?G?- %jbWx~?zJUTT$PRR?(w* dHo7 7`)7?;Nxqqk`c-;cGUgrOiR !iHHHHa~3>Us~9(gw6b`dxtBO>-|< ?Y8n^tlW/6/76yltiYh6#jn 1b=dGG}5k+5e5Q\u;+&2v.!U1LfqgYqKZ?cpRPv($ m sA>y<msr 8sn7ByY Vs4^s))OD|x2\g@gq-G3ffu2odDNxWF6RvKg?3b4ut=3sff45MinALG15WQ`G7fF)T?c5H ucy7?=boT?=z2Kw}G}<\lG=O&G}_aw*8L|6(hx}|z0q~gs]=z&Xd{f4v]uCVsQ'Yw!Riu KeL5w:g 9}Z)&=O #ptx9M+88<c]t* ;n[ WT]jD.M^S vi6<eo-l3G 4{XU}Z ;6}bXsi0 Ht^WWYSU]a1aGu{aFQL+P1^rgry!~^75nkCg8\w(0m+43;u.dYV({%w4O==urAn\% &B>s@J<w|# >?92$uurwIUaek`{-h'22djk2!gzR1Uf5)ApJtk`([lW-;.O`b my48cLh 33h:u}}l98SoJ37XpZ=LS)]R M-u M' i.c0z}o(_'mM-MW 9*[o/\T~ =uvRz/Us|&ig3<sUTT:uKW\TTV@IiRjJ32&D M)|H>g6 !y{{[8:CptF 52x/S5)3y!  DU o 2 >Kp /jk~Yh4re@oi0#I.(! gl^ ay XMgQ|nx^SwwjlL2i33>}Z/cv[[[ L/ yu~\Jv%wyrpYPP B5_h iv-M[/dtK[%B?-MA3>8E <` S 9h>q)60p=GSH#9 )}85 >R')<^##tJS:0j>>B@ =AP8WWQsMWWWa^ 5`3` Fv*oy ^:tGWWWWVQEjE JaYZRA;c]4U!D\VhBpv H r3]R.$.6n1=\280d. *F|6 PiB6{P!Bl:TR X-IY z5]g ZCy-]qXIyg?P[vpr(Kh~ 7wBozx`ucC #C_z~~?b`[)G.AW{GmvYw6]jS[^ 2~hrRhLA/rAc0EAelV;7Q2@EBK'd5N5V +W=h~Xqk.ephvjAm$' n(Ri#b[TA3KF k3=5_ ~SkCV[)*$^W_Np=~ YH{@&M) aAf uC]swM T0VG]fHXa0uoXqzj|~Rq62)q1Ij<c' yr?9U.h6]M>A&gQs/HLq} vKTAOQ41x~We^ J K6 :l]zgt]+w/pG:k6b2y40og0<8m#7k X+] :] )EH fc;T:I +Q?# UGdm(?p\X=_>.)`v9E+WzW^esGGGOOJlpUX&f `o-3KiA)vC$Ek<#?&eh:#a{^AKAGn*wuN*Q#9z?K> {BGHJp {8S \Avf3:uJ*..Q? %3Ga?a l n|>?}?766Q8=Mm?3;{h nTW0{@./(|M||||:`Kz:h ?p9gTZZ*s}M5 lh.5xr+*BCT^tf.Pq4Sur-MqsgXa'qp!3k NRYn<zE (8qhhtl:Oq!cXj$8 ;rC FeOu08 f2j?X@ uh^55Ame8j&P-JN>s 93TdTXVqLyJ *3J3(\FX83 i+H7Q+ (*((T2%y* /?e)N3.)**N 9&;CYA)e} ]f}\@)q}6?;uH.$_c} Vv\s=_N|=vvT ( ( uM7/oa7]s#QG#N^<4|?ttxk|vk.KPB_+7J(\hi`;bJU^K47zg?mFY?jaSg]sn?#y^0#BiCGzqfOw.30aNLVBf0oFl{3d`P Ya{g@MW2#f)}]0V] !a] iB'EGsqHno- vg(wy{IriQ> _0ls12 Le>}HtX0 YG kaKjn-k41y*w#CUX%3DsT4 yQL#9+.1*P&:xgakXU:s\-XpaSE+.aAeqe)Eg20c2vE1oUZs 3zpe0]3)Mg)= ur)t71Mnby$ io:n*bY~T%|@@<2<xvZFwoT3ei'T&CzU#`fSS >|KKKgggwwZl>P@gc7B(@3jf 94PCKsXgE )|O-]v:Bz(B-*-5xoo-Awfsmaa~]o<^~S_\p8 pV`0\xQj= #g> A `JDz *!766|[Q0C7-[|Ca1#Y>gDoK Xv07mxA~///ooo ~9_e|9==5Wpc6EZmuKvHKiEcE /cJ8;vki3ka^s8t \&Rpp:NAT 3:~ ggX'A)JGsQX'\up:Y5Hq c5 ?z84'xI*8X i?su 8ZWg~sYi %k >d#Ust Kj++\iY^R%csei g^]VBHIEUPt f1\q\m[. LV$xK0\V 8PLI)/#)G ma= gB4 )M~Cy1q%$8rg5KB0+ f0Mod/^ \>ZrP5-Gy43 N az7w_|}vWw ~q;aF]?{ }|Ca{~=Km4w=-z*_)J8b$tiWXdqy?Gh`Mhx6ctshEd<QhARg$iuYm<n%jmIvoX S3851jkYW}Fo72>|[n8aFr5D VHXg03ej_*^e}1({caJv#h*{n7CfS5o!K).0O777Fo88GMyl nMtls7&NJ6R:[+_ 1Gi~w>?#AAh}-`J`[MX)hXru+-zr6gC _ \+vClW*`9Hv qx=hY5^:V'Xp&_ P_v{WUWYM6c-s6VM9kQ.{`g *aO ?#v6LQ't]NZb0 :1J;3s&F;)I.ASYtr/UWW:p|=; kR 9 O??_MMM/_h46jFFFnP)4&RRs6|gpriEgZHwk5gg)C`l tUnDv9f&u;vVp?1!<11!*-..2Vpv!pRA\.8MFW:Bpbg~@xrrRgbI$3b d g=q}'5~u %R?5M#;3?#Ga1/=5Grooo sfggs':i35\YiWZIL5fJRK/pUD_: W!5H|FLE Y3Mis3$h:H%a(vD4pf0 Mt  n '2kQF#|F1= J Ts= (5jBG N TisMEy* ]]uV.+=RS0 Xp!2|F3eWS.i3y3Y%ysrdAG95v!3bC .>t Xa*)bhkN8p9EhBX@g #&G1Ob}pSi.J9= v8 |} &?8Bo|S}$7 gW.O? _OEgSofvj]='BX;w_|q;a'OG\`k#a00b0l{ozg|vh6-'tCnWYQ}o9Ot3iW$l]bWle+ #pMxfxQ\0 QlpkD 9]TWh:0w!6AKT^dI NVpQq?3]`L@3Cd 1jN`HkZXVGlfZ4n*L8Ciju $s!SKzAVr7b^m0 mMIf^s7 0ms-q.~zzw1dKT|AkQmbz[&q37v`}nkC$l$`9%df&249fLna19 7H{QnB Kuv%i[.4Ycm5<j>oB +81_Nyr\p9 EOzfHT| {=S;4-uM* yVyA9ynei.{Ww==~yqfjg^&#Gp^khhxbkkkGGZf ?@h{Ky vCf)fg)|0o@ 9B?<N|vv6)Rfn$P @v.>(=r Ssnp^xAVG 3g\vi{zz^yg<Duj| ?(0|:a3p&6}> <5|3 |~ O-QZP<# gH9N9Qoo@7~H<c g>A| >z----?+W{A;_|/gMnp:8&br sx6m9NA#xMZ>h /=C3h~ft u)\8}Xgjvvk -+`uW@cgH9 G? E/Q?Q@4*gHm8UUr9:M`eQ!2uh3fg>sxd dL`QYqhqPE(+3<t)AKJXQ\HjT.I6XPhR=v`ff0+-(uR7:KHF426KKH/*b\H xxU<$)#]Cd(g<TATngjM0|v~~p8e.W7~DGC|CoLbzr3govnG}ppv[h{bgaa> 051s:J6Xg{c/a!6nSD >y`t340l's{J5){X0byN=FT^v/0`Z`%@>s1 &\=t@2g<'&D!Ko\Fn5hIlY[VdgbVgX kb K>]l^ +~*<3<d>Q!0mS&_7Gs*y0NzuIq{v7l[ub Y8`{CfocDo kAzmoVLkA# c0` 'zZNEp6!!l?i2`IV1MJg3WDw4 d fz*6q\ #4jW]SF= v*7#gRlxY6oa zZ;s&*;h Csi9 <@A u' >k&D@33~6{(<2o &&hD:qk4yD>2xeXo \  ] ]t]xU[JJJ :$<DPw%%#t#Xc[z=IUUO? /':;;e2V?gxMM-icccp QyPl9?g sFy7 cZ33we?w; QmpRnq?-aGynw@?#d[z;w3!_1$.Q al6)#?3 .!6 iAK?s~X4Kx<bpRo@'b?3|%Y*'7v?g o9D%nxd v:H y||||(T5\v Mw3s B>%EhP3A_lK1|y>u .; +@x\S<=} S8T4%L5/3y 68o>~q4u48rB(f#<m&|d! ]uD9| [5U9\g$ 4j70M.hvPt z r#u* riZVR Bdu*G/4jh)Lnw&Q~Br s.4ySgD.F\p` h pRHKa 1!hXriI 3xSl~.q q4z3`;?bg2{4(d}4/%Xv%^NhC Ai/=T|~1 ~89h2Xxk~;3$V|4zbS;o&B_ =?7n>g ~Az~D> ; .N]aK/f[U}MBefRyDgQK~L]xu>LkaS%gV\RuN);=eSo /zczRI~;h]MJOX9zo27X % Ya-z+nDsfSa36TsNO2Qu6Q#9dKLk5]BfZ7Bu4ij'$Tmv+oaMa 7[+Z8(3 kfb.W3\%3>u5l \#FqrY ?I%(NiI'F !;0sQ*P j7%&F6[ov#a~.:$PD EYFMO] 3Lf}A 5`9g @U6o!j6`/f 1gDzD1=c4v3{&GwbA]> 4g!|r=B#|3#Sz@G\[[H$~==Up'?^\\_< /_W.t:amPJ RF<  hy@Kmhwc{)>A3MlPg]P qBl*qc/q vh4|U8TuyZyhh(y< iXT*Cof~j!?CTe~ PgBFqu9oSU< ??Q|]7 ~My%3Rq=&_jd$w[ _P( !:---vk|N\>@Czy;-. (\pJ` 8bK<_ 4\g2as`Fstk ^lB4l:{ci;Z/naidT3 & & <<gk c} rRGH>z1+5N&' IK6p5<38Z ? `hTg6R[5\Gj93YQMUYL(\Z^ZRMC5UFtQauEE97NWR!s+Q]\Z\\Xp(+eosSp#%s8!rhH1!\e(f)4V x/600s.!/G]:N(5+u!nE ==_.c?rif^{ov& ~==(af;CnzD'B|xm}_nD?tSOF\wa3sj9uz o;5MnWMq aI XYY1Le3 Zds:dCoFGfg(N9#dcc?'iugYlY2A]4`-B<S*;lU%J!5?&uYe?yiP 3I' 7]9oWD=d6Fkx A#]ZX6qla[KZiOx1*@qv9] !z+N $o-5^:eF05X6 _ o8P oQ nc`kX_% P:z4 2Bn\@<G qu#1K{PbJKUcUNx+q cx=Q `Xz q(5%X01IcZ7mee`73HQ f?Oz'w4 /e mM' Nt=4])LQ9H9P_K~^y)'O?]YYY]]~kkk; [8G:EnE!{g^|7xd2^;gc||uU M5m8u w<]0;{;o`n_I{#^F:VvBKkODs |lEl? #GPoxDv; HZo AtS5~g!g g g37?/}kll \ )z 5Bg 9*f ^vw doooo+xx< 34\R94={[}zr;7\gGrbil0t79}KRf.Gx08Sz>4ESFY=cT' !.l Xd<!GYq8K678p(*;H<~ 6cTF/t:yi<R[Fh:JD5O7`GkYyu Af^]D?UW.+.t%a>DgrV yT7LTs?Sy\`:e%%|~T<\:'9JK  x.rc)Wsf1Y]LAhf$ft0]\p@JIMQC\p??! e6|= zz37 j<!IhL~y G g7<_wz=== m]a[W+Da`eQS?Ec]4i`Z}Jf]78Ai]:'5l>gF.B+sy}ww2)bvU^(dk>c[ref-`>u#b[S3ocVC5FPWB&o` W C}-lO$0=[=VG % E]k$^ eo0QrC7C y5^WTVzT=[mC3is5ln86#_;q'.q}:~C935DW)_M1r lo fsQ'1`BKgvX0Y* cKhWK:Ue [)gp8P1k1`_9lJ; )Y8\Mm^.Xg >7vAwqmcLgTmpo  % # FmdJ5b|_N7wKccn'9('sd5^ob/oy/_z[Ps$v#hq88 k 9( (80?3swtqUH>s 9Ie.a18-=3=`n; ` ^b?zmmmSO=uEp:EEEPN8#.AzaVp0R|?ofiiXKk6x*>( *B']N7 9(nzsZwGF/e}j@k?|||| =\D%>FwKLed/?o^ljz;Qv-Mp3$<IBl 579w]<w\#Jb Bn43SgN 4EDOr3k: d2l I >uK1>S0 l8~k 6jXv'yxZq0h6 z8SA*2hB555pseL(Q 9 UBwl(*8X]A&K0QXxEM (r>#CrdcM/aa*_H!KL*A+O.de\ %f.jLF0m.dGm3$8Dk  tGQLC$`f^`3.8h8/#ZTy8#~49(o Fh@n<yp7'B_xpX;o?QC#C^{ .;NN]z+t9^1#6$n-z/z?G-\z5]tg}s)S)53hVwM(N IiYmyy fcTVe^q vukKNM8K=T!BIvk[SaKLE =A3XF?'B[?gU.95 } Me^v*E[h*TJ BSxo-o j`k^_4{0oc+b]{][u{5b_a5oET@zw+^ ek>d]Jztg+$4i#i @ :n03V;1r51XvbnM7D1[X/cWr /r\vXPC^Sh[dfL8/r<3>kFyinNh{5]T( [@ 0PgB=La^k;o:> {h3u4 | ^e|71 3+)pBW_H)})>^o6.DOi;Fw B~_0 .]^T*u: 89Mg|$SSS HAghAwc6gw?(sng1C-b Cgvjag)y9Ct)w+#;x? 3gH/B\Kh8~FO?-jrA{].j5L5qaSZZP3g`6fps~~ V3<5 OHC| 0#t gf 3svAiY3 K fhUx|M^rLooooW.+B ;ub\ r9*./[)~- m[vm-ipT/C.G(*^i%~opAtn:q'9+%3V$<<'i8yS.JG&:Mc' >qp#8r >I7Y Dav1hR:4Q) Je9)]]g.5XKRjqTv^QVesE+DW` a2.JXQ*;iCO& GrR7p }&{;4(2xEXWHC xfniR9Su}A{Ff)M9g F<Br( lF:xb!a:! j}wt_N qp91xzB}5dhm/t7 vVy'nz Bk?VX~4l(b8b(l(d71M|(IY8i a\)Vy[6}\vpy?F3_0:9F7gFK:IMsZ)M sB1:.oUw-fSUcFh\qhVCNs n[S:hgzt1>3b <Uakg|WBV#VD:EkGaF D`S.;qC.:36_|c-hD 4@ B1lX~Sy*[h6U:R6)9dM 5I o:F a0OwoUAcY%9d-J>cE[u[Zg[ui%#]CVCD6nK ^F? er8]V0z2e=PK%4Nzg }44f-E6gSq] 3I=u]cN)8 q}OZ7T _PvTw^Scxm+Z.-O PEMh---{nVnuncsmxx^b|K.uttT*Nv~$ai?K0 0zk3 X7 z<mVmdlEe\&kr ZjoQnHjwy/)huO?@'# N/bX^^gXK 3Cm <h4aodZ  gW7V a'. vw \|pPO yg}:9;9[}7:---r?p*sOOO6N;~H4v@9| W/p- 8&[!1fc&\|#$h:{0g;x AcXtYJ>M<%$38D{98}D#R1:NRG!wF) J>3>\H1 9Ij>]K3f3sfD^lT23QZVm0jaFmU%;7) ]U1r?VWX0]vL Ief= pMTp`(2(+Ae4r: 2]XBpa(.*8pR. +qZ.WrADNjxl]Xxp?zYC5K Mn x H6H#f/c5=5:|vh_MEKYo~fa W'h5hCn?hk>}|:b{pQG?> lx6d9tQuwT!flW$lLgfygZM>g </oF3&q0t`sByuBIU{V52hU;fC? Ct8n&Ty MG#\>*E_ Y80&1l~}<dbWT<:|`3=x1%~|j%&R-rZ &p EcF F3bn4nGp)]TWh!fXx4~zOG9yss-)aW $;2u~CLzuX1h&jgQAvt`:B:/9h7HT/(c`h{ wb)IX@9+~J`<TESi[[l T|XMdSXpy0@@z*:io*gs~FgL}cq j7&?N{3o:pz is5op t;#h><e qsO?%CTUUUWW^:::~{wTy0X #.9 g}tSS7T*`3gFh)y#Yh3|TE -]p}Fycn :X2[.IoJqt61 *l 3)5~feg pxt_Wpc >}Z:gxl0zpoX:;;lP)&A> Bf)j(<Sc Np>=>g9AkiAhK cGqptdss 5a8t'|__ooo?Yj<OYC-:.Mg\*A|j*}IK-yfsg?3&)fAX5=q$p pLZq cIAN;S`#poC(Qk@Ty=F5u' \St3&kP$y F`MR@s\5Tl(\v: sEmUU*y2&E:HhMNAc&FL86[FdSfJfY4[K5ZU= uxryi)G1n~ufe4.Ilz.r%\E<7~~s Q^L8xSTw#M0{;BSP 7!=2DqWc{> v[? [>__Q- E [Q}<(-z\ ?'QucI} Ic?8 dj1o_0#Na0!Pu)'<O)lWuL#Qv()m0UayVhQb<)cv + mNvQ-B1FqKLQ!3}%j` @ F Q~W ~b7N`hPSTF]S=RTIv-Hy0nR-eBxOzuA*zIjZ M  fa#`OX@j+b' D bZu#=w li:#XKg(rn @Md5JqnzG'Kp9sUF_h|SdRG~1w(\z KvG([72?cy %8c.}5i`B=M;sii ts !4 uti;yu{yp6 .4VWR4|o.+. _@ Z__{v+s#G >i=6JYnK/]\xS&T*r?k3&0XXXtQHA|C4!g&l@MJv fK -.Qs ]tn;l39 Nd?/pc affD|' R+W~<b'H| 8MIX ;044v8 Lj_y #<9B!Ro3D0  fC. G-{z o?M[[[^w{ZW9EsHr<QYCX.>NOO/t- [4w]F)[.6]n17_8G`SXv hIWd{QFK>u2a|>d^4([8S< H|&Y|t#2vH]F |eSt%\-%qls%{6`*;WWrX4Lr049QMnF /+JKET8t9E9\E+P*5XR&L>S<Ew)6f)?!dq-3.J@ae@2E+~`J 5RJy1jCP2hR ]l.@5?kBc9>jMx_ To5g6opgR3O7X1;Gc?D5n \|6xv?`|Tq [? }Aa mMwmv+lVv);U]/[tGqW 7h00Gxy3g 40;>5z?`|vmF3T^{Al {-C_rLaV^tLR@71kd/MP:#hb4E.7x2-z4KnWaD3lM;.9 6S+Nei nk![U.PPV}z1b*W=M~q'~5OEz][ um; bp.{aF|G3kd7M>k d5GJ01O/Q55Q75qrweXP`/P2).K_/ep(:LEe3)} o]1Cy7oh \#:t>3sP[vR@w!< s/~ ] EpG4 D;{vsUU*~(J>!)gy6 ~fz)?WTTwuui4t:n&34ictJk)hi.M<QmPs#[ z30H|;ri)5s` 5bQn/)m{ Z~3a90oG zY(8ZPP? a?/--GO3FO CYK(+2<x:?3v<N#?#;>s~@@Gp7---m// <uuupUsj 3>!J}kpv^L_x-]WYv2J|4)8?cy3Qq^y@iVm\ }XJn42dF`)NO>%<s':yk cGP {O CLz*)XcEhLjGjs8? 0ngT: &A4[G ;Qh9yiJ5eu5q8CIit45`rRia D%)xKACeyWfEYKYh7e&dF&LKY(CZ V-sYiOTBbbtZ)X #3l<&#4@H7]r?XB?)C~joWofE k~z| pf|F|u L ~y[]~*{ 2 xl;TwM|0KEegwQz/Q uC :#aFpC3B VTwOI5 qFo3[}Z yMcZyuR>:tzzzL%|40G 2Rx 8.mZAcJ0oSN[c(a6 ~^riV|8^GXx1  !>oXBCcE;g {41|2D3MQ&6&72U ~}R')6w*3F 00v&l bg9HX#3R ?5CEFIWzN;*u^F~^@x%]1al n2sL`!B] &&Z'lSy)KP:uV?bg <;Tep28gQYJJ`)535Gw KT=k;L)cAw#hd?7 PKDvyT~Et<Z[}-~WkjjENs2JBfMv]g$<wOo6xgyg+mmm].W0?3ChiZ h LOOf|CgC2gi:G YB3eW -'<K!4cz/_F5G4DgG9?8O7^>^SN tP(zp|eeg8!#_XttC_;/_x<gKsF d5=.xl6 bajlo?jy3Rg?Z|cal|/ewd7op?|||@(k$iI > V2~O]K\nx4L{f4#kk$u`lvllf9D9`n[RGr+ /\^xeW^(OZq78u ^|gjZ/<_Ws [(aGk EATmPA>-4| 9'u< JZyD o5r& 5Wj/TaAn)XY*)Ts re4%0*/KQpnXVJt:_kY(AHuYQYZgIbYqqdAms#/2%2ZH\HrHWRTs\QA~>F)~<0X.:|yvhZ/ (>ycT rX:o` X\Xxx!ED:YLb. 61 Br#}\Hj84wQ BdWlh:|'IWk_cyyD-F>_<]3?A1Z80q{mW8h 4=XoA=v:\k5 r-}l(tgCigdKmlSz8nryXMpxA4/}Eu7dsWwMI[''%-6/J%usIC ]Utp``z\6fP]d:Tqi :} kun'`#~L;v*>[#cz9XGvfma@^;uiX|Rh37~ o ;atc{ cW[)A4Vzt! a; 8`>TO0inmp[yp5Es(d4akb#\p w=pw(ec K{ (R2#St; Bv[ns7wcNyw/7ybQd XVmurq`&_hI5Utq4}}s 0b]0I &\spR'N#mn wPT|0%$mJZ$__*' 8fsO'ECX45ocUYYrhZCCChgLsqZi :2k82sZ9--4mf:qC hZjX@3yu ?5aL %#}W3R8G =~f u^SS<yhxG?k <9<N`0nl.))Q >$TigQ|0?_20k`#ccc~Hx988Rq$V0[Qs3a3 y iP:> H ] ?GCte[e[e[}OOuuu|Fk+%bs 1<\}6:77s DM:\Atd{Ai;L7P1 a5j;_n*Gn5H/!& FLv+UcrDA\hB'(|TU}BLSY(-XVr*bAm. 3[)H`u)5 Yg.g*/X 9%$EJ9L996rpQQ XDEBX X^:x;yq7 #3INP@Zi>8 4 :-99)3s d 9r X8s up' 4.45Ar4! H~a? ~8| ruo'ZE &Dzg3`SC xA> |4{tI$d}0{tAA|3~}7hy7d3? 7rn;Eg%md$5I).n%kUf^(8[r%]w5/1 R'emsyu3mmu}Ajz`9'S/(V}kfi`(r]%CY5ZQ80XX)!} m\MncP&;EcCEMq-aXJcNGF odkvKVm;v U 5Xqeu>1^>~ [!e>|DYbf& 5~su- a- qg zWl0'b|!KN);1i$vbEmkC-n <l Yq?YR> a!-|x=@; SC5;C skv*P5'] dmf)x$b`.&UFR:Aq=yc?3zg( tkLy3k9s#o3 89 ii(gKxuz `H4;Od \M ;wttt0/y7ovwwd2N9=t>VjX\\vy#5ASi5%4 G@Pha!8%}Nu'ItSsfct ?F^O6xX p8^Hj^<C(Y#I\ Sd5a#ccck.})h$RXXGwG~ 5-v&LL<;t @~MN{X`0?smmmm8!Op*!wV:}94$P+- vp$tM7:Z[Zo\o32fF#U : 57(u6^#<3-Ws2rf55xF}9Qs:tm4?S;3|Il3}\Q~<1(GGY Q_LF/@LiJ?'g&:uF\c fR<dDnHBBEET4<^p0:I&1|$SJc]FK$MP:?#J|75'=9 d.`@$#Iv.kj#[&GA% x3F|ws\0#pm yo+o~YM{cC ?|x>7M|>8 370B>Hg N{`Cqg Lxq= >q;=!!;A~= A0tM&w\U'y;7MIn1P3 L*?2t->Xkz?Qt)o:m}M}MVkA+:/*Aje] z(YElDUl]9XT. AK=AtP.zcBG4o!-IaGOh=N9.GZx @r T] W8 a=/ >*}}8$>|B 0GD:z} >Qy}gy2@1 5 D:!T+<d8` d=B0># E 30nT[nA2s yhH2 xX two Vo`@bEx]U*gtdffK h+@p%U=jAh9t;rGvF9Pz3i]/W>U$1ah< %9+RVVo?MV8}@I>qWS'3vstttu/._/M&ng{gN{47s2gAy#< LE'7D9M!3T-I:{>qYT|Ni{> >g^L>? <Ve #{'H^ *s{W3a8)..fg6om4g9g?shhr1}qB|/mX99k47?s\<3B 8<g>'7N68 uuuY]]77---Z3g~oNct:!^I+yN2F 3F77p|nI='d?_W]c3JRAr%4x6)&\uR}mLVWV+6cW$g/\U^pAC\I = 3qPQZRE!g?s L*8A$fFiQ2V@&WN r 19E=\H8(\DD.\ \yf m3{9%V'xmQ &63>s^]sB*0{3'3 Y=D6N~DD>6NSs^:l dcHQA93@ ~Dg9 x_P wC.WZrm#_s-BCz0ihgA> ~4xx dy0? Rr?d~'h|oY D!ANvr[C T{]koe;fq`(YGt8_5Hu+vnpcIhmKZ}?/zu0@s^5w`S=sEu?+nbZcXbfMiEV+&L>ek luz{P 4172g=MQmdnMtt![Aa(4[NK5t7Xo=C?wZSGkaTMAV1(h4XFM Lh!2d&m@S(KvvgVz01 i\ b[#v! Z3aaktn#|57vhG~F{Lb::R<M#fcnb C\\+A-i7YgpYlqIAA9chE< E^BAO&];cc4)L) Z}uE9?7).^#fOv!e \|0Auu?_vG7 P0DcDz3QKq04hkiao g72KtjPs>qy>E|:g>q 3}RISJ.S~Po~Y7$|/ 9 OlQO noo_Phtt4#S`O{< (BmZ $>ig!I{>f>!OjXOGa OOammmm?pg5 2PfgGFF~`xV_hooiIgDy^>7hKhNZ8XFh?XwKCuog pWU3q\Ck %?# /c4*VK$2$s 8J|KU*G|1y.()y|v84zKKYV.'#tY16`btks%ed`s@/L0j)GP7j.3eHX|I#)3e.]\X;aIo0l= 3i5PXO)#vG :.EsRC `.*(HDX7B< >uM8a l**s=-O& .?|%W\r}kcOG(=VFJ7.8?Af nx0l{< B7E?o MAa--[{~>)l]<nUX;7M5}Y38 L5 BKXtK>X 3NSii5Z{/o.):d eMsJ2#k_Pu+:&i87uh{A)W-5+9&*V*t.~cPI5f}HykXukbCZ*>h? /jw}nxq3J$!\rijtQCM Mq !;o#ee>m| :CCii[!-$}&tq8Xu;RoElrn ws ; &a~F~8t EttX `\q[Pn5{(BXpp4n#F6> ScC1DCs3C2 }VI2dy *XmF p<:a0 \ Su* Qe'7Fh&@9 i_in$9sfrr)K 0vl)ckr g?sn /uuu}}}*Nc?sccc {>VgS- aj4 i4HeiP:U!f%*S%O@>6>zdj;`ftZ%8v ;Mcb >?d>2 M3vttTs9{344.e/ /F?3|>IidhBL X ^PpC5g)pp8(9 N+> d7b7<=?6 _kse[e[e[9Aw#)ng4o|_#)-36B; byyg{ LA4^ul65qonj!F[scK|z99|Z-;:kkGm:%r2] <Suk.]vKUN2|*{ S\ Hq2@{/!a()dH$qYTUepCw3\s As|ns.I8A8 =8tp8#%rB`A~^YIq2K~&!F.K .]Z\ufLL;Ka1AN2.p pC'Ag5H_'5cvb9Lu{$I4O9dEEg8 FX!!hDfg' W>_ ru_&fk6\*6W|'s@.?x>\&=O]G -w!A]s>  A~ G 9vU}[qSw(M06U@T$ A#UtISu{X)7'iIkFhHLA%QmoT3 |.Pe$fs]1Kc6 `4G} +gNK1l{[^#7P6]ukU&(3 [31vx 0Q!n.g ?;vQq]q{Cm:%3A~$+91{ |g:.ulwixGU 2>a6t 6F~ ;nL ~05:uu?b?q<yaD8<NiwP3C G/>~1-MrnlR:PX5ry9ej`]Bb\e8h X21mNpDAC 1F3csi\kPhU' yk(Yho 4]y]_{<>;;c2z>w`_ |[[[ ^xWU}}}WWWooDQ*pt:?=`llkoCE-&~! XeOB3|>>v)A3 3Op9ENOvuEgJLvRv <y{=zgx\.+** F8 fZ5.f\%?s Yg_fGH$Hppx8`C/_ ?FH%;M:b<`ISjbfV<]qy ! gmmmNK=S=qz`3:l6|f{s#gZE?w41fJ/754^370vfG75`AP4Qk2p0RzsmBq+^(ra$TFe TP@_B\^/V g/4*1z T*+a3d 1jf:Maf-?3j.!4Y\TDou gq!TIxr!a|*?v.`s I9 cZI z FnA^LaNG 2bpxq.@Y[!cz]-1y4GfS L=*oqsgb;^/^Yg)<k_&M~9zs CGG>]2 d>~pq1 lwS'#G !~[^=~xnp9t]4na`;.ST[%fY$[3Fy8* *Aiqg g] }Nqd_T_mQ~sQ9OFe]_T=f;#oycQG%%g5YuW Sm7B<C_qzaTniYMTnu=tcFwxF 0rf mmzwP KTp vx@a{~~2#4ZXH #}Vz'd yplvy` |N-t+`EhEl -|g p3cGm7dZF< 8##v\ p;C5]n KC}0@g wx1 -T@l2r{HiM3Qqgr+QbUClFWbQdE*Eg;%tV09sYC93 !7F7UDH  Dqsp/i uWg+**.\ ~g//-- pT'{{{^^|EKeeeKKZo[X_<x8=G K/'JNT{mY8C LAC?hS3.33a&Ne' ${|:iBLntZX4;gN/G?c3@4l ?C&xr1 Bu - W^I '?dSkw42 \^^^]]M?aZk' Xn. apx- FYY~>3fWw9ff= I(%r1N{Wrrr>cmmmm?:NB|S~VP aiq1[onUgvnjV-0W5~u6o45766GU D t}]}hH1oP-55WJ<_J&3 1 d?0HhAUyrHL$Rr'3fRhXR\NdIAm0g?pmQ~^9S\TD gy sQa_ : u.*VX@f69's.I` h%Ir>W3=]IF9l1J I:}% I&(zx Go< b~.qf<HJJq%d{OkZRD/gsf)sO#|'rcfWS&<t)B9.F`|sgxL > u>?s< s<>j6#h~7d}q>v= GoGlo{!Say*s(=j4K7LyFijB*hC$ ~^`yV}^c9wg<484/m_@59+mLIZq9:'\RvhzpQjQ$sQ<zgT U (e6CT:TKVMPTvyU2jC !R;^#v!l1<picNu~FmWZurqk9yy B:>~3 o.5 CA*5 Sn Hwj~LGAamxz<-e/`YF0 0m A>y6>9 AAaCw|g>[Q$% X3EICy!aigo0TQ|7MOEHA\fM2x5cA ^EMibYC/97zWF$/u1 = <G3W d7 V?(~Izo__kW_]YY9o99s]h< {r< 8SI?J|/O/755uww3601hLEYtr6hkkk>88AFKB37KsAgAf9MNi*8E)w>6}yNIgf|?cC]ysssgE.3%#\~n ^\^ MxM -UVSs*|bgV=n@x>XK g?H-Axl(wO7g<) _|_llllC>@|lkkS'`.12f[+*Y&4otS#|u Tj gY8`y3%kk`U]muWP]/5 V}4$^^|b%{YQ P_fn|a &^DigI3XIX%0*=_\TAdADerN8`H$+d#4.KKrf +$. yoqA2.JFa  Pt< 9.EI3slsuLN ]#tarw9H q!C3 e$Oi>a|ioX`5a ~`C g^! .?bw{Of>}YtR&7S957b_2E.?gT'gMyndpAz?d~o lx;`z'h71v< u;xgNv/-- C)v.t.]mxm$YHEf jp7&I4A#Y <c#nMNIZ&?+;ge}cM}M39Yss^d@'dZ5984%d^5Q }Kp/98:vVvM9s.M #vk/bP7 j@'Ux.>9>v);< \K9N](l?'ak oF CVN=[ ?YT xnGAQWd4$ 4D5acW 1<zx7NL;~)[ R=qh vek|&e!g/&_#15l \nc1Fef?y{: D 5IWv^ YJ:hpD: Vy*_kaisUUO ]0KL)}{R5z{9yB9Mqn@* z6:e#r\BOgC7]g(7[o g?/_UUUZvvv]'Uxy977_+TOOS\V-iN> =l3)M8zqq Y8R 3t XIO@v#S34X*Nk3)B|'cAq#Eg~ 0 ?'0i0k^|?f[YY7dpxGP(v6tE[6fQ!s&\7v\CCC`4 cSwT3LoIs>feB &: llllN_uuupj?b}zhH]fWWV3|gA97;6o$hq .F&>77`#L&U(@Qef|J5\pT|Y4Y}R-q&Ya W.9Yde|&]\4 %<_Y0o%((ti`yq!&/VV&k'sQ~ K 80%%s>9s46#+AKP7 .($F]UZT f>oT Ay 3'r@2eKw!i ^dp9{\/'B: x0|NT3$h\<d1's1#dD$%5FA Ls)V)4G ig||&D3!o'A1J4#9/#F> 7 v Y 8vKso q q;Ba;;aM+3|`]jbusBe#2QK>BCc cZ6!iacJ24Hm XeiqqR2+cN3]PN;1Qwjy(Y6@^QQ&@C.. -:70Rw/v8&;:o9Uk) kv6 Jd&X05bEBS(~fc|HU[]p3e? E4hoE0:L)]a?d w=7a+F]G# d=8s /`9!~2y{Mui/`4<p]H1R->xNo:Zxp9[.fWnHTPmKe=XTQ%4jGm+d^erl<0b<O{J= qUW$#K yg (Onnnii O- qkk;vwwWWWmqqTWW_~^^{M&bSr'%O? [?OLL9sp#tfr Lx D }znnN R#+++:M|M8:-Z*aN j7g Bczq'PsZ4!4>I4)vlr5zg^NY ] =z ?~ U(T*+?rgxsuN1_vM ]r>pAcBT2#rB\ +uPcVs>^zipp?7x_B!GN}$AcfihMMM?#9---po4<#=}zCmltQn7|D ~=9N*>[?X4j7ZIx29Dqh6?_F=yjj@p4**5I3ZMWIm'Eg* Wq*Vh6s|91JDWpbRhrAc//AJ>Tdq|v3#D]AFs d.(- T4Px6qQ_H(K88P |mb] Ki%x;E'C% ~ss 9' \4j.XX7d9pH&t.;V'EQvhy %)a ;:0|B}qDp\sF$~eg.Ka ' aVj|0p_?O|_Cby/Bp3M?6?~8`ic#w!~[ !-#j7=C#&~wNv~/d}f6RXqzflyUkgQ} yuJpF =OJ'O:Z'ewFGMh%fs7O;f]927$K%Rh}?LUS)UkJysuoN; W`#^6XQ){ 6U|{.uD_sVmJXsd z[.CT3{cwpqPn/%6CI5vSu0SHf mgBL:hrYXB }dG U;nR x)0n;aCX5HK\s (|6CG GN> !>B`!az+gw u)TgN<\;p~4Zpur \nl:5MmE6M52JAhXry\veuk`PAg<g.X V47C3'X>'IgTyp<(|KJ[C9kw pIoiuw766hm\ZZ|z-''G)/++z&g<D9g rFc6L?hs*NA#DFMpS9u B|#xFL?2{AOBviYz;.>{;9pus&0<]x5S?  lO p8-{mmmuu-?sFHxOH/vYg48M!? \7^x< _}UaVT} Mg~Ku6Oz IjF1L/$kWmmmm_AA|$|\K{+RFG x3[[6R@Hg*&/6fj65Bt5kQPg8}:0j%\mKS 0K/_k&^U$y_CX^/3+J e3XA*H_8t d#)hIA3e%v&LKRsU51<`Mtz-` T.-XBi.L#Nh1dNK%P ?&-)r'j](p1_ Jg\4UE$MD:&6 <SZs8a;9/?KF>Y 4:Yt)3?Y}<pbQ3)c}K1L;GX 1<Ya/V>[ lyf><s?q> FlC>7tjwwwB{!;![ rk< 2?oZdk5CUT-|[5$ >/syo^54T0|uKZ'Z'S?O5u_ >uc }Mh><KI+g]dd[0^BAYM E}J5LTs V=R*Z'[5|<}*_;n ufsP .%o:5y-~\t A175:a 4;>W  Qa}gD@ 0i7A g[ ascAr [d1 4Z8`lb lqG`AE a0`{f-q:8xGA?!7`q 9o8T`2d^x Xmvi6]&h@3mJhS\EJxZete` 5D$%P. 6yU>g[l20g3Mi099: NAYCAT3Gj aA^rA)hiGo+pttF3R 0??o_;AB:::R0/z?O{3g)Je2g?t9U!s*|Na {N+;(bl>Vi8y>?kxN'L{$)/g^2 >| /U~JM|T]]4 OxaWh2g .A[R^\0 aR$[[[N}o}RcUI}ZfOu6k?x7'llllc7x~Y)g~T=?744`|&GiVo4hknBr4'k2 o3Ej t42#jIX3!|Nh T_N7GREyM`h6xjrnTJTRl`7TUU\iTPt*y84lTL$\3:7 x<Aq2 \ 9\dX *PX9RG\VR h4Q*jte]%p~l'i<JDaG99HsT86 -s[pP} c/3&W7!kI%T 5`>Z $tn7+=?c~:t(1g ?/.F>|:|i96WO~>5R( S1\I8>r B' w7z4lOAwQl|k3 )l{o5`yg3oy:VoEa j*-53e9e'*84K>amcbmk1}c}M KOJ;b+:g`/^D^BQ:_2J=n6#^VuM(Q;Ea}0VuN8T/`S5|?WubFe|&<$Sh9 W#O6x nviYnc<@l$ n?hF}qpc!Izu}[!B%7v1pP 3MF[;Ay?l YB-p 2+*?vs=Xjycf' gLDPl ?;T$11L1PV UQd dVS&$Y% E j`$3Mk1igMoh;za:'4l1ukDQv (:FU!a<$D%0h7Wt&| oQ|2Z_>{677WVVbXj9 4)VT/#q81^ |v ?/HT*gH${%Tg:U(~*> t#DgS4ssXi8 'Bici@X5Io4/k3c'mOJV!h?s>d`{{;Z'd^XXR |Lx`RRR37l ip)m!Bo5p#o0#w&ghRs3?\}v$GI7O{FW'llllcAes?wm/qo~Ngo0jf37XLkmTysKB72nujkXk 3Z> jZSsL8N j2M+I-%G#$ + j?95]I9g6?WL9b.A(DXZd4 }.+-en\XbR(3%fEA.{9idr.M2dXP0d&'a$XDI]B%].h 9}kNZYSmD]Hqq d XKlf<s`A;Y07{_ sWF>]N$e#/~: _ALM%Rh?|2JeH:WF8| /$3Ep'Gb#w#NN>BloSimZevEuBWx2i7)h>OM7zT]S6rm <48qI+Ic9U7${`<Mej.a KEoJ;kFU|(!Y*Fp7Yu`mE?lpQ:(0Ygoz?2V 2nU$&<N|wwa}A[;jcoH?q* ]jv*`k8=F-3& l;+ KC3B CavjxiUfX?J0 '.DME1LykH2 m'irk(E{ ks(X`3>.[CcAMly&[`$$&!yEbrid8`fF=VwN;1uS WwMh' M .C=9e'z Y|0 i7B5] ?Ex//WNCCCj5c{dXsiiiuu! ?BMiswwwnn_NB(0#7\?9s[**VkZLB!8s&Tm9A {NoZ8N2? oq46#s${N;Q3jyHv uqT|0M|$Li8 Ar$P &3~~e~ ]ETX2GEQxX\\4xF VRRFsYaxMoAL*8-+#H0P-B_2 S ~~:`|B'}Cqzh?-/86\.Ocre[e[e[F.21v r)j.^b$bF6BQ BPxF} gpp 6]C(}t=I6I!gN8j\Kuqa~&k.Ua2qf&\U8HT$T^VM*h4wQ|uNfA3jf\NBTC 2uY\\/fJKetP(N&uF21\1M[&L7/CJD9 ]rWZAL5ydua `b` !dQc!}9I\(38]Qt y0fZ Y7<#9.Vm%u _L)>~2F?p_DGX>s?}&>.F&>_ `x|{SMy? :l >7~2 czHe;QPvIX%%EsorrI>]`I+g<{]}OX6 =|oTp`zjc!V i3ds>WJA5 ] .-!hTpdCAAl%7( zV!5TUm3IeaiPt=oITsKoIRys7eW[r)?{Rukx SRn24nM9oM9if}&K~%.NZ4A6#vxQMs{p kQ;bR QDGQqlx=vaxFx_ p^wD;QV s#kqA{mpx~TjU7KUIy !6#vh4>D)a R+C:ikHkv|Wa:`yko{\ t_t;1LnD7I9V|bI-!|4-T)fWCq%`Xczu6R/{_` s2>]6` NpvcsPhg3oeaikw0 s7t*2II1h{X9Hh;4m~X_b_> _555-wvv?onnnllt/)f2?---[[[_#)KS~h__(JV  *d F.&lML$z|fk(Z*cKEFsiA9j.%x<Zmh?+\I/^ k#hX ~VsAlZ OACp'6pu\Y:\_VUjK?(\X1kdmmMNPea{< g^g27/H[)m xF/*+***AgB@]1Mh! Enh#p>gW vqY%) :.J2I|oo>w_<w9))3<%5<q6o~|F\31\|4 3vAhM5Bh 4BoP4eB7clt#<QGmXs5*a}M=>BdX1B!T/g\EKUVda]a(@(aGQC]-Clz  VS}h j) *Pk<vTvl5KGK :pT0Lj#$03?Ka/(Af dz lNM+*<ccWqy]8/M<b )`yIcG>Y 5|73A|~!3agoa{Sf O~6o:vg*d[$>kRzAk;ast%bYB#=5u\spIsoN[ i-9rAav3iRi5<$ zffLJx8rz&g U6 &C=KN$):M)9KkwQ&7971CagL>ys\W+^z*d&u3d7: ]ya3d[m'fX7B;Qf)m@2~~: zL*jhT[vX:p5+ k:_ adzse w!U%BcL;F}.jhuxdx>`a?0.{4! Om)`\j 4F%6K mKh`1 tqt 8s X|p3kVZ+ soht>&Q}( LGsXv+[>Z+[z|@~ ;so<Tml6~TPMA9++Ja<lGRd$v`J-NR!Jr}pxO?tcccooZtpx^? g&BYT!Sr+o2.YhyA#+:A9&R.R@k+-VvE?J|Qe^ttinv/GI0s{w7o%K/I_gyn9B12[88  >~>}z||\|;#sl! 9 /jg G_ pf8g!3K7 EizWS^^>or__/***o~;L!M nEP/s' orL6.>~0rY lr/^t3`yG(97is|CgN>Tg<M9|p4K6*&3 I! :Qf5(|gT\| t6 f _K6kkHq\ G#h%\:\ DL[!gQ4EWRAIA4Mk)fz C-92jhNV!C]cHH3'gh_E ^= ZfdlH#G E'+! L s>DW) {)Mr.^>s~4~oe2Y8?XAq(W*h~$ZQ |07'OP+=B7~F.8;yw|{.(_ 1%@k1Jr%}'b <^vk6e vjR< $}Z>q4%a L2FA9b$m-K<'m]`7.=/SM g% A4)t^+= $el} ]7/k\ A[|a!fOClE 0w5 G'U Z6A#Yh ]F4ma+LUvo!4q>W y}%w:6{u4 ^^MSWG}f!AtY>EFyEN^CBZqhEF5bsF<Ju;yXf5 Y [6DC)O9uX\pf f +D-5 YY&`AI/NUf !0f0$[8pzH9KcY[CJ;g}%sT }8# =c}1=n Pl_<&zyjjn>+V;Gq {1{gQNGd7aSp9]x~_'Oj4`4vFY'+Ygy-B9gwX}V7m@Ph1] ;rtiY`).ER5ny]{./.Bqi&C|W@.c? AsARr qA8j/2BS)J A q3.trgo=ehVpp8 DX0Gg9yz_n.X_eg{P(;|{gJJJJ?o >c7 /_4 QQ~7%[STO>)UDz[yE?& 5_gRmpd \D -J\89:@c Bl8wds0m&^sd8{Yl`Mhn l0lj8Yh8BAq G]3|0J +da>g oU`G= .!SH3bes-Z~D0sj5!WZ K!jRs`5rCm-Z =|8%t qx fD:oIQdA fL5B4H|2noNCrvk 6B{F3g4wZ J \~=s HAs zoLEN} $1?3* OpG / }8I2Yj+~8 L9= -&>\`6 Y8x67As 3A )ZjjWcu#hg} bH{vAt=i7(RVSMmcVy]'Lg AO0<wvNsC>sES R6 I2Pg]]g&eWz3YSc{Ztj(Nff} Sc3o])gl^1 >iJ2acLD0#Em+K>f_[^}&)8`Ua=h;q~Vn-[aXkc8j}1e97?yaD;C~'3&uc9v~u$pbt=^1EP1|uX< FZ01G0|ex!}3DFysu zZoH#V4<5x6ju{Egs>bWCxs_h<eY@' KXv2[v$|M5'3gtZzfSYbN!+i! }Dg$]6v>vtP>H~e}C{-h}& U_pM^~}iiiuuUT [yV !kMOO $0mnnR_>?pSN)JZm0fHdpp (AAB{ - A<jyY >=BA.rG<v.uqKQ:(x(-Mxp<.|?=~^ed?yp&?SK~Xmte<B-qI5?/9 9(0f6GFFe 4 `Ppu o0| Ag|Rat)Gp @x]p_Ut\iViViVi_W}G^Gc(w_NR'lk3 )fBb/bsK3& lhpp1}Hs3}>qNs&F$f9PqR:q 7j9HkkNl8Qp1)Hq4;Q\]\WS_g4zD-H&\u0@9?V(1c?3fNy8r@ QBi* fHhrqxiakl(lyU!y5i)MZIAAeTWSbb\#8Hk6 qzg8;}?4`wW&?}A<`e .M P /R@i?ML|0R0`a]fd{[5S[w'n  =|gC7FZ~3Zw(9tK.Y1oLZzTmzQ1oP%fMnvnSFXvu |6(8u w:XyA)M5gAk} wP=z.]9i1*90uL1ZgL=2d\%nFgd$sFGuiWF%C= :fGSq3)YW| ~v X5iQaA5X3(5 Ah45p;.C-54``kcCsgrz~lG0gc+ t`NF??8Aui^>LV5[ngFol-A3\^w>3L3^][ >} :V=I.kN B;TiSc3V6otIK{i$ayD5W  ]-l TTc|DTU} gY*! Azj(/r.{-GN8o7JRRzX&?8kzzZC49gyY h@sisv(qLs)I>\r(.Rl[K7wN{6v(t`7od|-v?--;EZ9yaa ^`E /FEY ~72`yX W \p;)08\?Dy8( oy([~3JViViVik=|&|+c?(mm ]D%#lkit'aQg>`f|d{t<'qSv>} lxf36A%)O)}4Q|nl?y')LAhdh- Zyl`3fr@8VT*0E]uKr3kjk$Ppc] K!kQd S dxa5l akD!IL&R?c$u2rx f a/&csvTSuGfh&)9gwP(`b55G5I9GwDz* ?B2=Xg$TQ >xO \;~eCG`s.0gtn4h?|u38 .)0 l DRL? `##AVp1yk$??w\z+`z3d )#+v0M^vh2Ven]sA\3@47(M%Q1nubyc 'i[Mf U ={S6{3YS::Z5HtkgYsQAI}gSMJ` t.Gqk0 DSY` [>f_w<(16o]dFFJ3;PC&;`&V0. &PYgnQC:h>H)5VBf <a[|a/H3WwmqL;_%L _K`{-l+~C>h7RmqNE ux3]Fi?c +FA[(Sy=fO-9)/ >CYpxtY!>pb0^}io3g pv?# 7u12] kD1Lc lD7d o>Wz'_W^y%+WsO3fT ~t6GR t:~?7FFF!<Sh!OA/Z|A*YDwbr;wE w*rtv9agy5G)5\f2\zW+ +W<<~ !tUa1 )o%`Pk>x:EEBQ)4py!>`|Cg>E B8 X7\} k6 b1mokkpmCr/Ly4[ 9 \xQ|;p_W++***OK| g~0?bF].5xb=}%E;cB*DDPi66g$dLg>.JQ33 kXP1A S OOHt470Lgv.` 6s|(;MQgiEYUR(F X]@0IXr-VN8#45e@1a[c+Ec}]2F+`Sz 4.iXN#R&T^+I3(]#5 RGar>*: 6~ 9x_)p G7B>RZW~!))>tUf/U]$Mfw` ^z+/tVXh~svx4.?_ESj^F$9Mf&{3&}w&B'#'71 |3 o&o! W#+aJ 4oSz+d a3~Sy yKM!^r:i|Cy]A$VFBES8M=3H&4mX-Jx `Q@:&: Y9cB Ib3g!=K } tTv(3.mcso}#tt[v dkmXm (z~tXw+1'tF:>F7a7Js0sHg6:wRu?#G? jJof/4t KY5p1 9v<W}Xpw26 7EUqucgIg7% t0g} Z0rl# i7 >Cm370^NAhx)4 2%13=aa :0 $]^pjx0kUs>o!2wOi 6OVL{&agHhG]1S7W vQc7<)[]]jo<@W}CDoLfeeE]*C#&6FHl /<~A7V /i-?/ZR3Y.*AXTav> 5\Fk]Rh ZTQ{)vpeR /Y9u= bouoo8$ #k/& aK.g p5 >333a*?Yh.>  d 4W!kf Yg \jHs!~'/G$ 1|(JJJ?i.ZpT(>Z#lp$ =S':Z{:;s[kwG{kK3 :Z)L/\|<y>gx p $cB#afi )fbdh<~>A f$/ k:%'EsiXchhDwG!\0S:CCpTUMLnQU\)N(4nVW =PWGh7{A4K 0cpt>g>[*)YQ-X5 I=]U%s N V SRY*Kh9XW#K!4SnN6:##HDdo^z }LCOF?S{S74>?XK6G>K~ pa6?g359TddtSG^:^w_O 5|cs-j7|z;!3i3`3<5/zkIsoLY26Fg)qc+bYft{acFlTp/cWe`S$&GGs\aDv]!-85i~NKv5 7fSIC7a0a#qhlsvj2MBT!+) 95ea}-j[96=Ou 7BV=#gF ^!V Z6-3r55M~A+Cn_Mx_6 S5e:6Nxr@vyehtAKg2BcY$61{[C~&vv?18fBfX BfsH]<0%;s=lAGsk1D '4+UM&Lx@ /L#GaICg3y+~L9H1Ligi^}E(oqj jTmsvhj$4wS{FCQb5vcY1;5@Bj)/Eo|488(kDZdGN)wrSD&aNFQ8^x'|g.]VFlv:P(%?-4G E BVR)mW\$|UQJKbP^2YK#l[@iiy/+}\* \o?.>xmauJ%:us=oB) M28gO? \~?!frW!d G<K?c!~Yd{_gFauWKG?H >mkqUZUZUZo~[)]JqQ((9(GVYJC#}8u876J;1f kb /v2a&ZANdns3*8pL3:G<g?d>%iIo>E\DS#wEV=K^MFFF|w5X1F9Lcuz42/HeG kh9)bAl( I7-ajF Ni'L54JGz24`uT.=Jn1B\`8 wWXIPLS1{59IlvAsFV|PNML%QCE3J{ke#X /(<x0AsUynQ?8yz& L': - ^En42qg>~=z7 >S<@say<p3 7 =}wR*A7#7];!Wtos 0yicXuui8ZES7 +vK =evY6<jtP(CA`Y0v/7kWJ@zRuAt +8(7ZhM`C*$ =:~92$y9 06!wM)bT>nQMs^vzdi&;@0y X Qvkd$^3OfX>G1c aE%aHpf[?JyAh'I0< y<w- *{^ ^ o1Ho0L yquu-AF>Zwny+-<<9_H0to8~LD3462#v & ;#hr 76gX36/M}Wj4[6 Ty9dYS<0M|CiI6BC=gW<e80gsVP sQwF c@6BsB9n+/.E{[-0?ITgI E]KQ#4larrgCzZj s: {' T*Fc0l67 yjjJ$E B?tEUyf&)P7Jq.< .O 88(D*EoJ#ebe]}DC K u0ws[n o!B)<VYB0cv)]pOLL ?~\|w0L|!g6 5GhfAGQ~/NXXihr6&(_$hM$^/***w (|G #s?I7~^XcCg[kK&F[Gk+ ;Z/_p1m-lK$@R'1gr?ssO=S9 Sh.5+:yDO)FRA6lHP s9PS3%D(\wtmZ$DY~q1 e.Glo]2f)M~i\ GMwWjxlc.M{ x$dc8wQM\Z:f kS4y:IA QsD ZC&$^<~)n}Yop1s%*fRu3|B 5tua -YZN y@gJ>OH'M> ;7?X <=ri 7}uKcdF>I|Ll6 B0 ~~l sa7'o'o$\09|g F|}1}ygy;hBlikXqj q3n]`^0w9IouU=-c}g\;mU05=Ec7w`MTIM=0]DL)S`Gq*I;` }uM3 ]'gU\TK j8HUY.bUz0Db|h3o9|S?G6 t(q&D~N ;B~kN/G1_}NNfg&}s0<^ p$Pq Wryo;a\0 w@GG 3kQ(#h|x.-I2.+QD\Vg GXr#XF ?tH pn<:r_$N?T 4oAOYz] {0AWC#qs.L>?~ek5\>_@49b>|O<s~i{Uevvvl>g(' LQx4L&E'?aX-o)]o^XXVvx<73&&&77e\ )4+8UwE?mC HyR\rO9+SpsRbU]>\~ ~enapKyr /\YHVF9n\\ G4\!4\Sp GF0U(y YgP el3e(fFQA9pG }| JJJ?C  c[[ QT d51x</M .Z8 fC7_|7e 4L/=#qiK >LhpTah3d8}$`L3hs1ch8fJ;mC84zgzXcIrq oj$FeL;10&%oj*K J0zp=Sh1:X#eT_&:2?3Cu(f]q:UWpV}!$31)nC%(]SC2; !Cg]r-%-cVE9]#7) XPF<&W ;U<e4~Yjb\$ {lD45roinf^v9?XF1 taAvVXO+W& N]lef?I&>O~ 45bC>Zp~ }0o:TItq1|-n=ns1x*|kGo ts- Y9o|$9~N{R>{kXq]CqvU`Z)KosJNxj E=im'iX4|CS(K6UIY12*flK)6Y g`o=E 4#.)%/GBP0*}UduY qk L;HD~Ub|Bez vve=dAvsydV_8jFMK vduBpL3Q l1`B?xb;~zml#%n5`\ [0=;cv?&W-J vl9j.y+~O}h2oVf*$ e=j!K$4 ]sL#yf_O$=NT6U!h0)$w5fyT9 3*FM&$ m';1nWyRb9~1pkk r9yPe(~EhyL&#\^.G$z'?'?h4FbL0bp3S4ZgnL?3pZPp`V(AXY^s<wEI]TJY(o]K7[&]?`7 8  <(~[2-Yg] +++ .Q- gz)*>(r dU!d 4G!\ f~iax~OFNE/'|;??++***lL(*PK g{!jj8E%1LB_$by-aUAJ;m0.-gf:h;H5%Y5X>MV3v 3R&}n$@>S=A;s@Jpm![guvfLS~rG151e] x![SaA^J*r C!dk9]/w9T%U71o9}q%A^&G *kDjBH K\p ?ejRMCI]Rj-'od XPbx!G?ZL|af4o_%svn ?biSXa<qO8D &?^ plTzdX <|o*rs'CFooODnG$@|c=jJq-` m[A[86kSelU.7n-Ze](IVlCESsZ:GEv- 7Xzf`NzWS6w ]& 4yKw}JK;gSBGY3IC8j78 3iM5Ea ZJ)vh2(6d%>B'~kX_rr>v 7#S:0FL $LM gk-j !e[s[1z2mFpggQ!! j4`1NJgg~N{`x c) 0:76cu5`\a1#nf21^S-~zYfA_fGP%G1sNz09e#L%cS8 <fm@3E#yB3>n | wNa]gb3{PmNycH1%;: /~} ><L&) ~|>/hOiyVy!BK/$B=!?e B?S?8LJN3Lvhnf`ISSSc0?)HAs-?Xd(AA A \$(BT] y. -?RpiXkH~mQ{QVQEi\AdghlOy28a4E>DY.(r vhh =+Dp?\ g?(/>(o7q$URy|?l~QTUU_VP1oTZUZUZU!9x 8E ]\6mta>|Vt4XA6EgTm% hk`k6F3sNR'cO;6Di3Peqh36NR%Aq|}&e%<X_8s&>\W`J2/`$s J|p%4}V 9T/y?Kflun@|76NuZy`s];-IWk)x9b-@4 *&?!| c%uQE_{P[ScFt?=C__zOR#V& O|@FfnjLG d27\py(|@wLM=X6}ou(li}~4?\o83= ~s 97o%|os;!| ^ 1_ v<Cv n-~SkX[FU80|~)lX@p]rjVA1Cym+epjPBl m%6mS:'1h3@w1scR>OqhoXA]bWM{=Iv }AU'J+)x9r`Sg}@S$i7 =LR d] 60L5<Das ==`Z Ye-l; cuiHe}+fX6F; roah3fyES|af ^9ATOj|3@ wmDdFApn; GITylL>bAhiSc+W.0qk2ka38!\X2g0(s 3~S3Xv D`FlNwj8X{'Q%Q1j 7g;feG a}_gj:!*>m\]t_~W/j<p?9l\jT.wrg=ZlBQ$ ~gtaHo7nFwKPpA$oyttT.gM.A 9J-r |.*>(OEh9|y3J+LgCvUayJG!wa|C:ai)T}6 M)opx^m RN#I*Jj*QEid?Y7[BW.iZ_S;yA/b^yWAt1aV7)***ZZZh]_Z{}>-?pD#uFKmZm91LKd~ 8}|>f3XmkhD:Sg H:h{>u>!g<S4A=7Y@2ap<x uQ[sMX'fX0mg38\SuxScy1 *3mp.8j 9zgL5l7*Ml\]zT9 y 7 6rT7L LC= !Au!snHdrT#l/amu=nmCW2U\ G ijv_s!B.FjB3KgkL| 4q/;Yj>q&re3_)e+W'`~~:8cw3hdqA^pn;<Kx x8k[o|}uBfEg3C}#`a<RIZ3{YnN[iUmN1Jz{Y/{-@}zy=wiyF1>IMuJ}Z5k3 ]vjH<iBl\:7g3>u8wh:Fm\p *XfW[qRNM^ 5^]olhHfF 6#+z0! Xrda>FazLs~#y32Air ~c`]\0 2?}Ko^ `3AM0qU\ka ApH16{fZAH jdQ Z D#6.G2e >mg<CY)gG`s~9=$aecaCI1jVa*8i`P$]Ams@n-UDZ|]YU^|^zI^x!?;}![y2+ruu#?R]cW M7n-zo =zfp`0f;*f-<-E(\o_>J>C?*_F}P5Ds ^>5(K<W&0G{#<[B |}[V h& 4`AUJ.Rh[/Vp/I<8/^({'L&r-t- Q.ukfG#  W>WZUZUZUb{z/S>qe+f_z]LZNhBsAU9UgG|4gh`3QQAT:4[8 : 9O6Md dILfu6|22%glBTf olDM b x&c3 -$`X'1EDBE4ppx*C9dwJ((kH:cc|M5EEBT<Gl40*riBRD3( 7j$)ATR9J}3(L6| $1+M<7EnAnJ?A[ QF7>Y|5g?@ {w2DD[ CwF9MMXv)4 O#FFnv oA&= R*%~W=e6ewA}< cKCaMX^vjVcF>D#4 5(`')msRk!oS-~ v=4tszL5n mzI>z?g\hNY! 4E9|vjphC>`FL\ jp%@U!3+$KajiS.`Z 4i+lY)LiF 63HO dW0 AdY7u?O\ xl-dnT@GX%bIioP ;[!{5d%7`1rA9`1RC_#>tk0v)kQla:.~#^=l~c3 bgy8ahL;SA6?\|p9ln! A1b 2tasB9`n/G?;C;^G[\niii}}0zQI&.xy n[c}BTjz<P(1#kr?/IRHQB ivyh {e*DW(+s.iweJs7hEK~\P(^)o-?x)~tQ>g :O~ 'o\$4_i '?[r _1 t xr.v* a~.&^|E}v/R[iViViVin9Nx 4kRmS.@w| e/]W |-T|{>h~p'5 p>u2<<4DFAs|O46s>t'Hq ap iZ!p1XLn9?\_[C&IAPWR7|1 3&&L1LkaHqQT3j8OG{3FN45Kf u xP6br#WuClE]B9^c{ry$[<eKZ:w|:s&9M; e Kr>IH\ 0\X`on.bwvP|O-n  xQxYVY5 UB${Q6Nsm;d[:$-y)=p@5mIXMjxHSD}gq 3>.i!Iaiu ?3}wt /Ss2K7vv>Ma71^G;4:7rk(&:f WW8&7g?]he(j 2ar >N9zc&DLL_E 2zm:1Q7k/:QQ1 DePq\g g]aUnUybu CS.Kr2 + )vZ3m(Py]kVYjZ't}Iiph\4+i^) %RjTqC{F7yCVU; nhuH-{.O$3G sVcurB49.sdn*S`]q0lM1`y!s: F {S suS{(d e4qyO<KsvBlc?F]w=4Ez<; s87lI87 y;ljFsq3k7m<fmX4Emhy>f5y6FohJ2<+8Yup20cE1m F}<4e >c <xA9 \ AqTg6W7*Up{sd2G}>_7p8 Nf<999C@KZT$dr(Dz a~KE9#REW+q ?)tE{YaYS[ 8&:yQ2jGx'>a? .jc .-@\-WC|hhH/gxkJ|UBQECFW5lAw>E9g%TA4? Jysgg?WP/9GPh^3wwus[[[\gY}}}Y;Y ;`pH^xQ\j>_rAA? D3 ` )|g$39vn9}vHigiCH 31R <{Em:)5N5K ;%aPV)\NhYH/[b4R-df*mc &\~VZOwt o.6sTm<MhOhpO1/bLkf .G%.c.HyEEdaY-I$BNe~$>!$&qn$Af-9h&I|brG Ky UH*._/}]H. [O_m^MAG_]\UZYu%$x3OYhDS^=OQ12 98F{gaYk8^I3W&/O_<xi /N lF_W)@MX|Zn}Mj J9N](7UiWgMz[uCoNMe4 7MjZ(Vd^6a ]_z`HE35f=XZ0-a '0+9}V;a:^0+ P:4|M~ETA cB^C1l-Rp=!Kohx q<%sak 0<A1hoPQ{cQg>l{{)l#vX1hw:VlvGw+O.l. {uQm f49O&1Nq 7 m.Kd)qf6AnZ:<<5K.s A7ea<ljpo81j>Vg3{&lp3j7&Vig$qy n Yaoi- ufzcyp28g +01c!l b<mBL)cwT=ic= >(F n5r].w<(kHO>$~+Puj\R5+JommZl6; py~~> /..2boLBsZ&1]QvP x.;(i+(tEEWg 3\3TV+ ~>q#j}gf|tgxWWeyUEA8===5sJxeVW-@<g3Ny @bW8zA_')p.g%{m6o&r[hyo O`E* +k? ~_[Gc'pxssshS\g zz{z.]Eg?L.scwzg|Gsg~(4 2lno D[66p)wQ{RSDYe M^ i36*S:Z@liexC[k+am3 4Kk5JQj\s(} $uTh% .42#7* F7W ggFM &~lp@083N4D*_xOr5FDE eB'OH%yO5)ig~sLg52?#O.*-r_E lvq[;&k`}5*v_n/|N-xw w0~k6|e2pe+'|(L$hLA{_# u_ oas04!i!7 bnSBO{(lWmjy fSICyb;:iX&Mn-gHoTYaEMe(i X1[<@4qRk{a \2-ECK6F-%a#V$*HM?h{'(@ 3+U!4lz0)E<PGa4`Sva3XeBPewb0Jw}&#/8lM *tiq>hvm91GS!mS8@t N\\v{g) ^5^T-qpV )? 5 pe<yL5G  Gl 1S6 Z [Apteod 8[ Z6 4oM~#L}py X%0pNX [fM<trs6SIa F it=^zO~$=sNGG/|x\.fnHI<(v_r l4OOO\s={{Jh4n\`0&''ggg% &dEY^PDYi?3i:Bj\ ~%v7\N> j ZS^R51KH>W hygQ. T|{& /xk.>N| r]I!UayHDW8pmoo3(>( /Wchxob687>LDOMMx``JHJmKMLGh {/E |JF=>BQ.\21?%pJJwvv.*8s 9.m3*0`YQ3Yltw?s;.=!8G:ciB*Qh?csD1L1Vm4@hn8r : neA8'-:8~g&FxrJ1&&6o7b^7 URli4-n.D%Dx8P- X|XX;;8J]MeB75-|\sqR eY=-v A\EF~; ULA/.&nn}r{gs#F tnck~koRj.AyF1^g~M\6>Y`y4{2o1<uqk~W'/m~u:xe6 /N/c.QN^ sQZ>N~ D=eKeX(RvMa ZFD4mX)vChK9n]m-v[})4QaU&f XUb8KTpk0-ez_!3:tbbgb&G3 n3ytH;&( +D9}m?7 qR+90?3 ^?#6BDW(k7 qAs!d&.iyB|  U1gXEix^kv;F<NqG_sbc|D4Qe$v#(\ p8 C:0A$GS{*hN\vE 0 =QhnXr%le< [9i`<0oS yrU9m 2ae=D'tQB1M_ ;u/e_{]xutayN!0f_). ~ 3X<g~{~;wL&xBP43gFBZn r PpR)]j BWH6o2dE$ |tVx}.;WY|a srY )w^Wkc`?<< '|+I'XY Hge~X(!C w~0SlT1;2\8S|#fc=&ppp[7o[[[lI[bVUn2Bw9 ~Sgp`~?vuBcz;/u?g9ENC8Kr;U@s{25g!i*hhgBn$ &lr5c* htA j ?2Y)\6rH Ty-NKrV^9rl]KF*\DB&)wNm f 6K-SM&usE[gBIp{ K~<f\WN~?}*XVI`?6J?D4g}`b#e 8 n(W<(M8wt 8u;nVn]vwW[kVo&o/|9tzjjj(Do?(%-|^D/q~K|[@tsW'?\ L<#O_VNAWCN^ :zm.3/@ d s7 GlC8|aD {#G0.arj2^}]*E*W m{QnU]oWV-C6%YCrj7 ESUjVhSV44 0 H& N%+8cbl z00L:']sip  L +[u~[vWun2AK!# 0iJ>s350lCJu !3gX(t>d-mG;QGqnsWJ tvq8b-YX8`1G2l[]WyJ%DSQ D)MQO1LmH  @Xe}hO|d/at8|<9 SA%aK(h~ k^NVZ+.S%-CY`P0<gUZP1m 1N`mq]zwT9vtu<x=s= ?~ { }Q.z{{_{j7EMDAr\fAyXc~fXaa# !a---p  pZtP(MLLpyG3gVnrKRhtM/tEAaHAW+8*0\fyJ9Oq?Wx6v>WF|Zq6W ? V/5 g#<R^8DVm'D2W48+Q-G%:E |9<a>RN!roB ?t~z S:'ze\\%2 K]\#; p \dT*!.{?4H3.9%F'Y Sr\*bziiYhC3yF)Pl9|04Qh:3fk% 70k-gOqloB1sfFh%e dfKLA :$|Q3jrM-n9aCZln\4?AiLNiUb.*!RSNIj1Rg6Cxa 9VO\HtKYo '>yD)8 f'!;X~S|w}UL;Ydcl6pq{gfnT|p G9[W _dxe.=2<yjf>Xx}f>/O8|7g>|}:lM97ren3!/L^ }y}8qR q<{#aG!`2u[A2m^7+5 Mj4jp6r_V&7nzkNSj MqpQ.k1^-%bIZ6 3V1<KfuKssY}oima`0p<V1vi7)i)7->40E {Sp*U$Y(aLT9K#v.E52|`JhGa F9 h uai <:0s]\\ !J ;L#)?l3:=F]x^5H Z{{J.QYC%v8P9<- qc(!3 -! 4A<> 2g0`yuSk^=3eC$$I)L9`:)xj9Yy:z0S>v>| DU15v26\(+W 1c^B\@&ykK >}^:W|OzEZm2x<px||\7Yb~VGKVIK0# \C4o>(s}7gbfEYvCk ZpPl&wC:Q zM eG ;% 0&gXl6xkDT8^tijja+'9D-B :C6pgb |5+y3a.$~*P[oVoVoVo__8q?o>f 1^/>o;/Q=^X|.2%Vmg:cg%G hJ53f<f2BqUA8=]~ [%?313Cfe-T33eIaid#@|Mt[it:0Z~ mH2not.nmq Zz eE#F3G`n-F('qO8^ga#;:+d>B['X!xpB^XD@q.JMDR.(2 L$&Y!O {V$%< /o~-T>V&[sK _]\ oY[z=dcdGWs1'Ll/N~^ij'[ n` 0`mD/ S <S4!+0 ~=>LI /N_&/L/y 8Qk8Ja{)dthT ZsSgxt }kz 5e -j7*BqNEaQ[vu TUviVrp: eJ>|t0-z= CAEUVsm/#IuEY}fNLi% kNMk #~Kd'~nx>ao nfV8IHwE %36c_88LVk-TuG2u`X:B uk.l>0`Z:q0f[v4bqD$.b|ZXK$.{h~t{c @GD;~. L3l3`La:L{>cMnO[~# sAW5v+`LKg ?Bq%:*>e[S9TIhdV<XvUD ;[a0m\i`S)c$Mt=D1uWDy| ~_!#~7+=? Y { K.]_W)lwc.(*JO?43{JD x|>gBSyYgn[[[p\!i5(8(ae+w8aF -NOQ7lG_T3oXMw*+ U2-s~m0y !\# O2E^qNL M 933c6zM?cpJ9UX -rn+#lf82f.=11QlG C!Ju B#D5ruZD+ptM:; ZiLOs|Lun.< G\qh4<@.>PAf\FvrBIgBv>W.Jx<<~'sDpC lm<0Dmr{KKS1cT nujx t.7R 6v 60 .4XX^\f sY01Lnh(VK i!=B_*VH .&HjhG 3F#DNE%7hw#[>(sJm9|C<K~-L;3Ul )8Mh;KVZs9 T^$!{<$7wWo3^*c]u~I<7e-agO&?X} |sz6uqF~_f Iz_d^b{T0(k3X 9Ar7;<Ot528:/\/O<u: 0'L/N aGO9Yq'li.3FXv[vhNmu)z4iUnYME7.m j.SfSmChz`BEK~LDM;1<Xbq aV$mkZ3TvMP1`80 wi{a:sBipZiq[wRuB nLG8TA=2&'([ab5=z]$h:B3^Co*myb-9y3*`su{&|)0hQy)3FQ=I3Q:QSr>z F<\3O 5JQW6d(8 =TpdmC8)anHiT94z4^PplMiRpl.g)W5n(4BzBLeh #2nU$ LA# mY&gL>cG crp H?~'jr0KbQ{oLV2<< 8}Sj9= y Ng2X\@ 9r@s3gVpB|>_ ~{;r wn Xr:}m>? -}s+ `+bFxY~5V$ s| 8bgqnjjKadx'n04oX$ 9 3T*Za>)_K0m1i0-[g}wFmt>W+B_h{={k VoVoVoopX$sSED9}U>Q\)~ 7{|y@o AoOO9a|9t:/megZy9h@-`3gh% ` XE/Y*K2cBmR`/q&6{olh# u7[apMIi\FqP0*m @[s4w %RVX H1rZ:|L%q~d%l+W`Yhw-m6JIl2 IN*?vrA^K2<&B;qs5=]beGo0o.-c:fFyg_P_|}k|V!u~Z6%?K}hs7>5vLt')l1&bZf1 LLf_s8{i9 yy:+s#L^0a u N0N.@RVa[>SGFhM.ip@\FrjCYjZ6.#h%A4+/YK!MC3)ukR9TuOX=`?A i.A}k75;-?31g zr~B^ $JQg\k !! &+`*tK>hM10 0A 7QmXIT1G!(9<mX0 zKEi=?b}.MxJR rA?Lomn\dpz`haBs!3claV:# !CS1 S4Bc7SY/;51L$Tv0N]D83LM3$ \ }|vjbjSq'vrMFeg\W6ja#2k[J y ?~_.YV!(S[\\Z^8ZN9 fa.]6x#-55r\=}\Q->Qpg:\< >b`j+.a.@Y850ww Nt p8uM7< 9SSS5UbkjWcG-568?TqqCBv ;s8z-W@~?ao<wN?zzzzjr>Fq0s5RuwYl3 |X+IT*{.?Ob Kbp]/` AYd\d;7g<%t{3)my&G6 3J0iV=$-<5fN cYa8Co+h^N23e<@|M[2xH)&6cR*j@kd3Q )= [d6io%zg^1=e5-{b>fJ2Jje/pI-H5K?\Fd+-^rd3uvt4n08'}+n]VX3wsgo..*$ 6#&:^t$&7r_dl6 9YzS(= H9[7fBnnxxws#o5;0so'bo.D_2273\'~aw93tkB6m{ Y)7g< [y]a Z7a3J94[NMbQU75b X0^1Q7i[6@_1&qE `?! t}3U7L<&cIxJ3& hm7r mNQ4^CJ|WL# ];QggE l0bj!L5#=m! DD!+ X kF [6d0pa#\|pz u}'$#kg k(w| 7 X+SywyhvAe:b/=3Jg'l`6i7Ty!;lFR:dA6M ~MX3&X^?M~>s;TE2Psy3k7Cq Dc:nUgc<9 'h{DU 0NM ?kb#K1um'~P6?\I~0|D{7CVxyjQm=>a\\>C? ?.a?OOO&IF<yX!R93(Yo\tY kT+)hAko : 7<2W#4o FkJ6lT 4? ZGb| }yf3+ A1/h^ICCCpar{{b+@gcJ~/: pLT@ -L9Z6|?66oj%'Wzj;ho^p [n_qe%G/#>?nQ>?sg|2y38%;g\mY9&|\qErn h/dj[$2 sk%&im ~<)b]6r0^&uk s-?Xg[9Z63 4j>3sAe!s+ VFO VaLn9-r[bF-e3c^V:0] 0ha$`UuCK9\-)SX.MpwCkYH O {NM- OiBKZO8 3F3G~Z1yrVXV_[_d37`5&nsU;;jg'Y~)k m|83GS f_z79ly&Lw1wD{71BMXf~G^~u&+@i21e/L_ 0+e7</<JvtD15l5GxY*6lC=md [uS6u(S ?o:46i B{44.MV@ 87MCq{F59tiF=RuO(4=BS]'z^sj7\MN u~6<t|ed2 b\fd< W7`Rz*Umj ]N;Y> aW&^ ;'!?%8cVOAgF k~RKQD%7lG wiLy l*a2&#pFh7DLGlbbC-) D ([8lfLg3CTigJA6u~N>oLX|Buhy:R%j&V<r\ghj}gLR)S<8;UGTt1MW_s+Sg +~u^|E0U+V`q\rj'Hw}sFT t:}>(fBShZ^pC>RR3WkijEw5%4BhuQKaq@ }U0kX[9B}Dj]&+Nvx~;;;oDu3jFa/B8M>C> s+_p/v_f*G?O<q98a$3%!7(UAxs\tP;8=jM-/p8QtAs~/sE 4777j7OTx[oVoVoVoHo }T(phT#ak:B ;#>h %58]1} Eg;/;+ 2pddu-T@i34ATO<70JaF)I`u?Bd>M0&N)eL2&\6l4wt/;:@fDgVik5Ai iio/%&Rl$4z<2w3LLq 7D[Y0N W$Yg68N F@775< -b+4;9^XK2Im-.1fZ9e\2s7vnin `.}s-4b2;+q 3E0WkA#|'ye*F?B }}f>LB 5)7[{!f9l3LO~iD'}N 2F<{u&leQ/#|i297;b s/z^qb^ rAK^D }MuY!3CX3 7 m(SN-gehf s?w?>c_2 .  y(aMoV3Tv+:=nXP3]0k.G|r<Uk.Cp10& Ig EFbvD14EQ^|UC-[e>4nt>lqq[l\:1{w[ 2-;\E;w<#)7`!BsfwiMu\q7d7A<-`c q zcXfapt1tWc 37Tn M~*e7ikH:56MeZB+p]T/ey`2H<h sm^B#6N' 1u`BDtj?w?Sy9+[2?< <88bZ+X(R).BP>\S?{=pT*`lp gggb& sYgn< \h`Z fg~Vv5#Bba#* ]fMs9}PDw}[ 2dxJReeE>Q|0<5aa8|Iz)5T|!lnS ?sdS v6!BldaX NFx8Dk6 ;<<:F~jyuAXv)Ncv8??[[[m{->o:NQ^\qwTlp ]{QM EA*5x3S;hqxsAm e3J!aJ P*qca #2w!%{ivda8{ ~n08Y^vhn.3><u;?)T 43?;Mn Hx7 0 o TDR|PF&`5BT$RSll?7Y4S}A)| [55N`TN)F*3n<yR )/x1m./F+CHuD7c<hL5G '7Vo[z&ol/&n--o AAL D Ws.|e:yz'??-|]{+MY3V Dc%]}+>E kWHkbb/!dD qK8g/:u% X!K!hL^C>`*91PXi][Nm@w`ehDACnSZC+)hX4c!?i{g5=]\?s 0 S\r.ORz8@6M*W 8]wkz-rmo0l'33gE;+[Vt2w;5Umsv(nu)p{.dJ a3mcg9D{w7Fl1pG G Qv  \+Dn =0`E{YI2LQ|9YA# o7zN5aoA7=5~_rIo$l&]E:Ay33~FsV]305by88. ]:?=.<HSSO?o.+x/|r:.{{{<H o5zzz%JJWKAq!os=pp x'NhZl:*DY8t EA`#l`) ~)kY8oE8WkBrw x>;no &=tA3:k}.XGTBo? eEx yW_+V)_ \N?Cb=w_KK<W j 2BK.=S?O9 _ x\VdH(t{g ~a8[C`X/~7cVY #A c ';>N(.??[[[sG4{BP=<\>3|}{m-C$Ao'V dtx#4eI 4*8D i*2xpCfwJ4Q\ r3s*p\C56D 8#g&cy(dd^!?v 3>M Eh:{%54fi7`vaK{yZNiI R~/)f{c*6n-Bonj6 gbiBN#c|Hb ~&x11G=l>u K9ge4Z &GO?->e/Kqs[{kvVn ~%?^_:)}c;q= z;goW Kc.zLs/K/~pc/ {?9bD#o#o'b.}}.LP7a(:G=::Xyp& 3fBc^pL_Sd b9`~}09yvF(`k:3eih-x y1m:5[.mqlMr7@eP2?|K?_@0a F#1 ? ;C}itg%j\bWc-Bj[sh6uv^*hsi >L*~#gIiEj u~KLLorkW t5S_t*S^M:e aShd&?4 EorY@'7vF=afa VtqDl01GnF 1Wi7 LXvr=\pRET3SQ6YG2+A uby Y7&B=74.lAT q lAkRY`gd<QLY8kSLYB 743>t q1p/.. +n CP/T9q ?OOOW5w#>Pg8:h4v #<AV-9\Q3T*)w>< -5W{o*JSr%H f W7r.Wt>LC Ak?W d3/022RuY.pTda&9#/ x+VXVBgww]x3<vO<|Z^9?kE =X{{;{3pF8h__SO=%b o:|zzz?W?>{g yME> p&|-sscP`o ! Ks!B ?=)|td`-8Zt(-&x-UIid&1cN)}GAe\2I =} &JA4n2F4^J2K6r yIiCd;#kfiEaf4SPbC ep- eGl\r%[ [)dEFKZn2LOJ[>RdGD-=<6li<Ux0%7%6V8-JAuN:~[$n8~Lvxc_ }y6_G[gf(j?}S\_MWJ_9xe. 2/`N) |'9oL|2L>9KD^A1_C3 NJ`l|Wf47L`w0<vv] (hP3a`sy9$F\0l+aq ~SvM/1S [ fr`_*%C }/t}qmw?a \2+M){&c}gGzF?] ] SuMi{vCkNEbE2 aS7dHgoxt^}Y2#vF 0mS<I>O0na=Wl8Is_\}an#1tfIu~EeWl:[.ui1<EG)^o:Q[6b:1'8g~wF=cQO b R79sa *#:;rcN ?Ov|R+ b)Q<;)&a1as<f moBOQ9 fM?%t00?+>)8ev?0i\+>[$`WcH8TsV ?O9C{1qmwL})Qw+/j  kjjo+>ZG]L&#?'TP?t }kCEM?W_pE6 3rP(4:::555;;;1]g~>KJ($%H1'tr]9ur9b3!gHjm`k kc_k +\Ck[S~^j|Cn0%D-j<s r\A).qA6*+AvbV4?W\Lz+r_ .(xB(t&7]\NWvwwooo <L vI=rM>8/>z@y?@  jp xoU_|_ <L{g *6>~kjjE 7>|xaOc{Vp+?*|jjj*-|yO.Voz4>=s4g //tvb)twG?K%) J1g /3EkbMb^(5tx]QC$OF4f[f< o#L~4y<`?}E+*odeF:ZbuNTU=jbkId]`3Xu`#Gy2K!M2m(<^/kN= R.?h? DY!4 X`Et=jd@= u 0Lg`H+a&3#>=P#B'X7 ph^3?w ;;d{[OO>?d5./g#s7S)X~5 f?/~ h}f>r3x-;^j <86>^`soM~gmW'?#~#k >x3Fqka+3.ay+ssAr~}oY`t/I^vly9nc'mUoy2z{ .gUeM1i23f*x JRy(aQ)hk:h=GK:^0ldae0jdm_g/ BiK(q:fUF^6VU'$FH:4 +n=Kr 4?H6$Gi'#vEj }oD97:[ hZQu}e(Vj%3g1F*=:~n]&j~!{u6|f*m[ X[mC}ugzt{jtkNI5iiSy r~8ESuy*C0oxQgDdDNp110^Q|V-UQQy(j Z$s!e#ErAc<oCc:G# T g^]!E'qUOP Wt}m y[.=QO>y^ >dKp3r% U?3h~y# .w{ Z{o}[MMM*JYV1 KN>#Z#|#DXi<}8KbY QNxWLatps.'C;2;ML MYdp j\MgXQjL <L~D xrh(W^`g'8Ek_{Q.7OA!^s0_Bs=B'77PVmVmVmO_`~Vzs k |)u\/_z6?ChlokJ`[KKU=f:As3+ J\>1AT\h6T0D`2 hhGcFs pp--MM@rh]5P0h)p`\pgNpUYcx|F6'_G y5!k2?1G\oVT0mT$bY8BZxc!ijedeT3` _dt ;sm!?hH > i?>R9 &}v=Ft.FCOWooFn|~:Sv?fqiAVY 2~=>oeoon?/^y71}= =w3F?W3'fM_%+oM<~e)rJ4Z$d?^]eF3;/=`?;v|6<u~g$(\otmXgbC>X65MphvucN6E<4IP(dI`<=fYwI^l\5)yDtWjw5 >dm~? ke>YV8+A5l]QR.]lLph`GvcSel3]fejDplOl_4ZeHsz:tQuzLuLcg86`@j ci9a 5/*8mOV#[#0c };`u#`]GMa@&om#b3T6 dG?S{)4agz|L6FfcejsGQ6 %u&9AS94+8 3:oLk>kz)a3!s50w: gL lsd =zi}{rw` K}L|IN!ycc=H$*j+&K\ w278*Lv>O<DnI b3Ej 9 bsqs1xQs&)O>c8DM7OKf!E H<\Q~ 4_<9/R-b\s`GyWlb? _N*RS79`Riq>x[uvvK / s .=WDY1%a;;;p@`xxN b GkkJrssst 8?88(?\ww/p[wG1?]};W[U[U[U?o:prX`.I;'V> tvv ;vL<z?E&@!`Y*67a[`I%`KcckcCS}] yqMC}4<4QT#>@4%jJ19mijk+4FDt[4O& mqq'txxs FN28g1qMyiAAwwj 2n*rr\hch)x!<f&p2gy&7j kVgtF!^~aIA ;&Bfpu5G/PS? 'cskf\`FQs IlvKdw1>r>STb \?}~:O%>?DGtN. &FoE^2Ab#Z_kD777?ikq9}51d_[ @~qJSWW|/_(@IiB{gal\Fpq/m V'\ el1iZ`HrV#/-i8m NbkzXyhUI.B#lX@3)y4m><oHBUoX`X1Ulb<lD)8f>']Spj`rc9(FUY2od|ZAtDu7}-52yCa9i N'j_ j . Felpas2.mi?tD[SuBK3P4M8n[l[#!{>hm0 o`LL0N&d-~qMgJ99;!;\g(DgL<wF.C 4'nC~jF^p2`<h-Fa`y FI 4a0y &  a!E?7g ' ?XC?D~/&Q|>/EV)~|iPLM ighB g> |'hooh4f^w||87Dyo& E X7 *!qd\DZ>WtqT\~:/K4  XMx?z_Y9*w?zx~~~ c4m(z7m0'%/~xO+~Ek~~ }\.pXV>>z7o~s __} Z[[Ga/~ o[VmVmVmOB<|ggg<s+_G^_~]]xg sGO'.;%dgn-Hbjk33U8AlL3mn(d*?ro#CBw bP=!<.& fnnmn&H#ClG S#1T!t`bX N & 0 y t!]'F2O# $ eo%K/Ik(D|SG^>Na%)t- hr4 y>&A}dVlknmE~*G??5 n$f95Qfv.q~SK _|g)r Ygo?-| kS $727s7#7<?pc.Fo# d\M6rhH.2+/QY9'd?_X _q]U8xe}f+ aiyvqovmOm{?l~S6 -qmu#M4 CYF AgF5(SM?a'q|EuayI70S=9ep'T@O v%V?%~?O*g}syxhVJJ>X+eyh: 3SN]kH85I:]rygCUl*2Xo3N=;T #u0f]a vt eC:+By[e})2~Sc{ ~u}uk43%9olxM~f9nu Bk v}+ MhY4J^J >}0REBaH|n5`M|LWeKZ4?1W \ QQ4zmD G|/dl#!tngzDL'=Sh~w1s;!A@Sv+o4?o#GR<;;;wg_}l6 ( `IAR(Ye$_^?9s=Cwt:d u\@rY@/E](ojh|\`I`\; @yYQ|p-BQ&3|?] > ;qE}7xyP0(<<MJ~3<xYa4o~/c1\ sE\?<Wt5_ IP* o'|N>aR)| u__Wbjjjj' p!pA5;; |5>M?Y4o 774nxpcodW<Fn2kB s.]$' )<whvPKZI\A M([@ah x.hsHis4>ANfZ%)\_+d<E Qgal8c/:f.(s +`Xy09am-[qsS !+6Xw%k YB}#7.zX giP^G3f +f$O |dc:mH355 ?G^~ vyg[}/TK $fo$O7?Y~_[~=>s->T776X0QvK mD?Xsn7#7r7ndO 6ye)xisiOW'Xxu9xe<_Z$2>;8;0 ^3=L^qqyyrb (tS2 -q/` NN' yiv6 ]yevv1}Lnepr g14tkUM_L;^}M?B} [uKeBSvz*fwO;&d/mK`gV7ECy8j &X2.Mj ^e3*84v' C6\ 1 pp: )`sr.CtrD3^1E5tquqXFukfY>%YMd=6r=% m=`{Y~^#CC5 03y :YBu f-97o|&F 97>9`a53l0V .v\jJgXdI hvAd:<(a`^aktszA1; DMa)MoA+ {%;B?;L7D~CGhW^|y7 C?|9G-wCS@ ;Oc ;vez{{Y<::x g? g<8J677Ks1.A\NV>k/WL5W?+7 %b|r94Lb&`Fs~~^oEarOOI3na |>x%U%ro|^*_VyeXQ doN ?____.~/VmVmVmd?g '^\/GwUnga 'J/O?dg{[oOU lPo8hpf 1R2K3x[pM0\o !8sksS@i@!d@+j z&ao iL v!b3[4[|XLQ' 90n#q9#BQ6qc!g6Vb jeuBz3{<D:3g^\ Z~a`3cad.8F}aYGP`]Meq'j> c/TWl&<At!}zfHBJPL>;\ Xo>Y^OTS'n.|'O7 k*d3(.|Kn.>\t{=~[0a>9x35gfjbMo@}97cSIL992\\]\_]Z_\{_ON;N( ;19cbt~gv6] y/`=9{ xw]yivp3fEq!sJYV$Lq<%^$ ^VtQm~`I pu<w)Xpr30 }mA3Vj2 zn`4lQDEb-+?W-Cq*9I& 47n}lL}T=BtP$ - #*r5kScZ9=9f-{WtK=jL1<f `$<h#4g9~m\G!3p`[ukL;49AM@9od]C[T` I5 DKwBqk|cSA[Bv9oC)97n ;hga>E!A6F5v<oPyuDl&Z%#&9#am zH0%gtL} U!E+0 jBVDvLhnn7 ? cN:U^ K.qA.1^+bBoFEGI}<;/~_G~iLf0l6|$}f7 mkk 'N$ ]`)/c +kJ %KB%%+'+ -yT;9>\Ucw.X J:hqWo%1a? q n__8n{>7m-~@~?>/~QFn__VcVmVmVmVm[X z?j/u>#h8M%- vvv_v#vhe]ssgMlhd/Z rSHh- L[(B 0\0c&$--lxV \l%j{a)A~9>-1C4 ^f [wHZnPza5qFIB' ?i= 'n)<=pEHiBsIfgs:qcX2uqp1rL@Q6-G]HYcpzv>~02p5*8AP2 % QWR:Bz}] z{m|SIF?]x#Qvj76W0&]lJsz eS8Mnno`?n!avFz _OO\]8C+W'pX<~asny>u)Z4tey ?/=f(}vsvwv{smmZNgC#]my'`=}=uoh'FY~BY*eQd(H$57^QI.Ug0[;& @OmCTh9 yXj`j\d~^p(_5K&]ZEM >Ny(_6c6E]!4E ?G)p k5}/n [ P6jZ+DBY]])SF>5k'oPV vBM \0n:&1|>Sau 2hb^%~KoS%E3tpqA5DA QUibTpX/0 :dZ4Q%ea]Ba}Q6>yC 4;):&!EP02agb7 )/#G~i.8sLtqK.r9?3-Uw@\G9<p%T^gb>w}<~AhZNc3 &V <8.? hFTjggsZety!s9p(F9X>.!\ 8#-.E* y  bk 0< < oxe+\Eo~0[L&7DkD}.ZIh\(.I>3|.?qq^pN7jjjj}gva_ p%stW| |sooOsg{C!g$eX1 2eALB}@Q0e*mi*gIK3s&#Ul3k@sbQ[;:*X'm2.!9hs3VS0n9 ]8#dGX/MlQS4 t.d7R`MBZE45-za FxE! D3 84: A7 yk\Wb1aVj4)\Ocuu=>VY+][073wH c(i=L&^>TOc/ OhGw>/}n'?]^Ow(Lwb?|'vOr3 $ $f?`[[p(|>G\Rsgt)f4Q-;wP=ubWbSoW#Z _$AN^Y I$Z$xi1Rb$p.>3`w#6cQmTvou'}cZ`99gWi4kE6*ieA1 XhT=Qun`U/[!tT=[DNSv&dm~Gg= !eU=sE|4d \(Vc62%W-h+vU.CE?NBN'i?/?'$za?&DA*3J(REAn]h0L3N-u\QN *9[; Y*A97mPy3hq z;`[3l[(^6?gBY7a3gogrQLTyz9 &IF+vcUZCs:z<h\$31L` 5~AH9 WtyP o-0 5BVc{c=  z'+'G ?3h|./&N+l;55%>C*|QQq+J5xo>3CCCn\.?11G3EYb3txy3 j'ZEFXrae|.)MX.vG_Z~R~rK Xg+r~?R?Kuy$ vT*z)8mq:#oXK8W5_Gp'[V6V[U[U[U[>7%>AN?5[(dj=G;pj.i%sT RX6 &*ir-Y-MFnCBMhq>Ao:9 r^nnih6E 31 &o|0B90h07@vTX<n`7g70Lk# :c Zf]_s% s+E8:B -Bjk= BQm<S<\ Qn(Rk]dLy59!YI0( 'gq?sD =~eNAK/<TBS4|'+ |[h?b/6W>Y/H:yuez|Vnv.x3=n`:z [GRkkS?]\Y#x3oMy7~;>FwW/-xOMP<:7V'_//./?vqr\u>= w& gaG4;nI?g~.C=mk6m =*1]nTamqJE~D.*zY\;!^ 5lY:< Fs`}jc\m0G #Cim_X?_2eP<lruQM+ +lePA9Ebi3#sjLC -d&da2v3cprDUTi&PCYbn9I3Ys9r $Tdq6'l[TU0hQ37}&xB|DYe#`B 4o-~Z89 &!T4|&@ CAdf8 7cpwD ( u137T+6% AQ3Q<h a}X98%3 )&$):BAX)y0RwCZ'y{?a:;;?_? .^ywwW G@gpHsOD}H?X|P?gn0yg9isVB D(2jqGG ^.nL]+&%bKCEr]1K\Uw[QqbrL_7ug~#d2Xi |f)z \J934.~~K Yi/7oT8 wt':v7R cU[U[U[Uw '(>|`%'vKtEkG <|S({/|]*A.V ?sTM*mi0H}[1RX 0Nknmn3E+n.\myc0]M*A3^ qsz*) F3h[aYDR8MwP;BPW+i2&]HTM 8\K70n4@L&x3l5ti-Fui=~4$:l=fcGQ=|GQ[0N5 @}Y@P1\DE@ >vkj tt#;:h6@k#Bnw=qo$7?]EH9`v._:q3=w; WW&[ 0pf?C?1.97oL:N|jb 8OcyuJ4tqsvU$s4UKKCcWBF|C#[di>^r p] Dly.^/n{L;nC`kYv(!h~cT9cUeJUkNb:1m^Y8j/k#%MgBzXP=Qv==-fwOo@3 .;&Tam_X7[eQQdC+ve HIRr#N8r&5M!U EFC+a:i0B /*#A#2@A4tpin]yy-[mrL$Rte<znc_Zr~Sz JAo0-L&>Vgu[CB3kXTFdB9a>|TE={uT^PE(+F1Y8VlU1o-e&y g/$7-sF<dsF7Uf#S A )]:3 T H  Qn9 j_~C3/~TfU%tU17\.'C*%fo}_TTfs 81K6osY?3Nps95hD\^<]kPA>/]y.1o[|K}r}`8 jK m3?G G ^|h.eBrN P[ P>?}<zT=w ?~ /Aw_3o/nN zHgI3 RM1BW4rH-#RhEEYi0]$:=Pmf )7:LfMd\q1;i|-l7R ^!E=VlHn3t@$X$-%46rp!\4a#j-SF Qn)9[ *\3C:ZT[(%YEsL F3PwAea DLMFA!BY< ; F9 q2l0[.dK CqG3nPhJ9#p ~Ng_v~ H77o]tgg[1?]]MVnV.+oGCWW%f<ggnfHZN/1n|koIDSDvW_[^9D_.yaE(K?Ha+S]>M8.zN{ 5v<==`q]z~ mc^ Ag>Z)pYa0#Fg?_/{<R C y VtMwzZ6Ow@IiUgVEyu?p eebuDm8j 5lHQ:@( UG6MO9NbbN h>#%&S%<+v;g2$kBFcRh\r7 3|y~4Xfzs'64@ }@jkA 0HsFZ'gn#iq|L@Y6Ke2b &B` Na6(hFi2?Y:s`= Wt0>6f>?Zz -#+gRy~xs\nccbJL`ZE!U<0`| | x >hbb3gE L((? >+8%g /j%dPQ]1Yt73=a] Jbn[><ljp ]nVP+^z- .wkUsU[U[U[UXr ~# 'b^T~Fp_&''Z/>vI%M.S %Q:hk+e):a.a\Kp37X2mnTBYfq4r^)%Q0gJHxu[f4gsEhY9> F$oM$4T-$h#s5{6g [3w];#ihvKaP3Pq&h WpG * rFN3 x&:(1f ) n&51S5K9F8)\h(J1gms=(l5#<H }j9kWS76#V?!O6w'[a!<[zomi7>/~pdK $f&$f1622iX^Y<;?0_X_ V^{.`yz*`?;1vv|t~*`;r2[.SOn2G#f h~&mQ&M P\?'0&Cky^ |hzXjP3an`Qqy-$dR_? {[%AY{F3s)4 |L8mC F=aKfa9B.>fElL.k#`SS=c:96<aATp)S4hM  rod[<_i=dAKso ;{8f`>l1& Fc3 luvcmc9Ds$=I:k|&3#y2 -97y;f)<gD4 fwBM]!Q#$7 Im>tk x >\8t+d6662S9%L?={Vd4K?`P g&w u18KXccc^7 X^^3+++ yfM?X $aYb~AHE]PA#<:aE+Ad1](lOQ3J<Wc%d.- Ak9>?xZ)0)ss{wo.xq|.V3|x<_ :{UsU[U[U[U_ | U%%{h8 og-u~W.i9h06ig{{ :'KLa{{WGvwv015N [aB@t+nYfi!D-@$ 348xCBjx*56A*w+)m|CNk  =pAdalC ^p>76+ BMDX #9-My>i} sC] [8s{9xVZCLp5W!l*d-[P*}Eif]QFMG ;=TrQ_NRB\pjR!BYL9Rc^|[w={#M ['$|b8/!UN#p%fh|~3hJAFzrOgDWoM]If'LB#:~y93aYqNrffg& '_ {.g=g'N>ro=v:h?zLvcLu -ac>z[.S qt >3F-Joz9t>QCsT7baY XG%<zfTv08 H':em~mY[H>99#z(_*V* eqfmLrRn}O9)3fKH5i#Nm i.cas'SA$GD5TPuh.]]w7 ACDt @!O^EClJ}@| nN~3 !l5BM*h Z1Mqf*hc:&MYA4bd]E31h36X$ck9QM k~^ URAQ]dDQhEc#Ebaa&9:7t}3>$:=|( aDvqtxm^V k@?t 7M1hZTE2<{l&? )]a Q*cttW.\zp6ZtqY<sc1fh.pD kcb<\-tx9Js1|.GY L/].~ /%/?WL2%K=qT{ w?(Y|wSO=/r7Fwbr~a{].?rzy^zUV[U[U[U[_mo~On* /pN&''F ?H:wvI$] FVtw&vjoMni{FFMa'=]]h@Z8:Z(5\C*m'i? 0c;f)YF!q+@5m jC]vt5dn\kY -nQPX Y 3 @S3F4R4 \I+76 J_7p;aF.()0sFZ?sDbD7YA gVIC'+jZ@4Bfvc#lBfx8\EVt$f*i)x<H%1\C\t\4e1}H3 @Y8 Nlkv6AbZl57s eEH1'fGdTzrZ;]3w3oMtu3o)+.^]]d1z4Ft'ykHR!\{o;u;~9AA3SSs33S3.L9_r v<-6` ]r:h? 1-f=&jm+;: u?o8mv a}LSfi8i Y<jdK::/6/>/dz9n?dmr3$oK\&wO' $0mrcF=-1:jv0tig]%65=;1>6&jR }^ U&Hi>C(qi ]K U!| cU Gl>gFUk]u>_Kn=q|D&nyek=996llH3M1r y^gsIr[2nCrm*A378M.hrNx$kcu2hgDOM6Z Q`2D 0CylVS i0Pcs30l@&1p#zm -~5SO ~C/#<u8 6.>sL6S5`P<yd(x<HC? [ xtAf?B!8og0`bsE\E(4oyE8x JW$-: 4ayz?9p0]j7*;X|<w(_RK3l /'HR%&K!U_.w> |I >|WV[U[U[U[ oo_xVcD_8`'mkbb>oXW{]=}}}=]. 0B.TwX&ev.tuttSZI% R% mRL iN#3fYAFYSDvq0pB#w![BNGc)mjBX7xI$jpNpS7 j-( 7 WhFtX>X]_- {E;L t)0f2aD4 k;!R&@i33g'5g.hH @7kX M775\?~:I%]@< 7 ?_x{b $f?~tw[k+DoGoEMsKlD?tG)(yN#UF]z+<_#C6v|+F HUakg#{!^zz|bL28;9SA='|py-'|l[N HIh}xN}nL)VEj IKYUIqPHtQ DAf~ep`=(k RWOpyjkZ5zqpn2jSXm(^sIg: ;kQ=H )1%5&*G17|:aN4nm9PFh]ebc*eW&m hMbFZrndHNu &.5z394o S#[v6hfu3h Z7XC<df $U c B=Qgn\h%Nx1.Fe Q  AF-XvpNE<b\0^J>sC73'9Oygv>vCg2)1g\I]=g_{924y?(G yz^SNiA*A ;::~. /F?7777BT^A}atAN83fL 3$HKp7K*UIre[vv C0\rW_5`D3yD(gyccC*>!87xH9.l48}W[mu$g`.Z/K>nne $1A}+t<D g3|`#?\.r<|CZJpijgnj8 }Z*Fs.;~roO?:#>TrE +Wqp'fB {23td1LQdU#jfua/G6`^ZKpK#jL5CZF+U*!ZA* 3_;sZ)cU4@K8p7TP6NsuBl3?xNcY ag2?> (V9T C9 DFI!Y /SA }  s| sfVI+hPqwBb} fM5\{T|%u#7 D*<w We8 g8w&39raA70}5 KA_3$F+}PDx_{57sL|Vi{3wwa@[=9X1FJ/sWfSW0ng>^zeb _UJnc42yueb: N^^2/?]~|%\{KON'?Nb%<Nn L ~?O.s>?jCgw? xw{]JA{5m-hc399O{3nC-z`1PgL^D4(@lqi *K~WBsLbn3 4`L7 HTp3<nw3[V[ vWqj5|3# J1Vwc]*PHg?g^eY=|h'<[e1%c{Iv|4 ;gsZy+z6m=d~6bUp . V56}~s:7df@z)qK?Q `=OAXsP@g!h: D 5qi lt=Wc<y_ ~}Kuf)2b()wC)o_b^9 `on\ g\#Gs==<1?d2)ggg9g>KRsZ}7g5t EKA7EMM M6k6n4M P3:pSPM-=(|>KPRB`^ZSO= VFwJ* Fg'Nj7]}nnnn?[Fh4 >|w>}zll n`stgfhT.? jvO<V)MlZfb2Z&f3!hd6HQ36t2[4AQhF)Mc7h 5CiRvfM jP'Q)5d2 n$+C4{ gf M~4C*e4 }jA@-#>YkG 5`w4hX3CF% 8Q6d-+j56{tX2?~rH IlA[ ? =pfZ=) BpMeh j FSo0svbqEqW|XzO_[9zV.Y}<jV'~{Uwg &YzoW'Y::ZA@[)}:yctc]_UQZ0V\bpeer;-d/N|RCT#2l0ySI9Dco ?7vzo>G E{QDM!7v1 zFB^lh?!97F!mo]XyimYik.If;}-AqieTP.jGpEW#^2X!3tv>yZ*7C[ Iq\23nPl^ Qw5{zo%<Wafq8gfO5={q/WXrG4a* - ?M?{N&HQq !g?zsg x!I?<{U{j4$oI l6%i1k&:Pz=mV^p{i;@!1 U(5l ZLg C_+2(D|j j?M4+>V 9y\KQmWKO^z;a/j(`Cb~ B;\\\l:[!/~0F#\x0jCCCybb\.OOOsyf- 3L7DFlTp0vu[RG]T?vPT \W1'Co%JMk Pu3F ~ K]:kwE=?bti]f&''z)E=zmoGGp% 7<j[0 }qu5h/^ltp/:O=dgGf1EcH J[LFXr4D`i2Acq'|!N71kW4 jk5Y7QJ{tVv(1<RP &T!)44n:0BByAMZD9kY2OFX2.DH))G}gVbVQd ka [|e%iVckXt* jCi(]LL_-gMRptrB>Pug2CYAXFt;p RmT}3{uu(!XK>? ?+ '~X*|~eI?2_ob-B?oocJZ}MK76\/]N@b|RK+K(Arf>*> p2^a(j3! eJxB0 ?6t!|33 @ =4rAQzQAceEycs.#Bc eO-u I1*SEB'KY:GjIQj@5m~\W #ko#5%6#]DYoq:7])(aig+^Mr#1;<d3?Mo/OgQh q'p z;b{c0R6L\v\&y?; 9yx/zqx)>\p'% <HovY! Y un|[1g!g{-|KKXm0[u&`c!\Q ` FgAmJQ4+Uti&E#gL$t)))n [\3ux(eV)={nU)> ^Zp!GFFh&9?( :7 E ZnRn XyN3<|5-E\Sp4:HMssBJ%[ G+X oboDY!> * .%G>o6Gf [.'''_| n[[[[/o?wPJZOOOpiV1i\ 7|nb P(< { ?jmVqh&a &E6d4I - eYZru'fw4aU'DLF2g5F)h- p&5J)tmh|qeq`h0UdMB9M-kgrCp7&%]+ hu[Y>n`5u]SBa xi*k^#C|2bAB3HXkfV=s%OOx@ut] ^p:ND8}Wf-<:nT}1\'>/PZDLJ&yXnLQzw3+_[3?U~37X|Uk+a|+/WW++k.f>K}|pypy)b lg3s;w?*F y779? Kr9;~! rxl7v#qt dp?6gAX=FW%X I3-zMKMsNC7O;3.cysM[LX f^& ` #fGeo]*cn1J2g@I5x*g;xj|hj1?j3t7vRq@k!>vg3^&0Ml:_o`Yn Ly[I{)82v:A~ia&P l@SP=Z  0rQV sBAHcQBDFWzpq;g7)<.Bs3KEQ}6h f)y&hX&dTpf.z@:C)Mb{b  Bq2bwLMc=gE+~w_xZ?C xi a^xC=}^ok~#G{ 7 `pdds8\*8 M ? 36661_0 ?iZE\hLG7n?Ft)j7s]n.CJ#|@A^ZEu~v`E\0 ?S/D3|EKXN-#h/iEA?sssps!M>C_?+{ ~\.-^#nI]DL&v3pP Z.F B0Z0v)ht4n\M aYZFC*:b&Pj!93t*F{FB0KX!LJ`4SWEPU$i4 D9hV{} iBI4(@Ei7p+kqi =!s^2fqFAzg>fRk@sXZk=ZK;t*z9/-##YN:aN4o 8KXCW/t@w 9<}ZN|VRqeK?O$v ssN@DJr3l~mRfrb7ko*%+(L WL>l.seykpk+kf?K}<l>| Kf b Lioe|>xV 2g{A 4J\c a?K&Sa T8Q`VppgZ[nn>0M4 &M& >l~6 { k .\1WC``qe.DvVc+ o R[^7hV py'==-Qu1o5SM8` e{I)akRm8c &.}U*t`T3-|>s#3;lh?u }Ld|n.v&Q/=Tz7?o6w#Y*g5{m:D?sq!hL;syo ZCAL6 |T28.a0d.z(.8?gAm%f%V4eIA>zG=o<{'N>}^:|0<R4|S? a)MMPIOY*- Mq^K;uG~x2F1rP(Yj ~f #)h@K)4g<rkkso6T-R;lrHWG-ZpC 2dfXo`WW>n= JM|[(2QF/-7 {?}dd[V>M M/(sS7bjx iA)|x)|?7?c|?x] od2Y:>{x#FU $pwy& . ;VW ElG yGOF -fXnE(m56+zXP CAhsGA ;3tLtM M:J;CRi]+IaLuHUU>\_SyD f ;kBF-$s .P-ch\B3&Ma 48$sE |LJpCf\ \mB4i6)L a7*ZID9OX'h::D)4>FW{ bMYVi F;0OxVuaA8 8%riF:zD]} o_J)S?nL}_AWkr* 7 v+_/ KV&:/V'1^z}\Y/+&T(@FsK gR/e.SSQB1#{s|p1;~9^)Dbz\!|C!}3|#S( 4 7o'A rT#NY}f^829S M[hyx2I6mPdI:YD4(&ek'L@rWF#!Ra1TAv1Z wav3E(qy}4 xO'g*c!.kY|1T%l<*bBBd4j 1_e`WE#t=<~67r.?V3!8 #G6JgZ'O3mfflcseo`966:\'Ogw:1gv qpy.`q<l'lNKL>S4dX>cE d 8(L:aY;vAMgZ#N9jG /e7>e /=~xZm;XsYXVgnGL J()=3p[VV\<l6obL&399Z0\P=37i6 ~7L%h;ZJB:5GcYzuBVt+F+xs+-:1:h7PLV: tcVk! D9gL??nlo ~;4.}Cdg~JRx{{{Bxga?kvkvkvkv_gfffQW/8<EK<$w|Z_{z9qO>y~?6f3bgRvm Hzq)jQW(=06=qlvig!#8yR HJlHl 54:8MTBB!A4;8c9i)&{?jFB6gYR8 }dF<P%= @4ni08tW9 'Z>jYHwQf-*> Ea)|)T@w P!cF5c{:d4a!NZFeOu/nzTso?~~1?mN1]ZIQ 1S|<2:FR|3f/k+g.-M~\beagsO2 Sw M?. A/Wg|.6t!D#Gn|TllbBL(<Bb:L\*y??~3;z13r> &gj[ F|{qsm^ rl~5X`][A?oV3|FmVgN @_U9`/:D8y%R}X(Y\@j2P^oDaFI[7><>~f|!R|CpHy WS\ ; .hbT`/Mc8N;h`!Ts>ri Pt} ~S9tAW1{lh/;RMdp a5Nay+w#&:aX&^ w#VBA@]k7`y2Z 9Gfs2=dfA]S~\.pEz+b:K {Ds9iVEQE (:c?g^0x+?7UpHqQpCSzU5[FegXCCCf373 t\G W>oQ#X!=K8#MAz)yhY:/<GD`<lPIK;W!lI M 8Z:nUE3rG'_zu} 6mc}V?_g7b|Mv]Uxkvkvkvkv?_Op<R ~?\ h:p% p[w~_R { A5 `Gh ciJD#I m`4Z?0@qh&Dr``6tlF}ZGCIij*bXX>y(Q Z1 Vk; 3j&Icd 5JA QR ] jNfLhBc>(Bz&Ah0h4f|d~fw+MV aOruhZN^nDZ9%d%WxE48gE1i>#gV Y}PcZrtKF2qtwI- x:|472+?;`3'=vmW_3/37W5{?acG0UmPoPg6-'/e.g-\KY9Rg?N~P:|1f`Rg 9  Mrwc'1B@%G.&9* x ogG7y;?v!3r!l&t6)01;fvHl5n6G]y9!BL>Sm?MS_ +X'l0Y4XsP'F14?#FlQf<\85Ryo] @Qyct<Xcmopg7167PZ~s[ N HMr>$I2v5}73DIQbDn2 V Bh'$PR9jvC{p0Lh/ D@ lE;BIA; (`@f W7B6bo=^XKA+2x0Z+WFK# vXB_  <?l XVK>[?|6e CT7 L4)&dHm1*;7+?G^|DcnkK?7)|; r9gY?Km uQhHOEEc$)o@ xv;\ub\.Wg)|c YnpAiAEdxR>Ku% /4gQ\G[ MU-_[<R\WVhMI7 R |N^`3OH.Xuhjq? ju(Bis>PH4s=kvkvkvkv?o?S:~w}'>T$lI!eA}' 9D-> /z:$ l4QrV+yY4I9(m! F/hBkk8Zi(1( 7BDg4gNMr!/%BYst|\4%Tz{z43)k[8\6p8YI&jtek0s6cIvS% Aj<ZM1-ba| ZF?C $|-'f4Hi~ ?+0Ssw3aItw_uV3Ptw(K3ni{:v6C^:|i*z}1sc5Fa#2g?lL@qs/f_.nL7_|<^2\_L~VV<qL|302&\Td6t|8z g2A9dTh#[sU;WCd8+!r0Azhp7;y+;J &h{Azbn\:t> :}FcO1XF)|Ey0]]SuS.&mZAAY1RFEb@ `5iTd 6$7n.83b!B!UxAZ\7x AQms!B+1b:e6Fc+b? ?c7cjQs:H|H5G hoS{N)1L mE=[Ts.y9ShcLaF'dB;fp(SE e7au? w[cCXdp/R 1+? #K!\23x y F-;4|IKc&m0.?m0N1 fe\ !s >y~7=/[U/} CNuI<wOUW$ ?W* x;_d<g>* <CcgAW/2)XMR]8@o1 `R>X/?7n5%hhL>sHsMuEZy?u/EP^{kx<J SKb9TXfYi<om ';wN5Qx|71\ju2MMM-b9uC=t@G ~W^QT&-L\b6M .B zWhNhJ>d b._4r#ISsD)2gtw l_ ?S|ZC)-$Z=\3I#ft>ADMSPPO[I 4E h/# FM q F\@ 3H4 ;`AvMRz2jx@NAFaK\&uR8~JTs7NfH~sEB?} ^59:NaLUVAOL.y# =&?z]r[] o&9rlr\o+o+W&^g o\]}3 /W&e<_]T|1ltt;./M\Zgcg#|i-=N>{G | |>aG x:N>#> { 7^;#08#^l zT\& x7awk1ZvpA+~0NZT%fjp<-bS_r&UY4yk *hsHi*k |Yqkqcmf!y1`% ekaf DQfE12  NhJ@44h^&Xlp3DL&MYGNR!0!D=Bd9g<$xCNM-BD{D>>)r#T$vgI@Dv3gBU*>}~flh > {VF/ yuL+avF<qm!a~D g6 g?(-5X&sg0=3Nz }:963?AYc#T0f' >1D>6;G x{DO?_w}UXkw4 aSh{no0G 0H[U$lU#RE; ;:No$l6 0333bAy}^4XV}Z 3R: t]..8Ku%[j}00o4U=:?!#&r{^J)t&nvEK> FL s{C+ 4xOIb)__oh7|F{F up <66Wq#V\T*zkvTxO<qZD[&eHf^Zf2B[hlUX z 9:(-<# 1cZ[Fp'O5 &qtZ4*kCC3gJO\PP6eFM{rf@$+:Qj*5 dP5ajfOGEZi!&MV CE#OF5d30)8QC~XPkUj=$'Ckd 4P 9#Q\[9;C %1E >q; vv~[7W 7V'Y+XEKkW'1<gSKsiW>__2sXOK_}P<| -F)F-/oc Cv{ 1vG?v]zCiLX(8tvRtLVG1&J-Ln6o&sHE6* fUNTHIj2bPG#37Aszk\[V:WB1ATj[=qCoBO0dss|:ICTdfA5JgNQ > S`h/'C3 yh c K b~9 Nxid{ *MH#x:@Nq6gx]AV 3 . # \ W]a <iCqLgPaCe.hZa07)D.y}F=Ox4 CAt6opZT1  .n{O<OK JygggoosEhi2Vg1+L&[:vhE/b[TpHwQ{r:@.0D>g<777??eq :7`Y9-dBV>sc?Kyr.\WU.-b:-]6<ntJ6]eo EFd#l8Zy'Zo57E>C (|lZ(T4 }+ o%;4uiU _e6WWmk .qO8aXVD;tS]Rj.\;\. 5s=wuO?XLnp  Z fEn` &F kAtZFdh`jVXcaYKPAFd4?+ ed` J!D}Bl+sbu `VCQA hGHd5Ge*q+?kYZK&+W:jP\K%2tt[v4)7zrf*<Y8uy7gTC3d&pMJwuuF4% vBjN'?nCQIu?>wXXWyXdcej$6&X+Rpm1wu!L:e>M3zu|}xi = pI S ?|2}rNG#{ y <GTPdl a2 TFAJ:46LXmPWrh: `.c`09Ph&o$N6*fEgvSWvbA4?{L 4dY Bg; F 1rqF1aD4&0c>y;2g%YfjYP5 |N4cJU< MLn D)B ?cA@c^x!A~!UJ ]F.bp{+M7NMY(bg^ 6?q!U<C:\] {V 8 4ZuB_9G!4oXX=xcXN|.LCfv>C^PsS |:M :6L97` oL3iual\'*: NO^~SN=?L BRT2o0wIuhDv 87f[ |#p9svp8H$BT<Y@K4E:7DiR-uYmc hn ?hQ- &lTp4M>g- l#[V:B7L7_Z< ?'x><Ui|? d P-p!_ /vkvkvkvk[?_g/ x/kjnjc\|eb:zp}pUoOA#)4)$/i+8;fJ5-&#1glB#P II&0 Z h ?F54<+fw0USa43jUM]Sj`oUf4gD5?+qE0B!xZ2@M M k;pCQh6D4vd5<)-s7cp<$soW'<JEIi+dYq!BJ>kjB'>sY{&[Fvk*{Eawzg =VZ?}RjyWH\F|}5!ky*2yB/_L^_K/rWWil|OpIbz{:r`P|9r=ra<{ ~Cw 0Eo5GO>}|bP6\VFkmg>8rfXvJKW8N9gdA &$y'ng^ .+HWB=#v cz+wUFqr}1p w`3b7 X29dU3My-br0 2Ursf.1:?@t&C\5v:1fD@#md4oN&$B ?9v*h'zwk|YQ&1ma d#]9 KH\1A 3lf<7-3$e3 3's.y1 >#&I<hsecnB=czOq GD/| \j?k59;HSY1+ )x<:F+ #GG yr'BP.bYtnRH%Vvvv.\P~wXJj6 < JQ}:JS\F? E* sd#_?J!:{ sPtUQ!e@1rJO<|\[* :y5Yg-r =zZ_E?\\\iZ+G h4Tjww!Bp]epOXpttt<cpD :tCJd4Y-fa2RBhd4maO&Acm6 !G9kht-M>kkDSYh.bVbz(84^J;iVP*+5As JrESdZ3J\P!9/8:D}Q22iX-:>>V)pf3em&9P0g!ZKVDZ<\pJ mDeTjvG4h4 >j rRKu`3QyC-UzU}=Vi eOS(&)1] !yR}w 5v\?]_b.wmiZJZ(\KjBbbT<qmyRb sJ M/-+DgK^=p (8|mq =+Ay{L= SuH/0>^qzl@2/;-_S3<# ] 0/{c-}c]u!|iqeXt.C;gY:mT&3Fe.X4k}397 [ 1Ch~^ q!Get=c Mq<Qb[=p^.Ro&1 vIAh1-*M_@!I6Hz6`var;L vc3w# ThAG` '< 7h3 Xe]{AoDPVJ |sELye ` }A=;`L\|p.h by dQ(4En. =XyuY@9Z84bgGI3?eUM/Q(aLg@QyC|(L&~4\oa}V=wEjaeh$u. x<@([cKccc^}pM- FL&399955gfY -?skFY$b :e?h+s]AQ^[;@!?XG6?b)=P lhq#y#r0|p\P(V'l`><K45?7QeL kXyF?7?Xz'Nh ~f3\1^p0$Zn0k k%?'x]MFjA;f Af%-fhfA A&JhgR!j*Me'H[qID5.Y4 :4fLFr\r3o3!TPEU U7V J<`O+kEbA|8gLM ^\E&\NHl\~9s: *rJ+Zl0!)f3AyPZU*t7IhU]|RXyzcFY*{T scpFEO U8 n{' DRf})nL}Z40Q1zy>su1O! 2N'?J|R|G{; Nbt3\ ;7< G=A7kTNX4EklEd:n02.z3N46/x6@w[}yyi(X1<yU<#w!cGC%u9`[ |!Xv! a6BKnK?I9H[Y&cV>:yJOA] bgLg|^ `A+ VCEA2:Jhgchn81=)4jnSy73JoR bLsc!Bts9-D{Y XFGkL#oF6q 3g?#h@SiB6d: S$ Q8zJ)z:DkahN)hMaE^j<)qoTap 0pMEq39s!.A' I&iW'*)&nQ&J=c XBgh (9z+HsD8y%dSHpR*gF]lSbmUmR>@}g8|^{?8|Aqh4JBbffF$ ~3gXvZ2<o/7!MA7%i ?72(o5\+_=@/hhu:RZ E l{V\)=I_ESrcDtyB*Eto>|ls \<y[-&gQB.._M< ??-X[[[wW{zz;e{=o+Mu3pw|~ddd``_<'Nt9jf t F/qiuX-fd 55SDu&A?5an@k0Cc(u I!t*fJGkbhoxSAa~M'C=j!&M!j@!EI'&IY!Dkb{{kAh.z NH`d)2P![V(G5eQ6m_tM(c1;Uq uhFsYctYr8e{)}& jcTstut .oLowow_` DKqhNr#u  8bTY|<q}tRr|ue|tl22W&>N?}f3|gr1;v>=r65R}3/!bv'i^aEG|/cPdQY0V][ )4 \YacZg]mgGxzX4XCC!\izsg];6 L zLs>3y=FX\XtN]~p fXL^KE)s&UrzXzrf/tkq`pb}o^X&5/!chy9Jg; AfN-L)f!|cy={(!K9&E1L)h NWwM2uq Tg@\i}Q@#H`D8r% Lwm](S7waf3MwAMz (<:{-YJ2vsy37 !>3Ma|1yT'][?5j5LQNy@j NEikkaY.h.&?k65eA!uXwDgJ>#|^nz!wq>#blYvks;;;g/S&R)qADuFh)o_wbL&S~3 0pZ`O&\BXfKXyPoH+2s%3F3ae/\RE\gK>7?;ig)^[J3 JZs KKM*h{n0?bi V:;@.5(ih:y+Y>q|.;js?}/kFI#OOwwUf7{7[oKlZq 87A8A. gqo}b&q<888uX. VG~f|n7c2o+AAAA l6{^oxxNtzz:/+*'8Ggl\4=]wud~G.d1)h6rTrB/ag.kH }a9L!ad  b\<4bj9V +)luX-Jr3N`+y6DE HM5l1w80Lc5MpF82Ba 0sX^P/ehB^hD\<CSgvj}BnaTP;B hBYhq@X4z5W 40d5 AY4mF&&a0b 1\ZGU)U5zVyg_gH9g6r0]_L>(-_Z0E2<dCTp;LMs{rz2bx#m 3y6-y^()p.. 5 P a@)(xw to7eeS%gIr-O%;!9`;u%`[*;E2i!of c .#% gP3g=W#)8`bJ o^ 5}-b5YKAc7/.D[S4f Bc:Q}>YlLw& mco: v4 o L[I-Swr ^p+8r NG)( y*?T6<)xr0N)h)k]gL5RTYgXK-b0zV>|f\J+i`!.lkmn5FJ8cxa9_-+s-[xTmy> I% rMy8ii& c Hy7G2 i0qzr{}^{Wu>_DB] u}w^bhzi<i;1fWb ;qf'Hcrnv8xk&u^PO>s0gyuOt/~GDGANR}] q3wE;U}gs/j>Fq (O1ODY~3gHx w$I+}K.EN=SN}[W[6h6h6h6h>op'|j...^r t)sNT4< o:yrltv1y&/v& H{` E = sXpi67Z;.i~rVN;l \L3S6r F]?p!2Q 57bbl6Y^!kQB$ l]9p4CvkGc^4gu}426 kK68VFN:G G8&{G'_}1OveLcj pFqG.X #& a Fa5 #vo [ #A*V8s}K|-yCmD7s_N`kKKQ]ze+_G~aKo-d.ME/OE$ng&/$vsFFD< vci #uC _x~|F\jzjjoAmHU.y@)TXHEWz!LMCUoIew9*8My.`7Fl# 9aam#0Ns.{|eNm Ei5!UOAsPsQ_ ^QU*wXn&fRsOxY3JNtRZLIt1)%{|5b%Y4U' j;To {d@L& dusBzFA>!g*dFZ4Z8`e$V/Nr{eLP`{ 2<QaGFh vkBib=-W z=lN(Y^7`%-rJr2@gz1.}H niGgzED?+{)\R\jg tcQYYS=&Fy4u>w 8w;p:u3<&''Qa|+oGuS-;4|M*|r_$|yfjP(J\yzN38 ^Q? f;3+];Wj@PMjotQ(| WPQ/||}}3|^<;;'~(>}7$I(}osWYnE= /?kmmmm 7)'A+5MAwzph<^8~g yg-&QU'4hX 5}hv)4@igrpB^r`B& fnw |BdK$F#&4q3H5vZqfF[ E5k4ly.5Hcfm4;7'Sp`  i3Nkaf_B<3gP44p5tLgDwl5F\k&n`Do&`3+aJ@m1\C C M-D(l20h62wHZQdYa!**Yi?|<D>6~+_9 ?Z\I\MB4 MFYEViay>y160^V|v>jq5gF5 n*-{.MEqX\aa[VsJXPP%yus]pxmKn- 0o N[FglXfucy+Laf`b78SYamZW}|!nx n kQ-$P q:y=<7B#`-?W^X!5Hw'T>$/~o~8<O`EBhCF| 3;CS)ugJ .q z mVRWW$m]4b=hf$-<%VkIYv2 =C/wrA\YGL^qIkbdz\?Fs.z?{Sf6wrj3T`5)PLkYKIAy+TpPK> a#-G{F3ECU>$Z%Cw mAdA|^juNL crt;G )p(:;w]<_s]4|^vMWpL9 HwS8t ^OLijT<x<:='?44 <s=xbQpjl68C3|CzAn/^~ u3']K`_GW^G'akt|e}1Y<w{Nn:* $ bS ]f~{/==S`z^3}:9(>O/l6 ~r'?jmmmmo/~ 7W|^{2Kp4u \6i+<Gy9n' Y-f^@Sf~CvF71 fv:Mf/<sCrnh VX3fjm~\ 6E;# DG6jM5nW0|h7; ZQXl42F46l0CF:MimGqJ[ 3g q>n  F)<DU g p/TC|[c!$TjGXLqxXF*9 t.+$[a;&nFUX'n4zg7^z7gRoMi{6>/O4J:3{Y3gqeq353|{ =GZX+}2&zdzlM5#VXb]K to<`s{> :09:gq<mic[Ey}Co)=WQ}U|EBA4ZP#rSA#fLz@.]K$aDF_O[|xp LB8#zEE1B:$G!'9Ah{a!JGs9g$C2fLl70d'!aa g$rq0-'WnhoRgtxoJiMbW)f\ w& _{yF[96+I`$V`LTLJ$Bm7w3 Q rU ze{)qYA< .y^03~b8 pr1s4o?l!#g_ x7x3w} 6^^^5]wt+Wv;M:=wp@G) 7 1wyC= /~8rT*yC/;;786:} 2? {CGU+Q*8A7|~pyTs1[V`/s=r +px<U6ASJL>w|w's}?@dp?6EHz8p>~v2|g{\dtt4e vUZ+Kt7npjmN<y@43`B #GK=Xu  ^Btah`%S)htX:!)hrD31n[;TXSYI ocj&NDO46rmld3fq vW$$F;ig~(&AB8T=_3;02h#[cr ;i@)8H9Ql&#1 m E=r+RW`g>xydph uX`>2E$e*#(h`#/0#~@z^O-y#vL.(^KnsgN;^;> GOimu\sN [t)l/]+aPA A_!%H U\)aqSQ W`&r1p-+sMto).jJEwKFXw^J +>9LK Z 8;um.+zDhDzYz-PbyAoJ_r]*w-vZWc f8:hd$XO@K34BcveOGZfs`&gvnpg;wOG_\4si{x*;8f~/R4Lhhf3NCk %FN}!L=JkBgKs;3!#)\&CIj=+52Z8nV&)H 1!A'Pv[JqvWHfA9E7|F ^SQdZyD5Q!y(Aa:+X3>S3s <g Ls.s4mSXypD3/[=oq)=777h1[o]rE/f _z/ _yeo; ~|> LNN.pA.; uO f:zGwuTA}I;m w{sg^_Jw+.s/@84 %|IF_:8+{ )0zN - ~c=Izn?+8- }/377ikOw>hp4h6h6h6h6h ??#r0;8 ./Gzh 8\P(d0~;(} cQ)hOvh4hZ2f#HsBNGsBKh J :l6Fi;e'Y;x'f25 mMxMc&To2a 7B4oi3g>fV6s 4`B6NS+;m1igF m74L[SBAhJ;a9_+ =wD4QhjTm`A#G1&m`1muX$1LP h`qs|c#)q)Z\wYv(h`3&m `!&BW^z{nI?R~w>r];n[no;s|;gYymNR5cFBDjDz4X^)LzBDJ9((D?Gu!yB(*X%5s9m0_= n){)y6$>c7.KM };6w5kPrza+!X#1+Px!Aho#G$c#h69#;9%Sjtco3'Rg30Ba.;}vFf qvw j{)X0 j9g2cT Bn* O:} ?vrfVABO* >VVCxL j H[I^JUf{s%gYAF3bg%svGw +c8Wu?hJAgZ.+v_TmA/9m F?spQ=S *;HPzm =g:_?}wC$%TV]Y]NqD#Ctua}kkOz&]/o)>pqG y_D/--j > 7t|$Em4lwfgoqL] tqwW/ }>&Eo lu~.wTw~$ Ik}1? >]o;887xGK/O|Jj M_*vb2Vt~_^ l6h6h6h6h~_g?T*FT>yd0KE8CZ8zu.'''eY zo[nyN:5n |O RL!FB[4 ^\y(.N qi 7iD@%9 e5Y:&-m7]:4:q/&i0fSfl3|{{N:uHVgXb&A3 C3Bs3gxh fm&qFr0sCNdcS@!1l M0 sA#6?[G/XG#C~Y&)z))F=jLn$RT}C~A}0k ^pe.l{u(yPQ q j-DVL Td'KG4 RJTs)BDZV%vXXl(E$Ql*~z1$HES ^v\E-(M}kYpvhxeW!**nW(g[ 5k@bB=!6RReLAq 6fBhwSfT^z3$P4Hsg9Q{6`7D31]*VKsI'8t aP)'@8)):POuBig#8 B| =8x^liRCOxGGoeZRc:>YY@F&4 {5Rp'F.&1Z= vG<Q7ul_ :TzKmY/sEq-+Nt>$;%;1'g<4 ={B{M0aL=: .C6|O~W _[;}Q%k]z-X Ht}]LOOQF{ _ 7|<4|?'Nx=+IRZ^^JP/^wv]wFOAw.W)?Tp4b].{sWs' lo %?@w1^}<s>k>Z^EoU~~O:xg?P^2G]1^suxxx7~ *immmm  ~k~~^r]wpjOq{3'tA4\\z&z?7uoN_{UuAsBAjh)hgO8=.'o4Bi? C1m'~rvS1A9 >uCf rf4%L92U'4$%9 X xf<x^(f#lhdgB :1q M; Ni'8A4f 0dE%A( 3cAk`@Zs;ci381n2b 1}|J hmSq}l;YFH[G&|gAt. K{5_ r1!rR.axJ9(Fe=+!/s<x 3?M/= 6}Mck{;^<%W 2t g6j%Gj$h[ u/ DODDD5j2T{%B0)qRKEp%/M.G;13|Vu#R4lX [l YrcZ}Ctw!.y.*rH9X&u#AfTGf;I?'Lb ^?MtnL$h\S5L!BcW 9P: :acL-h>O\^Lb\\B M 3c FFNh auFgj++<7MhW/Vnd<g:fso62b#E9YD:pj&zZ|+.o4)!sR4QN{#:+}Yy;#E6qDcm6`a3how|kSA< U ds6<4>4d_{tg<s x4}tA w~Tz-UUkP( OfG.. 4MZ {1xEIR|~eeeccRp 2nt2g=g|^c}]_ro/ ij AqIDj. 7RU|+O;c7{>J? gy;wyyY?>#7dwQQ>P333O: vo? \wj( ?}>:>>gpN_vgpWpdtwQ^;'|(` $&Z^*Js Mr&AGs Xs3bg6C>M6nvrq9 tifd4/C^!6 1LfLsCk;Y' 0VjB6a5 m<j 5 K.?s]B=L$p+5zDHJAq05UwnFI71pMKZ1>F8#L) =h5goq+&j&Wb!/%$`#J% a=Y3'O=O#<t y'?3_}KWNY^98s{xU*:Kpm.e[+J5PX ZR&eDS>_%BT Q+ L$`RHXa6Z |9w[V8\6dF8X.{V%y|0vFxbITBzThsF j 3@-uF=pwDVuYyPY_{AR348)a^d ; FE c#}qX|lo:' ;I@<L(!6XAhS VN.XK`C R9JoTi9\( 9]F@s :.2 l<(yv9Zj%(DSvE }A h~ 7>4oLz>Oya2*9t4<g #p>uf\pF23}QkzWJ fRc05No~)fNA7#|yvvV*UpJ{ L&??gv]. uG ;]u{]g}I{](|B>*F;Ozc}ew>W|?+ti]ZI=c^rS{g=}S){ edp 4h6h6h6h6h__ ~?? Kn7\9B>xW@z&Wb$1L?1 v9 z]BY DEE !g <{=FNAS. nBMYADFGaSL4cd6k8f6H3@f:xS-}m.t'IiJME !Sg@M54u-m-|1&8lFX+!cVE'#<hgL>$|`#pmixf4M0)LFh?|liB@4 lk^/6cb1!W3rRjZFJIZ)VRXM*a)FF&r\'rL5zRm$jLn&;i`vy*uu:Dpo]vT_#JJv*XR0PRJ$JvSL43RL.f*L9}/ =.M&Ng`Kfct Cofc7@%Rr\R57]GK 9ojjhbDp-xAF C/|E[y j3e4Az_ JW 8jq#FjQ_#>)AI- h 3h :RIn9p hF)1) 3M5z&rqVss{;9?_ LqVpgo <Wiiwlp h~v'Q oG9jig2 Sx+Py!vYg1j2PMa/'5TR? $4qAs>S(P!qhf }9h_lLHAyVMA3vr>yskPqcYl/2Nnq03?#w3<O?}~ u~~v[#T SzQn+{RU5qJ;} u|e cM>9v+|{h^>w7t9#UAN@wNFon?77 G <B5l vo:*n[7OQG lr?k?IP/BzNa??6h6h6h6hc~W###}wu\.%^JDsOd>87 K^%' %I RK1)MhthQh Z:kF V6HI<qs&)MNi!Li+-]KYr?McZA[-mm3JL- i-Jtylfbmry i3ebV\ a!52dnVn gl'ayb4NA G8+9:aVc=X7cb!HbZFidRZTIl 2fJiMv0Q amefS/8&Y_g.^ Dt1*Pk*BE!='b}S^.]L]g.O/&S\bo23 r%4j<T KAP`M-\+{U|UR9&BmWzClbXGeA -[@/(/ZPW0 aR-|n-X!M*?s{k1o5f\ / %:zFJR@vF3. D-d@n>LX3TWb)oLyi !'8Dpad60#3#s93C: prVjHMj+qY;v:)CV@3B&7pfFcyt=k(#~ ?g$f<)&[Qf?syZ:f7>*:dqfo`ZF IYN>cyZXvm^w< 0<I>M.}$a8 q }@s=w_|Qr$]DW u|O|MChhz4 rX:N{ k_;t''dbX9):c\QTgjs'j5oT D J8wNC.so~7` x~tOMD Eo {]f= w-`sPV5n -Dt .w}]O ??> _oo3gnNq.~Q?E%UG 60scc#o U[o}_9}l2eIe]0!gQ >Q` ep `;]y[-f\ZJg$T V+\vcu_47trCBU BCp;0.nzqk[jJ )4il8Q; #^ qXLi0yi+eQa 3 itHG.LFb6 #s&p#d` s E&j[ nr!auBeX0]zH>s)RQi'Tp=R-.6h%rq:ym.{i2~9O'w|a)+so.O$A4_NDve/l(BY UJDfb^&zy:se6{y&s0s+a.I=qe*}7'NM.N&s\z3z<6JLRcCz}CEvXT!)|X0aSR9_ Jx@#&5r%F\LVvRVR0#*^RnJJX1o8*8*aO5)c;h/ %U{h[ j@=TSLPM6R=l> @nde&lx$e%zJ k r3C !RroGQ3Y y&iy]G7rA&7T[`+#a:L Xvp*X ZzAgJ:P#]M ?)UR_M4voE}Y 4lOz+ *.FFA`l=9HqE &\64S>Sjp6L0|hN IX/C Dxt0s}Lg{p8  Monnr.Ws'>qOGL&Xj&5<wj;+o: >ghW9>9MAN Gm*>x .ckv3G9*IU SpV a+VKBwz6 . i}VT9}? \ G }//por?lXwztC#55\i~W xgn' [-e ) -8 &D4ig [WDmJZ f ;5yeihu6=]l\]q# 1J9.$ n;X.9p!PRm<f g-L Z^;HwbcdFh{YcvUNd6D#aDXO4m2|FMs;7BeaOx1(OQc||3NQF.yEKg1Q1r-6J36J=*%\4R+ IWb- L%vs+3|L0wu/57y W2)rR _IWT %d R5uaR*'^&\\FADW*<A.zy*y1D i%xW y S7@1*o% 7ChJ8CJD*%5 WBIV`4zTjdB= j\M8(tq$$.A@-.(FJSJc;hm[8!7th8RJ_Mida.Q$sH5qi;S*iS vK%;QIjYX4}4fDy0NQB&SaWBc@5)BX0He3[ &T|P5fl<W>Eris:PEW aRJSfrRcHbf3gBcy'mg;$AhYiN0/`3a  ? zs:|vR|u(e #dx-8|&b<;_4/| :>{|3<_% y}_|3sB<w}_j.G#}Gg>HRwyLH$211\.Y/5xxxu ~:m\coc'sDK;7\Q9.soZWYG}] s *81B^jp3 (sj7/w}V5o}??N>?x< z? 7mmmmrs=}pmSuz +IgW\j hbK} NuO?usoV$&;:8tM^hrqxPqh/gJ5_].B;mhp;ImhU+_F !Ac06BifLiijj2A B 2[)V:sw gZG`V] s6Y5FL; hH1 G{q7 > 6p8hH ^?8'@Yhf F#CN! 'kImDTMITj# jBOxP)cR#fRI)f<xiv=1~kn/}ucK0Y|Tdr&|Tf+l0>Hdj3mN*P){sf06%t NJ(W &Az|?IFhx3U8 .E/tDXPvB5&JDn&CEUX;zjQdw=TU)e\)4nFzT;rX|  W?1lmQREh F5AW^d nde< j4H1i)=r9)9#UR&JZ{+g s&`.?xtXc?c!FNp@C*yJM#zEP[Y 2&97Z4!I##XGVR J6(?oE}tgzad{vaW6<< 9/s : &F ;7H1qN h3|2D|x.<v.n>^'O;w'F^{n t>xs_| _C=V5Jh49#|Cs^C%;< kI'yf9%W:rjE`'f&7{1]U{AQ>5}<X>&}c{g?'}s>Dc>' E7Z]]?ymmmm'o?{={\j5 |V7O.]T*fffBO?}T{ v9 @ #4 8'9|n7\n)42s 3)9sEBNAvj< Fp/Z5)8hP!+D+8-sEByk*|@ Lx9K;a ZZ- u o& itf&Y85cDI<Ff$'2g;<d#Fm!c2 1 zJq- mIq3\ |nex&a5.NFIP WV6|q:yi&\M#1VgY2w_Xys6we2y=:>6]$~16JGvD*DZ\e|51{ka wL97y}vU tTd 8;_Mdj?CAIh3%g#:o= @1j5Gb(PHPKtVCB-$eo%$01 C9] Mu$+!O-k0VB.ll2*8]:|. #jWjQ8Lf}:paVt18M9gj*\LMZ=BM*9\0:( 3|goM;XPnf8sr2 -J4V27Hr5!JJJ*Py?vWc!XXHYSpA9Mjap4e<v\Xk{-^V KAc19})g9Y4g?>2 t'\s$MDqeyV?iHz!iLmFi'3< ^ UTr] W:J7U3O} zXljjsZm6Y' {fs_FgvOGu5ot7Tbc\ 37z % v c.De8^ vip*7~3'3J}x}Y>w~ ? \ __x:>d rpu*.KK8\844c %[ zS'O-} .>@#Rh`vqzB =.ppgNG;\F+Vv@L iSBcjmY 7h=U!qlF5 4cg= hk>X4;nJuV0 = !\drVMFi:l4AIqm1Ma@Aa 9ylDS@2i:()h Rxm@kUDt'%h&P= *j\r<V[) p)]\I]'f5lT _\ /4BTv|q*uc:su*sy2}8l%#TU*h7blJ 1btlj>'Sas7]^I^I_N#LS ASH1*cJ9`9UvDZ XPCR(P+.br5*_%$T?XVhs=*! Dk@5g?Ga7_1YcaO%.)m%Ze;+8BsEq=!B.nQ`&Y:g-SsD6B &Cw{30 |2gXaR0 = nmse%@7 C:iIC062r=-ZJu9;s<7 G&dBt9+q_1z?WRrRAca LAOvq(IM/f qNXjPqd!O`\m dh)5d >3>Y'aIch1vu6 3#I0l-C3ym+;w'bW1x |W O?; p7Cxwt8q_|EG|>\(X]|+WqS.G]g]|LJ> B`g0wU|QR8tq7zm7u%;~oN H;13y(]v\*<y=g)~AB B$DDDH $NB$z]Cn=Z*Z^]gl hTx]3k2=v gr b/ }j z}{5FAh_79 jE?Yuo |}K_ H122}|;_#O>F c=vgggH8dlNW=<ztvt]g mXA4;C> /8 v@ ` dDA`3B)h84H{'> z 1p3qt#E}A| ^jm flOTc7<x?p@FA {g.h41%H?6}l5(CjA} i5[H{m;b3h h$$BO` =#%)h>- q3yt*t^3E VcTpmMj=J 3 Fo&#`Vv>_J N{ibzSWgcy 7 o.od_+q]b8 b M-5wdGOnf`r&} 9>t)oA6u\3U`3V>.9eTPe&f*ZOuYD+tE96\TsH5JFhP]D#&F@A- 9j>I;1vU|hho=X6n}T4nF0$L63?cj tD{Z:gNi# k yd=Zz4(lgp;7jnA@STOOts3v lvEGbZ378GK!AU@D`-FkqEfI@u9 c-gkJ W9J/E}+} zcxxLz= F>Qb Sag)(2v8Y 9X $YMfyf|4 t0\M=WI Zv^b?K/4iF/Fgt <%Q#- ?OQY|Vw^y@ JBRiZUh7y>88@o 75d~ <&m`z1p ZF zT<Dh#z4&=y {zK hy>_iyTmD&+EozX d(lsv>Wn n9('9X__ }Zk;g22_Boz }[?N@;7~rLCy(LuFGcFc~~>Lz}su*$)G?{.8 vOc0=0Lzk:h|g&^<P4 93c$p$wq)B] IA H {&9gQgLqnV+(>m]8[2 piy9V* ]0 [C $ h$Q@sv{@M3`!=VPm-U[([/@eK2e_KePM*FK[i-%G;L d:TW~V2Ria; ?Vdn^_:IQ}}ksvs6{\H S;Z~')>}7zKLr+#eGBL4?c|\PiC#HG3r'!t@|}#NRPa;CB4S*&B9W4_h$UYzCT-Uc5) #*`CU c3`M`Vk%5`hi3qqc'0s @4u<y/n3`XQO[X#a840 E  lbfpDZ]DZh%+v&&d# i|T3alY$[QWU%PpG4e.t+mm)nSAO;7* o0{4y)A qzrdIf=Fz E5t3$ j4Qr^q%_2hJy x#p3 6)Z!=F1|Tg aJ;?g|sE^I4rU^M@  4 $ZhZv]V\qR w#F/..\xGp8/~q=|(c62LY!}~7.]t]w=Cgf**JKKKEniHZ+b 1JDR/| @CQAGhu9! Py<2 [:D?@EBFAsfffc|E2D 777u]|w=V{ug22_7s~~_ x.^L&)3cDAkt4l$.2V;|3r-l_!?cSG?  0E| E z> NA3ntJc5t$&b4w!5mH9=3Ad hB Xa'rw_z :jONg?h2+$q{A/uxzi6O:&'< c:h0s6k2&.)hs@gnX'(; LRhPk285kX dL P nj[p#d mbWks\/O77 L 7gs{YTm;);jt/$aQb(UbTt##oRMYk%9SY[h; G44 q#AN9.M;Z|OOqKT|Kj!K(g?'E8jIa9B/i+|[c!D-5< Zbk]@|`p'i9^zW|6#a3gtKts |tq2OUE*8SNt-!4@bp2tOt]E92f>Jwlg HM=7 QnvRgpn loF+xTvT8 MD9<WWB$d*3hRN D}D yUkhK{W= D-1he)J<gsc\\ %B^dlRQlAt!l98/R* &p `} mE~;? /^p 6^GDQD/^go?<D!ECw }FC__}UY y{. ^j!  y Fy1 <8ys [!<y $;4?7~y\:Q=>PA}z- fG11?B`~<88L;gI#} /..4MP Ro?0feYfeYf{__7K sBa Er3YX_4zsgggmm= 2pW?WP4(S4:2J33p0&+Y K9Dy{vmF@MbA:2gr6gpgo38$ j2459S>y+NwD{=34$J0Dl#F{pmBJ[);{V 6)4<p;BNz&A^F{YmAc~+qL^uM\A{~R I'CoiB'#b;-RBSf9#[z_uiCvV.llE>3FodqRRdonKHIMK)'hR3!lST[TZ %Rx; ?*!K5!B]=Mn;Zn( 'J<BlBJ EkUuYe1PsD eX>%D[I @M bnY -Vf94G? DNg?Ph@~>#F8MqT LCoDE9i+ foi*l=.&:DKMdD @+x OFb65L @1iC`onZs;VV*vC- !`-*8\Ny5Fe<]=oY(P ZAc1\w d2=h?su>|r[Os[8jF\Xt6iV4/g|&FM6yCG_|^zW6((x_7VF4N#g p $u5?< /iSSS+++nwww9995~FA<j8& om>[o:7N<8D$F 3C4|Fz4 }W4} yA t8;4?iD_m} IUTJ$I{G~'+_g22w}?#a;7J??cE-+SCmHCE.N7663L(tC=~tG>'>>g8oJt*;4r O4T3~a9t>c5a4nDH3Yv:( t4AdAQ8 M6{Y<u nc^ NcLvz /`j=gv&Y(60?as` gp>h4nS} =v+PhCf{6|h~r|@p6?'+fDLnPq(%Eaiot2Q0l(B'PV TK L 6M+&w A  vs&=_Oz6]:uxs tH;zr3 *zr'+j{E}7{%}o*A7!uGm^FF;jb? hqOMz '_R YNvuy[Mb-Y(&<_Ky*PWMqb5J%Gc XjY >PjbGt ]9%q t+taM3Qs%`@q!Ct[f[D 4DSqFFjo++mei4 _n8EnokZ:RQ3F+8BVq r312 tCq#=g {g4ZFCE1F3[iu B$\ Jp=XV<KZ{YEa' a\>:9 Z= wI@g|:Udf@T7/aF d7MtY%1 BWAsUNdik>`4i gpA{'Cv^ B]G> ^z zu0rWCu Uj~Ol8>88@/s'? .fpV:<<<>>~`AgBy0lD74&Aiisn rnR[49 68 =e k&+oQi H~FoG/ HO5@|wDo|>~:v;~XI_FofeYfeYfuv?E_1v*D<Ut-i!W8z0=%$UCWNO4MwgG ~S!AcC84AGGI.7($Fh>vq9}2iSHlN # ; op:`p0&h ~/FcL>:_g< 5 IkBI!Xx68Mn19$>ll)6Y4n5SV|s89l= ~gbFM.-RL AlB`= (wtKL]%MDhMbp]|C* ldbX[\hF/5Z)usF3o-M6$Kim?L7sdOfR&v Tfv0+e3 $\0::*'E%wE8`VoLgn%VE^(GX *I&POX@-u)4|yyBb3)\^J..stU4yutU`*Rh4$&I##B3GD $pn~`q6z# haTe{i&leD4vRmK6 x rs[;hsVlbSt\K &0|l`X$vsQ4o@ZBKhl!e i&kCGBhV^ RF :J|n*A| :sL&3|V@aT`9BQ+QL>b9C9<f9tvr.E$A1mDA34262kM 4KOj+jG[K@m?O4 HghiUuY s}IA 0GCv]NyUy}Nwy\hbb8J4#>1dv[[7?O{+q)Z]]%y0?6 98d L8&' <P zD 9MwO3o j2g6Xx(M(X X;HGFy iyT};o'#= &&&o;s~~ }]W}#see%D_%rZb A_'uYfeYfeYfBy}kZ*.^1\U^~eY.D6(?#h5R@Fczzw8 >}7DC BW==.ABCAg{:h4S ?L3THig4^{Mdws`9+v3ECVShIAI Bj&ig4.C \2! g'n2G!]a3g E7.3[pcVs@(ili7|8M:wf 64l$^ =:NB?HCAa(4F3'M&$f&ZUz*]HlfcgUzm.{\R\Y r{QI1CdZfPcYy'#h$zvv6aQG6SQ3T0)KT3. `@MGA82V:e>4 Q #Y@r<RMM%NIR&q8&V VB+ G+-LGh4$&w5nW PMQpIB8IZ1N:I+j_3d-Ti/ NAMstNk!oem%0:M Y:7F?Y '('Eh)nf%7|Vy462zh7xtlc/4ay?smv3tS c553>x3X~X(?c 8|cs3! gsA cf!|1g!h<O-E7'xgyq;cAR<6 B5 99S'hQ{5dqAT{Y} (8 @#x)?.\xG?:777`[Go E mv: z>cW\I&U~mmlnmm vpT<cAi!l`g8hgYacA7 LX\wAu;}Z GXi6m}j7>SO=elZ\\4e{ Fo?:wbA?/Gow5222?~_EtD384zn5DFVC)4*t.E*JXarr'v*>t=<\)7 rpvA17r`L^ 7%t ~?/4M4%AgI $+k{hl wEu9TQ]}3E}iM}LG->7>@1t 2nX@aA; f=%nA;}Jpk{H zewZT%'V*RvSbGTa[Z p$WMrP[p;mkv>u4E/OfWodOogo{yy;|mx}.J9SZ|[OliljKMvRmfKlzSM73mEtuiIAF>|zSvqA$4G\j?+ -NDsQ^DWV$T &sE$r%FB@|5b#)eMXWZ$XQ+azEh7\UbBp5Ghp~tJ7Rv5DAt## D:>(Ms#eJ#i54&tBm#k;I_-Lrw*Eo$#;I+ i!;wH-V :0vn@WP3n@BgCAsJdjxTJ@DF% qzKwE. ?scu&dZf>vE?S5 gTXQ ;c @W jRWs% `#3U\MAa7HA|FiLpBO/ <{G=g~4 o >ZAjz ?=11^Z  + LA<GH g \48]833*&Pz}-[8FPOBYGru*<q KFFa5Q4?wypf8w zb%_y YfeYfeYfo//'z9ut=>z%^!|5`q/F% z8|>z w g4EfCL L @P~ GOCBXAr zH9&dF 7(e }M$M6@XSe cgK5~4~|t'oV x$lD}W-m.Am#9gX;5{M@>v+pfbw#g{Etw eIxyNh>[pc/K& )sR F*)p8|N 5%Otu ~73vZcEx*}s.scV{c!\lj:6eJAQxd?(tlSOnd(nFT;2It<$S'q>u~&ye?Lg2GfJV:v\A+zr;YBO! hRjRs1n-R$).e> W5>XOEb9Ev5 ( l=5>0p/Hj1W$vgXCrWAfTky+IC;#Jkx i` A t[@731ll`@ QC5g $\UBA2:f!vsQ4*I M 7>DG:*Jqp 2F^ jd2SMAz|&4 3x! y9[X+r1p$<cAt9 r$c%F/.pkuy1CV4hs GY;su[)Gf]h3;c3[%O[{|F bh@AL |] hBS@*\A#n | ?RRk0 +|z14?c4qo>^[ 4|3V5J^ y idc(mX#/|a4<| o6zscp<DO <8u! m;8dp}F coN@~ 5fc)pc1<}L5_{O>ic@;/ ~wy6YfeYfeYf ?w.] {EQl4 8x9uk:~>G>:>/<2I{=`A`0:04qq^Xh#iCx?}AS{ ^&| & igo5qDS85Y%DAq/)Wh`6ARd/!^A|+Q=cN; <{l83gXbL9>cqR6H BL0v['!!i#Rlvhw = NugGX;!dFJh$f h%IVZr-Md;8nAc[ cy/?.*7f\T^#@;rrW $7zN6dE N'nk8ooE~ fv z? TQNa.M zvhGh51  [1 DJFu>1 q  |gIFV8 @c5( 5AgYuF5_Zm ^Fm Tc~LF2L3KP3X 80?w0[NF)F-yF -*n>JzB:+u4o@B|n&4p=tBm P= Q1MUNE6`Lssz j$uJ+If-G2^A G}(xx@B3n4c&lbmhwp9;dCD Z9U~1|o rEpN+ |&zg0l&u &w;fVF?+(;/ .h?_MAReL<I7#<rg}Es=f[J 4<G3$ ?gA:;33s]w=O>4T*V;?)h!P/Bp6b u>fGdBx29mChrf&O79F( C?7{_A6 {QOaY4|><J*Wo|w22 ??W~W5|u_|YU-tgh)/VFAq^e}s O|;>O^pi83vtzv} z)i@c -49EGP^ 64! . HvA?; bgiF^B I9>b f Fx9!I@age^mn;t3IAm<r2q |:N }8&Mm4cw| MY{h3y9Ni+|3iBdph\'nf2NE)VFH9n^$FZPiq>uWOjt78w\73v8U>XG:Zl9|Ll&zFQM^(i'Z<)@!Q ) Okgs^F*jWrEGk>LU =nE.H`>Hl3(WE8)^Cab. \k<B]5x AR`utlc2 tU+u5+:dre@C?A9& gt+9%fg.-)lU)a'+3B-3BtD7ICAw4 e%F[ik0gt$Zh=4>UX4o`#z4`V!'x`0pfbrYs`?{p3A97slspy(Q3h@i&g<W//M1 h7Yh24 ycg~+sXI{)5Q0}' B'GCq]]WxO?2/zQ0=n-rz3>rsO=u}~~Rt:#\F!m7FS=?<XCzT<l nFO?MA Q}E(h8qV|y g}$s=_/?I222 o t(I?Mt:!+Q!cTlO?ihTO?_yr0@3E3!s ^L#c3rx wgzHB A!Fl V{t7Vp 6hqn#Iib%At/)MaGcjeDfJ|=diQp 3: 88< Acgn 6<[84 B i 1uX'jzLPG$MXJCrn*I{pZ/Bj'8*^JXxm>cZ1 |2&)rLfJ;cfm-QOIJ~Q;P9{m6wott;%q'zI9 RWG LxJ; Ou7#oM-~OL*qIFA-yfYVj4< t3+|[I -^BeR48zU`#~tDV a_YVqJ D#6cLU<F=JJtF- Bwy`$)op` &on8-9ct4DQW.bk4dj)Fha#t;#ZO0e2mcgMk`@Yp- nh@EaGG_ff9@4W $$ FZA@tAh[aeZBC.[g!]3Ph9A |.rb5{EEw_\D!`%g-3LlrclY?8hb =v#E o< Sh3>b4 LaC1+QEr 2~? ~WODBi>[O3{ rH4G/}3^4id2?WO?64`Q(=y3iA8p(< ku dm8|cB:7jnu>4{sl3pX{&cO<>z_g~ooo~ 4ieYfeYfe~o766(>O.`6A \CW}|> D\c*zw*th d@`tb^h &jt&qShw'$ng N|cgW:M ^|/& Y>pu$^]6+X;8&`yL6{0h=l\N<z/kin^6<{g%pI$ #+46ox&SmNsD gk%D` -UF xGvbj7lhN:WH)d /T|st}&sc&ss&{cZ)%m> fU\CUe1F.NgI!MFR8E 7 d73o.^Pxu!PL R%} *[0:SsJ7$@Z k\3Aoc[0(W5jg9?hV YL5)/}!/!h eZ_E^S`9/Kt2[P3 G j3:p t%JV``p#jdk )] ;jDh;jtWv- @Z ]3t!VA NV4yiu5 p] 73|gI@s/lh@a 4D  +I c& a+^$QhD}h2/R o^AK;|FcNDfDjg4J73n/# arCvA{.`a\`9C+-E0B[ v&=?cu@c4lis58/ yRu) h$'?aG?OjG } |iyNdHy4=V C(y>>sB^vCHPyTl <6|~F#|P16<QiAldr zH<~_ Oqz>\]B~ fxbom]722__ooKs hDFy<!w$=x=.cUsZ\\u=+<}Z''}^&FPC99 {h  qB $M4i#Ds MT TkMH 1&jcgi|`7 -GRgCBV Qg8ZhEx5m-\ oY8 FhGwu ` >`/vAm] vkiC> 8# ^Ueg^{5G2\0U- %7RBr' Ey o1Gw++CczXJR|~6Cnf L9p&ST`]VS+j[YF2MU:)6(i0'_+7f^:>1;Nf2Eu'#ft6htX+ D zWq5Ekp9 YD&jRF1+<f=ZE?xflW\9Je!@t8< y2]WECrPgkYx1kG-h$@aBnasl1%[Q{i|pCf yk f |Obd$jHST3m:(8 GusC' :Bt;Fw \ O0p&^?Cx 2V4j^4?/IY94o&ha Z3 Oy&:~[0lpXguX-2 4` w-H(4<vCMU@jil@s&R^H;Gu9`4 y yOO=adz'NNNN f8-|K{Kg CgT5a g?l6EZmccc7M3Z ?oo *8 4hz*fOT8*64 d&ocN3o h_3zA!;d ~ 5X|FmcKh;HDChK722_O~}oo%/XO|omm A+e`( lo.L:|C;w4A4A z/ GaOI/B) ~ !gd^Ly}}IB pb8 nXQ2N `# pirwi `y^NAd 6 #OME 8-: ~mh?p644~p:G$8LY'};-~{7~-~[{!mA*c\$*] 9N*Vu|9#fG& 5!K 'sv;RldZ%;t[o3B`.$;z`&]Tk)TSKOgJ~ 0A!uWAN~}\3_X>>]+Sa!G-WvS5)n:ZOXxCO4P 0QvI%Z4Lzc|E ZQs1n(>y\+zfX|BJ)yx^Q?+{V|c*]h5HJ&F2MsLYm0rXcYt >%_qAR9C>Z|=sh3Lo4467qf45n&:6o` h sDl0!LCDV0.3?D/%Zs{s-% s^s5m5OlOudVt3Z\==llrIfV?3\QWI?-h-y-zR&TP: GAM 2 tuy ajJP</}CO>x >{hk &g??h^ ~8X.--C&y0=(4?!<<2y )za u6:#cck<><)6hcXX8?F;Euw Dh522~w} ]n EwOG?#%WR}:]-78\>== ].3<ANDy=W.^\K9|hBI~>'@lx2ocd?vUG|){9~B [ g9:pm=il =&v~d5IBt_t9t`?F4{lVn@ f qi {jl 5H{=m ^hA-Na)4 hw=Z|U_`UL1`Ta/;kS]M<& |r'VJjl]6e MA & SydJ1?5'T'lYHovVISg2{$z7JA={cb)RME$sr[tf/j+b-PmEj)z8FS+L\ a_)beaQ`fBT)Z|EEv 3NAc((;#o* z{< E Maj>[it\SKoM %ZH~Bc.P+*]$c&W}l[5X `Oz}W I8c mK&6Q6j4WKI u5RC+ihs`&0 g3-`7AdCFA1E<Yw9|7+zg/<Z|:JaWsJu4R:aU-=30*gd `9|Y4M*mIQI7Dq)t ZBF0o$Aq)j{Og~O<{^znn&8Jo&^~m?pAR%b}< / !hQ`D<Hy4<DvpPMh`AOs> v 4N!#i:Q>-= v s 4B0_W7feYfeYf _Do}K_RF3<C]^s2_U}{:+\tALN>wyX<qbF D~s;:HA0e qrc ^w3;H8CBvh4f5?}\8Do [` g&~SBl&7 F/L 6 hmu0l`$9=DAN gaiXGc9wpZ9rEXAk.M (*yj-iF<I2^>~: AQ&6~Q54;~Q9~^F\a|a63(tl=)2r;q3UbWjNf7s7_gP=/4\S<B$ER2ef7nG2HB}}AR rH3 7b60e61Y#a/bS?9x3o.N2*$n/Oz5v+{Yc'lXJ7qfdCB)XZ4T5^ QafE n*l%CJY|`Ck0kav5LLjh.3eC)!3Um|GW^B1VrEh88 30A9sq| 1&I;)y/L0)NBp? C^?- 96]tzPsTd;-o]-Xl KBp hm+[7yZo))ZUX+U.cGI)A |JAY-hB;e P]<?1N42N 0ypq|A8 fA?oaFH?'94sh$3&N8X1z*>/+W?O}|%?gGp}>>OkNw||>1SA8&y;_\p@GzHyn%y\|_d%. IzuHo~*n]ve]ve]rw}wxq}=<CW^4Iz.;}H3~N9Hj%~mEqrr_C< nJ DR}4iYHP3Ph: k%?vk=fw/x $+^(50RpXE: X a93~upR 1?vzRgwu8$~74%h8Ldi48s>f/?.C=N9z]`~Qg#D' :g]%p 6UwMi/9DoEN|s`:`x;MbkFN eFvi1}gpZV@vfuK]u4kt!yg)wRHo.Duo.$$.o 73nZ-= uu?gn!LAt5%!XZ (.KJ/&u 5N(j0? *1+!_z+TcRI.&nlF0?G)PV|=*bbZ(gHA3Veakv\9HP3PhS ps`A eCNAI+t6ME1n `4vhHaNVJr/tt@ZHPs7J IH$ 9Dp sf*1.&=Wb$%XVKCBQ.}s l%9cgAs.@ (ss399LsI`F5 1ig& 5 4Rj.I9Rsp[?cw $-AOiy K/]r__ 8=o x @ 7u\rHA <|t]/rA_|p#`& Qp GB'G7sy5 }y#=2n]Eq=Lzc8<q7Y:=E/KRotVove]ve]v/~ /3M^~sO>L6Aw% EZ}w%a{ttTWVV8? ?/N<  3YaH.x;:HB(16ML'g iSgAwDw&3=!IA3itMC4Ygf^hS!#bP; gs#Hx`M4 hg? c v4ChhMxVCM86Do3T$S*m=tVNr.q.RFT\ TN~9.XIu+ |MKUux|/kTN.yT^.3=+3n.e;xKB$kyNmKmKhhV:vS6HU Lo(Lv6HK*a2[QZT%*QXmz_YQ) ]I(g<+JBrLhb%E:(\#&RGw<7clUjhTd*0]L SMy7 IE`s 5<j laqD ;)y'vQ7o%#)2*zt+-w2 hL!5P+j+R^2L]J7fx sIHxb{F[V?3gL|cCBAdpls(y!bvK%2?X ypu=y:  * 4<<4hA0jF#\` ==]f.I|LAD4r:AG8uMi4 |f>vI;% Wg nqT]W >nz zgykartNNN 8|y5|s$GC5p8Hy09-%5GvzE _o:w#x<...%}[c>{`0xtt^ U|wyIosgAn+JTB~W^>t ?zk r 9&FihJu* _4Zh4}`3ddflxI;%afr sg?{hA4\a>)VcnK8=3lIK=@1RFCI Ay LhXL1sFt:8VpDk.z8=.zk2{j!3B4aW %ly*o/%OPTwS)/n>7S7K;Bb/j4buS#dvv:^b=7WZ+rytBRnlBx<tQh[n@W'vf7h%T0v7T~5Bolj'nRmMY2.m*>jZk84!5-Qa%L/7*Zau (U&Z&F-Mq]e@Pp48 AXaH{%4V 0h 9!nAm[I :[$PtPdii.7D A; 3gg |Psw CA0u4y 47p+P +aJ gbSwY/C:EwwQ=%V~.<9YywqYpysfyW%z3<D4fLeYGL. ~&is3hK3Q@YwohX'@7aDD sI F GSE lDQDxOo&<zs}>#<b}zA ?#a.M_V@4n0;d=| n@^q vHa= T8 a(=/.\j5ogxXm..Wz}vv ;K a}} GK t|rr_GG'{dnB4x<H?3^y<D-qM4Ht4 pk!Cp41EPs@C!>^h:01&eM-39>S|g!;tf@8) z% _K9h7$m)VN.c8$Y/k ]| h?;YArE%Yh5 CU=roJIfAhh}r9u%vOy$o TZR ^6~;*XU%BWH[WH-uMuS8tJ?X .;+72o\^=.oS7|1uk!ys!qn' V'.Gl[Ga!F7/GCg2WhFE[NSVBmr= XnDkXVU)XVz]s%>KBp-n*B= #eU\eZWEJxsz rmDzc196@g:*nj|f[ Rqh(9-:b=mU4'>N[n` Snvd ~$[)H9ZA! Y4D!!< <vC hsjlk7` ?^Be^PpEXUB)p$#%4`)mwWA7g5/Q49H]9 N'ShdXBHz&i&h0o0s $#g@t`= Lh:0' Yq{mz=oh8 y^SO//e}5|_qn7N= C? ~L$RZL>(9.3}mc8m A%n\ M>g/:7.@K8X~h] y3grpY7a...w~/WW /C;1 y_]Ur|ppnoI}\hQ`5&z =#>{ :>b 2Ap 4!G!q yfofhL>p&h&cHy0Ovwneglb~g ?{1v:ggvhsyG/ W(YE :=N&:h|ns3sq\`v*[Iy%8`7m![y$'Qm? =o'ybx>H+ ['*fbRp!OSeV2HGMM*JL'c /J;+yKr>] m7IBOyh /&!yF7Gex .r>4/UM*GCCYe16F\F5VlM6df=]1kahA.W$zC JW3D.3.\UjQmMl4b L-oD\_C)n'#{u;nZgL=ntMDjVpt~DtjF;m Q^Ft$X8dBa^h0r$$?s g|  i2XV*:I?DDJ-{!Zd?+j%RKDaRzBA)f.3C 2sYk$3eYgX|#f&! py)cg4A[KoMy]qshing^^rehE?n?(=sK|7)hRn G G iz}{{}t iAxnAypyB $| 99L i;8 /vp+#zy / 1%j 3_':=.NRj;..~ {RI{|)M677www4vvvvwlwi E84~ 91j2yY='>ihGi!Z$ IFZ5cl0Ye0?3~=A(4IMMbGs_&)hz<):kB{AF>F] >5phpyf]af !g8p 'tE;8\.u5t`v6:^ tvKaw5q %7;E?Y*%*S90 Rt3 Dt7gdBh!71enh$k(n0{qRJ. [+V R=c=g=3eGyFt)TJB/NH%Z0hFoB- TChhCf6()E^ CBhT0wIe?#*l<BYQnSe q#L]1 {nj\=7o] cD*L;. %<vK9R8L6Ch6B]]DM:qk hq(l%p[yN?cLDM+T7)^&TXtJB=Rm pa8 g1 Gt $>59P ( DYyGQp-Kr/E`1}%*R_|E z?>N\oms16@AL 9t3%gDcpzK3n$Sd00k7Ltq@q/N>n8 8 o hv5&^ }F\r^g ?=$]Z (|S SZ}G JD |3'$y;w ^NA\ 0s se|a#g;>EYpy1 !\ =?...zn[Ju}ccjzN[[[djggo`n)NDt} 1/eQ?cu*{z_z~ :7AAc\mc Ph9|YZHqH`t'Y!`u1ii?g'iOX R jM s <$Lh{[g /z79 ovRn<: gO(tmB4=rA3cB;gSkqQ*x!mJV )^0>W_:\(q&tANYJ[n$F[}lXj#m&b>g}5Crnhbx9;oJ(Yt)s\Jlh1us%wg%w\v3QJ((X~s9 [{9k;7a(y0 YQknI|vW$ o(j]}5kko=F.m\Ym*bhjA(Hk2&rT TVjWPUmvMq8 -MlQcnJI)y/d-n'Vx+[8yugTb C :FkaGNDBj&BKDfSh18^8fC 6;msiEs:y2Iv g G%8P(4VeyEwIt/<xg2(n;K]@#+E% f^Dg} yf Ppp9V @9gAtc<gA0<8'6]<EONR3ED'X  1g''aF#231 {znD0TWW^yW }GC*ZA{^s o2n^=?|L&R &87FHyD<g? 28 <|#~de8}j <41sp<<xt=m_8q C\z DZ<(w Gwi..B k?Es=>1ijZm6Vnw6-;88s_n_=FwoEy^x HOq1s2<CsPeIBB8:3:9sA3gCipq+CBghN|~LA:LCCi<{n4=}hz^w^h&igdBm. ]ghV]s)*(7Xw#oK-CFh?9.% F7 qV;)t=o'dt7me*mKN#-S&U@!ojx3^H [9x){?Y p1U6Q)};Xa)}\J=\H|7 /&Mj2]E>$|p4Acj1eHZTrk-Lh + KBsc%L/bp-Lo\3 jJcGE:6g0FfmI\gH y/&e4NmJmMlEn/&#}3@Cun8q^ >Cp- !uCuN=$5{}Fxl& F_:)YT0<3eOoS!h BeP:{B%/|'e3(z)J _ do<E<<Ya3ij6|F:8/&zfi gqAX0$$3*MYi;ix'LT-gH I7{&Lv1|FG=1 |+W+9_.w# 4z%q|.Ggc=\.7GGGw<Aacg;n{ yc Ac8< ~>7=#- y<ptw5 G&\}PG)0 7f+8F]?FWt:<y(k_u.../?IAOO[ltZ]]T*l[vv;vwvv(O])oFr\(>vI xc }+>5#a F+M9- 2>3 -1~O t?q CE}9&kfDA3d4z:)h/EQgx){Y8 RA98YL 9E; v9x !<  (8@) u '3qqKvL0o\J)f> gc^:]3QmgBIxL'er\^WUxGV5R\5vJ;^SrQ)[v!7t<-n-grTd1ys%}:*&IuM+!:Im+wSZ;tRXm.<KV**PU6tC 1|#k2W]E yKSG-G6Mj N2(&6 c+2UU(y2 #h~ n\:XNDv.B:!Tssy.pFqCg`\BNy g gM3?wUZ Vj3<cs?a_%|[`_6j-X+R_ yJ? 8WsYZ<UXBs6XDA@yd12siHRir; $;HQ38Xg&+il j$ih;N34<:VmpZ}S5ggu|M<wD ~7^yA{giiqU{Ra8|9er/GwC|:FY?'> d$}|Ix *8j @cqMLMB#z| syx>}ss^\1 #yX|na.=p\1> 7<& DbM }a+]ve]ve]vuQ?~p %iey9zO?{h%^z%}jzhtv^o>G C$cBsnr9A&''yK:>S $ Z`34uEg ^ (:pADX fg! ~^GE-C7 h660FP4^ <C|=4: px033yP{$X h3AA83.}P4:7(09sk*xwbB/z>YJ`.w-]D(Kyc7 JKoE&w2FM6c5-&kae([1ah[OhY1Usv'omeVB9.NRG*WG V*z7thZJe 4Rc!s'k^[Vey\V MYO=&60kbbbYf4 3~G.p5]6$ /paEqsE(1eJbGR&h- 2@Mi7)o[8dm(S ^f+#eI ]XACBH' jF7Lv)kt+gnXb3o>x6&hb ghs8 ' 5uu~-Z$ [*Vr3Y}zT}X[D=9  f qf 9@:3;3;lK1s Fc:Ia6|72gZ$#g AU0>@}S1|C~Mu]A1D7L~G^+d[__'\]S.iPXRLo> x'xW>G?V>? Gg4*8w #]G#gpA qk $sEQq HyE#5pHsp$<Bo{nr\9?s$ h..K_p8|K/~qc}}vvCghyI{=+Wxf{ssRE(6DCcR+ Vr28 /T^? /8fg?Q^9;!5!?3`?M x8qh_`b ~/B2^gz Gs <X&2`IA6#} 6{1dqKu$hn 4g83g>%bSZ&hKd+#p9%QuQnKD2Qpnd7h4n ecIe7 h9c-Si*J4V1mS]MUeBz=*YE\UCe]'bQ m9aEWH 2 V*{bj'G o6z\7 k)7vB='yk'2d n2K kr] Hj]8rF/qi2 S.-KTI TE>( /tf<Ak2p2[AWSUc\McuT8_]hX}j]#cPe4]C@ t uqeL&&!|+8 GS^ZYtD0Nc 8MtCG?CG]j#7- RhfuKVh?z$&h(E WCKB?vnu7WAo(T95%Y 2iWAt<pNg h1/ !^4!B!yn.Md9tJQsp6Me9 ';\C3T'A<#hh{ 41Fp3 5c3i/`etJ`FsOD#hy-<{Eu_'gXq]y'xc7Xo& {Ex ]$>P_//>_>9I}NPhaa}v:3WpH\0 n>8~&sT#a< /jD8>W1h2n l#Mj<6(5q<Nqny?&qo7nd....w}~ {1rqOk_*_?/OSW^~ {|O=E)JV;GjT[[[$QD -$]tST~_~Grk>^U Qp`LAepi=h &:hlMgG!40si[&`9h/I86>Ph6 pG 4EC;@? JgX83\q$ !ua.89M^h3<p 'e]9K9f3S{fuf.0F $rN|a7bB=&ve'cl KpL{g6Botz/km. y.e]Ip3[9p1S~8)o.enV?[ y7BYL'yd<Hk54ucEz7%J44OKB`CyZM]XrSp4 uE4dzMan(Br+9pM*.1h44B $g HgVmAV#|e;3{Aq+& S $ F4Z6=h (h1*U)NhR5w&$ ] 6(v;!51E4O` >seX*c 5| '/y\M'ZsY y-HyNg =NS4 I5#:2+%LS&~5F^LYd`NX$ F`Zi<4gPqu_7>t}7IHX1&:uQW?n#i;8 /Wy?3aY x'_zH$I3#6|Q^#+ __q7dw$< ;^d|yc1`_|p  _8q|cQv BH1'@Yg2{Fm]ve]ve]v]T{FT*_Wo}[ho~_~k?/o s>)>s94M+666*r^V-\vloo&zww 7+<:::<<<}8Mgh4r>g7$ ycyf1CAO)Cg_4gB }3BSm^'Y^ !<hZ)@ ^|S 4i+8sQgI&XnBvjN3qs[9VCRhmYNo`{ !I&vVO2Q43\PKgSfZIeUh[jPGzIm;PjZx)Trr=QiC /f[{n`l Bh!qRL Shyd1y3LyR Kj]B0TQm&5pPs*_M=4y |izL\@%.6pMtUWAjY|`\ Q xY%T' `]EYX2oCr$q5.WFQf+KthjkK-+`H 34$_5B0L6%xmq.agxI_DaU94Wea`:y2r-yncG=$<9q&y#VU?WgtMJvCVByQl+f< =NNyWuMfX<>yz6Gd45Oo2M9+d ]K0s?8odfC L%Sr h Nc nLgM ~@!y29ya5D -D4c`q^W<wJL]y;SO=u_~y(>(z_; /j&xB^u7gR^/HB?W_}}Hrt j?z1M;|cjc@k A #y>2E'A=Ny D_ >$G: Sq<IpDg/EG_ ?...y tS<H[|;wo !? _j~o zO$KKKtRFju;P8j>8j7o C#tz:$iffg?x~c q3 PheD`&1d&. )$gt23:V2)4> L`1u_70gHDsA?U&D:;N8yhy]5x@qD^ Ci85d?A;WMSS;fx5 $z;#ut[zx=bNa!2nRP9&FR YZdK!z9leN*r^V?7k% {Q!1U1w )Z9Y$o d[z 6R=&#LSs4uiU TT~+mc\()3tzF&P3iR9tqMB0R^phEP.w  1mh\-[7#L Z!425+t35N E@k m4$sH0FPab#.{h'jY4~u57T]m5G8wRP$\'yBkW25^YB%pe2U8 hN>++ Xo1-Jyy6\v.FCYNS3919sg333k^f 9z&s*8e! yntZ`20i$Y4R &i !D#0f$Mb$ ]l?g6TNL(u?!G jW_|A_'xbndhw%W'1L~zz |_{5]Kz7q}X>;|Q.z h7aD ?v Qj74%<y@x8 n)8#suM0dG] z;+_O_~Ne]ve]ve]~Ur1y vq $q~O_?]bxC[re34zvT $z{{{gg8I-\Xo;VJ8v9S=>'>qhhq`GBc:] h }4~#pBLMl uvYLCGu3g#1<KAqVg` hVY p4 dOq{p o^H b)A4 sAhhG83%8ffqUD/.niB/b>LDNvR.^\8#xcE!{9>XHwXXpKmxfea=J+k%Tl#*A&?o >.7V232oNZ]#r<oN9 MFwStgm]ISnBiCM]J(_QMmE<jBW| j$K1!PIW*.K+az=l*|=n1m& RC8On`tv7$?p0mynU 8(dABXLmt@o%&Z4Cub-.IEcqA MV FW>FFCc+QF un<] ]@[Lk d& e+U*PrpE/g)+yv/J0L n5)ff;`sfYgA Z<Rz:f0|NSsWIXl<0v\QW5EEXH LVm@B<YM&F>k&0sCL`V=I.2mbdyo(kh.N( q=4wO>>x|g^ / 3Z9>>1{GEORwG#yTo|#g:lB sn}8 #Aqpzx N;scH31p><xy@/n <Hq%.O_5Is#mYy|>G3___..Kw$G yo}6. FUr_7]PhtSO]vM\.n+ezFN/G_}xxttD8oR0 ^} |p4O</ g9V9 --Ozu*=8 M L4IJ#0p>CA7$f}@q#+@qG4@^<3}3yBH[o`>gPX/I;B7 ~8m! ::89`$MOOeyhd5a A eyX0rz'v(@ RMvrf+P *<-eEXI5C-$n:^B[BCovO RV1uZH$n2zg;hl'-K| zVkn:8F7r eqaSaC)&3MfXV#LY7TnIoLEe! 8tJDF5.41z)S]fnp qt30-9(55g_Dh2?WT uaCkWa3X5sYBY4kl 2Djm J&`q+epF$A+Q}%S]KwQ\{H'uY $G3:`9L <fyWsd 3f2?&:E)w9TboF[;o5I&AI (5 s?6r`F gsUy&)7y'HB1Q{ IL7Cx0|eUzSlic03K){cwEbZZp S%d_ :eTw=i>sO?>N W 2yC=3o<y?8z_A? ~vmg>>; ^n> t(yCt[K 6FsihHy697G; ?;S?p8| G?W^yW^yW^yu@}p {}&A x9] x]Lq7x??_(NoTO|>.^HrRAtme}m_]]][[s:^F%[K:$DKMNN FO8q:~w=#A?} xErGy&8DM Xj7xiA.03H6D2:Q!)HD3vfc=.QmPQhw- 3Oyx Qr8p('EFkX!` 2~  JiLj*V6#%m3fn#DzuXjB~k{mj TRkmNI1kT9<:3dv|zc:^ W.nLtqd-f.4|i3fLqk )7z#%Zl\Hmk9Q)(-3)TLje 14bE_L2*q3R B TI' aQ&?#FFR8Sb#-'1ftt=+d$pPd)4F28qLA+ 4Ik2E35hJ_@t`3K) - D\9\yC8-I:~Qg/p?  &S5[$HsCY9:-L2zI_CS2PKR<m\}`|`O4rq>8 qzh ] -yf|z0Gg0v_ v/j.#< h KSm} O3:s?E]{*EG tC 9mpC)jB JGI )~yu:?Em '>~eS+D't%&g{AwN;8 vc3 HwF F[;2nJ\{vSe $mh3?94 (_'5mNBNBgtfvw}k^yW^yW^yX@_0{> ?r5QY[ {@^ ZX?O D XFlKrXTQA4hPs]z*Fn|6J{WWW?iZ xgDsO=9GE CK<881&h4 GI2t`j%` `g@-; e*t [>g7+8XTA!#$gh> Acg12@;2 GgdG -4B F+5M phtAbxPhUe*ILTD]cXUI2P3fJ@WhFKI ]d`ctd6 :c FN25rsnb-eSc;c5 O/JD bpjFYM@f^6FmsV:W-UU ~Ie4nQet~:=U2Y91#Q*]%5Q6Xb['q\/L+S9Dt\T +W#ht-k \R&%($:T]%+WV2+]T!B)Q3gL1ylH&-zi4p{ejcF 'Yyq1-ByZ`|QAZ_I gA! e8(CyY1?BeL?Kq! A4c:\!KzSz; `*6 b)p;gPh f[>## !cEm#Z]O>)sg~OO6 V| 6Vp &20@'$a?LR:{vIAwbgb~& Gcp;A; E=lb=c -yx~6'vu<;Awi++W:9dw~G84?-C.o6~{p~/`5c9 ^JJQGl6WWW7pAo~I[fgg$I | 8z3 'bQ<3YahSY9Ea[8lK zS#\sSV( \K90 M8%g0p vq@DL3iS9p9rAp@i\@sX@G\(.h) bE9^[IM[7VVWW-$j[A#k T3-Wlkj^K:<5y!56FE]HmOYFIf7]onN45bm o\~i2{|=jkZ:6:k5>b3FVgZ6 s:Y!myd&Vl1*S-/|M%[.XBOEY`43Xuzt$kPh::yckYd`BPj3D-USbczFF( *Xi.&cY(JV`NX! -c\Nq]F)Wb9`s--4Yi Lbase+lW0lG/@t8Ti1|=Oa|IOA@r:/'cs\b0<(1 #pVEQ5:`(thY* i;45hA lh>X2bp 7B=I9-X 0Cfx@yA7!3/BsBA=%|~g~i?wwws;8_tF q7D? zO~O>8)~~ X ojK>Vn3M6L6;|vXt|5tg=aNpTr?g{vlSjYt&7* |rEy }-/++G?;Ph'M&9)|wza/_{/ /&O=$W(w%KZmhA:x9.qt7|}Fya;'F ; /}`heH(IDBCGBt |Nr\.4K@463a8KjPdXA3AMPmDC@!&(mG # p&q x3)9Kc)B5IJ} hAt{9\oF-T5Lmi )i#-YB]cj:S~y|3ldxjs2y! !|5\Lk] PpcYu%Nj&16/dMXG__p}rn[#[cgo<=vsj+5od)6Li=y=nc6Y?ih!-X)6Sj:Yh4 K VyAc 8\0E%j>hlrKxEZ.e]+WYO 'e3v2GWELh0\lu.$N mV8 W/%eEJt %[2%#By%  mQ za5*<7YXt8 Y>8z$g-fBZP3R @Ps5- | c}=z B]F+pxeCde|` c|pO&rpsHo9slh?1}Dap E3 L}j8 }h6VdF 4#P*6ah>#: ;wOwuu= _N{p\Ad4<@OU8v}3B!ZnllP?; 7yv'o)hs>;A={6 l@5 t'm:hBq6 zO|ntjzO GaS<w2=q= Y=v([W^yW^yW^yOO &?x]wmoowgRq; hu2DWw7CFO' kjj{9r:w]Of |G;m'_|S~ ;|>iPXLChD megZ?u!Ah ]Ss8C l dFxA|8L$fxqn$!LEu#$L83  HfP@gE$ R0:ph ? -KJi57tv7lq2U%m7WGUJF_6R*YKvrVJYc^57 -ZUGK#Qd_-\=3q.|zn/Om~yz3cFn^_W&fF[fkQDf{n%RrUf%P74&lf*ze =#6g4Q%99V K`IE W@nq`.33uf>LnfY+)XSB6 &5Dv]yh5f)'4 D3:tJRF 8$lh=-hTdjY7jq%xh0e3j)@7R 2-Wq j|>I-jd gBSL~NF'y!#T{ eY8;4(yzh[g0u )<.b 0  .h 770 HQ0 s z0 2}Z#gEI!=j#v2fxD#  9@A#oD N;$>* q1 /r'u{> qGvz C?gFs7o:gNIgEhM{D~;Mgw6~Y9E#n`yO{ nGs; |/E t<_WW^yW^yW^yuB .Q[W/tdAmCo[{ko sU0^O|Dfqj @/;;M5\Sg}Gfsqq e{=: 9r? D\X4@+IX ET]&:IOP8 h p w$XgF3:[ g hnSZP ; 9 %DZ)hV4(4 @-%@-qkBt0o#B j0EC_B` \B4vW~-aVnfk)u-/)XZxrbJ$~>:i()T3JNkY:WK%oL|zq4^{Fn]==z{/^:q>0DmUvN<bB;VD5[rQfXu#T505Shf&4UlCXH2I=-AA+ZR%\6Y^9B2^(L`)(2t4 `qC@Z)8 5GhDQJ E+@/aqBq`\Xg$XTcl[2tb9-+ A4hR%@l>C3Ay 1-Uz4 HjsjfOE& [` E)\F  XqA|b`p>10Cy-p:h'lgH|pB _#c|p.gq Bcx8A#+ |gtvNAz-LH)C{TtC@N}ft$3l~1 1w-b>aCc(8PeO]>uTWW? Li]Q= qxegK_#Gg}/.--jW?}e:}Ki7> ynk8&P3r :snE'vnK>;<rnY; /G|&=m|yG;W^yW^yW^yuY;Z[roA4)B y|7^|Wt.=xOBsssK$R#z@ue 7n3Xq-t@V[XXpiCCCO>$zgTx{} &XxYADpG!IA\ 4>oP:N46HoAlcg&& ES\ d &l4 MgC ?C&g9 # &&1E^A|oYPf1f|8|h`2r kik:a [)y6S4--t9dbl6n;]? 01k\kc ZO[c&WF3S7/d/O|1{mkh4Lr;o.<7rQ{5gQWsZLY0_=-{KP?B; XnMts &JEaMe\J TyW^!\N [6Y4/tb-lhR6_2*]WA4z2\0gyJ &b  td&[20HcA-Ls ?fQ UG &`&5%fJM+K|N)E%<LpL~ep%9 CcAmY?os/e xN |v33cyONkn# /&mH3Aq5`C{ 5l` 87@ 1Z~ cm5 mMz3~>vG y<D _`8l?;vK. 9rc>0SSS$~9=NA9;6)p/g1'%Enq/t=N YKugOS-_;/ y6X?_M=O'^yW^yW^y7|Sb~ hF![o~o|;_E~G@#5M;~baa}/I*Fl4w8}k#V(DsgffFFFdYyG wOxy@^el qh&Qg'- 0d:F1b@k:.4st'pAa (4 4mI>h!qMN^]4rp#0:LN|@:`.h1JsA pA?Cd: ExMe*LabmM]hBE^IjIeSZJ<Y:Z I3F3gJZFNv.fvcNN7ucqth2fJYn'2FJHi)iu=gZN_j]TrVV4abKWIC(ZbgejA!93T%lc*]zNd:QW-]UW Ep SeAc1Va-Ph@4& U(t=+sKE W#@-<gF: 07 i5XmM)b'Y2>S+p 6KXTB/d2Z|N9->oszbVO+)9Cg4$ O RPhBpay!0C|bhey(3<BC n8MQg|8@<VnZ ` 7/0zP h0?%b>2'#XPm& t=DK{Gc:u' w/|aO{xb8Q=i/{ ;~8B^;7onmg^iSp ~n+yO8 t{;n#n%;Lp:y^l)N~gRM=L9 |no4 ?;|>~~+++~;o|Eu[4M tK;m}]&q7^^ Yw/#Gz@ K .n9v62. ny9^y h Y.2 0O~D}zt'9B'E HKxYH>f+\Lm)4a<4 0Qg<Gq:N D!)I NPFD9)H; gc8#G<t87( aWZB?s.0H#!_t$Z 'ZUj(!B!YRM*[er#@UmhHsREZZ_zZ-\!IzJFzZvu6j]WFKQc;\OIWF ^kGcv6S2zxkn5=7q+kd7hmV+|2KIhSb%-U3r=`VU-(|QFZX'JVz%YRi!df5-H%tFf%pbeMvXQH2qTs2K:]2tF/*T=P`^sOp#%lX4((6Q2[=3^0I|Pk{zYk uz^OjU*nR</&E4C- 4 G 9<b'y9r^:>;( asP Bhgq91d95eSDX?D84p 3gMp:YngS[ ap!+3 3?~ NSNuwwm_k#N; i?yk?w^p__5MF?/ ?(h?%; N96FsgAwsg<#nI^hk2D;rD'zp0=A6z {=l6 Zxg++CO~ .|;i 63n{89]1M;o.o~ro 7.^9 /EQ\nfffqqqyyT*U*jZ nhTt*o84+\~}c}P(\tmtqp?A c>}l4l)  hsvh$F6KEMh7M T@[h`10hSf#Zht96`u)=.qh I[8 RhL/aDZ21p4( ! !hM`A_Fxp UxMky4P9VV aZZrA\=X7Z`Gc'C9melr'^5[hF9N^2mej kVNVJVrRj tr=zNo4ZZiZZ^&WIU[[B6$r[zibY%Pb-%q ]4jJ.RKVLRZytdp# |pFm b1%6W4_H\$ up`h.cNIj 5AM^)4_JAbbC/g 6H j sOg IBy&V1t2vI_BocP.?a><G3: 6G<38NRxBa<L|g/<C=vl%@4Vp3c{H36?nwF aP@ Ch sC#2hDZ_ `m8H Z QA~=P {;Z ww}\ s`/}y?\GNFgA ??(#G |{.L kn~}vsgSd&dM\ pmK.h7v;#_EgVcvrd80<7gtDQ/W^yW^yW^w~w V|Sy -At `5:)DM@tg R-< 8M zlD&W.AozW}/?g 9o~'{{+/s8H9$e fo0Aj8 h_aKXYFS?vf8wdqsx+L 8L)L8$bEn[AUb#arILDsa>bEBtEN!5if+hWSJ)u5o9im; c#-cdVJFNN;e?[y3-H.guS^K]*zZ}3glVodg.L -G plDB+)iIqWA`V1*SE4FJ)MfQdEw3I>8-EbF%!<%0F'J8@`KnirXTB:/y[LReU. ze%^6XM v8pPja]yjhB+) }-p])5RI&z#I1<)&y>0lA3FbxA4Fq~hBH18!By.0IoAg0_ B7aMR`V^;>N fCvs3! 'n5`ZW KBw>=2`FtJ<F $vMP W?suuu)#K_~= aaT{B19 q0i^x!-?;6rP[A6~sgDg;|E9hK;Ah hw97v9xy6zsssg ?| ?{W^yW^yW ?S&Jkmg'&vgHm^hG!Mp{@= ~W ?| <B#UUbTV+++zhZ BA+G!uZ}# $ S wG{> $qB@4[h;:d?3Pe bhC}Iq -^K&Zc<MINPzrpKAxlVpQsIB9/8 pYN$ h4C :  t$D| MKBU9yX MKjb;WzZCs6v*Rniu'ne[ZuK\3M[J02v[5 :~6me*P&74M]Lk X9j)q-#g\r=ed?k))q%TJU)8]`T*jnQM`4b^Pe'vIO2-8iH>c25-EF3$9Vr%+-C#Bfdt`h^r<My@^5 /~  L y4!A9 P2Sa5-BcTC'EMBKR9EEH>w4pQv(G &mp9 w}0cR$G` f4r<#=S T| 34{m3+Rh a}Z/]Z zGR=z3F AeC4Zjx BW=j7yGvuu>}6y y o`0Z ?>O/R({ |'NX &vLAwR6;Ltv;7|-v-p-ad4NXi8mpP[$6{Iwom6;aM_yHs/rww+Cg++W~|PU&!nF$16F?QDm.  ] KKCz9}s mOOM-..pU* ^~K/; /AGN\y s wqN8 (BK<Kz5 H 4@f itYh ` q*)p1|!Lh$K8 `gENPh6pB95!H(P/!)[hHkt$] A c/5Xhce9QTnE:4BBSl6.64~]m5GjNh gq7lq:B7o4fkl:Chj|=75qMV0u+jRIh87rf> sN%V3rkPOK\bseb%)~IcupM 6hXVE_tF/1Q0DhzZ&c86p9lK&[%Wqk$D2!D 'S@tIB^0A nnLShlu0op2<2]d = 4yNR^PdYUd :I^pf@B G(34y0OCR`\1y>0*|0 _pAB45 >H{HzgpCpw^zBL-CzNA`7AV{PS=Ih5k` Ek-oEp zd~aG !wS} {q>'j'1;X0HCI9c{g$g<y2J A7v;U{4/I?>wz?Bwf;o-_?Y;$}Ih!`~w6|0v;:=m -s l67/97 o^yW^yW^y'_}YBo|{\ m-;y(5q8?!iP>ID ~zH|o_]DWCSx|d$? -At^5Msev:[DiRt:H<y=I\ :s& ptIAXEFw jh+;DhV97wj7c $g?S.s&4MXxG!HTSHGGBEtHcvDv'ZF[\ `>EBZ4gxQ+M_QH5CZF]UUk&ZN)kP\5y2j*u_3XIRMu-FJxUL4M]Z34%7LaI5et#%gfZZAiP26Wbrj|)S%SX$X>/t\594b9/2 _nIv ) E)-%y5#b+ 4kA]%]*>#GuzQ! GK<Ca Cftkt7e25C(74h+X#Y&lAm2z zL q jyFf8=OKrdNd =LE9L2YO`54<qCEb0/Cj@1c}v? L _3@6R!-@3lsO2xhtg!&zW|gSY v>%%tOj^-w> ^R^4~#z~EzNOOz 9; _w_WWu>r 9>pO|lt^g >sL.#Fvm-;)tg^ ('LhqERGw ~)hwnS@9pVn6E?s_a 06 t}~;7g++#8q|gO|Nnm m fXOP}]br|7gyi=~6H4>6T.b\jFMqz{{@W\ }MT7n} o^~l6'''D?;a ?C: @<Y(jp4+s $b#&&2KhfB BHs g)c14MDu8106h|$(pMbO 8-D#0 aZ XZE1F\RL59QcYuC\x4tf%_IRQ`F]K_+!xU>^UM\yTIuSBc# W4z5#ed4i-fq+[K4i0VLnQ-) t~!I/$*.4eB`DtXV(h%5YOn lZ|F. =tK0xh5h^6? :x  RtV+b2NzD- =K& e4&u#iFCJnrC xc Zldn^Vg>yNK .Ja@g@_qAj[g?.!0y Gy@gvO v)gp JH4tZv}`LljH_Tvl @;A4a)O>t#:] > 8 {P BJ;ge}ft@\ bzN;>T]/>uDNsd7N<?sN>z?0|HG~(~{@3nB?R#9sfdddvvpAQ *)a[_BGz a_vtk r|>@Ab<En{ysB'v5tg8wv'lw+Fq<^yW^yW^yG:}4~ < lhig]$#@z:)j I^ F# ?CyO<gBayrTVkuA /Ckh`pqBW\i4|z3{9~Dct$XL <  i85EXE3:Rfp< OYhNM#aE 8ZjY8AgF! hwS !\8Bkaw0 r!?&P:GB|X~Sxh*e>:IWDRq+2](TMWx]29R*VdG\0>VdeL#BC*2[U_%-Tu3uo`[3fY6B##Tmjs$\&/e.L.xQMXRB)3%5Q59Lee*UJF%IF gv^-Euh`dsSrj$hnzV%5)qvB5YGkVpw%5U]3dHMd&PMDt]Kh2`2s: 6 nN)fx:E t$C-ye};<F\?O c3L| =V1=Z+M`&~#H iSj jX7;hI%`dN|r@;GzO&@lp)3':usO}&~S' }y9sSwuc@ n{}{F $ a~-n?CG }GFGGggg Bt>Rm7;>g nAp7NKH5 |F:Cm6 [g@xv+P>*.a>8h}x|>}vX: }__~W^yW^yW^}zW;Gb xG;ng4zt[.S^LIF.Vwy~Do|! scX*tx9J8]T*I]Ak^z%)8qBt ? l^Xh9NxnB -@h`;ZA|N$:A}I|nYl3:2F^: X8> B`sDExet'qCX$M 3Y^6G'h d<42 -BUP*)Ij2^U-K (@sFBKt`*2 .sTUHHlMFMQ.+_3DI5\f6WO5LbAUH4fA/kLYJ-jHKhl%tR `Jt^@m2&lY5>g]RZ(xzhE%Z0%9d L</HO$et&FtWg. pjJgZZ`t64ijXX6SI -..XA`RcoR [ho\}Q\T--y3m4Q?s LRKQ `HGR> P&1 l`lvFC C0FI hzDY%-nz 6{&{6s_;{}gO;s3xIq8sxnL ~~cG Ac'N; siE K`Ug|R}?G }G{5>>P &}p#6Fg6mhw58o]M'rOM`[nnnJnB&/?N#HO=u {wgwy?^]?w^yll W^yW^yW^}z7q~af@sWXH^#iS}r@yZ ?z$w# wO}<XQo`A&)r5\7_A;FSSSli> ;vlO ?S'C><-;4p]  9RR$*>#A)CZe+;b+;Ah `wID)B Fzmp7Rs30jLyi$h3 nhIju(lQDhIJgK\h- ^bhpI y_ 99 7 Xl9IQYIw|Ou<IVMIG$J$IP%&M6g gvyNg&} W#z>'` HEtl(+bRf93\HSC@1>Tbt- $m)?NmKm%9nOYbr]4Km!BK=(n-}{We{ VaHi2-JJH wG>:-R/<SF:+dwkm! j |9*:R;SGDLUw)I0MBz3v'Lq6Jb^muf@ 20qh^.>v5_re#-R{9J[$\]!g4lygo/~6<RA !:\p9VG_p\3*b_ 69=k Sk5g-]^VZA36fUY X kkJM1Gc3?1MN\:kccuvSn M Ff&& 4o?? U}3 Mmo]oBF@}g5;z(O<^+}8qTk7?5 x>zO>UTp`SZYOB H>kF j6u3wt%4gkh|c g5ax-x[nK~K_2eQFeQFeQ ~y fpscAYvf.APH9<gJ qs]~k O./ 7nsVkTOaT}}{>xC >|'PAyG } T0n}Uht'Op <h0MJ(&\(1`DrNP/B47(\C a'$jXb84) ZbgCLJ!)rBp9LA'l? 5!+iMRvN<i|)'-Y mF;c1op_:4 $=`_* u=: 8aB=Po<4%p61L| (J|'G@9>XiMmK$[So p?dg!R\4K=-Xo!{a_Y%Y{[XG90EbsT? L)] :uc= o` I<RSBC=8_aA4b$h&WZuu\3|m2 a%lH$:QXG 0fKvlD]CC2|6<11a!~PrmHa.\D Oh K^pu:u I.$X+H(mYwcBrg|w.\4x enp<3dS6+FHSxT47T8mjt4nxJ9:Y)-\l6/]Tk-ZF-% [ 7*P?})SSc5VguAMYoY 74hMVU F3'a<5; }cMZ|K9-T8ZYh~X iav>:{+D~o~elQFeQFeQF}/ 4&N J\Q-\_YcA? hD=)v W~|=PhF}>_KK {{{8CB NP>}3g;ws<|8S m.]/1c*&' dBsD)!6P!R80'cE'b`X!/RBeQ#!HIn4jQepkyBFF$:O8:|NCKGFd}t2c!GCfPaM)=)'sg}z7E|Qn)+yakv9C3; ODzDt6|La?Pc0+DJ=y K~H |iJKps+I<g 7a%wBfi`uo]rtw)-nv]!/4gFw%f;[BYR?&S}vF d=H9 `[wh 7x&/oI1| lM*#r6`s*|-}k2UJ~w9s|G!vQ o/ /K 6(lmCMdP)tNr6ma;lH\[1 5s[z2Isjnd {Fv+) D I!\ PcJS\rhl2a ojrW-#Cc Wr]i7000yS.X mG<y#@d%03`)5|Y8e5|f`t7T54MZcAU=$-3RDS5T55/z]V/olQFeQFeQF}zw }}}W^Us`M| +>:PR?O9 (&F_87dA'wnYsO5! F[hxM!v*<Dur>}?v ?##.:uj6mNsW=).q;x)T)nesYT9.l qymiC$9HqOnAf6RX$H6RSh8C3Kq! kr#&X-M h02 +4}n>u{>7IvXw>m7[mA=o: )tx;I{2l+ !B%bq`-0$\3ve}hW>WJ| tsrO[z%u 4P\qo9YtnMKsr-RW+F;r%#m|7jAReiw>@^jy-QC<S E0#F -qs_9g_'[1 . lMzJR/:$4l vWlKbAA'-@ U!h9%; 7Jyu*lm Y&;yZ^[>`KMIr[nKe 91}6n.m5&@q63Y:4kM:Mpsfe Hp$jqq&K2X6]5-|S&i ;N)PVt2W$xNjQhVgP;:: ?m ;wvww?3 )huZw8gyX-|XFjf\4lYh73j#zFhXCEkB1~kMZSJgc;<\QQp5:3~uYdFeQFeQFeg5k\4}+z94h&5z%HD3\4gIXG?zo7_zkw?o pa5. 53fhjlL ;  <hC rNb}  }t?_3>~]6ld |G=1}Z~3 r6Z2J B2dNG 9h9b3gdPyE UCp/R(HHK(5mXh6CL$t aD9p9S@:d#SfqGNq+u{\)3q}:[ x-o`ufB=hO>[iPKflhZSp&j`sr @4A*'>n;bv rB Tp[9l DsL`G69smKnr u^nI\wB+ % _E- DEnvfX\um>xa3(q2VRS-L_k$;rEgbd'1f9o/?xl`S}FsUE -a{kuZc.semi F<v 6nu3Hao! YH7r23jV7Fh6mE+])/Ps QyqkoL4Q_KL l6?WKH>j[g1YU[nYn:qJ{zz ~(t\ UuYaFry4 QgAv~/JJwyQh|/wP(_6K.'eQFeQFeQ I]~ >&)S7ojrL+#+bmMB}jZg zDD +?_ ;r$NN}59s8v^.Cc <HqG/9DcZtRgp;w]FiUDuYLpr.SLc:$@_t3D  PQgE#dt4L3s<j!.y 2rf) gE+M bFxs;*<e#Gl4+2!?9L- iL|d/.q(8:[ u vv$f` &=I7u l^W{2~w..}-ao[:[` OqNKRa*6$Q6%iog2Thw! Eg#SMLhk.$*'#2AdIYb&wb mtw} m|dw1F:;K1v*D|3 F3S#?03Rt -1]Lr- ]8swE%]>n=tYN T[pf\h{!5 \h[1^lh}`G{[UA{gM1%0&v=L )k33L]&^x MS62+'axs#s$*3@F&BF@ k `F09q{'N X .t~M60goix+=A~6 ?~Kd2 w^uYYM5+:guY~Vwf*Y#Vgk$jNAjKFE DzhM]`h@ ~i9s&?;$eQFeQFeQ IgdT*=Zp+QJ+YV?1 Z5-D (kz? 3^^&Nd`0zj|c;qTG G5O>{ 9D N@o\eP(l.7aN62e?#iFGK9p>*OC< s1Ef t46d4jNAv<9CfV49HcJ'&%:)7(M\q!zm` 31gD'&qO3Kb| JP/&!\@$Z~O`[{1 2`6mNx]GtxDypAnLW!<'t> h+FR5%] N6$%Cd-07  # lIfaq#mFdLds&)<O7QRphcV)P`)|*'lquFrB0pnfk7 9~ 8cpcAaon+hXIFZcb  nxf;o. Q)NT4J!d mu.s:e.RF7=b{^bl7o~'ffl[W<x[.zuw i~YpQxoP1lTP h5-;3bv+V: 63>OJg|yV ]_j 3|)5ij 5ig\uH$uy(2(2(7YWW'Nr@j]kc .- +p Y)r:RWa{W_/w?InI3m+W7)} <x!d8q$9s?? A4k6o\.= E _S'.]mB*Ha@g:73S ]T2f 4cr:gp.dd /q@ZBPCF8it6**Ehz`a&L1 `s@ix: ! shE(d _^4E3XAeqCM6iyOBLID.-+xt b 'L2FLb[ 1 Q#snG<N8:a A i^{?^ .TRU.e0yQ<%]'2|;O3xWIaD<F Q n q;ph :m!=qD.b el0\s 0;0[` -i a663&?hziI8#e105T[#A7g&{c=jJY1 &6h4{c fm|h`z`=~/v'?vk+2>vAE&\c1r &9s---`YkEYh5gV6*EY6*3Ug>dbnn0MW@kZs ^X<BY4%sC@f}Zj>M7_klQFeQFeQF}_(+VkiH zs>he~7|ZgCG4qh oyobK.W?{Lkk GfiX:;8={E/Z}8O:0gA=  va\.g7n SVz)if Bg/ar:GfvAdF$slt Q4 _Cs%|#& ClD(AmQpp(rdaYAC@0] -tYaArZD`KG= ~p32  f| 1`sG9g?l %!?j;<YA|#[dpMy@-b =q?$Xm<c>>%pS2fD :0A` ~ |/'rNQxgRhH|z}6ea{ 0`:bQ3Sh8nnXM'l3&aqe2e/-C#E]hr !nijdSjv')i40[r5#eT3M:n0vaA~%2d5OV.rzx6tST5>V-\1|k eO>$I&L5k]zuWWcyEZ0EZ3jy 4Aq! j][^*>_x/^@C ?W3oh lZcF_jU ~S2~76(2(2(>z_~eajjj/_|oY-+kX5ZV?>CVCEt-fxo~Iq '|`~) 3gh w}yNgkKzzzPq>~'O: /( {c  ;}vnx<3gT8k}Mu\R*eeq4)L4+ yf\4yCB: 1#2.%] h&(M8 $.V(#*^47D:\ x4 i2Q3gC#k Na#h \z \[0{e M4!m)1fPNGqh31aK`L E[l83g%q\LY)8 ZQK^^@^gC7 _H4t L8S^^sD< &xx t`v;&1iXW9ND[}v 8|sf. E NASEnL6r[n:/ ^OhFez24nbeMx [mEh<)4pJV33<TTFsCC=[$P; Rq[iy'> 7qYf=. <v3g1zWyU(8Y xUc4h?`&?kV 6`kz_3V2GF5 }V63<[-e /~3~76(2(2(>zw?644z9|~ aY5t\5P1 }WN )?#;OHq70^+W^ }>tw9 )S&S1c&N|p(v===}}}T{oT #'N`/ 9 |cJd9ojXbWC z) 'i>SB#:!1ULpB`ScATm4.%2: Tpd)TPSb&s| g20/Ff h!BBj\~r@Z9D$CNuB7i l93 C~>$ngC33sSyUZ LJKoe9ko.;epE J9dJ2|Dy 'p5)-lvqQ A4D\8-f @( wA5B rk-;v8 ~%@pg70mt t! Ppm5V3k+EJgB9:\vL3=DWqt3e*;cQ wGwTz :rz psnqL&3{K[[O?- XF|K 'HVv'xtN4it3TjZP3)j:z 3Vhr5g=g cYgz7Qu 7=g)jz>o{En~9/~aVlQFeQFeQFktRu> 9roo^y7oWT( RzMWzFE(-9hvh7 <7~/w_|K}6p1v744$)mqP>ySX}FTxY~w#'7eM04q ]6kD5gvF7) 'S<+8vhy `&Np a+L9 gY fdtJy2?x>.!feH4FGO#S9R02 2:9h# 84WFS AD1g !'4a_ee4sza5Rey8d 2p>xSG@^/C8i@X^XaPIB W8`5lDQ+jq g'6I 92FLr)Ykv*{~gTm:sZE|#:x&#4k+5P! .;qff4!9@hE#v9xg>;mM42g9;Py5a`4@nf |D] M;)L &4~RN0 T4-! wU#D5dP4isM~xxCoug00%z/t37 5ZQMaWAW4fjGts5< &++36GE00?k|c^UVM2R{7~%6(2(2(%|PR&Nxo|W\Bf5fJsC/V[8EWtqh 5}=GoK/<>wl6h[?=jM6uuuS#Ca;|cO$5s$> ' 7n.kc<iK]d$\H&d#G&M3R@4hT+9 f/r*Yd44(L] <()Q 1<G 2E*\k!ivn`:A4[8HS:$fr`dKp=8hEC4h[%!Re8LM&(cyey U}<#5B9Lx$bb bIZ1it~I 2/D{0*5?edPw@( tVBQOCkIPwqB%{B>3F3v$tD*) 8C.9^htqprnnVqZ0 lNa+4&Sm-AeijiDjr4seAf S.TFIGBXrChr` 4e]V{ ?O:U-[G?[^R#S][xX x+VL<yBm] Y$0oQfB]`MATk;X)CX?Y)Z9-? V] pGn#s___2(2(2o~{W-'Nv_qeAb uC5MZm1/@P f7OBy7C_~kW\~W~73{ ~9vs=.|o=H_r 9'OD?|g9w VV0yqi2{jl1}ZC^wVSr&E$Na5eeLt>JB2OK)$(Ele:.%`0`Hc98I90 2 %B3ql%YtG !ivq0FDb]!rr9hJ>( $D4dqy^AtIFN3$b#Qg@3Y(;0ly;s&+2Y>j(g0SCf8-\q pH;{eM49bMFQ-tXY0v fJ 7n {>[S@ D NL%~eD4{9bSV}1e| 66r#; 8DZVIYXh5[TI&566wcKFcK @ZFz=|(g.Zhlw^x'pz~sPS%oFJkhs4Oz : N2N3L3o/gn'\.<$zIATAh:~~6(2(2({UH$k&z^x9jYvQ^E Zg9Dk`#A_WC&ht/[F]cD :zcN ?YhTs<9*Yc2L 9rpg) ohh>}zU}]sf4El<VNquN|#Ys%XI`*c3ASaNpzY v#W 9g4H# .Ott B!D&kG4it>SZo`d:cvn=`s4i:rAp|ZIA2Fs^$i^`J <&I21& $&!p gR)!4]gj A DtBi7g=+!s8X5 JjH#xCZWT)tNs qwaTB?:F8:uhfSG 1g :\l{]Yq>{mBe f02sV~H =`Ab4f:c2u(0GmC+[B<0 gk!ManZt'O6LN2qDh]]]%e:vq4Z}AygO2enG m~ *Wn{bA5|V74.uYh84)bn>(|Bj46 oIg5|V5a f#hxY=t5(=J\ }6]M/}FeQFeQFe ovgyf j)mO6j;ssVW5t-B![e/D7^G-^r^yg e z1Oojj6m{w_o/9 /G =z4)<w Tp>)?zS < P(rI&Ul0`>)QGBt8dsm#hfmNHe{F@f8Uf]P*{Y) M)4u DH#l.6EsF:+ics# !!`BQa fP?7P &q45!?.SJeq4]{y^ ao&`9AiIG|h N)?osJ<;afVwEdPsf4%)YT*QH^guh&)4fC&JAfjP6>e NGZn_hE03!kdr6Vk;;c3l`}4<u0!jM\&Gv+#kHbea A4C|a:ujCCC]]GjkG? K8!J}K 0c3gN2e@}```}C![!`?Xj#bA|bjgf[HF<Z=`p]-\&>\A)?ksmss #?k'sfg2(2(2J??=s5KC /_~74qhCYXXa#\O1p~M!&(j D_g}^yoO 9N7Dw=w\l780{ ^D:E%w*<s;g~w `}:; zrxYRS'.]eH`!EqV4!<2Ye #i&3#pm2AgV&3&F u 7gSl4B-%T! g: Ug:R !mF tWr9`gEl3f Ai6rDt& `XI2;:qIRC# 3mFb%02F R(#@*.9A Y7-{<9F3d5i~P NZmnh2?&Z3hz!=v0Ge5 #a7Q E)M:hdJ;SA0@=gS'Mv?.sj;Y =V3kG3g(4Mvn&Ks#BAt=&{ca=afnoJ X(US5!{i.\;::?sY3C}R3G5lYxHEP5X>Wqe1=CL TWG^LN>sY]BTg++oim]Xne?X/FeQFeQFezxCCCn{zh95k~/_kf5%7.4=%@mkYhCcoo_z/?.'M84[h_} C } cT#p>DS]_vyWL:{ LO y%$ dpCF.-SxLy9 /rA6E< s$k\44$Ydxg&.*ij9_]G'ChJEGB] 3sfzp* g8lAIN>sLZN A>XrAJ4`2`^(~&k? !d WV7BcZiF7ts.:4:i|8&r7wB^3s&(;SBqh4Qa{Bq0FG4i{e}o*)aF2U&g2CQC0 3aQkI8v[LQA:hs JMs^%g31 MtenD3V>[ !9e 7-Y0O]X+Vo&M:th%OOwK?;uiwB@R z.6o&= /&q0VgCyFBA>hqJw0d h)fPDkpU>Gbo? 4j~/][QFeQFeQFP|6l{9Q9 gy^~ @XPlfi`S3. f hSH'!|Ts\vW_K/}_O6nM z1SLYre[n]GA=T P: 9v(.\xyYc$Ify5VF|oQu H) ]E E#!l3S AD e'$o%dhyx^|V$y)_ x3q.#r:f;GSD1Rhu F9K+@p#pJKvsqq:tpyL^Vrp-#q0Sn4%)&L)hz dP!bd sCr&k^i6deU|<) k[8^#Fosh? =R#BSC&?0;8 pX9&hAZ8MP3I)RsF6xe(mlf})Mc65L9sRN(vP^7 g unyM`N3f ?~|XLZ;nrEA'~{OxT*o?C#7880<kRjs5:?WsnTBD VjEoPOj ?qY xsAh(--2A/'L)/loFeQFeQFeoU;?O:u*TlS8gt:}/| ?oID3fE 4%'kb4Z f #Yh1z9M!]z^{W?{rt) 3f3fs6qcgg' Bc z :t)4xi0MhoQ=v3g 8pXn)cmmlH3)g3Az<n)YA%.R7d- sIJZVvH %! 97M>-ijFcECBvC <5xQGVL3w?)4I30]bH*Ci($p&*<YVs NPYy%8ND }|!^5b hd*eifZ[&3I9HAgN'hp\ n2SJL:C#F3)8Ll#A)i+wGI)05+ &z]j5l y-du N>SZfFCDf)4v`AJ>71[F4L#VRChnP67BQCE+!7a_fuib$Yg0[2^ti.N!EEYD>gA5r<5Y5=+gj5 kgMYZAMkBu BuZM#o~#Cf-hAi]iA8?Oio p/_6~5(2(2(~ o~s??{bGnoq/q#|kSQjg5[-A>#f~c-]C5K7b3Fy9 ru.Vs qBr@ NGh>^m.^xIDwu=C---@`e&M(/?i1'b*4g3-ls6[s AbN7gRPYje TLiUA2H+cEpqZFw<'A29QjegE E#v#/w6d:N11rqD8 d4 :xE )9x PAZ  g0Adn$e:v 9:Deq* 0{$':$ RCC5Ncy#iG<b) % 5%Q' K4(D 2 R^yD1ihx& {h A-@F 1E;`ND &C709| c3Y_!* 7I;Naw&:es4/0wsW\)qj-[JO25xGO?>8qDx3 yRw ]Wg5dVwh5gK I>9:?C oTe&kbY~RuccRk74 ([2\Q~{<s6~5(2(2(~/ /G`xb)S??wmEB7:joiPn=?`A4a#W/}~ - c0a@`m  y9B#>~OR{9P%!]]]6m*.kVI_tR9sK.3LHdDN'ijt%j_('pne6 YA7.Hq84fn|7Sgfh9eMLu15^ Wd #cLd8gte$QAeKS%-bHab)! z2xs l`Cg=d> mm1 aD# ?g}rBS2+D$060{ElN=u jmb3R!4=$#= 7?|dJA^L>vFGEE{QjSHhCg$I1tXvt8zb<m P4i?e8sg7 ek :Ph8<diajf05 67M4.@Y\x}f-YD_x6eV v |O=Tsso} >y$ZAYwnS5j i=vk`gY(V'EFjZUcAh!Nw.ycY#  ~ wym(2(2( >G?zg 8 +z9/^\*^{M` EFQ2kIHEzC hB o dq/w_|/| ~<0ZA$_}.D)8S<y/^<< kf3gNguMrEI1gm\)\t3)Lhy@Rf&9` G K5! in(1k>b?lJAm/'Mg pYTR|HsApvx*3p GM5&5.#}pM!2;xqlsPVOt )5Bleg4\+`f2nt4Qh?r$?wVp'-j >qt-51zp$DD R+#8# $sr:R %s(tiS!]xF;4jA'0R.ZoYEh=PrPBpG\t`J&CiVvPI01L H3*zZ9 nn005>M _`b)xeG 5mgA?OeY7{+V]v```}Fzs=#g5d(YCgu|C +V3gMA&jgh1FWAE pC]E^ aA3kJGkh7n|0`)w-<k/~+{QFeQFeQF D~Wy-[\R 8qls'|ogV9ZUDm5}+>4xV;:X!mq+.]zg >u/?4 9b1sM6uvt ?p:pc'D<x9P}fB>(=t|nkuD}}+>1c}]sf47+LscY$Tt9F bF8qOC<GGu%EAhxn=s.LhG-p0 dc ::6J3gXS!/r|l`-z)Yc9b\LL3<C- Sr`Vgb dVH<isG'S4ghKfLOB!9A-4AC~Ah37K?8->-s9sDC%u(MS-#EQ 1RCcpt 'g6fhXMH!3H hLvh ZVs(pq X49&Mh9E[H2g/E_!uij3V?c }6@moo{hM&O<v8Zk?VGEbsm#ojaj?Akz6oTDjYM=@5piMGBSZcx\U &O?ZqQ. 3}EB g2(2(2?o?>}rq> >|/^Z9d}B=UPO5+y @4PZg~ kW\r [=_  B3f{vwww } 8zc ;vS'O>}>G xmG/{-px5` )2anZI94l! {8QBp]d@G*geN3fG45:D=bNJxTQvFt2O2siE]seL[7oPC`3S.:/D5 V0uNdx !!P ~&4PEPOH3wEej^J7L)+-[dPQC3fLiRaH<|l OeL)z&!\K y=9M8yp4)q41g7<hr)TUs:FI &4'l`P+L\sJ/aACi K+i> ^c$  6sPMN^hqlP('M3m;IM&dw mVp7R=J-X'> ognhhi =*>/MAY#|V7Yo&{Vo aEq0%` ekj3|ZE5\U;jF Qkd21s Q.fv_(2(2(^o7>Gr[xkWySM5g;bY5Q>]zFWkS(p4_@(0;|7~\t~oO>cv2i'M|H$f]vtws= :t8q'QA9G }TD yXwttl\.{<%K ?30a^-bBRsrgRPC TLQgI3f\3w'$-Tx m&G3 J\F 4 c|&-+iFBB3f9 L$s<LA46o3 3c*gmQ}<i s$vN7d_tVXxMZ xfp<e`J|CpjF >L3HqP47Ob 50' C_t A3)!mFNA+r8:!m0LFAbl~[ !mCMx37(i\c'l4|+}4 FmW VnG41FU?{ \lu'Ml6/\PzO>d(Eol x ?uVa#GN>M]_T}5U+8Z^PyP}g|5jZ\B-[jAj=6g_-ZD58*?Q[1 <CSciZW%NW?eQFeQFeQ{_^O h9??z_YP5.hM.Z/=5@FEKq/L o7E_/>-[68cLL&7n/9f' ?ujB;wV6RB & ?7k7o^NcI]wrEKd[ g1MR|No(1rrL9 SlKJ$@2(D2h OC ~x=qqh8/>chhlpf3m#iNJyU9~Q H!dVZe!?# lsNNO;A9`04^fiZ!3 Pk( K\y}!Q]J+mlB!$JZUbWu v8NL`M63p_5 93[1i!<$.x|Ngqx f71)a/4UF}.$ nyWG syr`l3 +5@53aFiSj:p/ y(RhJAY!h)B6=TGK9B\r*<k9s3F><sn(P.}g3W4h;wKh?09 iv mI;lfm)|zaQ@;h Sh Gm!<JaOAA[pQ'ls>e6 =ZRRO??G =zoyzg?jr17|;NB :[vF;ba&[L +^39 mr;{_?cG<=zt!5{ 9rdyYY]&x+W_~7nqc[n zC5b>.;w\nK?$<>/9#qe1vnrMqq!i6gEF%g@t}2MbY 5`7&? dCx= MF$:$3 i bBN'>YeT(!82D84oF!NcQBhc@u$ Z.G=Frs;-CLGZ6JG>j>jOS;3f63c~O !WoShq fMZlc[9|Ue73!M4(tk*:Bj_uIl.T$Egn0 TyTA($<RF+8/]A4r 4J <Q=oSY^>_> 1ljO?M~ GV$$M<x |M6cCc*iFcvv<]l7<c~?:gE7U=m?[eT.;eO mH|V]g0-G =zG !~?W=X/Y?.\`7rFay-:6'qh]W._t={gg>fj3'Nt\---YfDoy+y9i*d/(]]] <h<ZG KovZg9dGA4>} U1$8c~$f;gSb'Fq! 8 b)t Cft$FBngb(gXF M4BAfH GZ#$k 5Cpq2 fC# Xk*5#1a%c J A4-R *l7 u ))*;z2vUXO^G7$ pika{^2r@ tDn9]Mf&V MGy=9/gx\a y))zgBE!giF;E |cJE|T}&kxX4 .<#39=vhW<l}|sUW^l'(Da F|OP)>Z <a+Wgx-g{S+ B?;g@f3Uu~*lgs`/J/c~j$GMcZZ7 1DZ]{?gK|yOzG =zwy y]}}x0`eW^y\So[H]lL*.h7lptD[Br'QVsCKdSsOzy?M>/-2OKAMl}'S= SMC~#F6LokZjM2%OSa>}& WS^ -# :TL FwamHMKFy\ )DY7Vi5q?y=YDs}<`k6i CXVfi S:J\:muADgfR X]AtHag ei{fVZ0E'L:Q}0oQ>zaJZ8p8iH8+xi6r qtbs(8Zgz<Fov2J={QNAPGH`MgA9b)\/h$+P hb~C-u85: KB{*.gMwy)(yh#d]S6W;sm|{6OQQz8qBqZ + `(|Cn?gx :qD'> /G8l?;gED\gUgKyCQYl=frkI[Zevlf.mW: =iG<[^OMlSfm?[R8?6??G =z7z7[Rw0;4iRkk g=w A\`9Ozr9bgGA7AYkSoE?{ ?k_|xN+VYqvCBwttc7{9e1Td;C3&?KCi+V@]]]=a}:^n2i'pS:Zib Fi!XBCLf -.p4u qih:YQh9 GY\RB\ :* ?N& uHgl3I6gY!H;Zeq]?`AU | 3f) NDKKd-@l; 9FHC!1Yz.t2lkU!c=rPmPk!o|.#Lg9 -VPv <aVrL:wA}S<9 UQHH@ d h$ HDk_TA!`u/w=(W8.UWJw<3!h.4)-049Jgzk/..={G]wOs 1@|4uQX|c#G?W]vO.s9?yGb{vork> yv9[D.l(Ya@>y-w)e2Qg.#=-8qIc\DCci v;2 wY =zG = W_}Uvxi9PjYY _K/t7mc&vAcfKprM/hC#-oq+x3g^?? [B!s^1 zrm [l3@4 { A d/A#w5[Zlb-[pB% 1>dHia7DfNr LSxu&h:f/43jq%D:'jfLsq!P0cTpY nqY Eu- !jh0galnTA H62=JD3I%6r(# <uH8gWRh=(mA-2)F\s&jizkG{N <(=X.8Rh6BWxa=1?a(kCDk@&S6K `{tTPHBU{fSt+wXM]\8 *9Lrz] Z2;+TBos5kP{}'?cZ6rE;ns 2l'Gknu:xnV)ip87 x B9ls kD uVt:Wi]=Z( jX3 qfE-Ym+ <Bs m&E_]wg?vG =z;o>)~3|x<~:u6tj -`kFY fCY&^ry9;wyW 8j[n_~&My----[j5v6rl zp zTs47>zxwwc] k}h4ZRRNzQ485MK E2AI] MP@rn`Oj pDcCg *02XjCdQ#X4gFaDf1HXe & DG6<G= sP%gkD{4g=W<\m$0}bC^JPT\JT6 ))-sn ~L;|( #tjB W{Ce3&E?+3;?H+Mmo`eRAg<T/XAg4 AO%r;\h$Vre2]6Ct{Tag... 4hz.]6 A y #.d0>m)SR|76#S7o[XZ]708g~s^)hw^~6vDZ<c.?PY|UUUk|r%^d??6G =zG\p_+g~u23fZHnuB;|0SkK` mN;+m[>;I#!4bs[\\Lq >}_Oo 9sFAK X ^v_yvRslc<{ B8qEYGo=[WZB/j*cJ%CD%&\nM )[PfY$`2yC[)VQ2x a;9<K>pOm ; XYFP*Qgydz 8Y\ *GGXTS )m RQDZ<+8XQh4@ K=@||BIe ^/$dCSA[\b~ { : *V@w;g>&+ 4GMcaH#-C mTWz+bT8XZH6AB(9 ]/W]Yn^#D<qYRRb-9Ro:|]^HYq'N[L8#Fm&> 8O?GnAs]-h36Q\f2lQptv<nW[?;/r>vp2UQSypB vG qF^: 2G =zG__HL4* l~?+W:pr8j7k R' Oe_x5cFEuX[^rp gO?+N0wsC+W\n][[M7oD{C 8pC\VHbX)zL2o0` T:[2o Hl xIhrD8D#ShS4:Ah*<p4 i(z0+28 <T#tZ5#J6J;FI2` uLyxL8R /*ixBXg`> TVc}3{~O]DBFSL: H $9\ Gl'L}Is5l{k6x@9F(@-C>#_47#P]tH_u 5(% q@WqQ4'su@M H[.BtAK2W9%g>Y(..V_|2_pu#wC8W`!. nz=q{m1bMMMM|*OB6 R\<9WRf]a6gtYl?+lQp 8By( A_\ FM N%N8QysV5Lo|ZG =zG =7m6#~'L|}{gUUHf7Cam9U%iV!Nk=AkW^z;{W_s? }6|aTwcVUUgKYf7lg 'wtt  #>(G 9z!Do \pa6eO:[UPG0kH$L%q&dYt>!.)%\47-}F&*} 6 q 8:`'3t8('5M@8X'- )E3 h# 2Je DQ ;C)P^46u( s@qZ}2d2i'. Vz*AM0NC*$e/w4K!^B{N]h-DA!Cl3s3E# xVX?P zP G=a^@Kx+L 28C*Ia?WP!;PeHj\S.Gu <C3bl.i*fLt_~a...$\\Ma!VqOy 5j3Z[[wNVG }TMyvV0fK<u6sZ3O ZAZ)8 /`sv fgCQhW<mM;+-9g?O:u}] 3f |zG =zgPS(~{?{w) zyk? /\|9w{$ *CI_I4]Sgx9._D5g9u't }@vmmmb6oev1c]{8!~ (c2c^qu-[vw_;r\O^F V2kfOa@tmkM2igNJ7vK&M9g%l)F.0Nh`lh HH]gH+@Q9+-r-:N  HSK 3;B=5ql$ |u:c 96| {U:cI[RCfeOC{6:$M +#oE0'3C P=# M 3AiQ*{U:v#Y=5TH>]2Z 45(4biWVrSope! 8^vASR[ - *o0N ^\\<sLq{7 ?]__/>G -^%>:;;g % 85yX;A^?XEfu B;|k-hQO Zh/fjHygG#GP:]vPIr p'lKYj-~G =zGd2i)?I$7kYj@0+ #v 4 bA8>mrH/oE/]r/?w?[[Zf^ <x3c{ypum Rv)m[GG.wc/C AtgC4x?b[Ydp8\\\ .WSa U6gvk&}udFT&0o4 {nL%dsDa@n:d xMML :)Z;fiJ]kJ U;iY)&B Js7OKOsyf#BY.D(E|]R9IFB~C?x;h0g#Al$ 4p+50 ]1/V?{]QL>0RAbgwU{EVrrU3j0<a8`9~dk)#L gWo jA/tvUyS'NPoy3O>3tP f{ M ?d:F ->.\(>u|Cagl{eSS;( rk@Rpev (W E1vhJtMyvAuIg=zG =zQWzRaSN]`TM9 e)<f~0(!6~aiDB?o\tI\.] .y?/?BV.Zh _Av z)g}BSHeJP# 9+Ww}7o};ijj* 6gj38`fy!JvFC'b#6C%@P;Ub;gdFaFF% V&RKXzDd}7D) .u(=3\i# -S`?!|6 #(6 :( etnBIwzh8pgQ(] ~FSa\7%$m#wC6`PR{BJn93X?{BE wF3`u&q|o4\;HY7} x5u+& Y3f75 i M1ni.PqCZB$b>OB!g+'>K$>3s\;F-j{ ks% cfl&>lmsrN sI ]fbowqv#?7>M kvYTT TcG#U>SOi =zG =z{_z%+Lb p\6mW/aqqKas F2y$  BC%6r4+W} g>uW>]US3x[nos]KYzu6mlg;4;`A4y9LhrD </G m-f{uS'MVWa&$n+8j M3n(] 87$ D70!?j1LuO rI2gQG(I5h9r )tFF9ZqL_  :3fC*;-v2E J3Rj@lRg1ln(7 BiA* C/HYLgL(1F jeBL$#\J3p4KQ5SFjvk5a7kVFWpf$C-CRQgH3v&;GM{(C_|lQ=5n{qxvvvZB`r5@R}C}cA URRtRC-9gfdN|#yCmXf@ EXpa ][ d-=mv8P%#ed ch T*`G By'F=zG =z?O?c@ g7a?3gz 2] ouesA[|~;6-G]vMy9cFM8?+8u^|;y ]paqqqB@ N:5 q[ m7_ m}N \U-qhHS =%a<`t:]^^>zh \<}ZKlf~6 DY! bCb &Be8:&;:TG@YCC8hB0 YhN5G=s<u=s= ;4K95-:a66QkG4CH :k|l Y& X/!0162FHij^gsRMKPC'BhHuP/vh D TM\vA=)tXnF_BjBU*J]tp;a%+s'+8 M 9nH37o?O4I|l^W\8caGf_@@4 *++<xxJKK-[&>v->P>-? 5c(Ea2} cv:63vl@89P9l\%5m6H[&~Ls7Yhe?';e3 |P|3Uyu+PtSo7?AQ =zG =z~'S/Ms3ks{.]dfl3ki'T-]=Ym/7vhcv*3S?q [W^-..N$ X|9y9Cmi*MM/tuv :BM) D47 Zpwyg4-))>|x[o =tvqOn! /G 8 :I RA0JFq0dq'x1D!e q3 jeevZl4 CVhDyat:53J.-9hx:l QU Mf<Zu- |Zx#;D}A ;#hX5by!f9!PZD`pwDy\#j>h'*C)1iRC&1095kaVQ%!+a]:B?Wj(GMMw\tkT>$5EW*nts>}~x'|o7vb[|2DP+V}={G*x?!b<9g#gy%hv~nZ^MUGhpEy1jQaqnH _TUUIs ]\wuu}?G =zGv}_W= ]QvP9rP(g<y+W:h C :N #g7ZjK(|Pk$ ZW*\ps;wO7oB3z-^L[jkIe &5{>!8G &-no-V[[[~3r5r- ?ftPl hBM;E'A]P: YR'YY:.T)FEG[5FHDL6J%1&5 Fq)VdpVFG MQuw0 j-=-@> )JZJ4:>0mgI63Lfe4#hlDCfLm:|*)&-!jB3& xd$ ^rqGiF :oh7<qVc;i$Yh8^B^FF:h3ng4 FxAyM@7*=]Et aiDFXU^:bP4ix ksqG it|C$NL2dWWWO$3|6 {g{ lyh~m7]8c1l9u^SDRg+o~F(v'NxinB|g6yd7l2G|7/_LKB=zG =z//pqwu?UVQa-+CgP@hCPh$q Qhr\ ={W~='Xti9B@t'Nz.]fDszulw  :;0G-+V{nSGtD2aefRCy(84eSDLvRB 44w EbEu :#Z8MVy 5]4T%k\15oU 2?V=?#dB3|W+ Xj{tTV FK/Zg5t6  ihRB%|do(2 '\zIF ;4Yh4JCAh'f00 H)429h%EZ*(458d 6o rs5!QA 4WSY6|HzeeePc=V 6eh(<])<9p *^v#<bo<f)LM 563$6 Y|.26cmY->yq/y Sy?$OVu9 2@  ? G =zz{O*~5kmm2e D >rmK_K/te3|6q [;7Uthm8/E}f7\zE (}cZ[[fO.[fumi7CA zG5 8yLDC/x;w-]{d2cO.=dm3M)pfAs2&-jLB3yfYtvhp 5x(L !Hv;33%. DRg t<TVABq~D$g1FC 5@! l{uH:)s WA3vTK]k@6#(8RL/4:#i9p]B*:UbjF0F3F:j-2q`2FXA .f& gUx;dSM{qyC&OV??nCP={F >_c?`l<y 89yr\Vg3yPhzgGmyMKNRMh@[(o <sBkl|hX w#F`ioVG =zG =7[o~w@`av;#QSO>}~v@ 0 %6q~GY}6eY4_ q 'O_2EEE%%%dr+WXv6 s'g/j8cB?Dw6lXlG>DQZZ:z<9#ugbQRC6-4! f i4IC7p![&m$y)Pl^ghLs>'$9 1!YPhCA0BZ(DsS:5 @b#9:64:q4QHGe4 *4A t2E: 7q?^|H( .h7QPt!s= Y5!w5gMP3qlNM <FGBSfklFvpnT<WREjr! =U%3[U[S*liDF:t'O FXGG:x1hzGvt.v60;7\0WP1l/u:e 39nB_L (g1]FpJ1uTOi70uX`Zs=g?=zG =z?9sWX1kG/Gqqeo|?M8 M;FG95lq hI;4 @gN~mjky#GDglv%VZmmN b <=_Gz?n}5wqG4CuD{Qe%s^O6k!/G A gd)N2gN&:AS&8: 3lYF)u1Y&4h=op b# !v dZz5+]kdQBR .-yu.;4Qee}W5al2LBm93ICc? r=siHe9()4-9TdGh9&6IHsD<qN5:F8`i5AW`5os9j BUTkSUNpIAgYhwy%Sy%%%Sp8OE= F!7 2dHQQJ6nk.c. }W\l>'l:[a'flPX94;g6 U]s!hGA#?[hMGo>}M1UETnO =zG =zw} L&3rHG ;::z'O^z u CvF`y<qkiz(4 Z bJDA~3/%%-DoI.87n( \V(^v)!/~r<.?|TG?zG :w^q4655yi 80_>.+B-ulHe~N6#ZF(d)G#9y#8t D*zfS@bT$(1Tc-GCn<s5#lh0 vs.jdSeJmH%2 3 . p9Xg \4h?#=DphGK >Wkl>#)^ZCi)B=fBB{!fFM 8tB !;/pf`j<q hq|P+vW]qj~}0ks =ZG?~<;?Lu] R}W4huuu3J|. fG|`Sq4[Dwg@iu1li?#iGv#tp;Z8kekDY<<7|.<}she6a+ 6U\VVLG =zG = o~s6mV&M;?sgM%0@ t 'm~K FMP^7Wq*QOz _['#[nEfDwuYaj*^1;::v} >^N>HwqD sX/&N{=d'/$ 6e27Yh7jQSHjC(jnd# AtFC A#.Ia0E KRJ Fo fL 8q4;4Ogc=h{Fl|#n0h7yf4E+MLHSGCjjQT!=bX;P6e!4b'i? )I^Cgf@/~IAKIp;!ur:.hFBrBNBeLQHigqnQWvhqXf+82Xpi7B*R@S((&hqoY}w3g3G^z5448q4+++&/Py 1bxZZZng qta|gs K[7`\hK v\h no34?=3T`vc1B[p |V\SX8|/` xygq-Dk+~3 =zG =z{OLnxwO6N) PUUf/~?O.]d&E0be( `zht5<PO gW_ K;wbz9yR DCf;Ovkr 8pI}# 8~1n*XneXd*++G v[CfMpd&&Vrq`LsFM!!$ RK5K2`sAhc1c(b:p(&FY7pJK4/ihAo $a3C{?S: tIp^`Q51< a0RiE!NQlB &?tqk t#&f_GRv>>=5qo Qj:j0%kx%tU(% iJJ4{6*Cp`Pl' GMp45x7E /3'N49nN+}]!5O<hA5jYwymAQcgn!t:7zf S0?R.s`.bv v=m# nG1li'0a+^fi #'N<k7o~ =zG =zwy~gosx ~MR }7(#vv+-jhKqR.6{~8H9Y8XhqrDs +|oYJ\$;f/^z5k6m64RM{ywahcuww G yquYrwbD 1bn djL: qSK70BMiYeQeVl<Yn 7R1N2GA70[V=e0FLF` cg q4z<%D:<Vlnx2u1x HAf`Fky=4F62tq=CX I trSDs((DXZ cIb#gn7j:wCb;L:3'WU!N8gvD9o={x_YXOZ#dP(1B9Mu1 ;8p*..{v!M s<:6:FV1q(l?_^: X m.?AeEEExK ;v]O|pEXG =zGsXW\\|_ ^pXI9D;:4i v6=i5yrviq}s+W._xg_~_} ]x=fg3l;z90eL7A;vPS!D49 :lD ?Nh9_\sss06msh]1$pwg5 -Wd&\SjJt+jRF- 2NG{MD=t\Qhqo3 * !0H! 5j$f2AIqx$u##+qHf3eI<Pjp8 f_=7!bC>e)!R4:$8*3iyB?[}`9h3*^B7J cmAAy$k:q( FM7e^37jbq4VS!Ya\UUAPC]A{f W]YZ<S}_| :Ts?0C~~Sjhh_<[PzgK (8 1#'mI>IYB;pk{Ym><7;;J3gW`EEIG =zO /Z[[@3[nW+\r: E;1r.;t.5: ;[(4o\SEL={^Ce2/$W}+]nM6sSx;oA^j*c}):sD?bq*^I T(LP]VRllk 9):20s@Ni\4t S!g k@i3g>mCixRAzzh+3%nC&F l3d6CE3%g>&bA P#(!ptE!k6 ltrCflX! 3gH0 TEYZ3BID$vU8lgWb 4F@uDn4= )\S sfsUE{UI]]#Mj_e9 7$)Y/7oR_>c N sXr! 2;QF+xO~2H 2d9( YgssD;gKBJ;79Klyj? %6 # ss{-S n.F~?p-O=R)Lg+**^z% =zG =zlpqMMM<g-5CEe '- ierY=jC%;vo+K4 i7Csr^}{[C D{KRw+[aM7n.f;Sh1w{CA4  81d }QQ_t tMM!n9vouUmFLrR VlbMtS:;3T\FL/-H7gRn932sT3E@5)IIc@Y @K`Dfc:Q|bmQ\t4V 2l<l hPI 3FvPJS+TyfvnSV\;P:'I9 Plx2:f9R!rD#eGH3C#~/nRM!S0Q!WU/ C Iq2I_UAGh_Uk[Y(84+;fOgsg=`V^mVg( {QQd;Z`p~^f{T?Q]KlSSGlk= n~c7b axB?$yV#IQQQ!_KTJ}qn G =zG{~={v_SO>s]j )\hB2v%/K=9;&VrkJ!7PvUpgO>: yZEE rv%KWx56RCoBM ;w#A~Cw Z!keeeF#}K%fI @tTs*S2-F17S htZNr G)2 Sfi`a*.=H>7ZC (0iVE:l0$44F<x1uc 7&F.Z (wO^ Mu 8H@<#iF:NJ'x3 x2QH>5|.=q tONiN}Q++5Yszj2> tY.0R]?)t=>3\[vz++}lV5U=)f*))A6GW_$) ttGh]Z {1# nA|GZ* l>X2eg.jz=;y (0s?8gcX-Ol '7rh{Q|Z<X]v3Y]7G =zG;/ tuu%#GAco<yf6T} /[%X8xCdV CM>S?&!S/o}1 Cr-S;S>zmi-[m}]4Tg~08rHc9 -[:w-[YfwqG$={vo ;jT>PBKbRF7#Z_GcITsX GKkGC*!eBd f:yX9 fB :htO!{ae!K27u F#36H3QJf F:}#5x2]JA?J !nS(M4Ag8:mP g)Ap0] u{k>D?.!M'C 4k4_T:E ZVVF~K$ r9w ?^QQ1f >7o>R >>7QgB sV 3=.`@;fj~'{S19nfs 'mb9dun[|^}?7\ =zG =z>/^WzRCi-Z$~#~;+mCD7r V7-s .\8v/+N ;WC3' /X`kVna&A^DD <8>{y+@ [nqcI 5hLhktf[jIQ bF6<7&kM8Mx \t=36SGFBC P8: 5t=X ] 4QM]n6 K5tlg3W ;LTRhZI;t4}F:: cADqSg:D>S93]X h4.IAcYl^pZ=5<+3 a/UC:75HGA# Mi6t th3iqteYLR_EEE*?h 1 v}C|~Ht#Z<zs /^m>1g\+O|R>8VmYP7EEEBg|:mQ;-{Qzm qvs6j>+-OM0A)t/g3=zG =z{/(~mllT< p7n/0Vv<iKF:W)Z1Yo[ v5`{dQ!l&}9}'~~**^kFU^^f^reMj)E znr<]]]BM8#o \hQ}}xb'N.A>igQ__C#tQWkd2:5>sGC'7:IE&X#$rP95R$Aqn 7HhxXVd=\>H8Qe@Z5Pev:$wSEC=g#Valk!CDs5tshxq6CiE%@ F$a`L9(laC{# Ws83 |A.:L;j0!^)tkdh6u/[I^&/#FsQQ{ ;B:j:<I>+g<yruuuss]'07fl'h-yqrgK_ i: M[5^< ?KFP8A3ig3#[Xq% =zG =z~;?wsNXS8z?O{9hf ]T~\Q%+Mm9kkH4\|~W_wcx 4q/}+W z= 7oLvms z{w/TS8Qr<(%1<-X~<`1cPGWCOwdjMx9bx65AiC:i &ZCIvhK3^NAJqiLd\Ii ' NQoe !dHU9JQHAF %12mn06h3uJMG# D l b0uAtm64 bBHix4 nF7qQ sRuTPHqh=ti6oJG)<jvEt*GA Fe&h]pT;)tW+.4~ 5jTiiimq1'5]H@;A+>(g'8tYmqX9l7HsYeK='ltQ<0-qhypl=;7<s4}6 7 E8qD~_' =zG =zov??SSXRRl2{?7x:1|A3pv <j34l </V^X pA_;&_FNBwu]aML7oDqh ;4 $`}G?BYFq Dby#Fw.AE%f :hfl!{GC=mZ9 LTkj0Pl-9m`j@<Mg?KGs4:eI4Dz`Ix4NY_AtAbC(4.H\Klxa0LgeLAG(X 47KYFi KNpvAhMn31x2Gh0 &\ 8U%6)BOK9IQgl+i* 6n++'c_OW &7b]7|$9OGa.dgggS`YxPKb)hQ8*j oiv@3+l0[ @m9 {?8a+Qm0dX8 |o}}G =zGWz =Z[[;rH; <xp kSO=f9`vl6;Bf\[][H8& kVC 59{kw=tlDX`hnII2\pU8 &f[)} ;vg=\SxQx^H9 {1!}/nii B3g 2dc ZL>}]6gvhM;Gfj5P9L <N8NiNJ7D33| #fAA<&4gqH .3#55z\po*eHQg) ?G 5hf V`9 `H#g9dpAA'~vA7()h y6\n`gH6`Pu0r#:T7NO]^8tptT `W l{ HmXE$cj]1Ab4(W^XnLTxrrwsfv}gH .2xmmcQhCp;'w:gVVC91 o5+_ ()W/// ?~]}-r)feW3v>kbgBM^)lW'( H#-yCs '/?_}KDDDDDDDDDDDl\rs=Sg >|#++j;yDk(Q(>EIbYMFMX` Bt IGO {c2yrQaa6mFc{x<>f5k6R F;4 CYfwc=FTq N*\r% & =:HX{ iv4 x2ZAe J$JZGs#4^ OuQKt: YGJ*i8Kh:2gXd%FMt3ACI$YVi UpCv5)Yt@7<&y#hR0u_mvP wX1@J! dE 4o3 D/pM (5Ft gl;s83f JXvsB 6Xdo/)y0Dvj?-{gtXlgjl;Yu Tm E} 3 *?(<ANYo`ptnhyY[4k7)]jz Z=Pl9Y&so@ kjj7 8qB|%B ~f?<W-h#O;-39d.futz N C /?w@N8#~/u[o%MA4KfzeX***&M8mks;w Y z+V (4K { ;>mu'M4jp8\\\[MzBnlkqQC ;GP{N5I$(*h/<E1(ySB zsyX0q{3^90 b qhGD4Mei: Jc Amg\DB4y<8\ 0y5N'&9WFftAUd]h);4 5qijGS m6&o0::?aY@ 5Rh@%EZ(.@4E#BR@q)A6Z GB?w ][d/<9epz@XNz7m{9sAJJJ${`wUFzuV0X 9kt8>EEqyZcoA#k1vVW 6o9p9j>}HYsM_z%-<_G }YtvE'Fv^x?:4j;)P`CZ!z ZVXH?c2susg>v#{O<UP #7h= :ydr` z:E@z*iF!J96_n#(i> ![-YdCsff232m3p G+bx3fF UP.M8kx4J9`R4?7C#4jD$tYO IGS=g~4 %g':#shsM9q47BCxL3kH\0kt0<~%rNM'Lg g~<a h>VbYAQLhQTBLCMP.)ATsDBh> 9e..A;J&D*.0 o*'//G ?'lC67[)N )S7^UU`@1w[r&vV#XU1sP^YSyu=P@4A`EZoZ uYn$8aEY tb_V'}p1mf\=)Srss5 8pB5df7Ef=`mjLZs)4qR :yS?_YlVk:^F;u 3uTvuv?os`r_|W].t0{.5n `i7r4]v^1I. ;2m$CHUXU KY hX<KcC4Gh#5 J5TE#]r@ @GUH5H]y&Adt;xu}&wx$3Rh6^Wl ( V;Y5$r2ta2]E*3mnLhv2Bh/H9PK:hhF!et6 8SUR'6;5| Nsv@;ME K ItI;3h;X% gS SMO>999wI{a.9m&A-gckjj/^3o(Hkj7j /gimwN?:/ JA`&mn#|VW!!$>}z-DYDDDDDDDDDDDD|7}o}29{9L& x j)qZQs#9+BM:-Wg9RgS'O8~ ~p~wChFtMcn*.f cL6m 0(4&qFPy3 (${{Si-s2e>j_-@t7hIRD0K@/KMi@!:fJhk2bHY;PRd 80 gD0yb>*>/Ob^n~n3M'$tT: H%_i:|.nz)N6vt_$x ti4a U/F4 @FfrtmZ@As7fj54Hap!U]%glv0p xV-g] kWT{o:5Ms1|7 ={ =:??VE9s 9*7$\Z:4ix~e i:]7h<+:iyC /q(s .< .**R)d[2iz :tBwV;k=B+z9 er }D_e .?g'N8qw/<\eez#n{p8Lrw={9_hK9H9VXjkA7oM&$[V\Xl6KoR!i. :7#H5 v[S>WT.@83fJK4'@-@ :LC VR5G-$l#9I]UR;.4g~p/BMa:&!hGsJ -79[F:vL * 3;-t 9(j49Z SVZvtp& O3(m lMHF[^qX\%\ FF;]F]l- nZ47C z^!F7{cgBU\SS3b`0x/[lM^\K+ BLYo>V%T\7@3Gj9p P}PhCO!oA#3q!Cwe+#G~ =JkUaM0 o9sFbgB=P1j0 q)L3Hh0P>PORNd/pg:u}xo l@{tM4i {O~Ys7oEeK+WZvaFq(wq3gd[o5uMSM ]A?d:5J9bu2VZxdy$T!ga#@-h?K^RlMStf_) h`ij BE} v WE 'UD2Y; nsNhn|!o;K5 B<$}9#maL#qvJFh=l#[#slR(9[aR  SfHu\u hrqAAAXj>`8;VT`- Q<5 =R:wxHOi7|n`:vC>/ryd_fM}}=7Y-PZ+Jr@5y>+Fj?1pk^VITX8GQ7575qt:OM#1oA:ugm3/2||7~~?yS'7ozWX 9r \I5! Ck:huYPmQ&r|Rr3; EsgM9>~s?z`i%&SVlD9#kEx|f3{dbrZv-fzy)]a{iRy#)&f4i}aC{lDO]b5XX@?FY!?Ai0E83K &:U#$:)5t!Dtp^t|Ih M099y4.9mj<8u)3 MHZNKhI.v|DmqTF jFC -0T-> 3 m36]PY#m\4yd LgDF#tA23t=W# m w 9p+**b_`?sYzRC1a7 zWU;Dg #+ Vpicd>XM [B+P k?w-heX<u6IDDDDDDDDDDDD+?9|C Q{9233s-7<y&j& je>X>7Vh hC_psN:u ~x^y{wmA5U|7tSvvj:e? IbUV-sqltq|R1c***\.iOwFV.#zV S:#]JWDSh* <JhG*h8IGX 41g4]BqW)5GO40 Z 3:.;NHKMEPBTFV=jG8xS1;s *s tj#gsQ3: 0FZi4 8 JgZbzggQ;Ab:#y..8t v f.`]D r3R<x0{o7rTWW9 7x;r{aH$&L^ke/sw5psnp%F# 6]y#Jal(K79 s:3>GncSzyo7H76/_(ZUUgTy3g|G :9^rGjW7kd*W'=Zj>ft7Bj.sg9}}xw~w[WVNq[4( =zg^pK/[b[wwo^I0md'5*HX{hBD7nEf{()P GjJ08be.D+Sip!mIAA6iBGP4 ]*qi8O*?28S 3AiT 40 ujTrF'%p%#&3ImG`a<NvKj4Uhu&2j Zl dD/o\BC=N XBC }0 .Etn[ ]&R4&\R k??Cd/U0z ?-[x< z++#^3!+e6-HRcggA@Q%ToTlY)j#}.[&f%K/|w?\bd Hpch_>~8 SjfYqbZ=ZCsdDKO>uG|o=c.mMgR!;SNIxb2B/M(_[c6m|Yf 9rd$)**beIny`>6SQ 1RD6)6bY: h8 GCR#:IT&MjDava8:b^wJ^s E [^q8|3I$/TTiz\r1!ih gmDgpfd $gE#UFl)4;Xa\-lh# >|5i* PQh ?l nziYNN!Cqy&4!b> daenZYwj.B[Yg9|b/.NEc}Bs#:&m~}v_`W\ |a?~~ { Y <xc <s?hMmL5k&6]Ob0# } `ZJG~-y/F*&4#0:9N?vH>CauE7B0m6 y9RGWp4(D440GpWzhN8$8#Mj7<4(MM-d7H98 95[A&4ntsSt<%;!^tQ9AQIM~ir.{-6]~%@(H{ :ejti! B-hN#&3h4oX0DB`2`vh<3z9h'#D#4H [QGDA3Zh@rrr3?##c)?fcS8ctpjk{'_uuu%%%tu3_$0jbz`: `zsC^iVsfafc(CsYt3L0ef_+-e? ys4Njb^:|0)T4.hCl|VgjZ# .4-S P>Jor\;w zvlvOQon1xP(8q ^z6lqM '!N:u>}viN*dizSf.ss|{y4\RFt p# G`9e3 @g*K \<XNgqa&;M }1D& I91(15.$A4w 4mn@YDpA|an#%s L;!vA-hQ paH#qM=gS![;LE.d6 faF4M6aja :Z.[q}9nCsss[n;  fcuAd 7vbLYl6'YfW? DYQ&z?^6BH:Zr@ms6r5ig5 N>c L|#*.]:3<3o5\g[n}O8qEmV41T;1} ziZO@\~`OC_mG$s >wS~kE]tIGIVUU5kY8nu[OA?;5k;uofuz^7[a JqBWI VhH'v@(s$; 3[jtJMd'# OhpAKy)-ddj:~o WNSktnjXsIR5PZ)lsB|(fA;4jwFsIM!D4i/xM K5ip8L). P8pL!VhI1UBj?ibk*$#6\Ayy =[&2?pC5k:j)B+ 9`Y`ya~^>xc3H dOz r}mikaf;1z[XON+tfV_sUA:O>q/7x`sgS'O8q xkZtN#:##=^w .%}dI.fZV\9gI&Oq3zbV5nT/WIxudM)h@R)KT`EqFd&4x#! IJ$BRs#ss4 ii=A9 C.D4(n'2HG$% hPFIp t9R;8p Bh:ay284&pa(43HgRC{L'3[F3fgIfZ4a 6m#}s]vaAV-ZXhQ:[t75 61LxHoM #GC8shWz.mCh93;7s S9ii9s&7o&{2| >?_}Ne=Offf u^|?*tQ)thT+HB~'~/A} ?/^8;s >g5m4=/gu+UDx$j6@hRa}}efIP(TPP{w;47n fS<)MPduJMk4oh _Hmg RZ2B@4>TPvF.47Jqo&tid^N O<9SH 3h?ZrqPvH^%aXNgvAY*b`Y -hD+zmy 6SP AC e A?hz'F  gz7[ q+%{(7~>mC{j(4@Gjv_i:7zS Wn)t]=oojUIGd FDDDDDDDDDDDDa\_8q <yX2333'';`? 8p3\{g~.wzd5:M;z:a:5A48Th;sIf0S' {_~-7UWUGq :1cX|-hR=X+H~O6mUUU>///c5jq 9le5x58xDC$aaN$f B*4xH^htt I!8Bj8s_4L.? g DHUg>yr?{g&35c^7gW)gH49HLgx]p pDB 9iTC#Rke'9SG x[% i*d. P~.*lMil>B;% W^m[l8k9YSan3 #YPSbZAU; t:J<E Z]6?kcj9 rj ;3me pNW^a?~go-[47X .|' >|9EcG6+ k[FY&/ DKhOq B4L)<{'O ;o :eJ =a-ofM!sFFF~3v)@)5ovO2e1.kmTdfFFV#\ 50P*?Kht@X4A I&V Ehv@hRTs5} t >f(6d-hodt \h.vF M.$fnF nl q[DK3v!jR$DB8 ]w>;;V&<X~FmB3 pnBY0(Mt|. y.`kZ4m&t5??_~luztq Zs5:6c^Y&LfQ `o| Y]~l<0MlNiD] gVO$lYqnlz EbA7jL<yYo. +W\t= ^SXVVe_v7j(g!G re&|D[9s zk}A@AAAn45jennnyy 7mD`GXyo=W[[;wI& =:LZ{qEf G<h:t2FFj Yg(BWvb#:\ 9<E4h2r9a:.EAi^! -+c80:eH^< yv;C`aNT@#N-$F v. t]mD 4CT.*K;Bf360A\ KH RB #&Y4M tA#N 6Z v7PwgOH 45N5e8 5bcGuwy' (+++//.ZH|?A>a&( Mnl\V;g5YnG*N<|BvCVm}\}!W}[b*vo`DDDDDDDDDDDDD?>`? =guS>CggM6YV L - nkZ> EceR2r|)->yr8~Yxq[n555^7??SNjqL;cUoE]e<Cw}6mZ|]w5a#GbW7nMzgMEQ2 )MP 1Z y& %e4v(.$_4-gt$C~/)F@AttD wPSGZ >#g_ :{HS! :kHh*Nmf0YH Tr3M$bg?80l&LgvJfN-4hEKk'V ]l- lhD.G }o X>j0 t5 UjA7TZd ;FzdXffyI .' /~(Thnl>+Z/BnsD _~cixZ|?7O>dmUs@ z^x.\k8++ZVdZS^MY G}g9}=q#<} =j#orVi =zx_~{<+M*qg9qDv`~~>jq2RRyN`s5kJy$HDa;80uHaFa$;-`;ghDJ6G.Ezs pX/SAt3ggg; dFivuvk3I8J:hlm*BSMyvI>]fBcY2rk. ;a ukkk14u  Q{Evei7Vt5oDi 6rjhCBv>9gP>A9\aM6/H]ni}FEDDDDDDDDDDDDA\?3 nc?> 8p c zS WW=^hEGZSMvhE#tB.b>}#Gvs5jcG 9f5GWWW4oF H$yfB\cu-\p^{<kqt)?gaC'n)Kb:.V5p.BW4B!?gr@9rq4 DRc% $P~RtBC$5H8 >w tB7dRAg-s3:*a IF_`@gCSD vlAi*<$ :Sg|b:g'M LQhd+. wC'Nm[7X;[/t>vz;vV+gVW'kj&Y?3PsRaA`TO ;x}a2++K8qg6o e|_wyg%Z2L{{=SHhI6vA+fjA(e |3gN<yz+Hp ?vX:g4i7r2Wfiz9Zn=bnme;v#hMrg3f6mMo[]&JiI':4bK`@)45r@ 4AFh\ 80sP;: p4(4:4)FRhq$P#=P(UGt0F=NRm9K-h;6A6Fd&B R= v.Z%[)S! hS%vn}]v)QLdxQ>gYC_G;wWk{mXVZ#hCKb\% 5*5u jFM|gCY}0NY6@{3{0a!C222{^n]}}}$_p;v.]oW_}?_\xjU)lyVVVii=Bc)a6@hMs:v^?.S ;x`YYyPh&L2eqq8q}1lq]*O.]N'ukEIrYfM4nK$fW^77oWOKqa QD$y92*PNDi!.lAvqWu40u1I\u v v;Z8|d3QkP>bjDJKGuM4#$n aSX i|JWl3cB<KDRhgq|6d @sj d{-#j D{i4n4t:j4mm^j09g@v)n(.rV{ZN5;/j84vk6xL_)8'L3Yf-[Zs +{{NoEDDDDDDDDDDDDD+_|#G |q <X]4i~g ZwU7n4M#D|#;~[o`08qiM<y-L|;9s&[#op84| :/{Y$^t3&L-cP]Dmj`>S2 &d-(CWu; V;PsE4\j0a)PWHRD3AflDap^S3:IT9; 1 P(N $AG'   '2 F! 8 44VH-@|&6(ai ]hDuh?k8vFb9 %E tB tV(oK[nv4 =>p}Xz999ml^n@3gA5L5qf9UTm=AZv27Y3QYboDa~_zfa_LMl}{w |&DDDDDDDDDDDDDNO?7qc0TYuvW\ =zqg||5>k;7Nhb6u;9~;i$N0u3fyM#Lk|/[[3fL$kZ}A/mNgOOaw;w} .dwl>N:5iDU Y D$AP .h`v@eRA4)aAAv4x!?QuhqDdF4WC/@4TQM:j9|/h;S {>%Xlf8)R450@vfksi^}v7g3]f3;.vdD~fMgpC@ g c| fi;-AcCAyoum6[]]ZltnpareA`AgM -/B8p &vn4zo{{i:TUUUS^hke&qu]y~c|I#@233O>r 7<u aEAx!1a=bk9V CT c/^<<O:~xKJJY9s==Vl gwm9s&8 ZhiD//uj]G^z]{j]c5k7owqGEE <x&5gdtiD^n\jhq\D\ 80Z . fpjpa KPfH!%loGC $Y;* AKhv15iWS=\Llh `H#F.4 A=.pqAlXG}v+gZe.&jhPF4e1);5- EnyMo]&M kW B@6@EO$TI_jUn\.gj/RuY=|Pg=BsY6*0g#b!wnI0|7mnm?j_x1{%K+?og_bso {wUUU.]y%%%wuc={={VY]~6Li5M^]! T_x  |M61}<E0/\=!41g]v;b!q|v7lp}4u DK4 np-Wf<!4on* RR4n)K&hQp#|F l pFab/t1 GUwG \(H#^O \y <Gk)]8pf[;S/)5?N#^LS %e3a J6 =8Lq Ta*\g^\g@y7ef_g'C;t?{z i?Q vAjl+;uU+.rkS@znguY=CaxV wPV|Vcg9s-?n(& G* FMb;%KNg-oM4)**9s[#{f^} W_}?W^Yb[ ^~c]pAIg4tG=zH4F rgO<y#G< o~IK.]d -[|lEcYS[[q[gi1v--&&At3g|DL8@4cy 5jT45L={5jE^XW ZG+.3jwP a!(Ns4B%d[A &:q]<1?ShNHhZnvBAAta2<|#cN[t9+/EGQDd~v&s) >98qa1 -6hBq8NS .f*C{:}czs:6K^^m-[vmI-VY~d:lAfqX+B9pY]{74 9b`kEWWWM8pc[pN>}/J3[ E._~d>vC=4~x1999l/9g?kIvPp_}_{v[< _|+jkk.]rJf[b-[Yjw]WWy[wyG }|Iv :vH$)dnennnMM;vP{9[k>L>}w%##C`f6K1P.MI';B*E)8JW] $6QG'MG' (1lJv_b:~8dChps37-I9Bsi 9v+Q @lQm3{Ahvef@p#G i^M6cOvq<zhcj# cF#Wu:wR9s|Sp8^LtUzw(6za+2?WpfcwG+Y@:mgYub54DR;* }eQo|7GQ5fi\dO>yaSiaF-i] }J7PMN:vGyyc^fQ [[|6lm ;v <O#SO=3=K/+ [s\V vd27} qblV |-s<y wQYYxrsso)&C sK#$@[Kx&a`( \:p !IA'l{ BtAi*E8GuunCM%gmA T 9*Ny&# <AK4~IA3F~yD[\v0iMEq($?g04h''g!m Qa!v:BkTd{e/|5H$nzXnhP) @0.?Y>RP!PlW{6O#Xh| Fv<L+=g ; _?~-PHrK;O3P]YY}7xr2zB+ |'N =zG]q{gf %?~ ygO<SO=_^x^g[;wN<y :++1}.-.^jO4i1v}[DMo)ka4:Ati #U00REQ evtxH@.&2I\ 9 ACj!hX4jJCQ' bTf^F:opyI6TjX|x<; 0E;$e q 6AF/R<[qAS-Z :tE6Ie` xK+IQA}ZsV`tJ\>3aMRl r:gjy?!6BhFNMWg88gVi4zlk4me^>_!C ic.N>ADDDDDDDDDDDDDBc}zMM#C 9V hZ7P\z#GfwmOV 2lG?O~?0a/}W^~o&;y. N>UVIfH$e Z!V`Q Q /b+VG&b1 RqfYR0<y#RBC#FE4HHHs fFADRHq@!g\DnD^2B'DQM ]<| AAMf| Bl:46rqPt$Fi-&DgFZ/i*bs h!CQXFFwOS>V i~5'fQFeff}#G}|`dEXzY>gPs^>+jgAE\s V|M9M]]vhs? 1bb2<uADDDDDDDDDDDDD_jmm; /G/\b@\)6ihN*T  L'O 9r /PUUeco{a j;a oG y 9f7s+k !h< G=PS~Xb@M76lXt37rH$RXX{M.U}8x_.h0BJhpq9f(r_gBS<g^t RNih? >4 |PB7iOx\r=00v+fEBvkavq(C$&a0&{h4suhh ?m 6l!Co3g9$~u`4 SE;R-\V]=:6Y\B?+swV8:Mi-[ woE9//oilfYhgQuu5~gyCDDDDDDDDDDDDD+?N<l)C S8xG >}ZV@sz?FOf]]&>}G =|C~?O>+3<CG;5ILv07<j]^o qf_oBnCmdrwrtpL8qu{ZzM@7\=|>6SNincrpYp4~kyX)M AlA:%b% R 3C0^Du 5: 3( !3U jD 0DlYHLZ*B;5[vV?A{-bC{awm-qYL4[; &=y%77i`cCA8}&^\\+3;g/x<c] &sW*d9Qi |[Qnj fX:7h\GYi-25w~= y7oy_w70/__;l=LvEM#7o^RR~N'}SDt;fuY1PA5 >{ <xp}4(g?C=|K//_{7 `[<yr =ncKvozf; 5{!^Zjnu54p1.kmTKCs};D'8miAgTvT )d AB!238|%@$8}q7uB@:).GjDKYnQ#FXSN95d#qR6 hj4V]bC)8K2K:KSw j%Ko 8 @tG6x#lc Jaiq:XSgWf= |VfdC^~V0gt:Xfl2rUM kP(> q#o! =zT|W ]+_}_x%K 5inD}}zq9mVaOV5Yz[js{o_|ITAl/agRmP47Ho<-+..U.]z >kk>-Z8p`yyEm=g>#MWX1g'5}Nm6[~Zl={kin]M#C Wy4tKYdERbhu2JG:q*#t4\ R*B4xA F4BSgPsx '[Q 40Bht;s5( 4Da ! l 6/t~>]uhtn ?Cl`_hT@Fg5-_re:lY*0.YEvAweZ4i^k={z4`j mV)<6guZNgVg-7lh5F9jVgyVgoYvyqzwkgg ;`w=}e!_?#G<Fb?ksrr&MgU ^h5Ve5f9&O8 C[o7|^zgyg{1/LT9hZ/~Bam &[ Loa{ > oAf7C#F =zUvR )]%K9s#GbzRI|Rao;\X *pqRD(iHx WsY ::jt. QhnK}v] 1JC &tCgo^f 4 t@8aXKR637q[D3AilD P=8p Ru~ pXkQG*fdXm6lgffvy1uHV^YPk 5UgAMoY{?_k4wcq7('r-X=Cn>k>/7-ZgDDDDDDDDDDDDDD7|^v9 +V<G 9Ky.N+R)4}3g8t;o <x/I=W0z-;-YL WWW+ ;& {>|r2c[lb4A4 LRWWGjMI5|{wqw/\p g 733SI6D^=W&Biau]:t9>&:C K<50 ii:!JShE'B805!hD%avBvv$vF m-Am@fFl#_b6D:|;n G5++M4-wg x@<kbtd +j?c}}3[FO ={do;bYA]:(AY>3]lYQ6lrA ZpA+c~zX}[erlP~in|wa?<{O<1c7sO<@ ^b3Bg|p47 ;lz #L2o>{LL&>}:|=.]b/LZm[MAt>}7og ]37XpmfyM>}1>/77C :I q`U&Qh$TF -y9HQ T& 339#@gN@ a!@mDvd_FW WnU*R7Xqorz3'1d 3uTv&gmr(Zi%:INAZT;DY-XqEm~ihM HP-m1Qr:Yx:.b!9rP8l:]hqnNi :t83(>gcp UgDY >.pnAO9$yl=wm}i}cvQYYt|F h%g+__{+?QkkK/~9si/GXXooii4m ~vh0 sZ/YA2R4ds=A#<;CCC ]v;W=w>{S]+. Z 5k^dd:+6J}}}YYwq+VX 66600tS?QONJM/L/BrZPQ~D8ZHt^z{/GB&ZN{ hE+v9mOJ%hY-glJGRBFRbZ%T*uJ ZTj=.Z]A sJ-T <cbb^h%su|d-Z {n >d@45jIZ/u9[]]oR+R;83(RiiaKi ~b4v_7l8TvBwll0M;7 -f}AfzAc zSf91bG DG NWEEEqqiO>rG }f]qqq vz7?cY M8?Y Yh_::<32~v7;r+W>.]vkk^z~-nnn_h{kkkIr}+--s/_. I^^^ddx<}5ooG65#)0+cv^Y[ dude(QsV?X0/=UH(\0;$kK g :YVZ$5vV6jTg#Z2NU{2J)AwEj9'DE#eZ9C TF8:.b21ch  W] v3cj<yMz)g<vx3gc+Sg5px6E ~j8lYFu .;;dcn8T(**ot7[Og-|69re<g mY\lL_rR{]t  AAA-^c)qP?/sJ?gmW_ Au^xy)Sh9 -#zJ<C6<== N:'\ L___yvww >|f[z#G-vx:kjj}k=w0???>cb#sRJ5'?gVNV~P(PJ3 2V&s 5V.%NWgW9->r\ :#)1/##VfHe(Z]f7 htbRlt{ s(J/\b'7Yhs L>+UQ 3# tTioqM<yQZ ZYY5^]*vv_ ]r89IIIreYnA)h53+0} }t^zV!.elL.g///# ~a7.kiiO}Lz c/~W_}2UsJ^=kYJ SN^_ xzz8q{U# n5&&C<n)++o?~xccA]KY}7ZjfJII <xi/G =01yY gLAhu5ar]y.V.2  G+JAE9?+uRsd#ZtA&e*QsbpEGcC9vtD)$uYR|V!$AN13n/9- 6:fCMWM7O~Cib^C=w%ACi\4Y R}/Mg9O.Q[+'ySM{9SPPPQQO[UZ {>'AsxmaZk/to<C;w [W=w<{{-[6i$ogTWW755 7\KpE ssmXbfJLL ?~za:>lJQTC 9YrYI 2RgfgsSZ|IS8;::W e#t=gk3'RvVg%NE)sr>$5h%aV6QD =}g_ >|?GFFZ^Ql86l C-BCCC^^Z3g1u4 ~gq+nRa+ g)W Zt>[4M#hN;;tn]vM6M#~4][^^^UU|j g'Z|~+ _7|c }4i^x36?6uhy ->AKYWp von.[L|W=wOKK#5ky d9?!Eqeee%%%6lcBTz6}Jh- +cDf+?j-?rq;7Bu;qh#7MStt=WEe;EAlHOtzDB+ 6-SClVG.B9-+2V9y%IjF|dxR 1urqc Gca%]7[|>'!99Y oYT 9/;-pQl@NZ 4:Xwn8@;3hD#hlYzA jmoB>;a|C| 'o_||q '%%e?oqy}i4J?;3Ze'?9s :u?.$z\rEvh77SvCWhO<YSSsmiYYY#G87o :/G5[tdwt( j_F\P Vu/ayR7 u(ZljrfRbP2NOOUqhPi~VX%^V8)u5MNRzgY!'DGOO}&MOvs*/Y2t1fXL:DO_!g6=Sec'C mR? m|6? A; c*~z8|5cICys@@+22rU aaYPXX|o}oSVZ l1a744<3ta.Zwh;{k 8^K/{_nC SWW;|kUWs|6m :((`A <xpmkYdIQQQjjS lSa77o~AR 2e\LG39YP-NSgvh#S9f] Y&JI\ sn= g9-gq$MMq)  ) 2r@C IQ+IQIj>=4V<;!44T[FF8V;WgPf]W@mZB. ?~|xwqxTG3acQ=fg!L-a:p6Vp\w5n3aWYYg}/d3t>g>}*//CDFFn?s6D;DrZVp;w7|k-2vr)h9;<< ;v]immt8?O.]dz{{O6ocMM N]0c(7og <h =|4a|RlLm=Vg:'P 2C e)*{FGMZ)qD'e:(D5N3mR D+_bKg5gNGdG.7j Qa! gC<_'N?n\wH: 92zhyN *^Z1y6Ym[3k8tnXW=[tnhWpatvqnQ{{gff 8pR ~g}C|3gN}`+W|=mM#G =z ?{6}7|eZ|*++Ke5k|?VO?gc~~8Ccbb/_~h7g/<yd}}cv/ ?~yAx<<N#k7YSRrgOA{  9%LJIVhe9#EgsC2#)Q) r'sTuYTZ8lv:EmJG9 cu-cjq%lRp%ku4hv6suqX*%wCYh7o<wi!gA ;7;df9k!AgGg:w!  og gg<} ~ /B? O>'N\j=simMl6Vp o2o!&_~?iqqq ;??/\8/_ {f3?qssOMMaCYYY}}vBC`'<yG clo9+++::z!Yl* 1<|4[lnsfd]2nnW$`H8Z>V@t[A'gy%5A?BzFU=>VQh;'FMJ G\ [tdBT<#oHHxygYg]*Nmi+ACCC!v4Vg1lX:;c^hv6|hpy_:+{gC o g;7cO|O>> vi/fgC=?I?z__~_[o5((o{wUW_ 7.((m[ee'; nT]]-;cK3gNffzeDp13SSd\3S]SX(j :3P]PX&.u(Z\f[ 3rRqd#UFZA03%:h[BF-M25 kr`T{hxbt1C -OfEs45Zt]_}M?YS?filC(l{u>m^C?pzSo :4e{]wUvpVo?q]E4 {1g~~_fMhhc1?gm ;ox3g }M>c(EKK+?rHvss'J`=2vgCAtee{7mjEI&'4vw1h@o JdgJMZ'+Crh:_M 2MjTsCi)Yjl u =V(#tPy%Y]V& E apMw*A_Dr-Q.N/_}\|:|/eiuRUU3+Uz?W9L;;krvD#6O]_2h:o0vZa<))I{CW~~#Gq|fW9t>?W\Yy}/X[[[XXh:OM6:uW^e{;{yO8wO<KuO> PVVe<nC&$$Z469eAwqe-\f04G<}Lj/>p9O=)ha^zLu:}Z ~V*;st FCfWg:UVRx%pNMLPX2 #')SL8Q+u]J}M%g[ Dw#vx-+MMMgI^^A-^v56[ulqE_bEm>^x!gn :tHcZ gYn9w\} #0 ]r>zGo #3.--o~oW{;o<s eZGffS>GsOy{3-vww 3f8cvcYd7>yd]]]YYYII.]:o<x{{kzzx6-4 *Z93';?S e.gSZThYNA+r Z^qNMAgY ~ZI Cp AM<9$$D{i_v{zti5kOK)k`aa]}IfWhxsY~vvgc]vO{n}yC\78Efs/ dtJO{.]`1ie> yz?? =:{Co /n;477s/ozj}#^~Y}{UUUSSEilP\;9| wn3';;;<<O> G 9}ZzM@fef#:dfB9 Ag(5)t=Ggh#EYMBh{|lZG): /{9R!8jB:&R i?2d?oA;Kv[d.e4B;88qBjdrYXa6f}i6f C}f!Z;S|JceKEEY kud? cbb?L>o pT<///GFF5J4vz)~#G4Y x8qBVY}~k:uC+pql9?2 :;UWr^h%sVe-w4B?6r4:%!VIm1QvC?k a&Nn{)}yNL[vwb_#fuui vmz> 0;g5 ;[l4e9{# <(wyUTTY\j|Z7T_MFGG?e/7:5r fs477_poZgYsYm1lEF>+**v}mgpfJNN y}>OJc;aJGFZ{ G 5vN:WPST{Z!Ly j 2 ?(h{|lBTp?1 :tI7tS^yt8_x6cZwYF wVa1lH;dDPgg iYd gJY?g9JG yp5Z[[/]/766=MK\{{W-[LBl;Ds-?~AAA||oF~#wCO NV g5%*)tGMP-iZHhy]&N 2NMSW 7Lv}k5;]l0~+N 9;v&;wvEgM:|mC>% ~vHWLwvo`&-KJJS){iY&RA}}D[[[ss_zr6m2--muuuO?Il?gAAA}CCCs'ODW*g >cu-Yo =ziA8WQ#:%:SCdQ.9+@e;E92PWgeY)HH:MJ '.F 'M4vX-9LN3jg?go:IBBB:c0l-[L5;aP8ltQs:ylsD<g5K8cgc6 7={8pc#>k+/^||3g ~L>K!|||o]e^rf666VUU 8p`VZxqqqqff3FW/ y 5#=9)_m)3eSLuE8:[M)JY:Cn$LQ815t`5jI|jsczf8afgxSSxrj& 69; 7GRhgu5j Fl:I]1/--]~k';+m_f_~ ~+W//==Y/vKKKe/EiE{vm/_hYRSS'O<d G  0..2;-5?30[j<u}Z UqT#Kf81 0MNIK%(q>hc2ev;nRJl%] ^ \kcfg[N#hf]*~v%p .]){suucYY >GDD<C?mmm_o_bO7]Sg'q rwE Zn*LLL 8pM=z 2!(1&:3%0'kVnE y)tH{ sR (LgrRDY OV*ZVdtbtZ<f <x.s%U6=b/tv%y:u<!}Y~LgA ]7r<9wB MShg1m{ ?|t>|~wpI&_yyyM2eyw?#o_vTsM7tS{x jOW6 sr3eVj K NOed I4%v- 2G{{q=#G :tOt7 >ywe$iX V:KMsig}nf McgWz6L? tKmN|TTT_| G }o>[^^k/?tVBmnfSSSUUn~[ne999GuoG 6%B YYytnz#Y>LG GM^*;g$+ J +#<js``xM\/--u=+no!t}Y1unM0aGM;;Mfclp^uEiTU=M8531m[l6..I.k6tS6nXVV }VTToW^d9s6l0g`}1]TLD(J:-K9r#E(KSm8-G ;v8'{KMx;8$WPN-[bWUU9kfClqh7;;i8|4vunx6jvA? |;8'7++knSc>s?_n)S)w'nR: v wy-[hk!Cn*4>6<3%Yr uJ40/#-+cZ:%9051AEOq*z!#Fhvuy}<3h_4444pq9kY;tb3q+s6Xk0;m8;j6Lr`\VV6|}#4}c={7XH.]z 7/ t k-gOmmv=4njj+---))Y~.(( vV>tLZ#fgd*r)82;9lY\ F{t 'N!!!]g^hz.|v=VWWGDDotw_fXYWNG+g>l1 cv- vub x.~6L(46l3|WTss ~fffn*WZuaYz8^pCmmuK.-.. 7n\~L{9>{ 6tZ${b|2^\f) j/GxVjJ=9$(d#j4w >{e'O\YYy.mG1`;w3[;'-vZpEK:-hD;kFl2)t}} ;?tEEE.^(}7 |>}m>6mt1aZZ*++^z21c# V9D5*lZjRb^FA+])TWRm =gm 9R6^L/k2zjHj}RZRR 9rt?3n4q :U]yvz 5k gP__Rjkk/={}-_<444_HHwQUUdj6 tH z6mZb RRR&On:- qqQT%Vz9:hq%$gL#rJ EDD}..5tc?gzW^50DGGWVVlX4o`Rtisj[:-mkeM0] )))yW3gEEEz9 d[R `S;O<yGz+V7o3{3htGP>LUz)t%M^^^&M8qa;{'W655jg#??qh}u0@sfjVZl$^7or |}}WZKnZikkknn_Cv8-5J|vG ihh3ZAtMMw~[neyyyyQQQ{zx :)aOIOSS4mZVpL gqoC '!!PnZEFA+VhkMetiElaM^1Nfig${fee 8p#=={pBkk+o dAl96^FhgUUU e5kYR\\O ^Y=r_P{B|V=/3=;-5+%9S }CCC}}}{HJJ|;.\ -ZeeeTxo7ns6N5; 4>igWSlC~zgW =ztGg&Mgy/x7ND{yyM2o;O<i|]CCwm\R<SyxxXl* l*LVtq<>P'M4f[sssX[jgES$ >lilZllZ|5 |&gn:#P i{MO?.((9riAAniAq1_7!;s+W\p3BBB  Z => jk 0994=h;C~zxV=MhD8$affQv7~a-/&^s}O7Ur_ |=III={4FJIIY~G=NG555cu :777>>>00}SAv{}}}&*_M#4> ZvQQgYYYuuufM[ t>F7ip8:[ / qr :4sLzMG--->wl!w7tSAAm***dA+13=nu/;wnNNNLLclS13x8?[$itaq|)e94:6m0.ct4pjmY@on_0a={^y/n?3?OXo ;n={8bijP^^oo}-3gNVV{G wog#w;H4j7o<`y F!2af@clQR6<g1l1~'N oeO< *?gy++tx+Vh[K3 {/_`3g'6!wPPPDDD@@8sZggEyyyZFRRRMMil@0;;lYg;s60'>o9p@g?.\[}7 |>ZRR?##ceee<>+--so5+)))88G[88q =4m${] 7n4Y8v1[vpa4.t5;+pqRQ[[+W&''N2oVss3QWW_;w[f)SL~TVVja77eMMM mke]XX8`3g5kir4-==6*Se/ hmz}gGw9\6MgN;0wm\Y[[[VVvw.^866vQ7?%|~g L .\wZ>clTVV 8p`kYt HUsdddd<Z{ahYt8WWW?!yFrwp| G^0::nMOOgxb[[Ejkkknn >|YAaV^-nwY.//gm6oiufi$33zd>7|pyX`htXN5yv UV4ssrr=---oy |mrdggo9gW~Oe]QQq;s-iii\g4+vn<;{lZHN*wu*`B_}|+WDFF AYg= |ySkk_~o?]r)SL#~M<y9%%%UUUZ/i] nWw=~ = |WTTkg~.fW* oig;k8 9rD);vEM)nl/_~~ W\mdA /P[[[XXgZK 8peqcccYYM;] Fu B_}vq <xwyf-MZqp@Xuu^lY^^^DD :u{w777;\r>z' 8cFnGjqn^dN fg[uYykll9svZ ~\c|1cxyysg``n_b#G{~V7}/o= g[n-//ojj2&y kQJU+w[VV$mWX!OauJlB;ave-w:|O< m-[;;{i]WZ%>3p~{%c5?eyZ+ppF8zFig.yv%aC}) 3fCgudlfV\ijjjll?qxUTTu]uKO>|~43 fZ/^|_t&gzkiiO{#GDDGGXCuuuSbgW2L}!FNc.=kG:ki;^MOE\SSOwe[oU-Z4{ ;V&}}}J &??_|>gikk|G }cfiz=r6j]Ct K^/{} >\6u]8mzG =t{eXbEEE2U6m F#^f}uwww] gq5n x^?sg;ED_ f vss  mVUUP}+u}nsx2Mgro'vy|qpr5k6ne ;v{Oy]DI o :t#G =zB<_Z U.>%n)SKmII[|rM5+''nx=7nr]%ghh8uzx^~?/hnn&pZ[[9siAig9P+m]Y1lj8.Nr}#?S!CT#G 5j1c4a'O:uQd9 \*G% *~tTN<~0//oUUU=3 ?vXFF13tww 6lXll-w9 + M#b<Tys~~/zT9888!!!77x[lUU8i? z'|{W;_p/$p?C;wLHH1 6lXLL%KuKBs]]]ffvrF A_|4iRddxm\rgg?>O>g_/^t|rsssM _={[z LT77CFGG/YDND<yw.~Cn7?q A qO???{ ?~6Xbyi*+!.vf P ;Ce(+CUrrraaWZ%WWWH|=oW_=w/\gSe./RSSSqqqPP!Cbcce]]]Y?zlZ(}gg'j!==Gy)}[ZZ/_7|W.]x G EG> ?^]os=9s_~{~|7<>_O ~N>k.\ gkT`5v .;wn@@h___DtSSzAgc|m|i{}||._y^D .\xg;vXY`Zh#6a6~ KKKccc'tO>>q6e55iEm _e-)))s=7m k+ 3<S]]]\\ rzC75 ;++VxAvD>lUU9sM;k MMMi>tBc}5)T777{)..~ zceQQQ/ 2`mP:zhRR~9''_lmmyo~gkjjL6::Z O< ngg!+DsAA Yuuu . 0 jRlZ%m)mt&%%&;B_Q__7vD>>>QQQ .k>6Wh5_gG ?YfK---<]Usn*tsssD#b9pvP{W;s}|8D>}C#Xk*eWamaaa_}UgWuD>}~y&L0 pBj5J_ `^{:h77A1#??6mkWiiiUU'O] Wn{yyo?p`OOO ZQBCCm6[aa whq[o5((H~~~m;w 3|hD766??((YG>{ 8p)SfiJ f/^AtCC \ i9)=pGks6mv/]g|2' ~ d /:u;(..l&Lr=v s~Z[[/?3om|6mIr+tvv>_pzzP?sO<qr9)$'~~~[lysT}WUUu{G OX5Z(-${p@ v* o endstreamendobj3 0 obj<< /Filter /FlateDecode /Length 2583 >>streamxZMs6W$I}YI&UT!&! 3$!/@EP+5UcYF~Js&?w $KW>9>M6vMeSyhf3oB _}\a;nluU>7\> Un3R`'}c( k+$z +?L<a~<w`mE$ `saj\o6YIv&VE g8y Nu;FFaX;R W2ytIWH=]:4< gN .k.@Qx zm mJ+ww6(hyA}h _i`eq>*nM)64Q4|@+Md !FJ' f=BZeaN 5 E&Az+$RX%VHn;{0@|s~Qq=9|@ ^?vk/K|e|2DZ|<]&^IWiIn;j9 8/?e<ULSx:O ?_@4\-&?(~$g{!3n{*_DU^d))o79jzR{5qIT [g/@92s'->+s#y # UyVi C~ <:}` aeDi!j&)?&DZd}g5Iq9$q%k !NdcOKYK+xtR8w6OP5VlEqLU]7%M` ^?F9NT fr%0oDbH2da~ -p q*eD*J5_*2.pAl=Bp[yVtw5Bv{aj xa\x;[ Dv2k2.O[Kk |aR<dX'jTb <)E+hB [x=6PqtlrI[ X@=v.#V@Q)\F]ZG|8XNl +N sRMK\3vk N6Z2%;OLAb*zt;*_-GnCNVL/4!v:)<]P(UUt:HJ8 ;(Fa1^w[Om=j (phN' #[7S !GoS4pad4?& eG5K~B ZdW hg)DhCfbt#\ mTOLn#G3\1R? Tj)CL`v(}\S^O+|~k(9 u Qq4D:zjhl=x=AUo%Sl@+ch~4?4IyTkc:|`xwnhAT0Qyi>(AnDi9@n@O&*+44A3S7 N_f)#km;5e*iFi0`+PGilK )M'Cz'M0O l#AvomXIUNi?2? G wR5KWI$R]5(pR?A]bNUy={WPHNe-Fj}lPZ/;<diD|=Xy7{oCe8T@H_|#h=mXv6qMO#L t52h12dwwb&~da'nZe| A'fnN;^ pij{4TsRtdF!n59W` @5;##i812K'0VhPg< Md+DfYh> g4<FVoL7`{?mjkA_{ae(Se!pfpJJ1> wN0~QgD/qpZ2?Bi<oEo[ ]tgRW Dad?T[z?gxi++q5DQ UA/rzt]F<52wxf#zxendstreamendobj4 0 obj<< /BitsPerComponent 8 /ColorSpace /DeviceGray /Filter /FlateDecode /Height 1080 /Subtype /Image /Type /XObject /Width 1920 /Length 2032 >>streamx1gox 4endstreamendobj5 0 obj<< /Annots [ 203 0 R 205 0 R 204 0 R 206 0 R 208 0 R 210 0 R 212 0 R 214 0 R 207 0 R 209 0 R 211 0 R 213 0 R ] /Contents 7 0 R /Group 182 0 R /MediaBox [ 0 0 792 612 ] /Parent 60 0 R /Resources 215 0 R /Type /Page >>endobj6 0 obj<< /BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter /FlateDecode /Height 735 /SMask 8 0 R /Subtype /Image /Type /XObject /Width 883 /Length 75284 >>streamxy\M~W(RQJ6iRJ*)-[e7v#{aabw-0h_?rs>>.}N@`}eG Al=w8K;h$bbb=_^ +bY2%)GKb@@%D b XKKb@@%D XB!XKKb@@%b @%D XKKb XB@%D XKb XKKb@@%D XB!XKKb@@%b @%D XKKb D XXKb b@%XB%%D XXK$bY\ewejhO ;z/ h5mtI^>RFX ]q4%mC[Zf)fC=WW`SY-(s?g^8XCR6$v>HQ6*U I>{t?! 4P%6&%aCERarS;XoY a?ZN7 I4eHfLFq Sk_j>oLl%YKMu3FmWMleX o(IgzpNLz!(@@mtyY8*h+O1\a(yoAa (6 M~]EC9Y Bh}gDXoE QFi` qtwD v{K$ VL4&lE>:q>e %\9bIt:ldG>ii-wfB8q8)4s_z>&xR& ]D45C|;]U2J?<6\$bi9_Fo6'kB!}WcBg|\dOT([]WRZ^!SX>? B1/o.'k!#0i$[#UW2?40.K.x5 $_F l;7n# |z2}{KET6u<*I #< e^Gz9-_Kel_fF- bc[GW=*7zGKn9V6jM^#l8;K3m['Cpk Ya6V>jd{Kv8S[Pa18{bY[UB1]d< ]o'28kw==5yetLT]-XumOU?15msGJYY7qW# C_t27XW4!2a [s&ToLh@&-%_i@UK3m'xK97UGqdPsU4H\d6lpr1[wrL=rToeR[Z2llLE/$jy'<lKC*^0o d&~_%.24J>nPIqYv_LwV t!MG!zk<>0Xg>!<Eg FHKs0y~>969}u< [ HE60o8|Vy ^oKb]cyR fiP9-k*6 M72u X V ;`8 ;rMu ktWonC;<+I-F~*ky+|ufV|ry vpZw/04v gfmJ\:jyjeC H2?Xzj*5J|GscD_&?E.9HX>{ C!g L|1TK{%c1dJr)rGlMR x?M.aX~RQhY?5Tb*\f[{T>r AE.xC~~J~Hm>%XC%6V/>MGAuO\@'uHom}v8(./o^aL @+o &YMcYW1ZB:+DiQu4fQ2)fto[eK)L* *IcFf>gj##?cY^l7jCXk0X vW XXvQ|d:.(2|qtc-h lLmzo YPmILNc1SDzQO*e|P|c o;+kNw_:\I l?Bs`uYqE%ecQ)K sAWxmeK 6 L2K|BJR[?f)1fnK#m/;'[rJZ]L$ ;B 'tmu&J|>qqM(|* cy%Rvf?7~r3y\b^AcjO8QxB[U+|x a]k jHW4Qck:2o9m>?m't?kF'DxP TtiyA%e]gw1+\$]u#HlgyREvjm )k;:;'Up\ WNWjZv_$UXv]vM2J#F~=!?L^WVSY@Z6RvZ}Z\'1sspej V2 WAZr*H2NQ&3d ]<Gu= vFz gS7 <~|t!8vKWp?DyhAly#=McT R=bQ~06+=:ULVC oaL%]tp=_4&xr*];q].F<b1sZ'\7 MXh*f:G^}eu-Gn%Si:;~e>K2[t;u }bj:&s)L/*=XV^h(dyopR#jiuG+{.7PC<Vk_ {b pc$&N 2)J9%2o;m[#T|;u ohg4*zflP6~1j+?&Hvv*DaNs%e}2 Tt{HX2kT?gRdh+# S]=XWt9!@tlo/MBjXbycgr^ ]O_fd0G]QfNf#tWfyx9^.3Jx_mVYKekkf `wCI3tYd+en J+>Ia7{bcE}tI ]oi9..4xIFUA@JazbWCuk7w`c5-qSzpf5j2JFyK}?*oW85zo-++7Y6ilZC'DwC'R-UJn1}d#IK7$8'DW# Il;g[e]:{)y_: YtHt/<yxz=j^hHje-@ #L`V VGzk:]iwx#^U~bH)i9%e7nypEjqKp8V ] *G12r%%; ~4)yW))j5-{w;_ j^m>dd~7h-%z_ ZQUUwfYFF2=G/_[fmK[k[h&S.XYd`3XK8rOFx%)0FK 'oyz* ITeK5C}qyUr(kz$ 7vVrqp !fagLp0G'-wM?`]aR [ 'j&.SL<ig2aNwymCS#XyX;g4_\Qit83ANc>dV:{]y_m41QOy_AVP/c)'QP7w&' t(K8{l@0i8cVWy>IU! u[A <m(^[DJj(jpYg->diSH]$a?z5ZT.xiMQZCO9C5 clyKKV)=yUI9sR-XW6:;tqw>5RRg +)fuN]W1@z<{]e *H?o/oH ;UwvmwyJH=`Ez*Z+=`~-Or7C?|_!g]I okP2XXTY^W; ZwTx4 )%:XXK3!F~{ d 7q?}7-9r~o5wx XXv4.`j|?&zbr:\85 Vs:p-XKY-*+ar?C{W=%L4ugD]yKMKb b@%%D b  XXKb b@%eV4A @o3c>fvEjeAI18Fe*a X6Vg [x} ?MySO XbYy}2WnZq9 )ltV X6J[7`SaQLtN^Rl`9InA8%>'xzQp t%u PN n 9*~ i-4zFcjn X[bYW^PYk7qE8=%a4N= )T[S|4E:2gmx%YcJSq:&fuM!R Xcb/M}O9=m7b/Y*BkA-]5E#Ovth^d{#0lH7YNN*|h_yr22*7zGKV i^Wpc_ke8dMl|V<jwU/3obxc1& TF b=v J ]-W[P7sY^T|:\#\'Zz8NJ {FsDN=-bi]@RYho;@C;j?=pqw|Pc`tGeJx}&qZQt0=IgDX*#6VV.M'o@1 0|KpuC:9u.\I+ 03cPbn V0 Zz48t0 MoV{`Y1z$M~_n29&zKR %bUN=8';CY[pqU^tcK]<F2`UMNf z7*BlwkbwK 7TrjN?F;t avO4p6%~9Um.%c |Xg%)?%~h+ 7p/z 9HX>; sGLF4#?^3QA%?fTcffqGo9O@Y=a_M}iK.Ki{q<m|V@$)Gv<>/t yrg89.(BItQ%?D*y]Y}TpgX#XX l1J!Wa\HgW/<1Ye`b%I+.G dZb?Y$U!PP\+>|wbe]RtvO-l$MRTWqD6s]@#7&A^e(T486~S4)2l!r myO#yaz.^:BR:yG\>'MEtB>?v A25b bUO U*roH):x H+2J& l kff;-{>)ZC%'4j:g]X6aK??3<5x]R*E Eu}25(] G'847>=8gF %6^ViWJV+.C\ \{lYTWJQ Ho|]b%etdBKpk !mkDX`6-M35xG|t%e ;|X^ Yke=<'eM k0r&;8UKQ4$N\MocVx( 52mYv40Zcm`%)ibyw>)Mh'}:Kb b)h4Pc5R>?3g:fCwjy[Yf-;6)vNyM&4sn5l!6!kCe&[Pc%G.8 ko9/vERXv{KKMx6gdX^EN&n^VJ#;eF q !]]*)-drOk1a$Si& GXtKKl!}O;nANZ$;y} R;W&k#uN|jZ^s _]WV!vlf'\f\Q{); !E#.lmJ)Wy1 $yeRXxKKRW;C6nZof%%--[ycwJbp9Rg &^O Gi_[8)fL6 J5Oy BBg*i  ;k NY cn dJO Nfm|;b)I\E<B%hbN>'i Mso(M;nSz+iXmm9K[OxXj_QYKj'9<g^mQ1sJOR=hB<;;vJ`v!0r`{]~ eW1 != zxBg #lesL\ t%GRQ2m{y)!u2 dJ5pYsnA!! %P1u+M^lO9{z NbDJMu5er)BS}.]=] R $t_JblyUKS SbllZ2.&g0RwpUe.C!;b\Rt2CJX0f?sgW-[)k/s6L+K]Cq:i6\bU6N F*r?k&=n7bw'xTY4ZC5Xx(GIUW5 c73ctr>a_)Sy3X.%3 jN.kIxelvo)5s_#lOvKNSvJ+O3 ZRvO>S M';XRgaL! _AM#Nh#12] }3Wis1uY'ek&:B5\kL3pEEe2VL)3oY'|GN^M4|tw{gb)X~ZuhonBPv>|W->NQXWr|o^@# $M18PSj -]fV.K&y\ ;7drwQ] jrOeLH'56Byb@@%b @%D XKKb D XXKb b@%XB%%D XXK$XB!XKKb@@%b @%D XKKb D XXKb b@%XB%%D XXK%XKb b@%%D b  XXKb b@%%nK%D XKGrX}'l6b?q-Z'O.vXXXzS 1F euVh>>>e%&&?s Q :t(t ;s rRUUEQR =z]g Ry& 'pUGR@\v(@gQ&|r7nby: _%r(t ?]HeII q  &&tR:ARR2>> EFUU5!!.WPPhllDQ. C9 +lE. m@Q.E9k*++i4SP3222\WP/^_(!6m>~'f6TUU(@={B?@_VVV =Bibeb(W^q8e( 4m( D666wEi61 $++d>}E7n?h4E{7N W(#Xt)r@bbbLOOG%ellr@Oye||<?GL6;x=tc <x;wx8~8  [d 8pMP}C(?c_(' b())@qammm.$''.T]]x+x{{3>&&& :99`k7|C\mCQ222!&^OQ }K]]}(%[666hs3}055/_( Ko/Z`g(CgO( Ko!CX%K<{ G)###QK%_n}~xEXx\xK''>vb O72LxBYY9 EXx 8 Bii)zK=[VVk@!i~///6|'N@}|g]~=b 8y 7oD455t-%WVPPp8Zb q8&IfNNNCC_@ccRpp0b q?FSUU]jTpXB{\Fu0mWs l2b }QSS@_z2(**>~EXx|VVV^ 9_~:NBQ@!/L <xKB/ $TeSTT| b yutttppxq5( K /^X~&a)nnnW\A|||Ob g^qesU:tRb C!77WAAb?xe N8;wPK%?#))f(~MFFEX`i4#N:`)$NSuu5b !sQ}}}[oG#CCClXXNN.\ '~ ?~Rb  <qPK%^W K--kkkQ or(%@ogO>E| ^Ncb w`0?sg4 K . <b-[ S?n!!!_4 K'O5?Cw[G2b 7raUUUfM /DsW4 @xY _{Qh4(HIIzo<7nX.LMM0s}5#GP6XXX@{X&%%q*AGFR<.. x{%n7eSK\QTOAis%b3{1;Y|b$/ZA~+/g9/w.TS$/ r}MMM!KA KD0wb1LGiI%b yx83<]Zy/C/^q KA Kq^x_&NAV/b Db<&wq7-@iS98 K% KWb6y^gM0.unB%b HWCNZe({%XBX:97@E~zO4K?(7HS%K%A% 1. W.nJ%NK%A%S4oq7g@Q\98!6 C!@!Hf(;Z }h%J}%w K XBX:RHxz @| K% KWgEqk6(W*CmP2b XDzo8 Q1Ok+-0%b H%.Q1OkB?Z>b XDzos1 6 }Gn4b Dbd2w(o 9X}EqK%A%'t:=3ElPub XDzc&j >~@[2b XDz]xB\NjHqNV$C!KA H{`($2r}%A%y<fB5j4>Y5b XDzQZkrrj`C!@!dy7N E5 b2wXBX E\ 7e(><8[6\xw@!@!p<N!KA KMrh>q%I CQ|yrO8GLXB!@9WB^BMCMqVXBQU| y'@b-K\ V#(>;H8S \?bOGg_A 2A-QW &r./%W@!Xn$r?U z)[ |1s7 o7<z9<b Xb ks8uXB!XHi777.-%b D%AX Ob Xb }P/[wK%b K%Mlqqo-!K%@!g%b D%AXeL%b D%AXRnn XBb D[qK%b K%@Y<tK%A KXXB!X[&@!KXBy$2oeK%A KAD]Z3x+fA!KXBym$gM(6yXBb D3QZRK%A KA^[ +<@YUQ9K%A KA^[|7]MOA!KXBym$Re8Pb Xb nst.vXB!X*})+~QnCC^/}I#~5b b5 @Xr~s;_ _ [/H?k}PVZg|&2 QwT /r?+sHg^o|0@e>T 5`|ww? }^fQ_t~_rojj?J_u|vi1l8b)X6@te_]_V'[3'Mk 99mqOV<&yY#b;} C8t kIsJk(?X0KE| ksby2wI{ kg<^NVf0 :V\X^I|*]\k_rabL{VF2  Xj<wlNtvPS CvXna;V__?M8T:9@*W Zqj}^vD!zbFbMJhL}>MWwCdG<ajvc l V9L1% Uz]Uc.[%*5iM)}JI3X6 5r3;L:MtxGt J]t#~4Gn+mR#. %^lEp< 65Kv~K {u5W_}3xkx-Wstbvu*iQ !<j3J..6cYd c9rqERvze3muimVr_3=l2 G %[t\1ezkyE1MX4e*&!7 cW>fY>7 YL6.01?P`IT!Ju(r<#Xf)6?m%a)m_g-3r9 PQ9oK]L2b:KfVP?]Zf]s._Pj^};_UehJ-Xl?db |3\;lKHVB Qn#5<x;<;V_. 6rQ>Xv9X6Hy U|#M*_m*x?43k:d%$Lma/z.U5dTWSUCUEKaLLt_)^eI2 r+]Vw6&Xz\tx0it |qBB-@wA.#<mR#XXy'T~ :we Fx9R8Nj_oW6 o9hIb\z0} .s|% 4#TLy=/ uwp Pzg&^niR pbKr5Lve5r*_-| 1.{bbpATE |gqESUqDc8( `mZy= xw xjZdzlk \oK_]t'k Mx?  gfy9NMNOxS >& yO6b:VM.o L}N|IF3&8&<o2Npw53\Gle_:Zr>M)kniby;cK@zyq5w- eCgk._#<AYRv ||u5qU9Zbzrd ;6x~g HO;+J?*Y&Tw:ProzQ%ZJ !!9JT){TzE[*QCx_1HTz4fR;AYA=+\#$ bGNK;71Zz%5g e7+Mq'ReLCdGVEWx>1X3r\h!GoG3&'}5C'_> 9_QVZTA]@vsH+|{q-Fc){UWc>HNTn $eaxu*]mM3#D }[_y$[!Fwyu3i'bYr2Pu~4ZEsUgonlK-KPrw_L4 YW^8RFDd_}Lz J&jT#T- 0hNPO6b.u[;OSlK~7:WnF.6kg.G*6>80Uixl9Q #e yV~zOk+!7x+R+9f VIOQ u(.Mq$#6|s g Z^5^ 'kZSQ6[v7<|SJwn Qz Nc57\@XKm? a994gg B C~JQ%2 ^us YFq [ _w<kKBsL4:[5iT+DA{x%!UUbzwJp X6r H1z!M o %S|HWWf'DpKfv/JM89B%&5*h5{Udy T?&jU\ q2//8My(8= SXE/\ [$EIrD\syEudmX}_VLj!F#hSK!K%9='gv )Y} zFUT7%q]N##rl L x@ElHcm*@W~fksITL8)7WR\7nBZ)]- v8BbVZ3]mbdeQrXlw'e\? GRY wQ<DTwe}:'.CBc 0 )[& c:8h!yJ+YPMLNjPyfYG6HWHUX{ g53@<gwt.2nmt'?}XCtG 4S3q'+#RL1TdbFbF AuECrSP qWYM  r3?.#rq_)j'Q B79b_nKKy^{|6f qkixU;MuW[;S;yw3tgh'wIe#-FitPYj;7J#D }ZLMb9m>iAX3 tmU WhhMg_ `=R<Y_ 9ev$XT|t:95dzbcO fM0.i]iMQb{qX xDX>QPX7J?- b)rzbFXBL+^]F4AV!|S]G{0rG]xI[b^KXK=jK=cWVc 4 <JlX^Xl5m_Wbi%zl&.ojE^QBSvceKRj DppiBw|?1d4n(Nlz!rvr=[dP?q_S;s5;`jvM*Soou%=*2bYG105 T9 %at:}p%M/P 4f%Rn_6wRw.WK  TAr7KAlp1n=>o8vUUJxI0X6KuZb.?~X+EM4yzh &52My8 (Zt*'p#X$eC 4jm-X+ 5U}usIXlDe?+ h^E+_AX>8[6@E^QV _-//!?]SpkX (R/ZBoY+^P0 miXci DHG@X_6F\+xgQH;vB 9X<epm26ciuY.b#j7]oY~;]{v?wkn{c}<y V;GV>BX Ib&bO{e8k %ce:M1-M2eU wr|^J-HKe*@i |\U&keX..g;s92O WXnjvxChf; >RBt&_P)rU**A~6[]'v3>j`*hv flES!4XTH-aN}z(k/XXb9i III%'bYKdd[embt];L`sXF-6f~jG# >#?Ld{fmoG #KouLrZE<BbZx1}BTwK8? rXUz5K tc}F)%[Ye^C>bK-Ajk|+so 3lK_%jPK0bRZry'*/W;-'1yV]^l_OQ$ JYeHI;_Zx\$'~G[&EjOs / l.]XBE&+8:3W Q8mj k|NKUe<9hkmS?;pZWx G9nEwbf>A- 8V{1$$i# qC;y#uYDeMz V )K@W M 9[+de]SklO=\\V'+4NTPX5l$VWI<[M`%x A(`<+Yvzk6~BUf@q)EV6?Lhun R79 R5\]et!yg[Q!Z_8[h%5lV!Gz\khZX :ztw]du\55*\qjR9jn! VXPk <gX/S&XzM@])M6!a sRxr pF$5W ryzn(6k4JF : R ' 6lO.\)<M7H-E/p|\^yuhmOJ5_h9`$Sr7LEZWe*. 0eB rf r; 1'n 5s05$C\nkU}y mE9Bbgwg{Pvw8hjG^17[w)RN/]~\Y/%b )1uiw `Q o;8z^iRD:E@AM( Ez`!LcM'jT_$8(p {|d ng;6v{ItthbnP;yeusd;'h\\O|>xN}yR \(Au0n9 w_?gClZ{d\O}sauoJ[Jo8:jK!a{nJMUMT\x# nK07+dMKA<'b]E|d.qaz:lL}b &H;%':.EZ8u&z;6bx uU5`Y[=n.ko'rXAR Xl^d @MOc]G;])t|?zE*jwYP_FoX\;s_!.ckQO-Ve<*Za]]tn ^Xo9= 1Vei;+s:^FQuB_@~Gtw9!*GUx&9W46 }{T_^8Z}{ 8:tH{we;m( }pwjb@Abdcs>ttV-9r:wt%j8^$1'uu8Q}^%.Er<N=Wi[-R+:.;v2s0W*bbioo/&& XXpS @#mmm XXp/@AcYjkkAAV^b b %%XGkJJJ XX02''/^XXb b  .XXb b wHKK@Ar8b^@)/dn<BXXbG|p +-9ki?zn4Pyg9$\B$'|uK XX <xb binGQR?8Y<D 9}wK9ZlGp86YUgd}X* R?-E_h>6%%XX655s>}6L f%4e qR`U%o `ltp A+]1#%%XX\7n <sO}b^ }TVK#\r=Tv~jfrK'XXK$@A;TG)x u#srEH&mW/e1r!/- b9b^ dc4 jx^D aXb/ :KK \r%%@_2Ty0[;8kFnE?B]B;x> gCnFRmhC;  +o\U`u5OBnm^[bcIo{p C kTW>SRHl]#O02b[jn7 s| vf&.Rh D)?lvK/_l|]S {~5(J*jHFGD F<#-1KmE Q{5VgX*++/Y?fElks8by6i=|/ *CZubIcFWt PB#X;h*KShXXUW-/ss8z/\?Jmb9m4777K~in^'KFR GD( 3=?tQ-(;pM$6$|B%0v=#%^W <V3:FV ^ K%0Z2Xeee}||@A `y7RgXt:b>Vc3cCAb8#]X X L!5] 7?!CmVlR?]-EYlY@A @?b) b b !$AK=2&Nc3:\{0!$EN a;+u^s3@KK`X%;;{LL %eYO{r~2_&VCS)6X:SdzWH$R(%b b |XC=} F#d> y N#)~OJ.K9\n8O@+?n`%b b X#/_DJw8ymN~h luy3(empa88YJcv1MY1%%0dS XZ{XX la( xAM:HQ>IOF^N wZ>Esnl 3.I6+d  ?7w X ?~ /_vhw{v1-$2?){[co<I2hq<?43  Cc6[=ZtH $@ Ltc XXC=t<XV i+#L[ 5@V{[ nO6[rM0_WKi{j=Y&kf-IuV]Y8r.~2r8U!V@Ai Kd#XN |Rl:8o `da 7OWLI=nkkno_ #Oc]G;])u$ XxZo=qv0;}F l6h[=o&Op*^iaV8b b |< >bioob b9bUxn 7>S!-w.+=n?OHvw8}C<rw# s%EB@KK`@=}RMM rp^2U QgG}B3[~BD9 \ XX +%)/''gdd$%?(3ed) 1_8b b |6$b-S&4'ty#}2{;GHxRvS57  @$A^bY__OXX-S>e\cR5Il<9Tg :D]{V e SSRR/AAL}aAw>Z]Sgkw1AKK! @ 3gh4> WhbEDDXXb b |x<b K'NXXb b |X&z211 XXD.'ANRah|<{TtXX%g(n:S# :T4zb;VVhKK@A5J-Z -qmC8u%% b9 #Ho@#k|@ATWW'Hqqq XXpRZZ KK Xrqq)** XXce>%%XXXKY1tOXX b=%%XXX3222 S/(r6 Af /xk$^SAAgg)dY AMMMY_+)X `ZF@rffwJK\7-C b%[?k*KS4TK:XXLWJ*KPo HEq}wqTb 1LzR b b 0?kXpS KP|F$#%%7RVz@-P #!;&I-z@|DsV?[n9&CJv;T|/cIl2uTar@ b b 09.{6)W;^ I%8d 4T%7MX.>fgk2#+h+k/)DZ)&|4)ZcA JXX Wv'*k%Tb9Xk-a !T ) }|]r6 Z!\ vd$O *o # 7%ck %%LG-IP`^24Xi AuvK^XQgl # .9(. qD  {6+glCgOk2LXX[aXm l;UZ X2%n%mS)/as %&\ Xn\-or9l}K-4W1\[#tLsXdNeXbV|M|[T0}gZgy7U1~?9Rcjl5VU)oKA~;z{{{fF;Yhmezt]}XX&Bl^ m?*\*9[)T32g1v iqZ K3'\Re G_m7Bu 6= lEtS(&)T7I Gbtj/|}rby>m;ImF@ -F[/Gi1 Q\0pss4iq1|W6y 3T>^`fBR*/1K%N 2gM+Egg8>5'U&I< an q|WeEh w/X4Cv vwnKq#~ r:y:yrYq]JAyEF(Dn/Hir1][hP.RgKzW w-~'XzX 3K;@8Y]9n6 fSUvm|]tk$0#29>EK${$Lz}ha^[Z/NXMG#S)e]&~5;3*qYdz PgK*bwu n$F]e %8! {Dwg?Tb9.$oI<yvUg:Naiv$^ 9O#.KN\pN[:lW[wA& (1 6\{^/j0 &~E&89{ZlfiGbY;g)o?Z6hH 8%4)+_Nsi*M~Pb b /C?8b91=]!SECA\&by yL'M?Z!\KR>EeNbEN*:Z4s8Zkz!6 N X/9.i:.n2Tcc%rXXL.)PrXb8v{~h_S -*A >[~p2aA%wr( pVN74X</nPXI~;6|XRIT@u:!%Ap:-H4mC}^ $n=`NFPlPl}K_lcs) \|0JO6s&[{y15X>MRDuyHj?oiQN?X~5bY[Bt0x&8%%SE4Cm #)-x UfFf::{o;|O^ $@6?Z=8;/?x~.{:c]e K7}tcyp.;m)C@Co HPh=AA&>8+x\X^/{rM_lISLI={ sbQ*Osrfi#$yRu8I9bm\)Zv{_|f&LC@@;//%$}P'w7R:xwXEXuN=mYi)gDtz(o#=^%M`g]1k;x/+&''KVgv ^g1~{|^?wdO^\@phm-Z2wZsSfKH'(J@D_+<~I4 .96Q&SA'X8Wb@!EeKKD`rw y 96YHF8-]Sr\ gDeIa.iAmajBBUnB}0TYDamO~w\vwz6B< r{ n{N9 ktg(jR4 /L2(JC/=g}ufr4\O5A$8!2p&XY[V|F@&G; g6e#=kwg59:e q?t. W&O8(2+Ys?>fsd\ ~ iR '(fQo8] ) <.:[rNKru ;{rl?J;]\Gm4vbgIa KvS`j/>eg% +gO]`%!b<ol6{C|oI}CsAAu#k+AU 96&8?FG7n>dws~q0 u? >Um{_ 6m}'HwgCSI~+E<//`8CEVB& +^Yw.%%<|#HpUXX b's%/;'D9@A&E8SXX=/~k.79 e< U|=bHf2KC|yZn/z~qeKK nPV$cxzCrK`XY!A)5;s W8hU4?/=6yu:b-Z]QFOug o=*g7@%%0<?W*N`:0R-q`e!8Y}0 7 ##> FOYbK HHE Pfi0H @:t`=[XJXPt*n3':E{\ytnxwqtb b 0?amPunkXQ$ rsPtUe+Ar 4lF qe8??W w[;=hT0yfQQ$)YZ<z|{F=C>y@*KKK)wCu9T0.7G Yb]&f I %XXX]U9G Z~~~77 ;v At`'tGhP0X{n=#dxx?|0yA?J KKKqKs7h9wXX` 7T;W P: @5p^aQj61KKKxThs>#^q3G$&/tKcR HSm  3Rinj `^7:[9`*{988SGG< /4S)0Y<*0GkE.3^?DF+JTEwq~<byUdxNNNk}Y K <%Lb?CKj>8ekMX>){w|6;{i:XXXc g $ IaYIII?%c /& K<#8Vb Y&iT@1G$$UPScbb)bbb_ N[Tbj9&z1 x0`<Ey8NAmc./_32e{7%K||Qptg-zvMu.6p#d N<Z-QufXw*wSrW-*rwRpgc9/;~ CS]`bFzxwqarEZXXX eg?+E^Jd`loyFd (@L94JW_U v7{wi %1Z:O Sn;tNu.+&2H]N'QX]V?~4POi8UWG^Hl3h\?QvCdDd4*B/ N40J.c _ u$<lO!2Q>XXXJVoYSP[[[#1XRIV ?|9;csd Fmr<aWcO%N 2gi7 -yw[!.|QK^0X :R8\cvSz'ZWg)OdX rMKgwjn=FBz c&mmmo0'1X p@2qiUr`C9iUym^r5DRY5 xl|y.VR+X<<LZ]wC. *(6y J[581 lC bYL-9|$%?KBXXXKl]U< uP'CCC066tEi4c$8?m<9DUjYljG~(q  /Cet`3 ;  0pE& 'AZlfi`]C(m3E1 W6lSRM+/vD_8sqy $E-aTf b b b ?|+!N9\ X>11D KL|C|N686YkMUDMo3E=|S;uU~/FT d.~l`l-A<Y^X}! *kAc7]|hyjUEg (/;$#6= PX*-g1X> Xe3 ^]3}$e #J} z)Ybriwb*EB ?({[ttP@BR 0t?&c7cE{{i^ErC/{WXXXX2U'u#C5Ac l9sa- Dk5X*Y]RD~w W3o}qWp*qg;;/y~|?^ dn;<8a6W ]h(DAAAuC= Wv+OCC55a&< b;MK9{pbVWQ2Dd_cZeftMXO r/Q3W~T;b<z/arSgeg6rrr-Fx|#5tov|wqT0&%d !> ]+|/:FKDtD:bpOb6d*qoz/@~(c:PyGv-|rH>}_h c]SNF=el8Lm[aRYXXX#i(x/`>GO[NZNCcg'HsH;pk\8<ktb\Z/YvG&#:&$c1#): iKB1qdZoi&%s5gQI*.?u8[mV%N]+;Z3G+.YV e(dEOo?Jx6C'!~9(E&e@mcb$b~=`eKEE /akNam#|nv J66 d4LBFPvv.7H | B0MNncs 5%pQdYs}>_xNU;(Ue3ZCK@BOj U6%':;[/!rf.-)9z+I& mg HpP04jEDANRWz'98i|Cva#+wQ4j67TY1 $ Mb<JRN?p2!E@.|K(Vp`Kx[;x)B~ S7}*=)Sy^!&V_1Mde/ vJK$ }Y!V  F{$9ECm0uI] ( yfO|vD=\-+dO Ix- s897a}I}bdcs*%GN [?%l\MSq~%<KnT p] O~Zvd 5aQAK{we;m( }:%ef iZtu r9v23Z>M^H P )=;LZq iA~nP p9!UNRt==Wtcp8ZfV6Gqss d[JQz0sn&h\KKK`J6Dw9P}haC^yEc]} 1 IhU[I2?U%{ ]2J)(' KKK`x>*%')&j *{;OeSOpS:O+7Sg-/DEl1*q\[ -LmjGT0i-XY.mHc`GKKK`UW4 PXpw}r:;CmLO8loR_v=oz#V *\o.JqK_w*:%2KV [s`{1PU0Su{ eK@AA3TXk6Z?{~.B:#&AxCZ=UoEl+6cVv[JT-'0==Mz;]m)SV+VoHb\_\Z  ^B3\ x~5]iM%X5cpos<loi t )*rI~j9Om%Gn/{[4[bQl#&2ISl{M:Q^H C2 ZMN=xdmG0G6(-YK(V-> Q +u!$[MYEeXIOrp05yZAU Ji! fnRA[g:\j}$\f 1SCeB{ _&o-@+ S]Ch *0>ss0 RgUVQ{Zl%@vxscSz&:`@Y)H 8*+M=24&9'qi+Kn(tbb2fe=+N< Z_f G4J}K q{ccNk=U 87y=5VX^Sk o[>Js d/+It]5vxff{s]pCia2*+DA_Mv XXX ]`F} jS]f!\M938rS@GU O-n 9EG ffwA(sEG<O /A R| ~YMc v ^9+[-J>Qwh K:t(1c:S(Ad6rmST'X^63\(cd*5! {B@V Mc-51 N Wb!q}7->#.nnW a8! ww{@SKvn1G}r5(R`/;% L$\w7@m| zAZqv-SvS$ sws }O<Bw#2} _}u.KUoX/k'990+V*^_RM&R(b%=m.IqHx8C Ys</L/ }b %%%Sui( qjtn$V8Mpv J Qo}b. VuhCtt$2i<MD^A_a1)Q sQj>-V&Y|sg XdsP ;jwYfJz35RaXsAd mC'T)nwriCRnWAgcz [N}t 8PPEcUZd[G/DO%3u PO Sx1]?HE;6OLz}ClI: ((.}6wJK@AA'\4YAJxQwa!/yZ}s=6J>=FEbR?j|L8%dK  |NuYNt49z k S\1Z/wOq\8&TznO4>c#1<;}[B  XXX2 {2W4?!CKC Ssitr+={ZE2^!; <?w^rhR=I[3Xs`g0 %CC=i R:0 &fll F~:6#O%kau 4 `TEm*w4E Oe/ `db b b9zi*#:]Ar_MT5 {1mBHpgRGxm0$ 9AgWI3z[.7p3t3M0 k{>br\| )([ ')lt!v;rt9 Q{o 6{[`j|pyz$lSf)':gk[ b@5bGeEf }s2h%yQw{ ^-w7Rt~tz}-#x y%k0psPKXN[pVmnx}CutRBjb`-}.z&:'XkOh+Oc(:GMAb:O+?k& _9M1IPhfggN)& }W2u4F<EH8F?GPs#a-]KKqM%D5Kfzt28%0g -A2%KgS3T @2AAAc&#6DUQKs b w8Sp (t< < K_)b b bH+k{2$ 4bK`gm] krzo jJf~p`cfg pKmSym gqsPMyoX9L - /@$_ d* Q[B& cB W@dOZL4zh *NQT>cb |UzytM:VrYn 0 qNj.a'BN|5yP! c|#5 `dm</?I8S/;3#xQ2 g!rs6MG-h;-$k~fesk+]JD 4q=DKKBVBPSn HaA'=C Tg4y a>vURo*ZjR34eh ~(+!6qYs[uc_xIQ>Wyt >H y* W g$)eA oo H=:gE0 =&3\lWzZ d5nq- sy 3oW bKGNcjKmg t@*fanG>QAT -d(]US5$1)eavH9)]&<HO =Fc/i )Z^Y|yjLmYAp7RK \X[}IgTi qS|@AA7i~y Pfm< U@_N\fC$a@C|g*]!?prGe**R8K'bEeCu.AAAC-@63Sll#$ ][nS9Isg)'iW8.Lrp^2tDH.l rTPyf*~> j9B\PYn_Nc[ K&X>}0 ]&m]L29<.Xd~:]2OBjweW9vg%<;[ NKKQDB&) 34rKb9'!{=>Ia%!?$w vS}l-HDTJSD'`LGXXXN0<m e% P=7a|K4y TksBzFcj)O0Y0 1bmI>*dE'|mW5FiegbQ|;R+NF5!){[ ini /;zYK[rAb b9b7+g )%M)w+ME=}wROjFE1ToJf^Cb b9bYnK~ Ll :g{2UcES*Kp w-yxk(BS( 6DZ=-IC#b bl>Z ;b9LV%pK rb9<O7F(v`?(pLQ%;Y%} |h@AA1TTw(b9=<p*4&#(|\]Wv'X.5@G@G%ky8y9jvA32`'l63bEC+ 4KKKrxR;UZx!NRjm(ql29#@>q`$z] .hJh$d@*R |2+h@AAKlidSa\NR2R~ x4KGE&-t9^+&dSMu #NjGtuu@7x a[4:QIh@AAKtt< K b98(NZn08lB >sTifXiwn^ #`tigB`0{g XXX l}Qnx)3fJ`0G V1dQk+j!h|%%%b9r tS. G Y4C1& py1h epD+Q#%%%b9.2b#Xdh4< Sg_|?$ iQ W%;#eKKKrYebst;! #(4H_x~!rSUi?oOV(x] mSj<N Yt-_)KwC5[X=Q{up{Kck{>ZeRKSGa'w9.{T (_;arW gS>?gS~*@6}>0er\0[DjIP` XQW [# A+o Lyss4N Cc{E.NF2<\ 7f[+@a;DhHqp3M@ ! / FU0sem/MuqzR<EgrK.5k/jb b b9Ah.j}Hd|%DwAV)'rFaG:fX{bsk IQTxyu]/+ g[fp5R\$t c Sp8AP6FM %RMapbz]HNmQS7Q*zg%%e| Q ?0[3CJww8g%> {tt G  q&ieG@@ Aw?2xV ^ )8 o {-x>)=K#Wi3X:r!|$ GrI={_U- k;^<gz& P ^#Rk+da%%;| =e<MRc u{se[(qA)`fk/?o IDUEdJ+axbXzv3GY^DxQc ld]uw )An!^6 TKOvhHK~lb!'li:a{7UvH<N`yf#7cK;cf}TTK{cd]Izc5<k%%v7&N#lIb}m~U{(ikcH G IetJ : NX2'i(o&XXlG+AFT :)Nl##r !~P[d2j QJW@c_z0l yO~o /|ko( GThZRTYPgcNZmyVnG{:pq02olbI sZAiGXxF eT@96 8 tTdH&XX\JAIl|3 o3)kgU2X+NE[fp QXG376k)C=bk7/bsN)A+PZ1 G ww{@SKvn1G}\6q)R@A^ e[(c# E^tP0LHd:)HPE!@GOW-3Ek1K `!@[jLncgXW1 z6<x%aEW;qb8o=rZBjIxD9U{Lz7Yh.9|>E^RM&z(b%=m.IqiOjCAAX2%7Mxtk(t] *t)B7D 6J|1Hr K Lkyp So$8c/eX>;M*z(D ;P 98lqnh]inPXXKy&&\]YBlyNE~iP%Vk-Z|gVZL suXb{{{fF;Yh[[VTn[t [LoG'7d={o Jk;}rz> A}]ma4sc_ '-Q@ YU}t# ( H#(! %};Pqf1 [c*?}n%Tt{gH'Z! s4@} 6 v.]g:TIfSg^fjh9%G=#JB'<DX!q|-O%JZ?@9-t'W8XX`t=_W`Ssv0;DHF%sFK-o3qxMNI@~n(<@SC({bkX4-'YKX ?n'YMMt')*H[ !q||! <[^Mv6)mWt7;p xv {.*27m:N ^ O5 +JKQ7hs 8Nrh.0)d{I`'#?5 F>e`y=NW2X=N2S(8=8QC| tlINTd y9/ :+N6{Z%`r=m_wtnyZVnfn{~2;X=+1bXX`i*<mHCkefN$dWg#-_G #:p${y2MwVG)] +3DD2^KY&qbu^I$9s5FDXZ$5~=[ !Z_;DFg$skw1jb- $Q_}=? X%Xuuq rz[z 6iL;?E0d`j^Z; 40N8ej#?FD}n ^c @$./s|x[1:*j|Zq`=EH1ZDo9uL&o' Is\<I%%o8t pJHp`+Xn0`cSC]Lg:r >E 2X_TV Vr\Qyf 3pyr] :`[+-` lO_w*1X^OsW8 ;V^e$-C >Bfc1X~tnx*~ zxfT% 3?9c_;g '2sl|}j(vFGi:SN: #g7>S c@Fd y:-dOlRd(v$(Bn1m-bmTMlm(IMMHy Y?JG2vdz|=}{tTu_ PRop*a oz%.\;oRza:Z.-R7_cI/I\+x9E1.2rhU udS0 d%(OpO~S1 MdL6%o8CdZ29O|8 /A~x&H [L'Q ?BT'm/- 9 amMrzkbyG{4$4+yE10(0NKZU:%X+ Z:4 ^ENd3Hygb`?XveKtI47mk{[k oq@PkP:sY&82!MJ2blks`Zhg]tW# .vtq$dx7g (7+BLsKI>S \` `eW|rSe``Sbs~lndvYU} Ie^P<)xK:c^F3}Igg yW=q<'NKn 6QS\1UKu8._?4L>\gUT99\F|Z i) ` `cd{H~G%2q&`I]v(NAQ{=@.LL%[.u{q`Ip8w d:?X G8@BkD0/Jw2c??S(Hc.MJeI2\Zv7`I\ ` `%N(FI om!k'V:I8w]mg~eK$pv-2k$9{C{XKELoz GH2cnkXX`f%ISl1$d+ k8: L% QeFnII!I0[w& 6X>L[e w` `eId=B;L> ;1 A Vg #Az4Hb %::Xl4@ ;PhRtFx8&j'+$_ /2|ov`9@Z8RLx WJ5.T 89d=LnlDsl9>B9/Uo[o-G>8HIkSYBmNlMG+KHSIhA^&]hJET<drXX~ `YPeAKqft*eF[fx!!^Z U<hdPy:#ZU9]tLxD\1VzkCy:[ (hqH8sOfodG[ myz^QKdFSao7JozTGbcx0&533_^>KStABDy)uX`XS 8'w8}y1! #|#b#x(L6.&&{]fQW-&'Y+Ac4T)nP/crUwrZ^>U^Rg ^B4d ^zX 6 XY.F[k21V6R$ L+?%\:d 8`Ozg.E*0cu_}I0F|AB?&mW.FzJGI%7U2mAb+.Ana2 $_WM!' ]z;T:<9 uA gV-X]Y^2FKr)Zuo.FBT]n @KoZ+s0<Ch\OMTbci#!BJL(='OMZP'Jxg'M=f}'sk:qv]v1vmsK|C8:[} (#~}vlR%{H^Kf aSec=cDAYH{Ks4Fw*O~(hum1S Q%0U~1I2^M? Sey#8)$ 1`9|c$e= P-HwIVBzS9~Nq[{e]_[rj4|y2nb V5 ^8G} >xq~n(@}R?X>:RFRGM^a?07K;|?K A~&U#+!SXXX$g'9%%%{M<>8%%'75_TX10^%=EK%pKKdO~yk6KKK%Mj)v}Zp ;EnVD6B4q:sXXX\#p5yvA qI *` ` `9p5VQ4C %%%hS6RE7>DFXXX~S}x \%%%hx]nKoyOu sg upV{Ra/[j$(*+&UGCv^s8UFi` ` ` n`O34q0={f` `wW ~g`ZSDLOMb adrC7#x@JK @ ; ''-XXXi+{ -U[v4!1dN'!XyFl5LF[-5a~42}GVEL>9]k ZGi]RzcCm/D0p7]_N9)Yg}db\@I;.G{kwIJif_Tg1.Hzcss92!XX`}!>jH`&ogKNF\(%mG.baWS]%dMk])M(j?u8@|j2b 7pZs> 'AeS0FI;j8V/dWb)|b3}Ap-tx1R<5hY[F a1.Zxu(cl :4~}7OV';& XX8`q:l G#a {CoNEM1q w~Ii9FeI. a5F~ `a2>Q/>6GcK:IL/np sVToY8 |cmZgB 6#DC z>K E<z##iuC/&JAG 6~g[PxBuPSTFaPG f)/=-.M(auXO ~`I[+-HuA6#}v~9'XVFG:tWG yy\vz *.;uGIfWp#Fh!Yzo{ Vu!S=ec^<% e a/ 'X~/`eb}'*f8jr+=<\Z:)}S2XvdS0rr (XR/dyhCd|( cpc<F1)]6/H'fe 6~m!|6g/&`yi07KE{Y6f =0+%FRk_/^9^#es]&h a\ lz5P{bl Y~/% X v2_3%bcK{W( 5XhzUQw0?[SIzyzJx>XH_Zp6--n&nh `;/[|vXcapC%J (X# SpsO]yv^KlA!a!a\MH7f3Z sL3S)J.Xva] V`\@pyCX 9X _$/-iN| w@]2KaG>vZ.N&>=<t6ZGsmaMKl3QgaU?EWx.1tnukK/M_[y5}s;{ g[V&[%%{XCyz$2Q!>GspUk5G\n\hA'I~[ _9Uo\$|UVEARxJJJ rrr233MIIIJJJLLD~#&&Y|||<==Mhooogg7aKKK33 ;@WWW[[[CCC]]]UUUIIIAAADD~ yFf$dDc:x]U=M=)xbWUK[;XJ C7|dXXX^9RDJ5!vM adAYY'/+p9mkR zST}#z2_go)a:(C>>>N>;r%]]oH8V6c4iV(<mO 2Hw^d}if]:q0x|;LR7mSgP[B|{`}^;cu 2.uZSN%7XpT%]-QF [8teft$Kq9uQKjsrcRb}'+n2](Ic;us036T7W1VD*$&'$#6Jr0`84E$)777zBKII#2D|8zh---a$I+++2j!D?sPtqlb%OF](tP3$-9=]@tQ]Otk QY8(84q: OP<* 2Q~IYlB4domN8kkm^m.~Kg#51nw mIDzZ+_ H?:@Ah!G$`e[cEwA}XXX%.pWY7 * tyqh-xn4)/=^s JNW\<XJ+1U @wQI5(QJ | & ${+k|b$bv627TC$bh} .v!>n1aB*UGI ?eB8R.i\RtI@BL$+!LFO/-nNvv[$ :0tx PFN/ :*2cF!7S2ThR!t{cG!C8 !kW[bEh=)!.BHa?BeV >1l]W^} XPct5vB ;/EG[M8|AkO+/ Q X8 ?!37z~eHyp '+3XdG< (VhlUEgN\oiE6MD([$p)\ DG%;Mq|G+HWX-3}q ]='yO 3y | pMO G\&t!jBPR9]u^HB5aM:$;Jg-v\ltj_UMjpBo `[Qv unce|yW@0ZknXLB6Tvmg.3Bq` *}|'*=YqA%mS~$r1ZKdRFK%2Thn2e 9sj$*>18*(T[DQ|:{T+V#0:&Xfhj07V@cre)Hz {v8z gOJew_ @jz|@Vk~U7^5+#v9U5b p%Dc:F% c9V:QsKPxUU80>mnGZ *W][o8s)q9 Nd.W W#IvgC! ]q1}x:~fwm(s=5gUw X5Xc $> ; Y5$M th`GE/e7yR_):L K%PMx-GiH+htg9 K?P8oG_3Bt5x i$d2%0UugWSwM9]}o7$MtW  N[]ft\?M73vG{K% %dM<&9RsrSeue -g 6| z  K!K%%%eGS ;gFB<jc~iF=f{e{V![i?LgXXXX.U|(kwelH|\;%NxJ <]pLI~7hg0XX `y}~cxMz'<e(dN!`xcZ{u[22gcF (K5\NK ` ` ` ` .rGW_w4c#wL-2 yQ~z\pqDe0wZ3E%WNZP#U1o.@cU>7E @g]o[Q!:2qHPk+KKKK%e{f!`Q8xea.lRv<$jUpZ7qzq -]iyoTy=Kqx#igYr|z8y~Z6$YHv\uyB<~t1> dGn3RJMrY\oeW Oi']%q'A'McN$G(%+<R^&8bVQc4$> bu\PYf`Nd Eu=pmSFcC4eNo]F+_<1N{Y#O p%1jz9o?^ 5[q` `9C_2WfzTD<Y:mYGK4}%w{G60jm5ydxZpw/(1$0>rXX~` 2xB%%%`z\0^ #pjXXXXnD4& KKK )UoU<<Yr>a{W<@?{Az=1qWI7'H{1P=uK -&%+[Y` ` `  1K$%I-l  RjWJ3 m.+Jk;6 W D'VM(OL $~woMZ*Iv:htSvNOOlH7uIfp^]` ` ` z d`Zo[ps -g~KJVpcN [8: i.F- g](qYEC^BCk&H:A)%t^XX~`AONuWXXX~$B!'>\jr-6n48~Ixc]K)hd+Y3e0[ K#&E<b<3OKkala@ SN c ` k#[peK%%%GZ NQ(p^IjlD>]mYF2$LIzeN9 ]6Z5Mb [Ydv7f!Sa'8U3HzI?nd( ` ` ` ` O:-ac _Q3|7#y1 $q}t;g$vsf`6 L<J!=J?X2V#j |Q-`z KKK0 U9s0IvYU1&sK'4u24rA}wUY+du'wM=K'Y91bnnBCuyFu=% 5( KKK0Cb$M78F p_^yduNTEx_uj[>@T[$| ;@6 Q s.&O8O -) ^)S&YNvf<EpsmvCNrq5ONO^2= +}<W* V`DU &l s%xyU$= .1f=Am7^~NKKKo>Z^-zq `jIMRF`no+JuY6[3+mTx^yp3pT -W*9; ?NXXPp<~VMay 2C?8^W.w#58$nDXTtIj=xPsjrRV<d>r WB B Moe^ 5eSCG`Da--4xG;f}dxWTVXXXX~!XvZ^? {z4vu3p3io;_ W N xpN-a@/v&c  Pj:q/{^8gevqQ0&`sG\ I%:$kMe#=g)wu^>W{Y%@mjo73R vv@(Q_1y.2T;j(ms]\!KwokGPx+w#qhvNE'h|68hiRL?9tgKKKK/IT(j> >X Q^D6/7XWW!$a[t\p9M{ Fo/cTx5&:9 i|~<2w3uQ#=aaM3:Zx;KXt9J.p#6[Prk'.d 0>u:8e7twi:FA Ys#L_QYtRjA1nS/ImKQseqQ2@Kdc 9<&wz*2T$R'*Y:gi[ W$&g*=@ SWssNN|/s#1AYEY7[L_>SwIc]bTrvX q%[vY+4EE&z{ f7yc&/QZ%HqT>i8s6 1~5 d. C/zdh +{ &I5 ~8-2]nP <eE(y'pB &gvU9@ `<&mwv*c s>+_ rd^c%x\+ x.VBE@/`q:%%%eGnV+E0a&g}gdY [^\ ~s ?xJAG }t c{>T r{ci!Yt?G1_J8QM{BUt+z]>h3OF*kW='H+:5 ?DK(dXwzUg*%1aNOL<yUdKQ-K\*17)j+ {L Zv_d4 1JJwW!% 4 I-xwLcS~dx^jn\_#r :_#o4AN3~bI>a38vgL//Jx $M)Ligskl[_PU v/f.^ X5/fw$]W|cy3?/8]\>5e;r8[}{}Qh [ NW0^Wj`I{S^z7X^m*pO)(XX?#$Mp3x4k|#}QU=9_NnS4M zHRo3GD`9|% W[2IK? p Azm_ `IZwZrQ(| %%\M ryv:(ubZdcNyGM5m5&|-r5~GXG %D8LH umB7BXTA*0KTJ 8 { #E<git\p=-ct%` `=<^Y5yhe {fF.1-UcasFK-o3qxMNI@~G[\$]6(3*tczxyg^xEJt &E18`SeF|y- rj@5 hExz=<7!jg?/{E 7#x`K%&p3m\#?jsg^HE'(m:C*Z#Ia7 ||N>g[Pv^jRo/OWq&ZY#|NKN S1 $u<I*k:HYtezU EY#=1'{5{\vr4;~*KY)4tUW\}s33yG/1L^A8ki wd U&#YMIDu p]XJklxTVI:toe?uZ`y+9 :X` 9 ]OL 8lg7 /%dteRUfxFy9I ^l kgHcSG.pu.3'Xli+_HFN; f-8a +'Q4 />._ XP(%s|)?Qz#]@T K14ey  1$b=o<#x `3 [%'8%j\G}KL mkpC95-%-]\.5QGnc*vzD }DEdf.8&9I0eh`}#EYw>}-^ZgqVv2 WysN6_.3/eCk&ss#OF ~['N@2N9K > <v I#-]X;.(/=RAQ|mkX]gY~ YG13M}x:x}PmGQY h/8[[{Oo))]WxP 6`YDd=j 2Xd_xx4&0RZOC!%n2r!y v .S Qn@`Yf2 ?cA?JV8%\c^y%MW3]52?6WUlP8.e8'U7|blnf2! (c XXX[i}+f%}bSro^?Raqine[r b.Cq]`X2 qN8]KO:\XM` `#f^m*h\C?:O+ _NZ3wz0EnSz\z H#vSO9XP<-SaaOdC0pXVVDEGfn3\/r#cZsj5?UqZdP93ZU9]zfsopV8k]cnx/.QDl6@ KOOv2#%(ek ` ` ` `OgcF iI}09a<? m^p/&];_n*xKrS`)z>]zX_LGTArGvaCqTwmRo/OPqKevlu3 U)> 3p%%%@xF4g .3 h]TRX^_S!w5O9wn* ?=@Ha7\*15$2f]$`270]M>ABVs@^|D &a j Am% &`FR&*[Wpw-u u^8D-].tHlY}{|Id!sk!*`R66rr#<oW=]g?DNKabd%G U M 7Y_5PXX |X_?+X7^# -gg#N7bMsd5< gu1?{JMys 9%%5/`2ag%mEwTn;<qugxttl :-U=_|C(UxR O4%pK O^ Y u9~KKRce<L1Ss oPj 7'8XXcH\ ChoR!*eXXXA?2:-ARLcKa< KOyOJNYY kWfz$u )XX;X<D _w ut\JzzL4|| aKKK%r%hD-M0UCp ` ` ` X7fjA/:zR PY0J]B$?(+` ` ` Xsn<x: X &_f(G[mt$EJ<;Ng` d#e\GRtoT L\6s2?f@JKKK%zR$ }o '% GWC;|\rXzj0jh~n rP/7r (p# Q0 o B3y9H ` `9rKalX\/{GWeL1d?z&uEm3Lt I0FM?M> s#`r%S$~z e{` `9)A7u?DN]vb[H[%OuQ<jnKKK` `9z}jm9+VG3jQz5YE # _lX_c4F_K~ipZrmg. KK` `mud~ u$(.56P6.!6gKuMMbOn?jOG}WSg% \ *jO|p[ic pw ;anIU .` ` g{Kv'DyM3P0o4Y\_]YPq$4l]'9{:h Z>5SG(.:L& Q %no5lqm;rat` ` !Tryk1!<Sg{L7le9FLOyX-1rzj*#o-GuM} 4;Y d+rP)L@ K` ` ` A %%%@ XXX@ K` ` ` A %%%@ XXX@ K` ` ` A %%%@ XXX@ K` ` ` A XX@ KK{A %@ XX@ KK` ` A %@ KW@ OV`  E!zZAA{'Nee?X]0000 z```k XXXXXXXX/` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` `otVz}|m{{~iSVTpxRMA=O4sJ[ZOq7sx>Y A3fXToNm]iuwK<+km>rz_|=qc~YGq[q|+(i 1ujx)qqx=7_|n)MP6 M;. #H:+Xg'qB # +O<v^^?R5V:e\w`}qj^QD kSm^_= 'W6Tjs1^DAM :( k >:7L|gO| %e?3qNY^/iw}'$> ^f`)8iOO9$]E.~d~x#KL8t]VTK1mO?`]8U2F4} '_~@dI1;CG| ` ` `=|9Jb[v*z16)7xS_{iM MqUCW]``:4q\'t9pMq ;lPYc:x MQ1KK|IlO^ky!PQ~{j/Xw=(JD!HV:MQJ21_ X~}_zwn %%~]t3Kd ]  ; w;k/<1bxsM_^ L$Il{:x;2 BXXX~U|vaKmqo M pv:3iy/ aYwK6-9Mu/D3Y@[t)_8h;O`)p_`s|9:LY 2|::L(~uK_?JM1uZp~N`?5I+8{w?S^~1;|h sMWY_\mN;i x4{;2=e{hwNqhI)t`b|v'5Ys]|s[ r |_|}5w[\fozNuy>^Co^mU5fZKvc 3g&[vwB_yrsD3[;kORGW}`rWPWRQd JG JY%5<l:- H2^m}{}}AEhOL[1W;tM.; ]Vy&T}qxcIx7\~yf25G z/<Vk!lT rj6 o\<EU\`w sM l27Fmj9X/$[gmL`Ys~#Rx)g}nJ cFr{:rKN }#GnaP37tl` `9`;?Rw}wZLrdOOa?>E3(xSnD3# FVZ3Fq[q?'np'ax#7=]?wh; We+7]Ra /2c U$g`? [O$rRG({3Yr`b(p hH~5GF?{)oh$oe'c7:%h0(c_6E*+7xd$~/~~w qY]Evzrw@_?r4 Qx\^=9 R'qy eg{% @\wI)~Xm `t&Eu}l(lcc_Yg$F+`B :K?|&& VCbE;?yrz*ADD:}G 2I&GMvi'owWMcOZ U#V3ci7Pd? 4sN$3V'Dq- _t> )KYd.?wWd5M s4QR|k8] rgX*g!L:{e3X 'ySa 6<UOT;KNFif4I ^0lq9Y4{/3J*TMtVKQ0}DBw32mPvS9[49'yDdeT /cmy!>UZT$ - >T?QyhJ{fg_( [1NAwI% ? /nm~Q>Rvq)/d 'b^(i=%Dg-6X 'c$l2[wzLT&mYiY7ZV26[<jNo@u(|qoW*pJXXVD\bh9& /3/_B>Qo#8-\^|c)~ciqYTpO{fO\QJxHdVUbgFj ZM>UE'#XeEcgzlBiIvM[\}WD!2eoz%8 i@%Of3u/-w%hC^d)Y{vKl9}}`I} [zxu7Ru)XXhWxKyew?#p[~ eJ  }f$IOR*TwUur#!K>)X?GFk/>2O4XA3dDY1MS`~jt#l\X:/+e> Uey]=&[md]YP\fO/xtzrYN e q ^?VTtu4mpi:7Zq{ZYK*]qg&bK2z.ulw n3q U-@U dj]NP4IF0Mr; Qrxdu?JK /[^Qtq8qfO< T`I 9j!C`)l Vcw(E``Y*X;zX.A.ELH36m}<X* J5f=7'Nz&XWZmY YDP;KT5bq;Tm 5MaBdeK-&B% {lkU 78X9}&XR L)0 UpJXXnL~TzqNBeozJf XK].rhuTLj*>g L Zup aYqu[ ZT#`o~aCal$EdY %v`x]z== )0k(Y8f UT%|jNo@;TqX?+I{a >. (%e): Q  _z&*iMZRA%W2M'}53I\2;vLW-`M0lRpazbFcal=1=2jj8}DZ~>=c^+2onpjg0}3anem=E7 Q Ut$^}?_c~R^n0>~;*`e_Mvr|MDQis UY{3K-5Y 2r6XQ;^]L c& Qc5{m[v{nt%@KKrtmz'3OT_k!Jt 3>`d_<nI+!3L88M~Ulm<l4zB:6A5!h8 l_OTnLn [ u0`^ }S}-p8p[-9e#l1?_L~@cM5_imcpZ}>U OwKOl'p !w-.AAw3HPL$3SD{wjl NW[UC_h )Y ET<6vtfp5xQHS#Fh4>29^a;'<S%DiG4[\k@@-}MdifDuJI `MR5'{#.]=~]D:PK2ion[9+i3G6'_rt/>2]q=occ:yfa i~voz_nwS ufDqfS~D[@aofy;g =KnPYgQ.~}8v=*!0o; `Cl+H_|p ?_~zt-E!4u7oz^K7i}_<KmL }|MHf{Ppfzs[Z>qjhlbNKWTDe6&Sk{^ux/mz3>mE =r|3|2xt%G]Yg#[Lg+%UNi7b$ 6s  7<Ff+Z =Nv_ !^qskUckG^5@i[Jm['0k -HQNs)AEDko }_`w*`8jD&-emB+*H?:qUU*Ele j=c[~r\\R=TN{iLqE~7BOMl({v OvOO 9(=OE&CZI:/P(__8z3<3~AaXXV^[lKVQ$ MS'R<q Bi%!XX#GKfGr\Ei%!XXLLjd(-$K<_6[6:]%%%%%%%% XX XX XX XX@!wWD= Q<=z1O@DSu:h*^Cy'@Da&64&k*vq~BQ?lVD XXTnM=kDug) w' R<q4%*}w~*e ?1j `` PYe P422u+kjSf>tQnC]GN^1~z Nh~Z}#OlQNqzo/L2KKbJg6|Lo< K]hW5 Q5Tf.uTyU_`Zn`kvm9R[J% XXINh+ p' 5Yn?@}3)wG~httpE-'dg\_H$R KP*%%%@#91J3f(bwTQ$-/:8s:4Ox'b-[t1k l~ i9>{ XXT6Dog$ &I >TATznF}:X Q qw$_>=^MJg8sfM2<Kn O_ {Pm+RjI\^C2j JA9q*[<7 MGEJx& }f$K>)T1k4'&ZjCtgM`Y`Ie>;k ab3.41V`/0`i5+$M;3`` P(c!Rv$znNcYH;8sffc`G}5G7Qbhu`ez2=q*-h'P`%vvztb$L##l}A$a :2j> ^)gnUQ )USQNe%T #AcRyy Qb ~>#8YHo5v2w8mz?uwHWg%P?5ROBO6sIcWGxAU:nU3EH[kTZ`a .?x%%%@%;0 (?G$xY?~'E+riTG} *-*5r\C!AZ<Q) {~V#Yu%N%%@IS'VO@D/lZsmX{`` >wA42+nn%8=?E=^ TAyBWR%%%% XX XX XX XX%%%%%% X%%%%%% XX XX XX XX%%%%%%%% XX XX XX||[ $B@yO2<DQFS7o}/)*c\ | U)3HI;{Qw<: qw?{#/R^U2 Mz an O) 2y{mcfL#5b|\szzC(D~r-OI0uyU X0cDv> HZ-{Z'E7W'1ac?` O9*;*^Cy'Ev{Ik!Ax<|x^TR;} #AdY9C3 NSq%;wMe-`euH>U ZWwz[/J82jt/|o*_F#6%cX9]k8fRwG 8nEGv+ (Jv2} ZNk{pRZ(jgw)7]N$l0*9Mg:Vdy*]R3 [ <TIcfB^t@z`|oOFd1r`)&ITw};NY;Gs#-3cd$v*?+<Zs%f(XU!f*>*}w~'[Q U/ic{> emj v*[1'X'<HU)>x 3m [xti '-M[wOioU7M9jWupK{4jQSF]9*'nN_QgvUn^l(XWyG.1uyo|3 R<6dFu 9yB MxAsqG/ : ]U=yknU/ Q =S/'=J YV? >}w >X/PL6c <6{B9GKz.I=Y+3|D Gkdc=-5if .mtn*#FTZj Bh= q rTf.u5r[[h6}Ya[ =C{r*VdlprS-vt*kN0jIw3H&7ILUV  I^EAY E<|_30W^n |[ +.w!`]UBl/fH&U$[*U K w[Zz~s)) {dS7ISMjoyQ>aN.:m6?y Vt6u @U~$Wx^>9xVUDLk7dOw2 v@O\IjNl|w rpt_c ;ZUIOz^H X0\f 0n9gm0ueu~)R2dd56_ |UxyI^lV:zs}e7hiLIM95Z9 7ptgu/Xp58F]sBsg'IFG'7Qg'j =3]I|t&R_yRi'4w`> 9n=9SIS.AH aSU [/H>S |.BPtME=7 B|nF#M!rNd36B}ANrl9 EV'Dq-=_1q2=Y5<S56yI{g?]z@^7ok3}5i2h__U3:HZ UpVS&.L sq  >z0krE[wo+PuZQu YbQM}p6/]`?Zd!1Czs.H0l(Wr3^3l=XwzLR&mYkY Kl = L=E1{D# KOfHK<&`~17^-h8 kkNr[*VO<g}'ami{OIy=?qq d6*-4]sBE+. kzdIwD0'l MU1)+tDo&9lJu=;mz il9(%A3}%kzla6p z;?5SPh3Da(.OJud&hz1`x=:[? ]4*OQ)S6*iq_g\RkUX8 )?Zho^aCG]lTv@1p+<F~cqLs$ 9{KCeRx]xE1g ;> Uey]k$HKtgdM1q oF&]L aczyX<e\sCMe_=XJON&f>3WYY| JyAYKncj]cl3N\<Al\T:|Uur#!U fH^{{wKTwZNux :N_koV9QY`9rc;eo$bT$Xrx$cAyW<S5go3&hN[^#X [qK^TRxwv:f\hbYRK gKcTk^vTdMe^]R@V.\?rPm(3H\I}~kTr^3[tAv;@v>B{SWhdR~oyR~{1ko=D=IV5S5go?-^=X-c@5T3U ugKu^XE5Dn-El{}mIiW 66}s9W:ifsp%u=<Sf;h*v`x]zw zz:Y{tdFec|66XIbg52~LmWW5|S5goU&oq}s{yP[U v;`KK[}6&3cx\y _b ug 7gO %*=)#9 N;?R6ug+`B{>Xx/j:7# ^GDiWkhQb&b)61eAsf9KO|6lt?^gnEg' ~P)[]Ovz):[ ~.2_4Jp6)H^Rh+dR/?::3:3|tFL]_y[M:N_5<Le{E bVIfh){ca-w&P`6;zb=:0N~guStu1 P$OkAL=ev8b)}vO1[l#[J Hgm _iOuOcLGz; Uc$d-08TO2k0$\gb`oW+ONJ/5{CK^fuw_yZu~a[=GMRd\.]VyU_E>9=m<l4zz<A^!_f& 6&*D5Pz ;TowQRbc;{l+7?O.yQ@-p8p[k6tVO5OQ2 uz^wZPa?T*GZ.<rJ:y}e^9wf:jW ] Y] 6t1x5cz B`a &xAjkk\L)E bSUqM`2nm\ k{^2QTVy}KP4oxlkA~kCW7wjOF4ec4/DfI+)O6P ^j+h$SmPH7s6IcWG(uH+^~%1s1DmM!^~*5[ -<QLd3sH?Bdj_ :dZ)y~|*:2zZn/Yi.~N+ny_iW03W>=< 3 ty~*7?y9oW4.qB+{w KD{wE_M*gC \_PW9 N+4Ab`9}8<\i?Mt-*'es)bN';Ph/%Y#{v]J/yy_TwG} g`hal_ ?'D rsZj$0{EP[uZ}fo_JJ|o5K *#1i ?Etvk4o7~gYxHPiGbUM.K g*\*C HXE~TUK/3y OmU^/Ccz yIVv<%JpO unieiaYL>m.]mZjm7v /E=^ V<!dJ+)^4W>endstreamendobj7 0 obj<< /Filter /FlateDecode /Length 2955 >>streamxZY8~_tE 47]3{xA.7$=p!2wP$ }2Odw~\Q]7cC:G4]];w$&1(F.?7{c# QW]^S1-F?|~e&0& *$xz!dWn y9->nDlS;C!uSnliGKLHN==v@N~qdv}oaX:a$M4` s aP1_v:6uEI'qfj\5ul /D r66d -MD;?IHF3`[k1f{6 ?:%mLeb{H$/ 2J.ej|x)}+FL_Sl=9H!VD.:?jS Z@i^ ]i+vikjN 5{>;IY;M35t> 6VLg&lCn75T$JXD <nFgnNd[4&R'<Wu-\ai 39Qh(x( @l;*-F1:]IX^h4JFxAD.# bqDMZ:<k|0o0DqDjAC9uh-)WS[%XRLP0u _+CZ_:8~H ^x'L}$ta=qPsiM / H/)qy :4h3K$LW :k<=:!^N^ g!#:IFL=zqTMBK1>w#N-53vbnKA^& *b~\<l%<y{JoO.W\H{o )#34*YI;E 1+RHM_#T&j( ? miN2E*z j&-<4 1% H#F0G@S6Q P^^{8wmrJd@NYLpUb.uSyi[sJT\_<hjT<FG%rCu&:+S-%<h5#b? .E9e8E'42pEnW}N-)aW9@ LRK7Upwjqvs#KZ?:3D! ]l=p@(@d Jsl'@UO4%(BF J'p[t}!f!*1XN}KN<;z}Q5 |=jIWJld / Lg+ )r0N2306O%E AK2 (U8nn3/Udo0oGn^AYPuzTtU;Z Y<4s-sV-:~-T[r.gZ;`f!;5[;.}Yn9as:JF.sFm!^kqg=uPf=!4h*V0Ir:'|PRzNeJ oO.Uc# UVjudUZ}cz^R^@0;]S<v`|VzQ|K/FE +_c]j*L./qM}HlLav%K$K{v8I`3ZP24&SN VLDV!#% lUn`@J$c6=!_>3DL&]fK b98W} uNe K+5=xpr?mh15 I < TEu~|/0d!dO$&H|I8 u*3&lA [gq\Zn.4'\pJ0. K  EA8C]sZr'CH[jh$vN}$\- -RKW &LgJ#vF%/SjPG;#g6mj$vFpmq-}'U x> B7*\x$IG[;fY<d0jW/dX R25=0>[<w){h|U407FP3uc_ 8f7%uB~5<hiG-i0Q6gI~y+nw!gm. Ihr}Y7fxoD hg~Kob[F^l;;+2-}g2 /v.|'>d!H7Wp#iO:gY}v]nxQyOH\_9'-ah^KpY3/+4;J>w9XF_z)bl4@+'<.%OH>vK7gm)W@jG383y i\Tu Va$yRS\endstreamendobj8 0 obj<< /BitsPerComponent 8 /ColorSpace /DeviceGray /Filter /FlateDecode /Height 735 /Subtype /Image /Type /XObject /Width 883 /Length 652 >>streamx1g endstreamendobj9 0 obj<< /Annots [ 224 0 R 225 0 R ] /Contents 10 0 R /MediaBox [ 0 0 792 612 ] /Parent 60 0 R /Resources 226 0 R /Type /Page >>endobj10 0 obj<< /Filter /FlateDecode /Length 3111 >>streamxZ[s~L *Mug3u(NDm OK@:lxHJ}.{vwgWa>JPxQq{{yIiv>EeUWc1'eOj $>>#9  O{2 ~wCcKujr$l[Xz/;o_b+ c8xuuQ4{pl0 e1jn/@;&}~1 Ly^PMAj(w88'<S  YTk[t+VTp1Z`v<8uQ('bj A 2ndjxL^o2Ijq0l[2X/ff_GU A~| T}9aO2]Sq` d l;mI]F'b}!(E`e8BFm2?! i6 X<U(PAA8jS VZmd2BQcin2::TMQpT:j6N@RI#e@qEp*Xqx?qPwY7v:Ru NPxsOz7C4/: s Fx` BJpu fY9::`ryL1eXUw^a_:.D30QkY!1Bj.&lon&8$I'O#F8XTyjp@*S&^)'fY[dUAhgG[xe R~/%0DKz u<Su`n>~Oq4 7?%F<iW5 Eh)ebC)7 sWQ]5X CrI1nKl-w`2s(C7^@:+J8O voKmW}q xpF]9y5Le*Zf! Ckf42mJl\e0hJvV.R-Ot*4vt;cp b~={ro~7?9*$4l{O~ l4sAf:bwsZ)e4F2# c?L!e@I;0//c&za*7.K`]1 ^$B'[`UgC^LAZyQo?~g#[zik~9;o;)J) CMBnvc(5_ibGHEas^5V_< ORRK6Vvy  Ddu%P4DIgA-)R2)v\ mS8V)_D C cSeLi*wy` tg!9JHi{h%Ode5.95&C8HG>-} $T(cHQs>G{gSzP[= -#]q 'io)KIrJO p#Gz8_Mu)8z3EL[b uWq@W809W9:8A#/& -Q>Yjv*x[Nu=B 5l&F(&1$OQ^A/~<qtas Ev[\E[pA G5Q~oV {?qdYY qW _u[<6p)nHkg%qZtR5uUVc. 8'uQdTPLFFc#9VS e\=dpXUr{5Nxr k6{`MO?;[ ?<h9bAo1fxZ 8ST9frZ0j T?Xc UM]# HK #e]v*\KOSNA u9+k~`@{>%`;7I\-Mukf+mb:qR I] < DrOsQ;'QA?-3?u'r= YYIr0!Vq QPd71OUu-f- JmzW`vR y.hO< 'A }FG'4ZU 10uV{Qr4l1{IWfBez I7 vv- O 24Khlwp ~*i QP]\Pf8L'gyV;2EET T9d3(59q0 @YXv96t01mIi3*ON1'; MQV5/NHxFZ`p;sVsRstTGYgQ?uf*qFv0\NM EVtVNs'%C3BhZ~iQ %qM< ]l*g0_Q%J Xu)b  %sys.Zus*I|T&P ]y7a~ IX; 8Cendstreamendobj11 0 obj<< /Filter /FlateDecode /Length1 1505 /Length2 6542 /Length3 0 /Length 7528 >>streamxTZ6L7H9tIww0 0 CKw#RJ %(H  |}k<gs}X y 8 (j+B|xFPo aP( B 0(J$ Iha/<VE?0'(!!; A@ @t `( H$?/ pBqjri` 0;}Ap!0o `k%9 t%~`9 n  ~ An^x. P:@zyA~+1+  W}JP|w.r o zzCh bN$@D@BPLT@60& = 6 APG^@!A$P0`q8`)pg? @? WuMu RAJ11A@G:f?&3!YDw_gWoE*nny u7n w_)8@UGA z@ zP$/57( z]@ zx7o  ~(@n%M|08.p^u~wqD#R GzW/}L$O$II;w@ ~0 uQ/wsMlND O3K r?c:w^=}l07?A9tOi HnOG&aDzd~M Enoj_WN&'Zf-fBp >=@ZQ17^~PY`Lr+4&35VJ =nUe-z1KZ}@;8TXwtlVF>#.eOEBeQ(%u6p5 $7>W9H?icZp*=w{PKa 'jCrnSOM 3zy~R%<UTU` {>*'!s`><< sClSGA!p0suH&R('PY5{p |_6kD[Nj hxnM :8]b G/i[X z |$|zMWW+H>ug9]D4ZtIvxn|0Ba6t1+RW/!--QFy+jQ 0 /7 c~<\'q3dDS]+sG{93zoZ n3 O'mm1Oj _ XdyF;loS`L7$t!Q&Lc2RN=30WrT[Gy dI9 qGs!dhp`t_bYW'rnlT9_6a/D26{XfuIzg#m9}a-;U^-Gfn7f cC&jcYDC.GoB>| ErT)si[~gXn{mN`>XqVYqtlq'[XcG.yi5~q&K yC)]oB_Xu8?+ !czmjl~&I0R6B~!>6zbr gU +XPK rj*hW u4~L\!pavKPvC f'n\Zq#{.%grXM~p1]F/pXa@=TmN(|re{`  5U 9D:QG43 K<$a-?G;Ym;88(4E_{yDIU|`+VCl&SH=.NS152J} N8vyS8 ]-j3h E}y'YsT[ j[Z5-&p9MYv ht5%!l+f=;dT |n4=TU^xj!P3_.vzfi ~n5%p4Z\5gSQ=q=}TUf$}KDE /X~'rJ;5 r\ t-dtz7bj)VvBg>/Y?jWO zaDth'%U2[h;N ;QQ{K3@}ROV rYh QF~zj*+39kdB&([ucEd=cHC :| Yd&> p(~ve.yHo20IZ.Oih.< )]Ji|e~u+MXCeouACS&f#yA \icY]FS& }l#9&f7xu}DIC*% so.QQ2- @9'! ;h[WG_NU>Pjr UN/;6h R h\*0&l?ALRvu`oUKj \ >Bw_0mj-t3&' j/<xO%X )32YxX\F$a Eb5u} dZ|9Ja!cW4'?#;6 Z-7ZqIG)Z~H:l`k ha?!MGY:5X?1m?5hoiQNL7x7~|0#&rLtbD ez2i1sz}Aix8ImVV>5|!xu~Eo 3t0(7*CX{fV'wIc/rGNCp4U] W6GSi<37rjo>Yo$7Z3)1O}*c l PgCbWb%w3Nv{{ 4T9rX|rY3En A]] +:o/n*_z9 rrnCCVgHrg7&S3'Um W `\z dxOBU; ~ gr@g](JK1/Qve li3nqN0;p{)]Cgw:6>*v\ZY)P0TE8!Z(FR8VG[O ewl(+z V;'at$T9!4fIAZ#mD=@F H#{F6}4=k\LA-7<f7{s1U  !D8(irFJQ c G eJDBJc0OY%]7^3x5acChl5R\<\uL3}lgj``$'7> 4 \snZY[!&qy._T$K%p9Y- dN{Y<cL FU?Oc><.a bqf-']o TiOp :=x1Ni|/F`o{;x 4liJ*s2D$gh-9acvrg>[=7'o[Z;slhw3.Q=i( d18~_ |zb5n +SZHnL'WHRA*1^N(t7F *&<4~8^S[g'@K]}7PH&u\FmM:U&5?LR3K\1[~qsmic[i!7{@f~6/P=!|^u)t5-]A^|!@<orK0_9aPv#Gn%1J7p)R L 3L)?|^CzZp 8qiK/6Kfqh~NoR-1yEgKI'=O2E'd xI$YFX{)SG jxWkkcTv Kb'z%Ki1V5G]>HJec2 * e yM6ZTe?y_l50)g$6\nz 1M9 ]5V.~/oM-$eq.) b 2j@E% [k|@.@ ?VL~ 07PC;g0`|'$f /mXfo^{/\=}4t;<YAO I ;HSmzJ!^lVpdL}+V5a2 W? Aw uOt(0;kRwUI>=FSIvh%q+_7>kHeAZY?#T>=myfmYxS;`Id&*75sI! wI{k(}sn0Wv{jx r'b qVY|6LGL(qZ#UL -uI}$BL 2'Z/>T^H l{3Ha ziSY]S*ZIvD~J i>!wT J<xnf7L-\&f[~k{!cIRx^`.T[ &9|Qoo#=P[^7~!P63\f Sd$1GJ+OOCN[rAvmb:S1V lW*_d>x5 X#v-/Z (_VN$K (T-.{r$p+MJ4}j1uX6->PLJJ'+D0D 5AY>CoG1d([*gN3kL)Skv/~-YJA&hb YJSRm U#6bzo7nxq$)Hx~~jI3>o' #o ^ ^uCBw\Oovs|\qDPDdV?M) @Mn_ }(kWg D$DonHb=S#/+Ze7u/_^wS'VUTC#d&r :lk``Z3^ { vft#iIO;[JwHISEL{`QcY VC5 Q`0BP y{.o-wm[dV0Y (Oc_ M9L0XgN.Tk ^1uMxyUe+k 7 tR5)4e]-t5Dr \$Q]eaU4{<M h`N!{[*4.J4+VYd]y :`>:Cn3G u7Q>z=BgJJLL9GJMm/phv: [rk'>i b-;mT ['f DK5mL<_ofREgYwi^ !Lrzh+]#ZjVKWQ j F Cd;^CfS9c8 1B'K-+K X3! W3 XmIOj sS'VZlSVf 6rX\StngS(6p! {gOfhjZ3j9D<7/ :bd!]8k9% eZ/CHJ/WD_KrI+=h t;Ty f0 @H^2|y&^EgH{ w%XcVmIF x|Lbw2:]S {Z{mV1S Seg.\l-) HM!+t&6;AA#TkLUB[|Ud+ e} ^KRV4uVf#^}^P1' 75&|o/DYvq>q=EhG endstreamendobj12 0 obj<< /Filter /FlateDecode /Length1 1419 /Length2 6295 /Length3 0 /Length 7260 >>streamxvTZ-RB/JHQz:(WMZ HB Ei4JGRH7T~Z9{9_52Uq851h(D T30b`8 Ap/o$-x5/8G8B$iy< cC}@1.a^HW 0A DNNF;PBhGNA= W8 V 0^.@?$h{BQfH?)z >hgp6TG x G1c j1 0( DH8 'B=1/uN T1B U7 yy#=~Uphg5 GSGza[n;Y#hg} s4q@)0#=p+Wp7 c1X P<~xo/ 7 :#a8{!A_Wvm9c n.REZwS ^T\(*.B @QF`r% 1 2S(w>> Y_BQHx^}p`oSKq5;#}PPAx}HoM? y p#7Nx4 zM C#50BB ;) BCgoAbh $ D`) G{_ woWZ0 /7l9g0(v[* ~}COE^>gT5'uNN LcXW5S^ : s'#KktNxc+i=OlD(w3u$6sFK[lXH?^|HLi.P @&V(u\]qLU.Hyr&Rr KzC *fi>}!vP]wOr+Npk]ph@PW82xZ3zRL %8HEvs8(w]n5NynS_I\qP}gw4OZ o2:Q0#1e>7S { I>d6/$ 2P*%W/%-[v`F?U:e]Mt GL Q[l-^ oj Gv [[5J1[_-wT['[j#?A Qwf xhLqfc^(o 4<332i!j=YeH'Nt-x`sK|:}stxDh;6gO3Jn\PpU(H&Oqal7/ewp.^;sD5Z![CnjtO)'6-ZjYk$0gC_d4y(fuyc]8X2fzg8M7/}tRKJ[F?w/ 3_w (O7KF$m_ H}<.o7IdoPRD47 PC.$fq#Uz'5N*B- s$0o[ bg tpv xp%^XAtlXr8^_X {_m$+fxMrQQ-Lt}5Cs+}S86;?%Fv^/Q<ytZ+ KkRvk]}n1p] [\ gtR\o 6-]uNSvab0rtD/?`N(|V@OCx>4';( 2 dID 'CNB+QmC:nkZ J^yAiO~m SOTUaYZ}isW_>l+9*W'DEO 1ZuL +0 M>#H.I~L@^ 0X;Dp=_Jae aj=F|>'MOp})q *:W$ JKf:|zFSnh|A?P}vE)ClpD_L92oAV8_#~=Kt { dl) . ~B R_1=hi-VZax1u*.xkHb}G9R!v| p t+u7A-oU'40w^Y@^Z2AtvT':5& yX$3Tq6e.<sMzoN\:Ly wVv['dk<Z^0!=``z[N?h?5)P^lI2h`Nb78 zik2wYu*c;Y JCSHM@uHVkVDu@{Zs!z=l[Dn_ gG}%Y1k=RrV@XbY^mbKmg=5k<1n ]OGIwWn Oi c)N_81M+|eA4FQ }-doJ |F@Iu7g\.qHK*Ye|p_R5>8RqxH<ViA 8 ^:!S|+3dG]REko:>\\ VWhQ=R}cPhuq 9)Dc>I@*Y:} g$a% 8 Yl' i=Al]aV=PW m2w ZBv.Qiq;mb:L&X:{6n]/69^?:8v lT}+)s17-6OOvT++cj;o;F5{$3SMxjr%YT:-3`D/(2 N p s|6@lmD6p$;t\aa/R @/erZI |0U +=#Roq:&%vL]e'[0'F!0]m1.T?(#L1|$NMv|vo| Sa^~cqA<7Vy%KO*zK[ .}[%ga1%bu[g+tND +6RiGOw:Fsy/52Tm(!5A9#@7Vd>C0dgo5Qas1<Amt\B-ZxujpnlrbQ&=r7o T /GCz}bu+Y!r;]z2?5kzuaP]$sWep*uHK#'ok|R(kN1fu%|AF}0s}Y x}~sn:9ymaLMzYJ3t:KRcc-X6X6:/z j6 kbQ7zW8&.jaH )@yMv~Zj9-fY)2^) ['1/#k7\LmKc ci>[1WiqwEx5=US T~B[PV*K98cx80%]d2Z5 hPsmW?>U\2kvMd[Ho9/1$/ CiRV_OzlQd.+l| /:Dm(WYMpO[ ?zZQO8SXsfg :/36}`9'#&W^@2_R6cnh\-vK(e~t}\O*+oM }si PsTus5W]=.o3.M~ N.S S9#>dQa |9/8v\ j=tn7dfW!'3pYR<eFu@l d^4+:2P>3#([\ ?I7s{sq 0'1rw#t 9c 62g^'m/htuv6 a*ZJ5 sUk${1E*Z[iV9'aX&+DE)#9n~+b 'R+T q9U B9]*M)!W[m]f<R$|*\.<D;VRSqDou (:$g}j.<8JGQ~_j{Jxn_+ygK2VIa5*eNza?X#pSe_ {@x0c%?y`IdbVBt)emb!1zl]/Y.l0Md >n-4D5 8O>+F>a/^g$q4 tQ~lW;}}|E![Rob 62-' .6wx~wS#ZyJN3.dAaBwGo'C. A2V#S %/* HoBsPnvK7'B=F {6n7s/.NE m<T9 rn{QJ5k.c2blFyV|'$-7zraLqeB% $ien  'w[l~l j@xm7<E!Rj|Eu .Mg5Bl!'|s %?Q |U|8R :uZM#'mUJWs 4v6S}##&!2e:7Jh cRi+tcPyp3 eF~p5v&>}Ynu:/i|I#tf~Ic<d\5fSVVE(4rVPhw @q!N k Z 2TL54v2M ?JdO^%Wyr&\H`_$G7fN_WpWeW+6pXNoo}#/<hxmwJ~<_6vY )0MJXQIt7~e@J%Fmmau8_[($:$H 4\ iBSJs<ZuIYvXOpgk9v;eG1 chhC=e'D=>r&M  qdL*EROdR5xL]4i6vWMl9mBF-IU V;M! 7n$y%.|Til :}z\t.lgo@eiF+# \h y:#Y K%LEY ;~]n=i>Sh#=k pw=x!)?\w\?Lb(Vb {@L=rku:bOmo%+YPT*5O&YIwb+xBx@$v#R|S1=[P>CkK6|>bO[J'/U8/T^svm<6`\NWy*&g4u@brJSw\OV'| i #g?a^Cl;Al?@Ym*]'4 c  TnlK}yOcK7c7Kk*8C({v`z3cG E GLcSer6T /Udk3<^kpdCqE'oZoXI)T&Az_:b oZN;nK;={^p7|W_.35Z;}]og_BX6e?Rq%so}zzu+*%^\ch1kdXn|%D^u#KQQ^3l' n0 P7uD{&}Hz;R-QeC~UK`> 7;I9;b4b* ] N\jendstreamendobj13 0 obj<< /Filter /FlateDecode /Length1 1371 /Length2 5904 /Length3 0 /Length 6848 >>streamxtT.(0HHw# C0t7R%R !Hw78]7gw}EKGa U@Q< ^>1OMrH.H((4O :@HD_DR vYy*8M =y; E `8@ :w  G q[I tww;60-@EAh &%b\k; wAgHzs@ CVCx{6/f*NC G'0X M5^! E; `70l& P 9\x]`F*>eyGOB sp;5) UKACDl(#aaAQt~ |NkP_5GvPHWsE`j:ZY/  -/+? 2QTR3c227HH \e5OcWn @U pG|B|-)77;;0h]Qh#67P+GQ`6h1y0J /9P- _1 ZCP}< 3~!a{/$id@S}$k apW_(?*C\H~ z@!D <CxPSmeYH6lti[fBRCkU'kAo3|0^3 ?CE6K7]6  XP1XQF~#SXI+(XLc4IlZ|ofwWk20J:*/ :LZ voo8/`;VNYc; EvmA~^q^x$n54X^X d?ybTp.5+R~;la-8 ]R!QYJ myhtgt/((s86JW< g5-{!inq~1!Bl9hlY#? p 1'V=$Z\wo 8kL??1?deN4VyJb]NG8|Qq5@4/Ev^M^Kijfhv< 1-Sy~h(M?IrDc|Lzx`5$Fc72jq5 +{` *1 `\Ri\e/8W*xnl\] Vi8|(?'X2cW%(GnY(TAm'3q2^uk%i#l-__/d 'F 9;SO9eTjr#97YC&bf+-<l6!ao>X@A /bLu}&e2 BUZZ3Kk?` p i~51W;3 q34;=uqq.O<|&gl:+LX:[lxGTB0&% d_gp.d%D*Rj5Ft> $kyy1Dprd}r14+AJ|`@+2_`?IH~JrRUZyqG9P]D^b^j`7% |r: (eJ;PC)?J!~73-gU`G8 <TabvWMb8Ur3}GY92b}$Dzyo/DV-^G^/=8O'5rF\?SH5|ZCkb!'!d4OV): `+~*rE:# xU]I}96qQ 7k=vg B;[X& ?fNiw$`<Ui&ud/^ ~)jgp*4E~G%yapy Mt\j)e+UytOb{\+T<[^?L|50 ~Tr? sVe`'q5CX\E=kV/E9 W 8Z. $o+l@29>&WD<2~ =* AD}pt2G omJ:qydpfJ_M]'bA[s1M_ M[WL~R8`w 1xe=o 2C]fgt{ @ gGf 8JOCHHC#L;[$ igneT+<Y<}Os{!2? lriV-n` )J bJ6Dn y~ 7n A*nD ~38  +L- n[os cn9rg5$N[k ~^4\dRC5Nb'1$MFpm}/g94IZ4gr*NCp&LFGw]:bn qKK$%L MwUrhl%6|e;%2;qo#L 0Fi4)etG>e'_vVvONAI7u+4&[a1[xDW.g~54!A+/c]|xZugycor >^j{Qv<U -=t!C CVj<Dq a^*=dsp+peReC;sLpte-K)Lfgz )7k#u-ueQopvk8.T6$[zaFJSl>%ga?y&p5x[8u#vlTP`Q\: [';~u20#+ K}=;45~]P&lR5'_^K AR)3 50v}fc). EEGgyVPJ^suvq8IW 4=<8JR>3dF u  .Rcz*&#fH0sNhmwtjd'R.vO30Vll0.i i^W5f0p'vJ<^Zm{5* ~HKphK3W/ lc+>-2x6q6mQ!H]=1h'(EY~'t[w >|P?[\/Y @ 8|!Zk7}PBL>SOK_XUIS}952# a4{^5S}g WWdNB7a2l_ gc@e1U69Nyj #'.o<N&Bz%gQ^>8[ V$;-_2*< S9u._8zD/;a+23maW(?ORyfO^ [cHgM'PhF iMk=aK{;wG)BC][Dz=vsj~'PWX[/O a1kC#JReGGKI-k}I7 3hb+V -q~ 3SvI n(/5'U5~Rd?zmUY}5s.1o(JXlP+nvs^i/BR;@|8 }2VT&; #SdkiOZxz rq7p F _V7Gsh .bJmedfT6*;s Br(bWQN=HnSGpSSm[2!&f(5T FR 1^2svC8j%<HdLsO4^w~IiF*Wp>KzXSxsyyNu2`cPJ |Mvfig&ik'kQ6E6EpU (B i /;U8 Rm+ 4T`a?b t7qNm=YMGyG NpF5}N$XvK @~Txr6  < 0%^?NvP :&oer#M@qR#?_R;7.p~Ybz$J}$^:PE~L2]Z Yd~oaG9fcUe98 hXTyJn[$I{|r~.E]Rvw>]!d}S!2> ta$K$8-Kmsf9}-lKt*V ~T<?z/!)9>>h}0e_=xji6j?fQv`>GO<0lNZh.4(u-> ;9 Y&i{OHO8;E;-s3- J6[mG?Is] OFP<|w&^a:h.260<`}c**m\IWrHiJ&TGB '2mmL}<_%zTfJ{tHVg&P.~bjVSRuQR$p 53e&|*]Pm(^RTIY 2]Q'BfKg;/'6y^`E) ~?a3W ~E>L:lpYpm{'*@]''L[z 2n hvZM2mjkF fGKv 4.`oE22kIIICMUUZvk[dO-(miONP%r>NQ uO# q 4I' qSJ<RiZ <S'q4L*9y*S>prt.X Pii+hg| zy|kSZbP/apk5)5Ung&BWX(y)je*=R/_e|%*9{wFP6byy7KJh)${g`xD4F0 Z|XkGhAq@yd%Dn|R]]=nN/[qQgh7f1G ~5 VQzKD0 f QM^<x)= } +>zrVkx b cX83% pH7NJh1vo }Qsi VM|7{U<`#HeqW88*4%hnpwZI9e[?NAQK9k]q!8N*|=V*b&:?3[37 qikh0Jb:'u@^DxcrbX+6Q'F'A7$)Gg$E_n L:oC|y]0-Of*JHW\  BOGpNv c^oZi+7^ zGiNn< ssVXjY*{ ]z&m:[d9;9ER$^HL@Wop; |!+xR6na7j(nT)(MygxE&]N9>e}[uEpn2JNQwJ%%BM43k!%_{ ~!kF=jYW=u^M0@240dW3_\ f\34ik?2Iendstreamendobj14 0 obj<< /Annots [ 230 0 R 231 0 R 232 0 R 233 0 R 235 0 R 234 0 R 81 0 R ] /Contents 15 0 R /MediaBox [ 0 0 792 612 ] /Parent 60 0 R /Resources 83 0 R /Type /Page >>endobj15 0 obj<< /Filter /FlateDecode /Length 2720 >>streamxZ[w~JX;!&c;C6%z}$\f g[87/ f90w ; ?NP||vxD~HT$69e|'Sk;K1?\r]c@ dE6f/OMAT%l5c6JvR={ln<Xp{`9#MtS*WL3%!l:oySuC#@c6VNUkHaUAIcej8VJ_CuhAX y@[)o:|q ? fim j-)4jRYOR}][}p#AB)HIk8h~RZi+K_.Wm9m JBs8BkEqhx0@RN R ` k`)KRb=BD^hV:!q cKB 9GwCFs%B -(td!9 m&~an6mFtDr7b3#'<CZb|PqiY\+{ )GEY%u4 c.QL/i Md\'WWZojWaOXZ' p5 3- z\f(Bhpc :[E(0sR2NN=:7KO.1K(qyN0D? >iJ\U?Ip%PLpkEQtCt6F|wD! m!no8EZx CDyphHPi{IDj*c5R;`'%i)n5k[V5 ZqlchP9Ygzs '% be@9~0gg3umkoC2ocUm@!FW] [: Lz9?^3 *Uu@IHK]%XIuA[ fs3a<>}tmii !n*!F~8) dpE3W* FYL@z`\PjjJkU*qlZC$XV@~ Md1<d4Xx -TZ;fR 2<Ou b{v*lD5XO- Yq9y*ij-^%+o?\A P~wC j/](M*-| -c_L!8 :e~'mcun@':m6^l y<b[J9 Q4>q7|9`AsgSp]0DZFh'6OE iVdA[N*b}Kt]:AbQ3 -y6z[aKWTK.prq +bOZQiQlGsT$0gQ^0c0CN3UBTNR]+{AZ{wT+=eG@ tS %@oS} 3 \I s '}P?t)211W!wf9RN9vS*@&-ANUt.aq.AhUc3oK|@h*Zd@ccq wCot:}Z\LfAM |:-Y(G=?'U\mn>^\5CN2`4?_^K^#Q:8DmNKBNZ\ 0MMQpzU1t z2hk a$# ]= >EhvL `yo6)Hy=kq6Q?9kU!Z$D3_ WJZMKNT'Q^ X?j]%If26Ns UQM*J)wR3+oS|\w );lbVW$b7e+o 2#oYO#*=+7/Rq Btx]'wsPKwq # B0V6xv6\R^}ElqMH;FR?RU. 5^} h =FvKAgqTAF`Y_ m[?_Q7/'>H; E`f; nj\DKNt}'|BNmiU- W_}/eKoJRo/TFG3W(qS m?Wg#_&efB;}wr(T_Q^~P l<']w3!?endstreamendobj16 0 obj<< /Annots [ 82 0 R 91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R 98 0 R ] /Contents 17 0 R /MediaBox [ 0 0 792 612 ] /Parent 60 0 R /Resources 99 0 R /Type /Page >>endobj17 0 obj<< /Filter /FlateDecode /Length 2150 >>streamxY]s6}[H$3N:vJ%cHQ@B9V=|7 E= EC'3c^Sy6A gg'|Q?TA rY &ILu^\?/j3zuKzCh qz6O^rORLuVvY%}V[F|Yj|#lekwgC(usd>#nUY5rC3;lm.YflUizvbgHY\r_^6_qYdbe&`k8:b;QLW^/sH z#Ba/{9%tJ}iPIGr7Yn@ az<b|Y tQ5meCJbi0yp?K 52BAX8i/Q*04@L2)(<ee1<GTLC94:j Z7X`>R'LbRX1CEF ueg&z`L UrL c}s]cGCGx jry=E$'<#c*a V< +Wzoov7Rh|k6Bb~EZqn@7Dj=>]U Vj]F.2n*q]mLw eep{3 w0gEE(xJmZ$oRJ89gEygFTlG[WD01 0:) /G r}Wb3/ETlh.ig^raWJHZO(4(Zz.ww.#TS%m*)nqk|D y2&[[L+]h T0 pC0qHGX^BWGF< 9O;=hB4B8rs`yhU mhG ns}V[3i j$4.g q!dnRP Xzv831tu gxp4r $-J'[g O#)S^>.]\igZy!? C1yYc<( :> 77+.8 O;FuL<&u\pD0@/%> Y;T'2:T\ms0IPd@]b[;rgUZ^lVn!QzN |t=vL<KN/x5 S ]rwT bt#@T*q)F.Y%c*WJmFwU*XIB7=1?0i l{wYw.xN;]RlumUE+ZpJb jqP- _]J5b}#JQ`R(}:5u;LZ/HmC& olNIU~gn`KfGu9 wOX`I7 4M weA(EA8 { }J]N\P2z\+zxXG#?s& p||~(Se'2\1IT7Fi%6A|D)//;J+ V(SSs}+ bB{FL{/v\>xh~h?K;gq58.*B3P$ch ` <6gGc.endstreamendobj18 0 obj<< /Filter /FlateDecode /Length1 1548 /Length2 7821 /Length3 0 /Length 8855 >>streamxT]6RCwt0 0 3Ctt]RJHw >>k}fkk9> :u-6I 9DbdUT^q@ 7;EA1BH(A_ iPwD@\@DB rZT0AwC@Qw`38YHCP0BYCVZ00rL(\ dd!Y.P5@ !-TAZcch[C:`(3A][ J8IVks+w 0f9A P;@MN b ~AvH]<( :?$H 9~fY i=] _ksqYB aq::A^3fAx# /8 ky A ''F!VPd3Cw wy2S??CVAZ)%sxqsxN W0dkvKLM3 0GF@^ Yw9';?L?~=/tPwcA]Pqt4';O;)uXCQ`?e]A 0$snwN@Cq1nY0q@/nL- CzXxp8pX |;wzpw2Y@ 8P?u vB mq&``IJA3}.\ TbVFRdMYJ5m {q T ~D{(E#DS'jbx}@_1I ]JP&G{E}rQhj3%sXr~{A(bY *3 SI< Il[t3'U X l1[[Fpt?&J%#s3i1N)P/sKJnSC WNJI u0eht Bo|QHy}] S @uF }bn2 By' <7[Z Ig<Ss]rr|TFH/x.+wJy-GE[aJ;BiJZf_ t |#.SxwV|;&Yo|y%uc= -/5/BVI<b{4T36:Ir!+yrAS/`ztQBZS[[=)*.uzhQe}Y l^!bsv-\T?( x Lgt$6y]oU@iX4k7lGw;{lMU  mxr 3q<p<\h6HW{&$ASmYMcSp@}<R[Hf./8w_M{SKL/hq W05=lel L4k'? :JP=ypWu9X)efL#I jt V9#_]4 *1C8lQhw2`zdOoLy7uN:dF0noZ]<!atv^LJvDlG%udQ/&qAMGB`{g> 6x L-'$.5EF6hHBi{*p |5XI}{# -`dAV Nl\^t ` =+Uo ]}P=-g96} OOkn!z ![+ >&SPTlv1Z<9 @|rv.6a4Yit4av7+KmG3{Q'Y@M5T|\^J SO9BR!]7v;b.s[K]$|V1hh 7mr?vdR` WHYkUV2}XxC 7>kFl22<{A|<+>wsiL-Glc91 lgmdGm|;I8I[]h+P8 u@tn3a@nAOcZ@q{jcx :A Cm}s3a7nMWUQp1m`W~ePs^gSSaVD1SwO %m-(0}2$i%( 3C~aQcQYVkmv<f*Zj7^ b$?OE5\^<Jg}cJ. SDUlMKt)Bo!63d6F<2{><R6}g1i^qi!y kb1_SoB*-Vqhq 1y7;&e{Pi1vum(f!|M*vZ=OOm*qsM9!H{Y] C~]a^7=%Ow=:\)@]2I61E5 f7p^Q #6FJfEi{<`<->g]'0FWdCSGM!DZy:`~N^nWeV7 k[vq0%;dWMOCgF O6E/]#p*0he 0J n7'F# n- I+s](Ev g t#|b<S*x6m>5dv%- ]~R)3|6q^k?*cQ + t<^OhQ~M=[o:IzBZOyOa >6n3!|'h}not>0\QM I-MnG1lJ}6]Q/s\Q@N^g r1&=s<U^\(c D]9ek/ I`3`TNS>i;T &_@kebrc5Wiv@W[k! uAO^CJ<0)b-OkI M<&W;J} cSG=+=ht2&'wl |'m Vn8ta;cW9i]f/~_o.5!03Foe? cW5aFmHf1MP?%=yk[:C-nw7Qw^_w>9`V<Yr: l1R oj e yPFi!N 3Pi'k>to-p8'mVfJy _MQio{3sEdc$wLyBYLb%)Qw^zl*H3vG R8dzR\HkCX/Iv;sFfN@4Ls=&: SkFw:<!FO _e/@wS+p6WTIIVnN 89[l( 1A q3 CG]?CM_UF. |)yb3 aKStu+2# ;=DbRglUZI? w/ ij W o?.jH>J)\JT~69}K=_E51?.-DxgXT(8;'R-r$X^ _J4_Uf<?f>rdS88>n#j~whv{b+kYn<Xc@;A+_i\e cluV$;]5h.`{# mlW mdtpnjWEddR*lG2xwS(fU=!TjY4s VxW5_>u=Oa|z$~_7)Yc$ 7 j G.2^ E 2K< Mse2mMQPf(m9OMI {k*)Q1V< AsGp[ t8ce#q:]p$;|s 1\n&h>m(mN(j?/xjq e: W6;w}9NV$ \L1`9o#&YWlm+vyQGG  [M95+v% vGT7r=NF]ZGn`M\iEYGZGF^:2>}i; bK6wBOxr*@BYQ<Ki:V A^l{xY!/iE aOy.@3U H~H|I|By|d^DOR&x~jQawJ$MTBukz0tS6eRjW?;#E7u>ES ZX_Ceu&?z^Xpm 3+PlfcW?`\shE4 8F=wO8<~O_LC}zo>Q!V9M/z y%a 2zTo;6Tg^x1(QSNKx|G x\ _J<V;mPP!EynTzMkxHv.pY3~'[X3F8k=Rih^m}YRa[ qX}}<jEq mUgGk3Dz(Yq@N]nERDs8 - m A[At9wOLqE ^vR 7Y SZfh~\|<|8 UU?7\S3 aWswu]':H]g%$Oj uc5<LRnjtY/D:kX! :RbVEbJ H\r0RxCs< 9'yCrG7s2Z^qa EO&=bq<8T@csk&C=6l&< =\!My>i1&ihtm2]?%O6 #U/Ph<Xho oGwAk|hQKcP#nT[ } ^M:^5^L y36wO!mX[g1NkjBI' NF-->)|9M5r8  1.1+F 8~@ ;3/u&\8XY#rV+aemV4q#MQF3]]/n7D)y7mbe=C'cp#{Yxu' yvE' OGjD`Boh5;x<x T8 v0f2 &A59'[o 6 E6ge}.KL+F/1jbW)C6[| .&B&ufP/S \83F-ep;R < Z ozbK}5[do`;8|E5q{y~=7V c. #Y'28[l$La 1W\L e 67O$DTxG%cN2TRf+' z]'Uu5Da@iWtvjJB^{[G/]+bw[CoWbM*_T;&eBgGG*`CQS=mKhBgJr:bX`?-:~O `N`B*dHK>(u$_OZOazgU+t |GJ0 Uw\IyYT& O4<sMsW $u;+g:dRBh1o? 8GC7hdN'#( 2p]Q U4?U_`Op!u(n>{ o#oA@lK@895;vmK+kN%j^X%L%Ed6lsYu~ 2 4 c0.S_WmN)8*g./* }F-9sR|+=bX5p+jA 7lg|IGM/j>nVfht?$gcD+*<58-61@L&~ JT~yQj>:S~'|}D;fh/}1H&5W8je>'A6=fI:{*V6 oEb!!O8Ou};>jTOs8*!`{{}nO+Pf//Nf/`Y$i6k)yGIdES>4C#21;A=b.Gx1hId'QU OfW-sp)6`D}<f}~_ QsBT c^{2QaD}={u]-Qi}&xE F>v>*[]BY?VBT`q G_'4fIL =8W>eP'7N3e)}P8~|P=::O}P3 &kVD\:)~Xex=lYGT^q9p-jJ=K$w-N WjrB-%38x9a]tu<^bk&^? 6%Si^N2=i$Op I~ P-\} m} N2GkQyI*z:~jbw'q)!g-c+V$wCNF:J$ g_GyF^eA-6c& x>yk{ E?0VarkXiQm`4$L_'MD/t <\.X5s55t0; w voX*nG!;s8{AAN\mwc & 6;Qy& v9cgEqoNIJCDhehr;;>TgLR9xqY 1 ;Vs=eEqV=l}qpb+jE%u /Ui] J0>c7/(6P +'ET($Sh5@y!OIBJendstreamendobj19 0 obj<< /Filter /FlateDecode /Length1 1534 /Length2 8214 /Length3 0 /Length 9234 >>streamxtT.-#!0C! tJI ) ?}uy;{*anoXl )eey>': f [NvrCa 6=MaOvP-98 2wHBl{(N bi{_G# c;A@P)lt#ia Qsdgwssc3sfwebA`V3l]0@Welt-+_rM{ $P'9 t9@S^ e l@ gSZ ` 064u7u5= +0}*AN33w<uYj.eog'qdmnPjnsvm(/2K0 ; +< | OE} ?t/gSW0?:0`3%Ob_iNw[' {2|=(ZW')ibX9y8@ t(j< +6+c r03kSH Q3 jS;Ou=-@T*!.v>-@n6gY;\YEW;C~-O^ {/TO3N do{8yxNN OB</0=jX; ?? ' n`>7|; )?S(@^; PG 'nS'8`;>?cl wc F>Jd 7BLkff(e;U$ >~=DU}J%v~*z .G7Y`S e-4pj{ eT:>Wg(Qk6yIb4KQ@(q V|h` +_5`6+#4@!Z}UL_5I>=$!-<n? :J^ /j HQb*??}AQe[^?<~Y>;T9L_tD<m 7Zbu>H$lMHFXC%rZQ350lOjXThOX{uc}IPq &Y'#X?KC;vJD?;Og |~9Ho1^R PQ/8jP-Q|%^5cN ]z|Tj z WE;eNUo@DCK5X+Fd}ySyyA/&gO|^.wP3_**myh[wLfwob/Q ])8n)JqzLCF t>0 {rJ# rV.:fe9wv2Cd)T=9)g6InS'E>?04<Qp lq~X_y)m cE1mBv[r+kniQ{r( !Rl A  gI o p3WfM2u]G kqSs&vJ?7E}BU#}]e'FQ@aOm @G]C\`xH.\#(t JEWu_v(u`s>8hx li6BhtzBg*su^eyme{} c>N_fa~'coWr: ktY~Om^l:i\$@5gC{{Yh9u9U1 ^9vG d5?WYa\N1bUq qPt#J:}3Fs7f]@ZIq0[(x zl;0mM&Jwma8 YU$S ! sEYU^Y_ Z ?U MyH3FrsJb#O9!\Q>m2$a3c[12IL=3Q kaBpJNvDI+s$h cbmD:J@XH~e-QniGKVL+U]b>!b@O%? s\@g\bjN_M#TtQtX3 FXc4 ;h_c;]Q757(qQ E#2J.5d\_vu y<E%VT$_++*6}z!G.DT Dg]%f8i#cI8 P*%&M qJl_nq3S_MQ~U8@y)a5{ctyKt+61b{[s|Q ()n9Xtw aq}zE8(q}uBFqewA f`.p`8M<?|F95 dHB<QzO\&\<oCunR*1[p 863 U^ hTvut hmlW&!$7(o@ $A[}o\5:N X@yY6ZQ +kVgX5HcXyk5;B{ 'BRKsXF?hr|hXBE;E 9V'RK@*)/ ;2{d+ [@{63}E_-t/; r|;c>}=aFdE'yf 1m49(@y8]2mA2p5.:D|o qub9M{c]pTwk~51Nh8:wqFgH/F{KX p2Q}P#;=lkBwY7>4~hhHKd/ _8<{$JnbnV7{sjiuIJ]y X=aZ~ 3Q`Zq:gKD4 '^tHVCfCqh # WF&7p[>e q= uN1nmfuxNiXK]TT s'iOzOU0wW<3| x W6)HVG8'#4-)?q!aWz ?RNiuE\ST7<m`Q }{jZ> -<_v<3cG)mr #pHYO^g=E(*ud3MsC><vmVS;@e&/shLjht=P-o(8A[)(>e 3U?F~hA%^?!6 1B2b^M fb9 8 $/;/e'j%fz>UQGM925J|p*YETcDB~)qV= {EmKyJU kC%_\5>$G)e& ?hhV1&+Gc[$#f Q2=0U*I3 i D~V{6C \< e}I3z8VX]4V/|H7j[Y T'Z}*R<kco c6O y'N<eR=#-+U2[ o$H$4 e3rF5LxmCohJ$jv*f#H 5][. Sw[y5dQQ9=N%6WOMn{\N} P ;CPe]b^@`1scAIrXB}NjWoozPg-0G01#;r(_mUeb *fZ~])(t2c Y.L[0FR x>Jvjl._L=<xyzL K7`Jm~qU|y}\W#m {Jpr`HR-p`;&ZnXw@bz6r ZtI'*PEI)|\!%`k.%[OAim-?{#\R@~DO-rE|b4$t+Q3D:YUW7 v447hQX]qE xRDFX['M^CWv`_c{&>\T]=\SHry2<c:/C2>Qja4^NpC0Yc{&Fa]YI I_SMc3C?9FXx*jpr8_ 0G%L+n#T} +Qnk2-9=?Kypp1_ n>SHIcQ;p}]QY|.t7P9VY]9VmaulA$S;]Y1?<%#&vUj9'\6 %q }ZzQW~XVQUT#`b#A9\dQHT N9*a2M|P2JtLbRu'/g_/@c)~&1{|KBAPC{xd jlzn++<9Q%\ rAFF ms7xX'&) =n`8q+jkTB0EcJ8v8HL?y 1]]~$H2 dN y)>Jp?s#Z9i$~mf)t_1jPN4~Ks~rvPa:8t? &Trd $B]9/eJ 6^$ 5:$}x`(Oz(U dz ^D;P$D!jHJFrmI:q18W9gU]x[i_^HK+]5^-3 vCJH!3BxZ9lUeSBNC{{C8Tm~W8v O KHf^;5$:$%ep $=A o~IM MF8-MVoSSnsy`#M|nCO|19/b$+1_d!A=QE1izxuGGmf)4mx<!;-Mn.Qug]= ish*U+)`u6x.EXcY Tsk]{>=q{AG=8:}SP JY<~ (iQiWRo#[m\u[n'~[ e ?YlzR_m_3Tk ~SBy 33E1dGsSF\`&`o1E!Ht(9BaShq9t)s5S)^:6]&C<R/ffW8x% 4 oXxv( *`y%_w1Wj{ Zay}gz`)1_PkT Mfuu3 G8+G> GV}4HMDqRqizrTZ<*[ PB!R^<KwB$uKCrm~ f)o3t05{ j9OkDDh[x? XDIw4KjvwB ~CzcNGuKMUA e[F*W{mn'?b-~-dt8mQe=>taZr)*R/+J7{0'<dRo7h3S~t DGPS-m_?Y.in56%e1t3_!uLC[IG3M18%nR[4-@fb mKEYo3o[ CrzJ.b1eq-dqX;>[4WPi3L2lY7/wctU~|-M2 tCq/] %T}c8hO7<! ;*8C$O9<%;g d8(&rG~AH[ TkHO+8i 61sSy.KdE\n pv3-8Fw &f)@-`yiW2B Kz>xA/r2XO2QZ{kT>$ ` 'Uwj'@5_*xN pQ?kR./(%<9>ysq8[\ v4WB$zZ pd7z?:U(0!@^u>xr1h\AKr$}{F9s;{EVA[)  dRKz=]la<Ar3^ qO.G' o-C3)$=&'%6~ ['+|%51?:qb::uV _3Yy1=m$]e'G1R+zJ2z\RA)G!glu[e N7LkFx ZBnD) [@rizPE K1T%CTwc[ou [gHv)Gr1jxu^( qU-&?fF%7j|PRqKGj=H ?k x >\JGp* 7>7mq}H KnYXpe) NP}%4OB(8Lfd +Y;XH*A=2q)d?dO;F=F}d&W m;LfDZgO&p9I QkK?@Iz6~e?sZmt@'@-c| X<l}dNY`/z lju!% p| 6+{x}m|}gWZe{ Pz*b{GL1HgWKN% ?dTaNb*4rI62 _Uz e\j7KRn2 Z5qv+Z\$cvKz?WW<fJn 2OYi2^]rZ>V>a1~D@ WFd R/?N}5M}3d]ji=_~{`wb{!Z3#P |F5@rwNspw`sTB^U5pQw_[PAE p Mkrx8ELkL7i7/FJ: &$<{y064Y.lP7XW}/X@&aIYiu*@S;%lQdPoZf A#xpHQMx(M> 4h +mRKNED]xYUH.N9pU 4a.[ucIQ!i8#|_+foA9m9.ggNeDD;tL'W#L A~'3OnP/ )`|c49; `~5[gEvji1R.$1 7k BdMsAendstreamendobj20 0 obj<< /Filter /FlateDecode /Length1 1462 /Length2 7298 /Length3 0 /Length 8289 >>streamxtT6!HHw]Hww 00-)! 4!- R {{k}qQGGnV<@^~q //jAB8F`y@;;M8 @aq8??@__p8@h0<qpD]#y F@lA0&vm!`?BpH:.|| g7^8A!t W-3Oe8G \ n!;<av`r@ c!W 3yC`{ VEz! @0_  @A6w3du*qAAJ0;y3tk7>=a ] aWw_&w ]`/[G_]_].p]`= `TSv[$ x^vpoWQ6Surrp//#~?dwAJ?|Uapl=_ g- kIn/o{_Q7wBJPo5o9C y51j UEAw!nJ/i-p_[:p7gs7U0[7$!/n^I w.p|`W!A= e~?7#dnF]Y`gzn+Tt^g}(kN iD%WzV9Ndf}w>VhHmwe735L5#@f()Gj:$ ^ :g'u7*qXcdDaq xg2%p- /5pkb2C?! aJV-(Y0ewK k\~eYK#B0iU4ZE +>7;}p 3u oY:<j;NiZO yx]F1rJJp(L%5p%L P OKcDPO'!!Z6S 9r[JTkBy4WY *OFY<vnTf/3U#!vjrZRgIntqP)b@$4'7Tehg6{r uq/WZ^y>VU`e/T&7dJ} fs/X7f{ohs}P'2B=HC'W />_0L/cO*5/bO_(&HtZd\fQ@zVeQA:p{xJUW/ ]Xw (5HL J7D?V 9cLanEcJT% *0W- TbLwT!Q}E0+q[v'Ti+M:x2) <dJnXJfRo%9W]L/: d.} y>MZX$y ?cQ/ Gqs< uw7o Q0 oUeU#7A y0Y6PqEaMHWrve_ +Hr r}$H eWSu9u^_}Afr8t QF):.Ky([(wXTl/m*|R 4K:(}S#4rl+<X(ol! Y&]bOgsFK|}ZL+UN/GL=FV YwkG^2e'E@c Vw%L >T VQ^a(LHgg}Ey6 5&+G 5mbk 3m [sLxxe~+k K7;;rO3:9Fr|H3e2}- S&0%D&h(zSD5+4@u?&h1mB3pPIve%@Q:dxY+MjK99iv=o\z3M -(ajS*23473 z n_Q)Y'wYHV&FD?t+ tnO<B/p_ &P  .CcXg`x+{aAjE . =WZwqE&wKP|q?vp TN@(> q6vah}n{xCcK2LJKJ96?_'|2~:f|-g* O X=R/$Y>u{Ih_/>ACA17 8CKS-IvfFPS9T^~!+K#<)p+4mt}}zxfx=%?X pCEmI&##R0%{dqe u/+x;k(OJ%-Y] LMH_5H V-bEElc9/X>0DFLe51Yl[h w;;ic)>#8l/ n&zJ^CR7 5^F'53D#LO}(Sx e'NuM b;BQZcQG%ZJ S1ZQoQ% nJ~&^-r5EIvyIJRVLF9O^:[Rso+nR\ce($8iDPLGlRlMz o1c|!`me }tK:06GEP 1}*]m1u&Y$_.}iFxb@~e8g5.W:k(H1=$3u7UN>(>23j{|s0 2N^U#j+3H:d[MNo1/`t8xPI}lVk~n [LY^ibq$Tmf)UWY=|f {5 7A{I8(5K Y+#:Wj/n'4R \Fyyh_[^@}~Kk;46I $>Un]v$rvxz0[U! 1}t2ncwItfu.m*$0 -VUE g:^T_UK*O0 >8_V`-1<&iH 5] uQE )e^:Y D-RC0ZCONO*{4CJH]QI^4s[a_~}G6xmB# M~j~Yv`8)Lhc6Ij)KNZ u M $?W.p mcHzN]8^qQSp+q_5=J'mR! _$fu]^u|j PS26 jL:B)8 _ }-y:zp/`ZWPp:58}vj\dq{ dW(cXcYT[? M> G u5 My#nABM Sa z{OPG%/pP'Hf*8E!y%lI OTT =M)vH%W0Kny YSI]UEWaKhJ~C% PzFkjTYy *enZ? &e:H~f3y3|_p19mm*rQ2Q&1ckzXKIVnFO*X/.j%V=r1L/&ewJ k{z(TFTZ C*h7F8Dc :Z A<UKW9':m_v}_b*V<r~nQ=mA (y;k;PwK]|eqOa V`otJFn\1J:x#;|B2TX <ZP}V-)bY Vk SI79%AV'UdB\{u;)4OC(Es L(tVcY[.dvf'/f f)gJ` &}# ea'} ) O%J0=w\e e-AKGw)+@$ ?$\i68 sSO%0P/y:&jyEvySHmrxWb[HBb8h|]j&>1|TtZQ+e ~e9#L/{5 m^y`Oym z9>#P(2?;6k1^qW@|_}!cpan-.dmN>X9WB-0O p&wM>#J#$&h\Mh=M?*Ty36yuU Jmw 1qXDj+8UPX&+W!\OOymmb&?GWnrL5Q}L26/2cJ_E4GuZvKwFX3OrY=L3Rk>|}S:etPHYc!&YM%_}kuSTN 3RP30-))'NIcG5He_JC ;yDTEAl=5:QLM uJggcIt-~zgx*c3t{l$_0 3;#I}N0Znz#f~Vk hfC-BvHQEnai=)}M[&K?*)9N}0@y_?4W$GQqki;=ljS;1]PJjA7f7IU!0 V`H;5+5VK|w k_p}M) :?Dg b|(+KO>21%;'sd]q x< eqEVt#6/fG>n~a:4IM t<J0`W7tn1vw2 8&+o)Wh{}T 6h!>> Unha8g3K{ZsrBb! Pc3':?8l|k_)2bxboqE$Yj1M}$ ()v4|8<NTa >AuT#j`u yurbeK_UtDZ)*L{ybnc>K@mgKw\Z%>;>D)^Rsgbo^H]p_j3+izk!S9(!RB /MQ{'}bbyT3^7/~tmekd vo$8 GX_pK+5*QGSM4<N 'rO1q zmD9MhYBJJ~>xxJc6@_unjJ&2864}jzy .y{Z ?$-^f&Lf%SLI# -s?S}LGB3o9\:b<d1(410Xj 8@?9JtPihe]F68;(Sw7FhOB{.\ixm7 }|7???X| {eFOG>k&7ubsozyvBO-Ke^sWN)W 3cY{a[0V0*J8zMv={a &Let~~pLw`\MeiRt|g<f4 [>J InUUBXa= V^]d5}dQ4aOL=*@0UA''@)ai'37 r-+j;Tn;Q TDP:tg })9pR@?l%6 5kfj;0t5tYZDllW#YPXVJUb;L17Z; J~-+ s -0LO V%7):Q(5v{GY )ya]q $sK?_D fj u6e8E(p32= kLnU0>[^ 9bno[eWG:F cxlc9>C$5.j{)a7\v8-KEyauRH-3d31Jb!h [{@ b<Ya\:/ m+3kkFn$_1 RlybQXP*=h2HO+_f|\60dJBWD\zvKtSuT5{o7OkY3l2 $*k R$lO Z)ka p035y`h lO '5g8;]L~cJBfZ2 Axr=#pwm $ElrzBrWZ&( GG|N& y]M }n?hY u4+zg<Ht\<tp^S nh2~%J-LL]G4wn ^jwt=#Fyx+c__d{jAtesi|sHKIt$w| endstreamendobj21 0 obj<< /Filter /FlateDecode /Length1 1425 /Length2 6395 /Length3 0 /Length 7373 >>streamxxT6J @B$t^&] ^_xZVg=0smJp(7@ Xn & y7) QDM8  @?(7&P4yjpwv88Q`qDE v @vA H/'   A:d Oi<xG/> i(!P.0;;@_UEp|<|W wqyC`{ VAz! l`v6P oaS(lPr<WYf'wq_)@ {i3 {e*yVUAAx H PTHH~{ ym`mjuQe!`/ @} Bl`_kT ^3 J~|Pn1)e{|EB@ @XX8:6?y* +]9 ?ciQ-ts z?OBv@) M8j`M55`;[U6i9/ Pxt H_ 75oP G@~0(/ l!9nJM` s_Enk6nn6x^V_>T~#Q.T{xm!gT @/1;5(sG5J f Pm4#XK Q HO/} 5'YU>J- < 2DS]; ~LovNZ%9L#64cK6|Qx| p3 ces;v22/#Me?]P}^5 CN_oqzwPe8)cPR?ybZ#UN\5%uZxTA_kb{|=gpcZl U3Tf V @1)X ?5%bXn?JH}%'w 7|- f!QbtZv zU/!vm+|@G>`*xSQY i?DFtv)H(&ZXl1!A_J7I Q'Ye/?z^G-65Hndbai3< qgy&OQ)VfngKR:< Tg-V4 #24h;mqo8gv!x-r^GS9}0QJ@VQ_LH3630 4G5g]3M$WG_H[jhy}@EJ?<th }w <0~Jix$4~zDGH^es\%kl`Npy~e@r\ ?~5e5<@]R1(h '~ e? Gsw*M \d: {aQFR^=0z/ HnS2e #9KH[=;XW*bvxa.D&vU2~6Z %o$ 1{%Iw0H-H=[-0gE9CO>u3GWpJQn?PQ}X[{%zym\i3;B G}@jh: `-w}Y~Y&|L:lqj< 119hJJ/'r{~C*%j% Z Fu#B9B^6&YpC |^oF[(8.Jff_Ex/T[z#cIQ ?e yY[rBfT}E|rc&'0S X{W[S`O1'$FD3kh{KF@sAL[hQxBr$ LU62R ^4Y;7e QWjir`CG\ZeBFFC:mN B?#=JkE:h..>I[u&WIvVHv; x%GY^%q&mD(vHOgyYgG8[Evl;i?XGu.P U=) {w: : P)pzq4<;w(/ p5L-6iXyRtNK 9&){iHXq}Y-9mn%}c@t=VQmK|^c*|~= r=K(IQ}|;b9q:dR/#8LxYl4m)Z5T8Xg-j_2/[pM@1{C* 9I'~Qw s}_*6DS?j:_xYajIv-};Q3rof { wy:x@!Sa > fUtIC:9m]oLdA~*$p]K Q=g-wKt1}ncNU^N-<F.lg~V*h >hO$M{|1yA1|-o1p} #9_[:E?R4R ?UugIJ3 bk_(.dPQ = b275wq$tAo x 7 6h +*T>oF5nN=P{<kRH]%Ttzk.D$W*% C7)Q0^!$hgYT[=HyhM8/y+0clCw:NzQaY {m)$ Kj#1&.odW~hi OF< =%VB G*{I?~A`iYZm^R!`AR/g%HMI6z|YI iu#; PK)GotHTI4b*+A/2dK+/?};v4Dnqq=v4}Da  q_<:]mK{m5?b)O;.7Ni\PLUd%K>|oHysw'JO]fny][U%=+).o2PBLF*[/D>:SN'r'I)*m);DGjDB79ZDpPj^4l4MSbaeOrZ']dV \6I_tOPW3W l4ue@/m|V\w|7CtE}Z~ev[]SJ[Sv)9 #K@IjAJEa ~;MK_$AsT$<Fs gfggfUG *VyL4 /]U/u720mKy]O5H~4!iu;-K %E=G\b3+x <<FQ'S@;ct1/t Gis~JC*k4%m9@VW\iKfJQ#c'# (N#FcW.{qw&O3C+]r`VrcX1dpL7_el%xP5x!.QiHhk}yzShx8WEiXTXzwp}T;!j@z|sCv GEeS:[V~&~=K*Gx/J?( QK c{O7(IwE`+8>3kT 92YJKc7v_(syi } ]MXENNio2cbTd$ awMV1$FK1Fx5(0-$INDI{ \xfIu5\^1?BIfF} >ot`ZOMh :>V+$dSB?ZPR1NULH}Cl/x?3{^ i $9*0Z*zMR5pt!8LY`O2A^!V0s|Dz _u|}g4/k;UX KN%lQ^]aa.<1*p:(3ZN7pn7{*Ig 3 kkWId>Wt**$1xf9gbSUZa]!<'95GDfuC%? X =5i9*mIw!SfGA}N.fE_+LB SwI5/sG| |HC-mfjG.(\si#kq 7^7OqEv TMLo<=:/ztDW+;$E9;.K)wO6 G3J |k!u?(.oOf-80Wz}du z=5 bN ~>.L=$mWyXNM$ZmL!fj6~+$|vuXH|(sYuXT>@<~p*hT ^TRqz0?`F> gzc.(Lt%[% kQSDkH%WBIdu-bc'B\ -N8s? O1bPtmSkE\R[pIg-j<J(5>d>(^]Iv 'Y?-?A RU!J4y ^.d 8-8IlQL}SbH_5&Q/KUf`0z4r!SRVwkZN7[;W\-fU^_<WLw*kcSfw/6 2 x}HV5nvdm |<u!2w}1|d{d|$zKu EI]%Vmzll6\Bx?7H[V rtWa*]>|9ZSF 9`]ew+7)83}gJ>l0Dz9'f3}*f 7dzO+~~h'YQK @j{0B8;^8IgQm[j}<s@b3 Ru s- G`#IIMJ8)wk$ D_LD-/Co& sjh58R*LYfgHv$w>;pHV6#}= L`anE'DR.) t8Ts^l:V&:E4|ve[6:ML}4f@0o\%29Ktx-oZ/g[N'Hx <9[Bv-vJ  3SE=#RGz5] 96j#dB]ko8e (rt G;(Dk u-j%kgJHWTqc.ckx_(u`cOGfVVN Us_H%`A6I1km+\p}7x&Ti&ET]Io\$AbW#ZAqd+bwu}^)e9}CNM& e4 gm8sHJrcf[+e\^T/pnxx;4D ?q_pp0g g1*zA];L . } 4)^UXw]Mk3 ;R4U4:a7-5}HU_L7-MC}[\/&} *@42.i:wQ>vRcC(apX8Xs2OkQ$Jd?&<=uu1y o86R5Yb] T}ywUN z!O()3}|l^= OwPP680iA +Mj 'Tendstreamendobj22 0 obj<< /Filter /FlateDecode /Length1 725 /Length2 31503 /Length3 0 /Length 31986 >>streamxlspf= L8;N&msb'wlmm[syOV]dDb6N*v@FZF:.'Lhdnk#b@;# lk`nj47P2066wZx\\\\ )RNf@ !)' VFs##`b016'Gq:8C +(&/Wd$)qr'hhNkYeF c22@SsX&icb `ll? GC*1lg++9k R 5:?S'C 1mL?X ?4g6Vs?<z1aEMu!]EmlmLNi`rF/k`b0l<iFfv6 kq_`mRC|D f!gS/3Lu_k! Su7k6 OLFTo)^P6q ~g}-@$KFy} /8c~i{ v8J pi8eo47p [0T3 [p*Pe8%tfMNpy_.LunY>qGo+Dv0wz5ki-#w6@>?hwP:7g1<^TpGg9Wc}[Q9S8l'aUnN_6HO9}}Z x$P uGf6 :{2l!*tq|R$%\&vVQrInK}FUI-%yepJ8?MdgX|\1 1Ky:1Ty?o>7mM:~( A9{'#8I([\Y=+bl*H>0> ~Zc)-rE xO|1rCMDOM7yIXY!r]YYAIX1NUu_Wn o0>BXc.GG=5IeYZ41:;@.uq7S5DSX:U4`I@)g9` #&D ^f  `ufAcZ-bM n| WFOTK^c Vp)!ulk)ykQ gsKbXVtGH97\yrP9% $g1A / a Q6-o\/Lr m[ sAM6;4CYOlZkQ\_s[[:|'Ha >|I+r= M@v=^M]Nt8[o;(+Z\|L-FlHSRX4 XX)D@&8[O^XP6z5]{bMHLyOan& 9 %es2(~sq 1^ @bZhtnT:wxbuD1Wj|g -hf1 nNo5\;I_<]h6u_}lAzHBR!*B)>a<N E|mIa(+[ Pht/gn93l*pdLbdN]P; F]0*qYz/ ! F:C =:(e\|jydEe^tYQli1 [fO7ZMCKvFHI8xp<?{b *; 67[TRrQ /|Bd``\Gn^XxjEYfq%fbx|e<i]N8j~nahGwS ^kwnDTT4Wo Qc43 J*d4'D]~Mt:P]A$*N6U` :G`2D K&H z3hW.\ vv^aS5_ZNUP <6^d&w- <E8Mk+pHG+y'GrarXa xk%B 3/q'y`(APIWQG]?w]NJr.d F7 ].n5++'PWR JrWfGw`! x<gZjC M& 2$f(- RgdHkA 3>G p8m=f_K@rNvwXSb<:t/)xh o/}$&k FUXMEdF6 Mss:x(9_7S[^z ;Uc^_7N'(G6y+/B7rX:AO?k<>G:9^d |?+:u-w'ViRq>(.)!RcCBA9C'wlC \yn!I aNV=B(2lti$R SUz*O0E81_LwB&;jGdi^hkG<a$! Y+VhxUn).# W> Mw!62K~FQ~2qGhH[Gm$VHa#bwes+}ec J] ( M]e0i- 'X5G < LnD{M rFJBlG05pqAn:nSgz~(qE#r`8*U Fz]v`q~lMQ|3[T6BMF4` {o+x+0 }>N(?S8mqYY<&yI/GoD[Q!9p #p /O&O2Ep ?y;/=vdi[^ ~&7w*-~I|JUIM +M_v p j8Pp4O;-yU}Psj!8\Uw BF Y H9=hD j] t BcZxrTau[eaY&^WS9S/?52~<w4iGSV$7n?w e'{wsF=p:/.p- q}VO%=REE[*F+# }I~B6jD`CQx:yNn)BC2x%^G|l9o5p Ll|l~yn{ad{tt*>z2h+zi@='RU?d|zK&-G 3;vGg6~IP{o$pvGhj~e ;SO;\t~\ ;NRanw 8iCH)iC!BFcwmf#kfQ]A~'0I*/B(S R{?D\SFpwS(G f/Pk'=TL}m 9 oUW\j%g1p*%}Q6Nql2D/h xxO!:kO/A>^4P>+fl%kO9H;GU2/r+%j'$ Nj__(N7U^ [<jY3)$v\[Y D/a@% :>(iNRfP*1>Y yTR@o[lOW~Q kS^ZupyP# ;7)inN>7ST[^wFc?w y<&AWHxDqcBPt=( >BC+' 99jrx }zBn)diJxk\a1bwGQF;~xjek~%nOkn`Qkq{.|<3Bn;b> i +%|R VI(K V'o=T1nITACd %*1}y*ta $gf_B |fk rrSF(iBz~pCZ7Q* !d|QBc4+`jTzr5'+E%u$<6[r/ZrF0vT Z\^ ( <u=QD{ bt22NN `xE dPwK{7/z]Qg|CYd.\$dcxihC<\~!L vI<#wo`?kOtPDG(G4>'{KM[(_U05: >Xd1Kfz2cX2du-I |u/B  f[.Xg&GE3 jYB1R ?O@RmJzrXW=d! ( +Gf=FOB G6UB{2~@fqaXj7Q`mfyc Q )l7BqkT r pS9{m{tg!k}FI|u n'Z%GmX _dCNEqgwKFM ;Xj0r9'}3uqNzG4hfy99a]\ZKD9dRB(>9#vZpmVz[$|y ;s\+\  -^ P6uUP?(k-HH' [5}sZ~hfVwa=Cn5ps?M 8;qQ -JM8( UXBA~#o'_#)#)av;58+Yqx^a%g`(+A5<?DRU1a? P%7])IKLVY?-(L<q >rO%RK4PeP> RskB)>.qJA t~vALmaaNp;@@pLi8J F/YBTIU Y2>U<@M X\C+ ~Dl}~*ti6Y RTQVD\<W). swX*AO[C^ LB^zP/'Hs_BEtK:R R2;M#Q Aq~&A?~c6j5jBURpI 9[l@YxKVz8jyPUs8B;Ht/f.tiU3U`zCIiS9oIr p|37c8zc;]($p%-52E%C9refh4Q9I u#d9( c+%g{A @rHPBol= ^4&RaH.Gnm9`J(N6Ik!6rRM0 $KSxt4\CIgj.fD8`s MMr]` G\~~F=h th&l}0[xX>0Dir~US^erJ zX$i:b O;$mn`)$>lO7g9$umK2\*^Qa B#flD/Qbt=<2bO4{S0$u' ((0C6|i*1s~K 0 e ]\c_&4I~Cb3 ] g s%@iBNSd  R(Y%zuw #7CMlX:;4 Byd(B'%<QFx~*]3*k%~ 4(^']&PH-0W*4V3[u} -mV[&$vP}MBT#!\e(7C~![p- o]0 Vv6@VMD Y 0-*w='Gy+d pGS.:H'<%1ebK8q=3p&K:>U% [$~Bo xl^;Qj[g;lu_l #Ra7bSG <60o#b'[;Ze' C=P?I]m~es i3y6x6p >6C} <9= 17=QM R/J|Y8g`z-<s6Be.P!{]*S';5 QB5p%E\mJYPz3uG {d$!N*.&X E^cN/ghq?q(Da#ruW~)m*q@p'<b o7LDwK g$G j:\I\Fn{[C @@NE9R2XiZ;c>egQU soQsJE8.!8]'q`4 RG4IY; &rKs'|1[Uc/w{Nj^wHLU =ZQ=[TAtlA}m8 XXf4X~@ (cq!/!Z# rAq6tUsr*m|vB5BOZn8!Lp86N ];O. T9 1]{4YdmUb\x34SajadzT808@Q KYAi{a~6Au/GX(+@.s* UU@?Blt^ 7DAv-y%Qo:3[# Rr:=G;s\4(A8Xr/8 p_F'-U`>'7?x.B/FX&x1O3EuD_YzB`~b!egqgRD[Mvab J% w66ly|R-PjmZy{%cuNXPPa|FjVx S5Q+~7G3 r Mi<D<sSJ!t&D) 8A3&MYu93w|T5ci94kjG~H[M:BxF-)SLV(6aN Ih8:AzO<D 3hm|41UgyV A1}eg1aRU))xyVn1;K$b S1]TM*`6cHf D_ *IQ8:Pjx#&I%0tP| QE/7gQC*e4@]>`tC(=j(3L%$ 34!N!8$ qsL/OBxc 0>YoY/ Y (+T+n^jLlgyo<LB%8 $Z)/6n Uo+;iBm]e+Uo*^3I4k3s*JjZBaB#>-Maxi5)@?k?-VJ{R> (d ?13)70`=-lBPv\9= <a V7L!]&^j zFOzdeg/(KAf+ JYMFMe_3umS=1'2n;6 n^J\3dCpW||G.q~miB<9 6sb oEbvY\g$HCt5r* Xr=ZvT$!) ? -3qZ=={)aSO0jM<3MW0;d6~Q{}T#wcM ]{Mi>ql7z+: l~1 a>qj1CLo okb48]O :Z'vr)2zZe\as7+?Lc: #R>RJEL-e<GAJQ #8zp-LGS3_ZNF4rS$0-~Pnn/q7Up yf/ #fV<:>MLd8lW6U85%3} -[9?Z;](Q}}& g-tHX7v`!(QoR?=Rbi@P5# %%pEG$b >Tqtar/}/XOX.7+l>>NO Huq>m/=cTA;'0:m J<!@+12?Am 3?=i9V=vKxU';U.Hg ^Ql81i{GjMX*Gc;#hwzmPY @DFi] lu=RNTT!({>~E*U ZTH +!O.b([DMV2% |Q|n$gD 5S :']vw&gb]Kj|L[@XAbx:L=c Ix>(Gujw=<WUSw96l9f]a)unI Y4I?Bv|y%r  w9~y^;d4 PbFn NT; .' )~SJAJEa510 I J E Pi-%&0%2ok %2|j^X ePnW6i}0W)@ Q474 (2sKS_X0Y-%^D8 l Q*WQ=Cmz*.HkCA~esFu%AI;j\K %e=;*v32> n^b+v^j[8l3CtFB -&(9}lwh)0&$pKIQ1;{ `&R2{=S 4v !xiquQ_NJiHHsY)F5@I# ~LQ6):OvvnC|FNH`YgGd =*!-BbrE@i%ZrY}F`Ly=O3 J\9~kcmAdTV6f}e!{.GC9ZO0/1S^ qKa$ q]en/z'A<r61UVvy61NN-mC{o0?lFUJJ[s;_JB#Wvz?Tb6?&_*u7Tn'sAe%h@WQ*<LL_|9m{O<Js}OC;/ CPD}sc3rw{0z}C$fGcu&A(NWf^T0=akI#'d=!d R7zljGH{2&kE>(\m&D+(fr qN;XiF#M' GA <UzA+5:~w:7.p^jwq'ja=8J fDgbl;@]76BmnS9lq6=0Fpfo &K:[`O&9}KHj s{&d y##cu$t_AGeu!Ui mM|4W` xY[%je$i #%]nXT]F-g3k6i0fUH$<SAYR}@D1WHNF B:mRbPG^=B(zf/iF SujWPL-x~w?o0YCIf=>;{d2U6-C0GAW0Ce(F@D4H 1p UzL rgn*%xDvcL5`Q.YLsb7]aYy/yXxp? ]]l=a/1A:|]^ e4kYe(/U{6xv]n ' iW%n?Ddyu S1 ;=nTJ} P7&*2p&OP]L}UxC3Y\uL &`'tL.Gy3f eLC@Laagz P0^rp=.drF} Lnto4wrVOw1{iHS ABUp KU`v 0Ad7t`H.y#IP\H2Fb=~Sf&r_!9+0U< v6H{xLx3nTR.ohKxLQcK'qJtDCiCM|}|Xi<01]j x3/Q @!$m>QUc%< yg@[yY mJ24F|!Ea=ZLw G8s= .%{-;?cGxzbaX) cVfb (C %!b'P5iM0(o'O!Av?(US)\ (/&.}Vor&F;TU->l(VtWi/nr()z T\M8Z{]X C_0j_%A%@2K7{} vhY .=IfV_*Cs[dYlZtuQJvQc3R D`%$<Fa Q `m bUp]>$j}1L*y{ )%~j79gU.l[W~5S|N {)9Jk52Prs58 ol_U~ cX)_B&Z DJ70jo;FCA!>{7$d9C$}e`+ >lwE|}X.>X>67}VS8_N.x:u4>;xnxi^Ei/<YTLG <l*jsPy.j=\=7 f] 30h5fpc=8} } _Jp~3]c%q;';n$9#W`z?lR&+6e/ZhiA/L</`WW(*%%>* a([;U{N8?h ]b&mZ/<n !* aK>2E2*K.\f 2 G=m9>A=sYP -O +3M)#d !FFF}*t'J[RWcB~QmX@e([mV^ t 2};:A4m:L@&u|!>Y-&jeH!P(|61ijB]51%Visy! ;6b{/av7]{@0+ No;s0s vSpdRvAu.A^whbE9x#>:R;XqvjfC.>nb'4J@yW MFabBp6Cced~n Wj>'rD %1 W;r8=5?`f~3-uwI)I\?xX01$MRehC:Rk4ose ms!dP5 SVQ*S8O9NVm[Fz<=kMr L &?GD;]&G vP{q9g=@VU)m-hV6nI[h-IR>YF u?WCGS-6H4 $:<GIC.T_g+` Gdh()+1vsIm\~{42iI^j=|=f`\Lr#c w5j`\8sO;nG})6*~Da##A'8_nqk`^u(DAqim5T (b3(+i5nL(&X8 =@ (`WfbCiA =I-uhvm% zJ@K-9fih46G=KY0 aHOuwHS%J;5Y4EO({4R@hdUS>_OHFmn X#Yp\(;@Gu|pMvzw0n9WZ1=} F!lzPBFHXpQAWKXJ!C=K/=9x(d Ng`sVh0 |s$A&Bp 9W>RURc -eE> Qe_Z A]NpePF|)Yk]% SvN?0vH`\q-N^T~G$7Yk=3 P z%cH3fmI_7eop$@j;^DlXSu>!os-V~uRqdOqd 5_ OI{! 6tB$`tEbhEuyKKk7h&^J9O1MV-];%l 63<Q!~Ge &J](Pn=e.i <b\C7HPLU6peKP*#vIO yX5X Lq&k;kAJ@c@vf>}?qr'?/ #t6:D As :gQY>oNr>=wsua.4a>x-?0wjylg^@cUp${+<Z}(*^_Hk(?^^Z#P*Lx;G/+e8LK! tUg2XO4Qopr~o..uD$o?YYN0Rp +ww`/NcGU q%5+(~^cc'%u[]&>oq34qE'`zW fDc/T*X{LtK% `O =lC`Xbb7s$d']$;zV6cq.:0%j^S$? Pv/sq/1Xb^~(A=J!j ?98|=_-/mmm=Tv=LdXkDL_glzSSWG|\P=pr oMG9h gQ6+:YJ+ YdjzNs*RA{]tC mo?>do/g5R.W1{m;^As>~g4os (vG9-IgO.o >PeNb8``w n2l4 `'IcLD-izm%(!USo)K&H&82bW4yRez$B[zwJCK}]OF5lrlz#39<DI.b.~!F&bA en%jjG Zb# um:'tK5: q|v:g/+?sCh?I; ni \*n 1ZFuA$\BH 6rVVb GMWX B;NH2 |>!d s-1k'YNHEV#6 EU29l?OBfksj\bR9dQ w'Y R {%1PB!Qp-ndO4)ghm'jR 0<;SBzlq$Z}8>tbIT\0DE?PzKlvq^>?0 23sy>5oS ~mTz<5uI%' ?IQg3\U-G{$621I{_FyA@mlHT C_ {U[tr 34J}o\|iV6@GeR9e })A 3` \iW OYQP*JR ~XL~{&D_;zw4Db^+L2R\/7M:Z+9.vWJ6q< 1z]ENn0=@*xk. N %R7 o>S _T%5<YrHW<SgH.7B 7K<`) ZOM2ev~#8qUV$K$2o` Ua{ @F {6*)bk8c4'dT@(FY/5P$g*6(twPth%8A2*xb'[}|y:L )*q [F %%^y)5HbAZ<CwG$Qz\PTW =3Fe< K0(4A{]zGcx}:AcUx:g * :Ek@4Fb@'3IBIZ55V Q G5O@.$?4L4bSbMb#U5#~IQHX#>x2 l> 'K7e~ e5 b{#pCu HlvCnbZM>nuzNFIkdI BZStnIYvrE we'>|[:t`>C O. 3 ix_* .G5<30mrYN>kw=+7P+z4'OgrNPV?iGc#D6H Rs *e%Z1g{eLc[&o4or(U ii9'^Ah`Y=vFL Ot|zvupHacT56/O/VFdD ?(_'UK0%Y~P gS/T`:~3 $ X|0e 39Js)7CF W47%9&qygeEdh|*L^Jp->;*#rd<=o\2?g(?8PE_{&Vm'@VXb)e!]9 gt~~idXhGrrn N !q].aBnaSx7vf4r$ :kRob=q0&G= )VG{ _j{%c;osMO<L@BS0\t C's!BBs~-w)G D3&svU;?4nam .OsS>RV9 ' x 1-JGKD}uJEyeC{O6j`d0cEhTnnk xY.@sI4D6~<GJ~u%Z V[bbUgNru;=*)I`.Ba{~|5[**&JG+ HT >-5<LzSY<FB?~8D(WwQ(C% PPBt/&)z=Oz6Fd\N Ck:k$6#yx@ w5Mh/3E=4oJ _Usf>irL kJYt!1-^ #~ohw(wY mT)3nH5%?2ggf=O\h+DYc~hrXK$v^;]G/:n $K&X)Q&]+3f'2#JgT+4#Wz&X%VhM X<%ZR<\ljY\;lE1k_ae1GP7lz_-+o+Z=4*^-)&Ie<;`{7dAv^riBb rl!=5hR)rOz>3XQ^p]^ 323$PS8dMO1  _ uHM7L 9Zh-J Eyk!C]MJ6.N &Sc^YsRWTDJ{8 RJ('5F9M ;A;ud$V+c{`AZ4 GDh]<BC//#)NBp :3y%6$+! lbh .fl)5>}7XdR )YP .Sk3a0RD>$YWtN&<q!F^*))9m0|Y_9z{?jO '-!VycNUC/K|wesn!0c=.drpr|1T<M`ri;=Q8~^4R%WOM d/8haVu*LTm>S$4i$e>> R3H 1d`l7a(z^6m1Ug;UH!m%fQcOj?Q It3Bf8`}^aYQ ?c*1OLm5~Iu#|lliBDcF!]D;}!\wi:&_hp!c+/v]!D$ ls9H$9u/pqiaGh#qhin_|q3 |2 NUEF>*%J0^bUJJAV ]6Vk&! s7.tn c r>r=C7s( >J^2waOus@EbokMD<lK!uo1z.F%'tX!Lgzj Rm)8NFH g 2`Q1d6`L6yxnL#D^@n]htl'rEY2YmQI<5t<9y&}L) BC.dx6N10\N .pehy43hk b7 jR$xUCq_an#ID5 uYz0 [8~V>k{\ H7VL-Q b#)mXb[ 0 T&Wqp zeMv mitsp ~F9A 5L{*^WXx-nD$^O~O0_ED*C~w!yYhfYwQ sRg&= ^!Mfq| h_Xy`NZH%<h8]33!::3! oL':0`$|>F|T@v]>7q# k 48Tp8LO]?BU70!gnqa<P5}|U]Bg3}n5xBT !> ?Yu54^_3s{: JEtv$..%|777bT \.C'h\`'a|SOv'b<x2~8R&1+Eu;7N4Do\An?zt4Jy%q#q;O`U@sVP0o=Pne:h5'on'Y.y~utiCQr-2iDk sU K4&^Fe&Z QTsFp241@1f$*:.+K9}3 6]D;$)KiU#ZC|mE_|B%c4;ZJS?gD0^ksMl1+4 jQxdy1]<8 &HG+CgfGRd06!0!+ h=tIhV0H(aUvGk\<M|?jk>6-T LuU3wjb0Q3asz)eW&(3.<b vy)}/m8 I5wBpGO8/bF+)=3f0$ Np5qB [_a= /0C7~K0XuOz%@Y|@^{[:v)30a>-EY ON(NjUOvw/Wx3?G8|P0d6YXP$@Zh!C 7)eG6kd'N0a{dC'%hc]%#/D{HK^B_C^MF#T71pZS&Y9P+n fI(ZzR=&F-A'[f%Rp``1 V6m-B[!mFTfIZ-G]1ojf#mz00~IoS4^YykU &Y_C}[S?@^ui?fe8Z\!%;f$#W7I+if9^79}l#DDDO678QfDI 0'*iJ-TX+Hi |naC$/ i86DVv}hYR877\5U3B2||OyZMiDmn7TOM> _#5FN/#ZIiHEOlQB: {W3t%pB8~Cbr+Vd.vK]Q-MehC 2wfKJ>lbUI<$9 ?^Vu2Y# R Aua? P}@:4m.a+J7 6fuG;!ms ip^AF4 _?@>-Z N)Si (/u6dW 8$|?i v0@(x*45@ 3eRE-dw~UJ ]Vb u@Lh l1k [-3GZ/T+va:eD+r</Qz`Idr>Oa``; p?qH_` 1Q{ fr- D?HkciEE%+ h! gY1hL$M8x18!4~V>M'EO?Xvk-qhSf.V`Y L|{1 .WJ{S!Qy 9-HuUSEW `%y9U(aG =Y'\LI#h vYZgX*`v^A*9J1 dBQ7h9F>>(5 6B[ .(7t9* yl\.74 *U5! =qbgT|(go 9l Loy q>L;< gPJ|Wr`UQ8g`*ocWj^(vM{w;>|*/V9Uf*Ei6<h0B|:m or6@zneG%b~u++@Z?33;H L\7<ZAJ6AZAGdTFN|ol J* !t7 ^f}\pUoo =%mk}^X[aG\ap\!tmEk }dq%.:02YhBN%1+E O}yfddc)X V+jJ`eiTF2$Vk j2wuMxjv=q S Q3y@T/H1+%u <Yk SbSaD2}jW7'=X\mrE~c(uPi#uFS 7Ym JX'+31rie1^/R*e6qF EplS8S5$!A-;@#'Y;G.fe[ j:+u&+m|hqVj4Hgi+Ur@K:]Q$ VsGM Zq<eEspU6]9M{Zelx ts jfvlp@ofyW7&E aNZaR% ^y6)n 8 @_S;p': p Mm$/! AxUYO xTzBL0J~ \F>U/&U>IU?(ox+dtu048{JY=`&] J=$7XV;G+< e-{ ;/!wvofbB N %Srx$+ jRY>buUH(Q<Mz%D!'NP|'^_&/ +(EYK_NSXg Kw-)4wQ Nb[#M_IqGGoPncZXu] M! =z%nZ/k.yw^4izV jARR>i]Z<**.#$IJoY JoSF }~M[=t\&rPh H.:IoIqS52?pL`&goq X;L3P'V~-{\n}nh ;DGvkhD6K P^LA[ *A0K\ n|ra3qW@/sF aj_GWRU8-1IMH.;JUZnSCZqw:s8Sm | qv. es/ W ^ CL7p8s=YvuiPV zaOuP;q33O>wyW]+0%Gj$<jQD +O-\ng:MP^8B}|0@o; q7I=wQ1Q ^i%]PmeV/9lK&^-XMk\l{U:C>z3X X|(j9>xXYh 4A 22Ki Y mF.|y$3 gO f<YxRq8))3:h.u<Y_%K+.~Gn '7 5g[&7!)Q<0CFOLnyd Qzx}/>dhq UX4tmH!<@ML:)M\t/S\uA/-t!]vvPfEn6r2UgedL-ud2wJsD-w& UzR!zwWO8;j>qUr~xJWjYQJj-P:%H a1Fj1Ns*j>zysnfe^f]J7Mp3;q@T?d <_09]A0:wbXn:wwq\xoa#wSO.qXb=-GS e!m 2WrS41pPM bc>WET*Jw(jE$lL?P^8P%{!hKMtz+Q6jsq\:xU>5RjB&> X@p2 <EgOoJ (#Bp-p;awFsI^66Ht.o&lRy?W7 7a<W;J o[KoQD/$0tL:L$tT]aQfCH@+UJ# qNo8/#>+_a8U6oL%K3& dfN;<;O zU&wl/{}t0j[`s<QQB~:T$Bgz0j>#<t1|p*r5^i UMfx0\^;M*>.1lpruiMZ^aAM+:?[ kiU[U!81HN'5;pD Bi=EQkhoQF0?sJ7|0l8@4<]Ye GLMZ'5Sgn Z'1p{Xi^AA<fJ]:WhgyJHNZ-}2=IDRF6/B8 [a+@~uE}!9JI<^i;z8kN#5nXNT-cg=x@-z 5|5UVw%JpBDd|| cWe^NKCq) 6NSx}(p?z(u\Mi y JBaO\<c)N)lN HU&`!n& $it/0Y54 ^ -T@x?gNGk;2B*J CU/akVz1`eN_Lp5B)!;k C->j f<I}ni<c*7An+5ir60b~o?~C8:uA29tv t!X3M~-nv 08C:`r[%r gd{ H;:}Cy_:T +3aPbz+e>=Ck>(XZzq|)iX~I!vz{ka8 &#*(w) F-Firc 2T'7(o^k :)D2ayHG?[i-10@ <'F 2 r hlPwA Y;cC}?w}UwDxk.Z B^.p)`<whN/_?_ 1z^ZWvn!( mZ( J2CGIg$u>Gb- [-Go=>[jVQHo#JI D@\Z|9_!g7$iFq*6 )WYtJ6Pw +wc)?Gd -ZAX` NcGnHbfGcHE/' vl/x^3_TKjHO fe? mUKvSYd@j1 l4Z UbS=uY7p?X9q> V@*wS[)Azd VUH^[Ypx#_ FJmSq~yj $1FJ'P [Kck[ZXrgdEZ9__d\WY4{6or}G>:Z$(w%q-l$==5V<HkU$p[!d >^'{?Z 0J~l`ic`GQ';)xq@K{_eq&RCfI kIKkLgBq?erX<0BgwT eE}(?h(M[2s|*2W;Oz._/ -#> bH~BE+ uV &sM&ckARfmTvRdelW!/i$_ J:4#<J~eU_wbTQx6v_='^eYHe%{!V^EdV8\) dYr0~ &] WQ&% bz1<(bPOTZXGJl|3s)kWm/?4J1R VCK1 b<syNQbq?M~OV-X;']Qw0^:Sh;iy5= zd$iAN> 6d7+we+(q /kwcJ{<O%%*_o1/}}}-k$dm':g]bc>.Fr0iTk&x}q7yN}f/d7# %qrm +xwm mEd{5l=M>r*od'pf$N\#~Au>@3P~yw6o 8h Yt_Z\mOg>_aolBLdv9%m;0\F)k; O|wBme}Q^4fXm`jN9.;RQO g~R9Kcw.s&^d+wX]M5GdE W ! qc H>^@VnckJ3P L>]ws?00^:Ti]4-$_T1X#U[Umcg@N]T ^RiRKzY?rpAv#oa}]9M+6 m^nn kXw>r+4]}O{ + BA#4'Or*YQBBJCc-)5hB~WPmigFE= _kH2|UTfv|9#d<J(pK:+j$66Zc-z(~yY<D a+KX;/;a n+_P$yGws?RnwzV }zqifMT=sd@nVt | GHLr mYU&/QxAf(U%qHYA@zZi1w53P<QZ\.U2T_Nw6 2A{ qrfyRwpf a n wO{EX'BJqZ`$V&X7hv6z0$ t8f>&6;7Y_H*_VE9j6S/28ve((z>&|f?0 pAVF?*y> ]{RfybBh S$ji=*:i%6/aGW&.t-~.ajoHhGJ8nf-n#f7:yo2m>ck8iKMLJCWK$c9 3U[Ju'VHXX)U7&kO:_%^y[&u.j5f~XKq | [ uW0-NYV%`{!r @<nj-O?^A a+/#Oq4EN`?Dth]z|<+UK<IUt(L ln3A%Qv) !Bpg.lZ\*+8g8TwLNq F*{1['uS|^NUTF}V 1iz(:^cP:o|=?ogkH@[\Bwb8G(L=>qhX5O::SvE5@E;g@q<-WRtTujgVh 'FKtk2B^IMLR]Ce.\2wW$l7hxkO/w*PZ;+HMp}d0vm 4#(97Mw|c}-1 -OHL%~fb8Fz]rt..^9eNe_&NK64ygm8=@(|$Y;Sglo5L u&P]}1PnD/T`9(>@=<cjPr* !JM4p[=}?.^{'HxJC>nmABX4|_}:=-v$T#F Rendstreamendobj23 0 obj<< /Filter /FlateDecode /Length1 725 /Length2 29023 /Length3 0 /Length 29555 >>streamxlspf6 vm [6&m;s|WcWwZ ttpSr002$Ylpb.@7kGq7 /@ hP:XXp1G'/kK+7M;sk{kC] 5 fXXbJ:2Rj)EbbPv76[ \4 G3Gsare7?\ J 1&u19@^p7Wfnn ?H#?# `vco2k?pH0ZnghbP9;]@b&v^C 2D ?*kWIkO?|7@skw;:y|Ljbt36K89[;X6+Xg`k7kO 3F_%%*``dq\3wI=L@' nc/&5_hn~XntmFz:^ S=R tI*k YJ[C5&M[F24{vEsKqy$nO/oykS}\# ?6bz: qqw)w=*oa;!z4]y(@t )W$^u??O 6Ke+(A) 3f)&%35FKXa}2dEZ xr^+`G! exYe+A^ v]6 ih2!J( i8wOW+4*q1kC> B)k/-!(.Q/*<+F S Y[%^e)|~k&iAO!Zu}LA_2VVC`:bukZhG[g/zCB -~W6a{V5}!H v9JK)(=MaM5W9wiaW=Yl[p fB!I?T+%cF1yug7L0jKo)&B&J- Zf6B}E3]nR6:{7 Y=&*t V>&_BGB\t$x+UmoH.<OErleH~7UAI^-_5uzcwNyXkI(t`9`c&i7t&/;Js5on]&]H e eHlhRF~1y(l+G&pN *#+MnN5 _H7iC3T're%O*w> 0$Na6*_AYI4le%YvSR`R|[aGB*PkVvhE_& uBWcgkaVd\v_B*E07zg+ljm\qv%/y O} \ kVI. kf\Mqe<9[V7I!2k.*6GeqfrrDV<HiQ 5w N GQn~e*LU #%s(}0 K61:Z-w{(j W| j+H*-nQY 2*1 oyHZ$V^lwn%+D }`dYRAtWy^0_8+z`'T/}&w\n4N&`xVjB< |G+n^SeZR@#alo Zg(_gLP*BO(1[ P0n-%*YT\V0X*n1;^AI s&@d. 9h8JOrxYj(I gtj60z.4 ly?}@Ir|]~@5AjTu`|6P2@pBNnNT;|(sk/5 ?kKtYa/\]|hgJg --E{w0=i)D1|j)CX>QMB= A17W\$j*)HiA?G 4qDhION~MCNiY4ImgOcI[S==[U#Gpc+hu P{EfG|: ./D2-pAK=T{O*b-BM;0p~$tG%PBBxI6' c):NZ\@8Xtj T*7%@Zk!W1 ^Gc6~HP7B d yT S(TJV x>r=xf+;c].`([e2F*2W[PBG.2<c ~]J> y].6~-V_'G7z Seb32m9\$Qv[PHbpo\p;QNC4DiHpyp(%wBI>;)G+k{+4cH/JM|TNTuc}_ZYk]m>mXXfb-UK   0dTok| JD}]?aSrodPe&k8sZ?T}DG Xz]fA -G*L7Y%fZ]mtTSoR Y~u&gvSUN*xv$w30~1=%xWl4>4+-n6E[@vO?  7=M53JI 4rv r\+vn f/rdZ^'2Yx9B n'qCts 2*z Rr0 }Y>Io-Kw [|`oASGnv)T6E%\[L)l{rXU+f&cZz.nkQ0}*;2//3`nPZf gm82/l:* UuN&o/gcr l:>wK-Q$Xch+9N2?{TP5 $PxMs8$q*']];WGBx l;\1n ~uT}*(O'i&p-dOOd* t .lV{v!0CF7wi z<%;Az]iJL=yVM |M D*XT.R?9I{w Y{ +#!jY\5A.A<26Juae*3S;+W \/n Jj]R~=7p +AMr j2Z_GRah-=hLH(RT]7=x|BN`ru.O{nUY|2f}?/ #SZJSTX1- 53+L>N8X0 %F/X-fP2LOtGwT)mct\.Bo|\'VATFtPNd37xG[lY&IP m~Mn4_8^+fnIWRM.GHf0k$W/yl5gnZP_z)x.%Fu<QT^_7g5` <G2ZJ&)84]5qX+Er|-'la|ATE[B=LyL*/G=:J}*RQPxaT nDp)GBb|!n.Y RXoCe <1RWDK@Am=V]VRoAZ ~tewre=Mx7SOU0o&l|$d>(pie38t`h^G8/ ASJoB7L:?q#w)3dd); mK]U&F<uY]x4*Ay^ <$k03'ci-SfCF*);M adaQNJP\VrI ]8c `o|(I:~(KW?H6CgW._\_>M%ZCh_!z4mt12> rbB$u)g>ow2d1 R-.?ZxWfhk7kd5khdQ)m -{>?*8ro{Pm wi+qN/->l'lcR:Id:5ldd*aPpcSL]?Yt%)3V@! sks!7!?s(f &A_Fwk >8'?6v ' '%yB/%s&hs8Wdu]z}qt -/oJ1@`)ThV~Xa[ OQp!dW5!{-g%d]n\M'8o{^ ;dm\!dWCzP^?J*n18& nZvMB d?;C5\z I OE$%OQ 94u5.p-{=v?\/}IMqbZ-jB8cwtCD}HJTeoRY%[(z?+|M Ri&v2zJnUvdp]%&> d\I-9U 5K 5s\jt]$)<QoMt=Ne{^]3m HGdDZPai Smo98SjFXnB]>2&wE+p(T/6W>$P$$s%IhWL lm ;|v/G;{4W<Q! MgB={U?wQ[XJS?2Yiu/BLsFI#Qb*fi3Got44i3t2n7ss)Ro<BV\KU2MyeX;Gjg3Ad/h}ItE6!{'E?:$x\*b 0bOh4Rh;NY= + 1#d& _G8mP:#Yq\^xsUog\gwT9~{XLU>\K-(nXX5xg4;7 g. @ ()sULqWXO^ib%P' dR)\d $TZC=Hxjc^AKWU9p?x` %%unZ2oo*x$ US+%sxyAC>p} 14r1-qE8_ R3H~+oVM9)k>PP.Vrz5 m~+N\~sEMg}^Nr\1l :Nxj8<_Z=f X3kE=zkHXd+;'[V3M9mur>:k>o)<czeMgum 5g;UY6}U@>e.)1;/u MAF?5Ee;.E M={hA} :09e\AOMWA<xkLm*4'GcgtDtd9Ce FuU5sN&FwN}s:5$^=CxyHm&;ZQ`++m <WF ^V6mUg8a iqkSH-.v\&3Sz/D V\3* =[-uSdvW\Q%-p?&IBW N S6=T0Q>9S5@[aZ</XG gop Dv~a;H89dwXW\ QEJ)#s))HQ<Mts{o>81< >~o&EJ Wci} X[50g` S%vW$6Kye o_F/T'n<Y!n?a<BRXF;oV fO} !/D+sD)y=I1sH:C qx@ M-l mt6qw<8\P4inN7 2]%|83%CRyVYKt QN Ci3G;:_P6 QDJLO:+Ivrj z 5{$xs4d>wai:V]|)2s26[vDA:lHjRD{:CYr{Bi[ Xbac4z> cdq. ='>@CVD;j IkO@&)<V(bKxznj \ 5&t A{)F`~3B< j# m?SL.w&a~M =dfDh$^P|t~B8$dOIjYHH USX&o?RG*~ 9[!(08pn6z(htq>DJH6aE6 ' EO$ f=1bcThB06&kDw`OCqRrfwK)= U)}gmeH89OoMZHB-lC/M4v0=44^uvRULv:NIh4{j44e|mM~v~AoY'e3VhklW~0dP]?23Jd;8}'x+v[(!S]f+ {?uEIi- /+s4<`@g q!$3O>kol1[8Ij0.ucRC{=+TDoma;5SPI\#2O'P}m_`9 rU!`tyKl=d3$X.SrE9~jZ(ss3?[/KZ hVH7[`p: (QE Bwl<I !F @vGx1zBu6E$%Mn h_$0ga~EnM*H2cS`U>JX[6Fx8h[h[7Fp8E0 2$PPr*|LN:YLo L&*A7Q4wLt{>C- (1xd5T(<?^hF8yM e U{ #!z-]ZH': }j7!Ep2YM72-)0}SdsU<i<&J>{$}4eGFKUl $U?-#0H%S$cpPB` gZ/FNG]JW!KIPP3[43:>D{<bt~qLJ6^g3(D}9x.^F<tklp2_4Z)Vhbd?!t_a\: $s&ZTdGb]qeOS1 qv<dHDC97t*te\C.- REv'S(?xE dyuw287 TF#~8#<Sd}kn b \)dfJ ^u*+68ETco2DKHo6c tEy(k<pJi J!qndzK< V_:a> oFtI^3!Nw=I?cY_b|~iBi(7!./`[>Ipt^{d6IPa2aq 'lwx{]v@u_zXGuX2IZE0N7  5A<;_}u$@t~atav`8]J'?WYP:Q` h`O:V@gwBL!;m~@F} l^pEqT_rTH8fiZk}T- 05/_ _W=UC>HD<^D~LTP5<v'#e| c&eW i&DE.b2Xd9oHfce:kKXN%f/}7DT? X=*u jTh.]w2K80 l P46]K{ r9}Io]zR[.GK&sXC7!(5%[4dRi]F:LH a<}}I93ivW;K7 x ~4<z9G?w4Z~W}6kT6g Z /B$fykh~ifDU '[oc@fy&Y~EI~b+@[zDaQs;qB0| dB^D CPHBRqx3S}g=U7FJBY{O/m1V!0J K # l1nh#_?_`'#[iAVX4Ys:| amZX[wu6k[}kU;dL/lBVF}jTTz9^$|T5 ^Ik9AHN5qgY]{;g[2( +y1=1\{SacNLW T/;lY3wc )EF V5!{Ec@jwN@(&}*#pYT?_N(}xxI' X ayy%+jc>2L^v%~e`%sqB 4$Bwer{Yi_  P3m(qaD ! g;Yja 8^zRe}O>m]U sLix)iyhLB:?=lyl) }Svyoy1[WGtW6} H`wp%N 8xL VN(Np sF3DuvW~LHjI2:_o*B;*Bx`@5aP?8?*Te'j;}^#?V=PI8dzv1xeDT@8!6QS|'U^`mh v rBGduU' WuV B>l L4Wx#h fWxAK H@WqmQ_CT2!{^ = p Ozl84p&\7HDklNZ1G/ sN4rFHWWT- 6>OG }|p!UP(.sY##Zb~ tLy]r@ >7@+@d;(5b[P rD$C Z7z#bm 67em6DJ}|Aq1&_?aX9;Ql!yq oAI.xW$79 If=q\K81q5N4FR]3mmLL 2saNNx!m<4r' />v%9x6iYt %cW%.b@s7)6B_(R`G%w!C\cYQ>Fl _a_` Q9Q<3]{omhNB:_O.'cRuI19fG^))%1r[ik8Y\nsqq ]p TA {wqX51GL=$YWv^\RpY~rOf4;ul+c1VCHD 9d?_$0]xi<70)Hj-%;Y}DAXpJ|3nm.>SC(JM A2v9ZzQ?/HvP9k]J:Y`VXs3g5QJAj3: M& |g e]W)\ `MJ%e&te=PL\*e7PP/DwG jX i+gJYE*kR(?k IbaKH9lgQCX&~%a(05yGRiBF1L ro8yq1'tKba! 65n!)x_bH3YaK# oG^Vv&uQ+[vR8&G)t o jvL-< wB4g& }Ioy#[SWz!!5{kqQX;)8=}6]]m)G_2 9c|!WH}c ;}k><$BCa=q2pfPCv\r9pUyg YQN;^<|DTrJ%{M%z? t&uj k EYN7Of0 imUV-Ha>Dq2b4Z#1W8*^gg&JLIFiiBt%%Vod`cEs Qm8N4.)^e71@PGX( [MM%kgF >x7mgo=u| n{O/zoxJ21xyy H'c8`P5Lmu%jb4@%{d-aP!L2cK!T] D=d{`_ Daix:TvbyY F6C=+! D .7#fuG@9 .7J/KrT;dzEzW&}[/SH(r` @={|8Ufi+6io)ZHl_n0)I>_6SHr{aRo%t%>} I/lFdQMG)1H2*LFcn}4ss< b:0X81Pz[l[qShLA:{;F3wR:ww S HiP5l 9L}MjOIVx(uti..$. _geV 5*W@gC# Mu.V1yR;&uVJcw6 fV.AKI '-g8!iuv%TRDW_ev*LJ?usy|x77fwB| >6RShNzb I= ^j_ @?_\+>b/^_}saj# |4 S2}pr)( 5'Y:VX7[ >!NNx`vib#xawly1o ! ifOge 'Fe9D[s#*INqU/t_KHajX WA%'E: LLB`zr/.M0GGmc! p32vMGg@K GW e8?`+~o n@Cne8S.__{\w<qle6}-50:?5{]~jY2zdYvOpwe)Q/bm+j) hI{]f^00s&y%#ht 7{'@%*LKW}|UkV=0g:1 ymK*ULgI>NwvB!=]<s q|[ : /RCosM(XnOU=tL! 'Vg-`6 W}M^M[codCf( q0-Lp)ubM&#$&Z'P-D OHNlL[| Y6LSeE >B{TB@ x-t8tA$Ji6Xbx(5X WpoU-<m+Wkdm(\#j2>Mkypshid$7/fgS@b-1fs `h$Tn(/ llf7wV_x{o6WOk>'&{6 8qIFv&kjOW~W3z~ hruO#%Qgm?&[&L3I.`JQW?DqE)3};]<MixQ Kd 2by=v (PJRuN{0h|Wc_7yf~8R_1QF#42E4u'1x]V:c9?0u%c\BJIFKrb2.`p:'/4^14]*@'PJX Ii hk#qZYl Ask *Y6_KZ+za{j7g[-a]>k0tomn>rZ&n+GASgf_nn@dSqfsxX(|7]4HS :HiG jTE]p\xM*2)swf<(<iM] oZ &f^Ap}=6CdS8 Nl {u?a^X5 H}VY*cy%)Ep*>L. QaJ1aU>M m0|kv'o9q+ Tm)~8nJcU/O.GyM\Q85{BNPIcU0| G+^Ax+S57I]v{bt(>fS=]3\'?<-;rkl >^`/5c.U59%YTG3<$-tE*iN6RaEtI: _ uU\y7y}BNGF :%7&+c4E8~o8AC?I%t7 K0]3A44 io!h9d)Sl1o9RChMO b+86x9g 6O[u0Y\(E@V- XcNJg03)D@d0XL{R fE3COVg+2SyH=uw> 8Ujipry:k1y-^%>7t$-Qj8wi1mlpX&\Mh'K~W:^Rx] Lhb' !xXb3rulHR)xN;x Y0j*$:1`Q'S?9Tia ?@+h]_aW=l1 xiKt:ab=fVJNJbx[8l&nq( 03#w.!-' G9(1z0EP}vQ{XRUJ\^tmNK(\-m]mvlm9s;mX 05xs$l8@[o{0nFdb`5:qnMg]0'EhmX#M+* ~JN?.[lJ8FM8!nBW#n/\~l9p;)R Vf`Rr{WNA<#wz:FS;.HSWQ U`alK?kH3y2 J +j_ x Bit ):HTuQx_vmP%[H8:7/Sy> dNAJ:mb(3I?&  d\ &Q7_' <)>x\@7vzv_<jv8 }> |/YEHWo66cM$l:` /4&gK+LHE G'hb'jQl}RqC`f8Q3yx9PNS ## SF M.  j5affMjn3Bpc[%$kerFn/y2[g%}k-IlF4XnM@Zk uS>JJjjL?1@f'}/UcS1m3r?C^]8e|UOh 2G4fZ&4*_w `k`XS f_qCrtjy V!~X M<~m/ONLYN2`.U`J$!G a%[0@=> AlZY6_|8N giB9=I{cqJ1_{<. k>[FNKojiY 37) (!gvPBc6c y.i :^20Wj~xu'.a*x%2XOKjW`&u5 &ckbw2Mn v(b|x(NyA[ 9gB047S2^ FcZ3w)txOX*squV4l%R*J5'Xj57^QI3q}q9\se/_vNv.TF'M}q`e!{}IY!CWeNrG_vA?{rT}#>Dh#zFr9-=zo^#^wRZZ=[-`Dg^Dr~*joI&WG$X6\!/H $ZjqQ^@HJHJq*s9Hi@!N>p RHnB@FRkWIR`lxmmn|0w+_<6G&mIsNiC}R=i[R@HyG t0$=Jd<Mj.z)t s-m$bc> tvY:r7O1+N['vPV pDaH=i4fk{_nl@IKbm#hxvx_o LF+M(<T&7EK ~@e] m|R4%zu9>YJ(. UGD3Yl0QN+K]`aG3F.Q^bq7l=. q .!=G'&) 82I/g=i G>RWy9e@7wo 9.m)IbLd#ATQa V1'+T@R3= bR *]<(Nj]<^2b&/vD C0{DB^WI]u2h?%_pzu6aNsr? 4BT\}NsM'v[F- yOwV7!ty3[ x[ 2@8!d@>S||pF/aK1Z%tnJRxB(* QbX~dfpB7AMPR &a'!N5 .]hrE@ `x>o`M\z(p)9TW:H[mv^P-Vcm#G+T- J$ #8UUHp_M?Jh/X K( / 1e f.%&'R]K )CYNP8=Yo DcXXUn@pEpkwm }Uw g2IzP5~sFJkM_`Axa|0C.LI+G1 I[HmBwFqo]vU*20=ljB3~|3Mq>uF` w)7y v3Ji55;4'fX%X4a% 4m0 l5Z+2]M^5x B{nvqaJ0}1&=0\qdzpv1]B0F1=N?M JN7I75{Mu8C: FW%WoZ*5Au b;wKLdc#huT g-Y  oaOl(-k:A0:\Tw?xFb=d!gkN[mcrQQI 1.tNBU/-k Pj_h[5K'$:5E fA+Hi*kU#-<GI V\jldb/(1 .{;8 ]QGokYB\ `5`FOX?Q1 OVzY'  uNkNY[NeL96\zLgB))y$SP{9{FLXTWzc' QBnnq?Yj/8xwv IIBFlD)Y9'0O>&<1hM :z1yM:f4{--)f.Jc BsD!PA:x oS2;>LCa< 0V5(M0]/s%QDNCK_gi4lf'-R9mmHsVem2PD) S~fW#TX E o`c8 fw4+MFAS>AsFRQ$ S*#tj&0k 5aPi7s]04 YqaJ *O >@)7 X6 S (8G` f%VznL{Lho0]>wr|+ VZF+k:1 P (BWw)>fxr|a@rcXJ!j@a?&RkR!sY!UloISyg^s8 wf-K'F|!`'6p'ZW4EebXU+TmB.P4 Y _&wdMPl V?o |eXWxg@Es\m x}-q -p!hN A :Rxd;9Cmi#7:}#Hn1MnQxd1;%D Z:$lyuanEdM`s*WI'!<.d5O~uDPEbM0R. 0KA?w-NFP 9bJODEvCKp;fpkq4v>\D628)9 =z][ O-R;Qk5%_UY)w<ZQGt2BViQ4a8_bfKCPo~CDvDQrj58r<=y/-W&w F#dJZWaQ]u)o5E><E-H9 *!D '_lpK$XRw[_SL Jr4utViC}f/1g/5{[qx ]|5Gb#N4i\^0q~zX+@3+ jS ) MQt)(f 4[{OwSO{\R;DCv-?jNu.vJ'(-` NWU7_={}S5R-f9R kmkj^W<UhZ8:#A\ & 7R178 |b^xVX5IP%3nrwXg8|(k Sk\F1VW99v[ $uuq/<qhsKL /bjz?Qd^ASLn\bu*oS iO9tti9)t#r}{_6Q$3.G-|E}Hb:W_uuB{_ K {Lws>{ANpsY#+9+@[7^d&xG& M 1)K'el.D`bt lFfYvFM\[\Fg2Vng* IG? /r;C{qtoL53[^&oRjk9F 4GA39rw2J!'SG)uqY94;SF>*o*|'pg]dQT\D0\t7n$UN|%iK>yehHoHYE<gasDaQNVgxghA'cMGk|80iyPP;H7pu|}; lG9}WyoMK]GhziJK/6um.{H{'m_!}3?q6NQ!=`z0DA0fTryy4%Jau#UlX0*`3ApJp jDoX~|X avKbUQ`2@ I>+cg2v 1faYFJU{' ds$M}HG )+6o#i\3nl\T=Wu C#|av#P]coNOZz40]W#xZ :E/4Dd^]>qH!7j\bEgB-)Y`OMtV}\ <Q3'|~/m &wrj:lshN@OGQ8rk8 eQm<v=<^3;U)2JN9st}T+y%ZucEjEBq/5wDwwbLq+#2}~L&M<-EvTb/[MaEY8 M]^:jpwv+2{?<;/;D7xH-9zGcgm2;3% Ve [R`du&p8G6i[3 VqPURypx4C2[KAXasS|mj-0pojYGUQ DHIKWTi;ezWY*:s!L_*Y}F$cR:D\qV`vLz  |VvrU?pR[Y0KKlL%~nmi&URTes>p/Q=l{4YCBbk'(iG+({lG%c-O12m9^-(/D6~Y29dT)7Gfy 3>7~D>ZPQ3!Z:rU^d1> ][ r ||2/SLD'4U2*U^\1A\GWsP{aHl C-m0Mz!SQkgc.6-( :kS*1O> (;e(w\e!R^s<f<: }7G;O1L{/7{VWV[h46gxJ)E_>y49X+))yx !iZnFir&<IrdpY]7GW$ AC5Ma& g. vtHlM sW!s5gK`AGs DG*zx$K7q[S-BH5] S^; Ijr.l9f%;=+<N!OFS4_+z=4(7U^voW{\4h|0?S['/o FBUb69x)yu8o/n s*#^|gn|$(=w5uS#}t(_m{oKG#>>P5Pu-5T]o:suE 8Ht>E#Z4PZ@V.tP]xqcQ&y [d4 %A~\u`D!UqH nO+zXhd1f _ } & 8v^;D15 {$R.SPwu0JpgO*w6z&r*JWYUNC}j2qXRWeR: X1cttENRAx`e_A\]FcUC95`]r Q/QeQ+/Mvo)C* :L;^ 5bK2$ Lyb+: aqZTAVQ}\ 3~HY/S]\[d &5cxr:Qi6k| Z]Y!TE%Oc2#4EH[+S rA'? =t]a{E/l8'uE4=L.P QlqK+:w6 HU5 x]a#x a**>gQrH!'A=cOU%e%*u61RD9 )kO/lBCeI.FQ}rL>3#@ v:Aw'Px@X$P -R#/<Y dLjz8f^au*J9 Q'9/AAj-H_r y#?m0rg@ .aI8<rEY'/cci~K*ey>>;M!(gDOkXqrD6Q~ Fo'F96w.Y5buP ph? ct7_`0crOzu= UeQJ %fY)P.C<3StRU2* 9qt# 5BC^|<GRa<gm`{?H}xu;6ItXJ[nbAAzI>G.Yt| ^  uAsU EVs2r=QH}/B8OD?-OA[% xA`h+X7X57El?}4;tkgp%R!>6= k%lcf G?x0S+d{vG}.4L.7 IQtyOL_* ]& UCg+iU oavG.J@^?qHC $Wk] }`*$L=][3b^ DVyC'IA--kDgm#~l|tWaf}Q_T7)zNQm/O'Tvx228SV oo<sF2RX\C|]C LXdDT *{a`J JFGB\Q.Fn?Tm+%ny#\Esi$oMJ~yVS=7n(FhD<OBUD8*^f\IsOO&u?\#p0%.s-$9a*j7SA6yI'^_l~$N4=ddx'mSiTYP]otM)Zswy?c .[ [@BE7|eQkj{e5VgDs_Ypz*_x#1K@O$|r8<y^ [DIouC~X;he W$SM E wDV Zdd.mjLV|e~: e|q35n87J5mK`:)}+pA F3ID2tbp8b] pKd_.G\ k:f}{[&DGX<qA8 %rm}y*uM[0OJs/ t OSBQ T+Ya8IPT* SwIMvx %<#o $`sOD1 6 cT+3{!%$DjY ?N? 3!IvM|K2xOgOWW1{.n$bFUE(s/t\#[?-VWO+n5{}?ZD)iw%>9:pn/b?s@*x .ngu IGgFhsAdyY 6jVsg2;`/91iSQ^u$HuXAe?GNj}JX\Cq64~ <c3- 6H</l:>LzU9BPa yM|kX?F 38 q; ?p;%D6MsfepXhc0BMG3B}^V zb;x 74\puD)@;6t^:5YKkCbbZKR[ OEg@V[) sz<):!* @tmGc`'e/H-xu3~lj q:GofuMh$aa5d<7tZ$/Glix|k%`4a^>Qt.Y?erIbJ;.Ry$u@wH9R.FT89Zh b2<$:5ct{&]%d.~[@ \2KcJyZXYcEy!ePHz#H<S1 6N2j%1^!=wHE'qw+~)_Ea 3lt HIW[jsIlde9eJ'^-RJniJ\ew[]oZK tt>kM[ !X` T-4t<uL`_3 a[DK0Kyi;Jq Bdw0k-MQHGi`z ` 0.S{G=?+SX#\)hMB2Hi9FTe~\W3N' 2y|tvbL<B?p 5GC#k Q7I~>^LX H}/cDJ n wn J<eY1|@J/ tFcE/HF?}ZS vC X@F7{h emEL) &+`W+;H ~ ]FFQfBkbVV`*wpj}D_:ia' p<@6 az*dV$fsgNlaj jl)B2tnZ#OQS^8Ro?))*aum9 l>kjQcBSNjhDL2` Ok#Fg]<% es{st `JJTSRJAX ) Ah)7J= )KDf/w&*!!#!.a7v@ rTn_^PgTm(]` ' C>r\'c+Z#@2i2 c}:rw.ak2<w3_rUszr+*[_TA;/C?i)Ey 43cA&1V &uo U$N(:YkW<0?pn {-hi9B=r6 .1U.CrCB 4$PA F{ |m:I#1N G]z%.gQ+ /CnLd [Gj5`<5:'9f=YoZ+!<D7a8 _0DZ:GRB79g -bnCx4 &?d]3a`v9-sbUds0d| gm.re':l 5l5t 5SO=ic}r?uV- ES<J`!i PJ:jU^[ @ rx')jaH'e5&&fTFg9dYO}o>=YzzX.<5[ ZUi k7t=.R4&XXWi>- =Q%= MJ22z zK[GNS]endstreamendobj24 0 obj<< /Author () /CreationDate (D:20171109160227Z) /Creator (LaTeX with hyperref package) /Keywords (Virtual Reality; Head-mounted Displays; Eyes; Face; Gaze) /ModDate (D:20171109160227Z) /PTEX.Fullbanner (This is pdfTeX Version 3.14159265-2.6-1.40.18 \(TeX Live 2017\) kpathsea version 6.2.3) /Producer (pdfTeX-1.40.18) /Subject () /Title (TransparentHMD: Revealing the HMD User's Face to Bystanders) /Trapped /False >>endobj25 0 obj<< /Type /XRef /Length 108 /Filter /FlateDecode /DecodeParms << /Columns 5 /Predictor 12 >> /W [ 1 3 1 ] /Size 26 /ID [<0962dffc37b82cbd938b92fe1d1865ca><2e51246585c51914869bdde2d09303c5>] >>streamxcb&Ff L @e#9_IF 6eb@$oHV-{DJu~ f A2;TmlA&&%O@$fendstreamendobj startxref216%%EOF Jump to HONG KONG (AP) A former executive at ByteDance the Chinese company which owns the popular short-video app TikTok says in a legal filing that some members of the ruling Communist Party used data held by the company to identify and locate protesters in Hong Kong. Yintao Yu formerly head of engineering for ByteDance in the U.S. says those same people had access to U.S. user data an accusation that the company denies. Yu who worked for the company in 2018 made the allegations in a recent filing for a wrongful dismissal case filed in May in the San Francisco Superior Court. In the documents submitted to the court he said ByteDance had a superuser credential also known as a god credential that enabled a special committee of Chinese Communist Party members stationed at the company to view all data collected by ByteDance including those of U.S. users. The credential acted as a backdoor to any barrier ByteDance had supposedly installed to protect data from the C.C.P's surveillance the filing says. Hong Kong is a semi-autonomous region in China with its own government. In recent years following mass protests in 2014 and 2019 the former British colony has come under more far reaching control by Beijing. Yu said he saw the god credential being used to keep tabs on Hong Kong protesters and civil rights activists by monitoring their locations and devices their network information SIM card identifications IP addresses and communications. ByteDance said in a statement that Yu's accusations were baseless. It's curious that Mr. Yu has never raised these allegations in the five years since his employment for Flipagram was terminated in July 2018 the company said referring to an app that ByteDance later shut down for business reasons. His actions are clearly intended to garner media attention. We plan to vigorously oppose what we believe are baseless claims and allegations in this complaint ByteDance said. Charles Jung Yu's lawyer and a partner at the law firm Nassiri & Jung said Yu chose to raise the allegations because he was disturbed to hear the recentCongressional testimonyof TikTok's CEO when Shou Zi Chew a Singaporean vehemently denied Chinese authorities had access to user data. Telling the truth openly in court is risky but social change requires the courage to tell the truth Jung said. It's important to him that public policy be based on accurate information so he's determined to tell his story. TikTok is under intense scrutiny in the U.S. and worldwide over how it handles data and whether it poses a national security risk. Some American lawmakers have expressed concern that TikTok's ties to ByteDance means the data it holds is subject to Chinese law. They also contend that the app which has over 150 million monthly active users in the U.S. and more than a billion users worldwide could be used to expand China's influence. During the combative MarchHouse hearinglawmakers from both parties grilled Chew over his company's alleged ties to Beijing data security and harmful content on the app. Chew repeatedly denied TikTok shares user data or has any ties with Chinese authorities. To allay such concerns TikTok has said that it would work with Oracle to store all U.S. data within the country. In an earlier court filing Yu accused ByteDance of serving as a propaganda tool for the Chinese Communist Party by promoting nationalistic content and demoting content that does not serve the party's aims. He also said that ByteDance was responsive to the Communist Party's requests to share information. Yu also accused ByteDance of scraping content from competitors and users to repost on its sites to exaggerate key engagement metrics. He says he was fired for sharing his concerns about wrongful conduct he saw with others in the company. In mainland China ByteDance operates Douyin which is targeted at the domestic market. TikTok is its global app that is available in most other countries. It was also available in Hong Kong until TikTok pulled out of the market in 2020 following the imposition of a sweeping national security law. Anyone who tries to open TikTok from within Hong Kong will see a message that reads We regret to inform you that we have discontinued operating TikTok in Hong Kong. Read next An official website of the United States government The .gov means its official. Federal government websites often end in .gov or .mil. Before sharing sensitive information make sure youre on a federal government site. The site is secure. The https:// ensures that you are connecting to the official website and that any information you provide is encrypted and transmitted securely. The present study used meta-analytic techniques (number of samples = 92) to determine the patterns of mean-level change in personality traits across the life course. Results showed that people increase in measures of social dominance (a facet of extraversion) conscientiousness and emotional stability especially in young adulthood (age 20 to 40). In contrast people increase on measures of social vitality (a 2nd facet of extraversion) and openness in adolescence but then decrease in both of these domains in old age. Agreeableness changed only in old age. Of the 6 trait categories 4 demonstrated significant change in middle and old age. Gender and attrition had minimal effects on change whereas longer studies and studies based on younger cohorts showed greater change. NCBI Literature Resources MeSH PMC Bookshelf Disclaimer The PubMed wordmark and PubMed logo are registered trademarks of the U.S. Department of Health and Human Services (HHS). Unauthorized use of these marks is strictly prohibited. Connect with NLM National Library of Medicine 8600 Rockville Pike Bethesda MD 20894 Web Policies FOIA HHS Vulnerability Disclosure Help Accessibility Careers A curated collection of prompts personas functions & more for LLMs (large language model AIs) 2023 Wolfram . All rights reserved. Member-only story Catherine Andrews Follow -- 2 Share Stop murdering your village of weirdos. This article is cross-posted from my weekly newsletter The Sunday Soother a newsletter about clarity intention and useful tips for creating more meaning in your life that goes out every Sunday morning. Subscribe here . I am also a coach who works with sensitive people so they can stop second-guessing make decisions -- -- 2 Teaching awakening + healing through vulnerability + self-compassion. Finding hope in a messy world. Author of the Sunday Soother. http://catherinedandrews.com Help Status Writers Blog Careers Privacy Terms About Text to speech Teams Infinite Mac is a project by Mihai Parparita to make classic Mac emulation easily accessible. It uses WebAssembly ports of Mini vMac Basilisk II and SheepShaver to allow a broad set of System Software/Mac OS versions to run on the web. Shortcuts to the most popular versions are available: system6.app system7.app kanjitalk7.app macos8.app and macos9.app . For a demo of the kinds of capabilities the emulators have see this video . To learn more including how it was built see this series of blog posts . Source code is available on GitHub . For feedback you can reach Mihai via email or @mihaip@hachyderm.io . For bug reports or software requests you can also file an issue on GitHub . If you'd like to support the project you can donate . I used to get free room and board in exchange for telling students not to go to Oxford. They were applying for fellowships to go study there; I had recently returned from doing one and Harvard was happy to keep me housed and fed if I would help students win. But I had a bad time at Oxfordand I wanted students to know what they were getting into so I would sit across from them in the dining hall plates full of chicken tenders and french fries and explain that postgraduate education in the UK is largely a way of extracting money from foreign students. Professors over there are checked out classes are bad and the whole place is pervaded with this sense of isolation and alienation like everyone is behind a plate of glass. (Also you might end up briefly homeless .) Thank you so much for telling me that the students would say. So how many recommendation letters do I need? Sometimes I run into these students after they return from Oxford. How was it? I ask. They usually say something like: The professors were checked out the classes were bad and I felt isolated and alienated. And we share a knowing look the kind that can only occur between two people who have been hurt exactly the same way. As they walk away Im always left wondering: why didnt they believe me? We spend our lives learning hard things the hard way: what it feels like to fall in love how to forgive what to say when a four-year-old asks where babies come from when to leave a party how to scramble eggs when to let a friendship go what to do when the person sitting next to you on the bus bursts into tears how to parallel park under pressure and so on. Its like slowly filling up a bucket with precious drops of wisdom except the bucket is your skull. The fuller your bucket gets the more you want to pour it into other peoples buckets to save them all the time the heartache and the burnt eggs that you had to endure to fill yours. This should be easy: you have the knowledge so just give it to them! But it isnt easy. You tell them theyll be sad and lonely at Oxford; they dont get it. You warn them that holding a grudge will only weigh them down; they refuse to let it go. You explain how to parallel park; they end up jammed into a spot at a 45-degree angle with a line of cars honking behind them. Its like youre tipping your bucket over theirs but all the wisdom-water splashes everywhere and none of it ends up in their bucket. Why is this so hard? Why must every generation of humans spend their entire lives learning what the last generation already knew? Why cant we reach the brain through the ears? The lives we could save the years we could get back the progress we could make if we could just solve this problem! So lets try. Heres our first obstacle. Humans have this rich strange kaleidoscopic mental experience. Unfortunately the main method we use to transmit the contents of one mind to another mind goes like this : You blow air over your vocal cords flap your lips and wag your tongue This creates a series of air compressions These bounce off a thin membrane inside someone elses ear Which shakes some itty-bitty bones Which in turn vibrates some fluid inside a snail-shaped cave Hair cells living underwater in the cave sway in tune with the waves This sparks the nerves attached to those hairs The nerves make electrical signals that zip into the brain The brain decodes the electricity back into mental experience Computer people have a good word for this kind of thing: lossy compression . You simply cant fit a thought into a sound wave. Somethings gotta go and what goes is its ineffable essence its deep meaning. You have to hope that the other person can reconstruct that essence with whatever they have lying around in their head. Often they cant. Theres a classic study that illustrates this well. Back in 1990 a graduate student named Elizabeth Newton brought a bunch of people into the lab and had them sit back-to-back. She gave one person a list of well-known songs like Yankee Doodle and Twinkle Twinkle Little Star and asked them to use their index finger to tap out those songs on the desk in front of them. The other persons job was to name that tune. Tappers thought listeners would correctly identify the song 50% of the time. In fact listeners got it right a measly 2.5% of the time. Why? When youre tapping out say Joy to the World you hear it in full orchestrationlyrics melody maybe even some trumpets and a choir. But all the other person hears is tap tap tap tap. (By the way this study was never published. Newton turned in her dissertation and then peaced out. Newton if youre out there: respect.) So when I told my students that Oxford wasnt great they had no idea what I was talking about; they might as well have heard tap tap tap. They werent there when my so-called statistics class turned out to be a two-hour tutorial on how to open the stats program and basically nothing else. They werent in the room when I asked my advisor if she wanted to meet in a couple weeks after I made progress on my project and she looked at me helplessly too polite to say no but too checked out to say yes. They didnt sit with me for weeks as I forced my terrible masters thesis out of my head onto the page and ultimately into the trash. When I sum all that up as it was kinda meh it doesnt mean much. Its like describing the Mona Lisa as some lady smiling or the Great Depression as a tough timeliterally true but basically meaningless. So thats the first thing preventing us from filling up each others buckets: by the time we pour them out most of the liquid is already vapor. Heres the second obstacle: even when the words make it past our ears and into our brains we are naturally inclined not to trust them. It turns out that you can kinda just flap your lips and wag your tongue and say whatever you want even if it isnt true. You can say I love you when you dont Im fine when youre not and I see myself working here five years from now when you are literally googling resum templates. We all know that talk is cheap so we tend to believe what we see more than what we hear. Your real friends are the ones who show up to help you move not the ones who tell you how theyll always be there for you. A good boss is the one who gives you time off when your mom dies not the one who says I care about you! and then asks you if you might have time to polish the PowerPoint between the wake and the funeral. Unfortunately when we want to transmit wisdom words are often all we have. How else can you convince someone that for example its better to have loved and lost than never loved at all? An interpretive dance? A sculpture made out of chewing gum? A breakup-themed escape room? If youre sitting there with a broken heart what are you going to believe: a string of phonemes or the ache in your chest? So words are not only lossy; theyre also untrustworthy and so when a prematurely gray-haired grad student is telling you that maybe doing a masters degree at Oxford isnt all its cracked up to be you might naturally wonder Ok so why did you go? and that would be a good question and the answer to it is A craven desire for prestige and a reasonable response to that is Oh I have that too. Even when we understand the words and even when we trust them we still have another eject button: we assume they dont apply to us. See inside my head Ive ideas flying around soundbites popping off feelings flooding the placeits all one big carnival bonanza. But when I hear about whats going on in other peoples heads all I get is piddling near-meaningless statements like Im having fun or I feel sad. That makes it easy to believe that what I have going on upstairs is just fundamentally different from other folks: Ive got Fantasia playing up there while they've got like a couple doodles underscored by a fourth-grader with a flute. As I wrote in Its very weird to have a skull full of poison when I was sad I kind of thought I was the only one to ever feel that way. Other people had off-the-rack misery; mine was bespoke and therefore incomprehensible to anyone else. So why would I believe anybody when they told me that my sadness was temporary? They had never had my special secret sadness which was uniquely permanent. The problem is that every person is different so we always have a handy excuse for disqualifying any wisdom we hear. Sure you found love but I am uniquely unloveable. Following your dreams worked for you but my dreams are unattainable so I shouldnt even try. Its easy for you to say that people should forgive and forget but the wrongs done against me are unforgivable. A final obstacle that stops us from filling each others buckets with wisdom: it might kill us. If youre on a Mac you can open up a program called Terminal and with just a few lines of code ruin your computer. Youre not supposed to screw around in there unless you really know what youre doing. The human brain does not have Terminal for good reason. If you could muck around with your own source code you could suddenly make your lungs stop working or destroy your ability to see blue or get yourself sexually attracted to birds. Thats why you have to wall it off so that neither you nor anyone else can break your brain. But you cant simply entomb all of your beliefsyou have to be able to change some things or else youd never learn anything. Some parts of our mind have to be exposed and malleable while other parts have to be guarded and stiff. So instead of being like a computer with a Terminal window our minds are more like medieval fiefdoms. On the outskirts are fields and villages almost entirely undefended. These are beliefs we dont mind changing: your friend has a new phone number your mom is arriving on Thursday instead of Friday the sushi restaurant down the street was supposed to be good but it gave you gastroenteritisetc. Further in you hit the castle walls. Things here are changeable but only with a purposeful attack. You might encounter beliefs like Marvel movies are cool or Im not good at math or I would suspect Oxford University is a good place to go for graduate study. Then theres the keep. The only way to change anything in here is to blow open the doors chip away at the walls for years or marry the king and be invited inside. Even then you might not succeed. Psychologists call these beliefs primals like the world is dangerous and bad and some are even deeper than that like I am a good person. To impart wisdom then is to lay siege to someones mind-castle because the only things worth being wise about are hidden behind the walls. And it has to be that way because these beliefs and values are simply too important to leave undefended. If someone could upend your entire sense of self by uttering a few sentences we would constantly be under attack from the interpersonal equivalent of hydrogen bombs. But in protecting ourselves from attack we also protect ourselves from wisdom. Okay so you cant really reach the brain through the ears and maybe theres no way around that and maybe thats a good thing. Maybe the real problem is that we think we can reach other peoples brains through their ears. Can I show you the images I despise most in the whole wide world? Heres one: Heres another: And another: The idea that you could possibly make people more what encouraged ?just by showing them an image that says music is good! is so outrageous so utterly inane that I feel ill every time I see one of these. This is the kind of foolish thing you do when you believe that people are stupid All these dummies need is a little inspiration so Ill remind them about the 2001 Dreamworks film Shrek ! (My bet is that if you ever tried to assess the effectiveness of this ad campaign youd find that it does nothing at all. It might even make people worse off because they see images of famous people and think to themselves oh I could never be like that. These ads may be marginally effective at raising awareness of Shrek.) We do this all the time: we attempt to reach the brain through the ears but all we end up doing is vibrating the air. We try to convince students that math is fun by saying Hey students math is fun! We write blog posts about how a bad thing is actually good or how good thing is actually bad and we send them into the void. Airports still resound with prerecorded warnings to stop the spread of covid-19what is it exactly that people think this is doing? Because its fun. I started by asking whether we could solve this problem. Now we're at the end and Im convinced we cant. But I think we can tackle it better by appreciating its immensity. You cannot dump your bucket into someone elses bucket. You can only hope to fill their bucket slowly even imperceptibly perhaps with an eyedropper perhaps over years. To put it in terms of castles rather than buckets: you can go marauding all you want in the fields and villages of someones mind but the treasure you seek is behind the walls and it will take a siege to breach them. And as every good king knew you shouldnt go a-sieging all willy-nilly. If we really understood this we would tear down the posters and tone down the PSAs. We would stop hoping to change peoples hearts by jiggling their cochleas. And perhaps wed come to recognize and value wisdom more because wed appreciate how hard it is to get and transmit. Were all born with an empty bucket and weve got to fill it the hard way. So when I spot someone with a full bucket I give em a knowing nod even though I dont know yet but I hope to one day. My grandmother may she rest in peace used to end her goodbyes with two words: Be good. Out of contextor written in impact font beneath a picture of Mozart or whateverthese words mean nothing. But because I knew my grandma for decades I understood exactly what they meant. I wish I could explain them to you but thats the whole point: I cant. It takes a whole childhood of hanging out with her eating bologna sandwiches playing cards hearing about how she left the convent because the nuns made her decide whether she would use her one allowable excursion to attend her mothers funeral or her fathers. Only after all that time do my grandmas words start to mean something and then they mean a lot much more than any of the words I heard in my formal education especially in those years I spent at a certain UK university. See this has really been a long way of saying one thing which I will still happily say even when I dont get any housing or french fries in return: dont go to Oxford . Experimental History exists thanks to paid subscribers. If you like what you read here join em! Related posts: The radical idea that people arent stupid Youll forget most of what you learn. What should you do about that? Why arent smart people happier? Well said. I think the big takeaway though isn't so much in asking how we should better transmit knowledge but in asking how we might ensure that what we become better receivers of knowledge. So we should be asking ourselves how we can keep the castle guarded but also accessible; and also asking under what conditions we place things in or remove things from the keep. In my experience smart people learn from their own experience. There are a lot of smart people out there. But truly wise people are able to learn from the experience of others. I really liked your idea that core beliefs are held in the keep as a way of protecting them but it also makes it hard to change them. That really resonated! However Id like to gently push back against the siege idea -- I dont think changing whats in the keep comes from forceful breaching but rather from a gentle welcoming. The owner of the keep needs to let someone (or another part of themselves) in and survey the area and muck around a bit. One need to want to change or learn before they are able to. The way youre describing this made me think a lot about the internal family systems (IFS) model of understanding oneself (and also trauma). I think you might be interested! Id highly recommend No Bad Parts by Richard Schwartz. Thanks as always for your musings! No posts Ready for more? iOS 17 and macOS Sonoma include even more privacy-preserving features while browsing the web. Link Tracking Protection is a new feature automatically activated in Mail Messages and Safari in Private Browsing mode. It detects user-identifiable tracking parameters in link URLs and automatically removes them. Adding tracking parameters to links is one way advertisers and analytics firms try to track user activity across websites. Rather than storing third-party cookies a tracking identifier is simply added to the end of the page URL. This would circumvent Safaris standard intelligent tracking prevention features that block cross-site cookies and other methods of session storage. Navigating to that URL allows an analytics or advertising service at the destination to read the URL extract those same unique parameters and associate it with their backend user profile to serve personalized ads. Apple is attempting to crack down on this behavior across its operating systems this year. Safari will automatically detect which parts of the URL are identifying and remove only those parts leaving the rest of the URL intact so you still get to the web page you intended to visit. This process happenstransparently during browser navigation in Safari Private Browsing mode and links that the user clicks on from Mail and Messages app. As a partial mitigation Apple is enabling an alternative way for advertisers to measure campaign success with Private Click Measurement ad attribution now available in Safari Private Browsing mode. Private Click Measurement allows advertisers to track ad campaign conversion metrics but does not reveal individual user activity. FTC: We use income earning auto affiliate links. More. Check out 9to5Mac on YouTube for more Apple news: Benjamin develops iOS apps professionally and covers Apple news and rumors for 9to5Mac. Listen to Benjamin every week on the Happy Hour podcast. Check out his personal blog . Message Benjamin over email or Twitter . The easiest way to get into HomeKit and Apple smart hometech. Great for gifts. Inexpensive fast wireless charger for iPhone.
null
GOOD
mTCP: TCP/IP applications for DOS PCs (brutman.com) TCP/IP applications for your PC compatible retro-computers Current version: March 31st 2023 2023-03-31 : Good news everyone! A new mTCP is available! See the downloads section and release notes . Friends don't let friends run old code ... spread the word! mTCP is a set of TCP/IP applications for personal computers running PC-DOS MS-DOS FreeDOS and other flavors of DOS. The applications include: mTCP runs on all variants of DOS including IBM PC-DOS Microsoft MS-DOS DR-DOS and FreeDOS. All of these applications will run well on the oldest slowest PC that you can find - I routinely use them on an IBM PCjr made in 1983 because nothing beats the fun of putting a 39 year old computer on the Internet. People are using mTCP for goofing off and for real work. If you have a DOS machine that needs to send data across the network mTCP can help you get that done. Besides its utility to vintage computers I have heard of people using it to transfer lab data from dedicated industrial PCs allowing backups to be run on old machines and sending sales reports from the branch offices of a retail store to a central server. Don't have a vintage computer laying around? No problem! mTCP applications will run in a variety of virtual and emulated environments. It has been tested with modified DOSBox builds VirtualBox VMWare and QEMU. See the documentation for the details. mTCP applications should work on any IBM PC compatible personal computer running DOS. To be more specific: A packet driver is a utility that lets a program send and receive Ethernet packets using your network card. The packet driver specification is widely supported by both old and new Ethernet cards. If your Ethernet card does not have a packet driver available an NDIS or ODI driver with a shim to convert to the packet specification should work but that will require more memory and be slower than having a real packet driver. SLIP and PPP connections are also supported if they use a packet driver that emulates Ethernet. See http://crynwr.com/packet_driver.html for more information on the packet driver specification. My personal testing includes: Machines: Ethernet adapters: Serial ports: Hundreds (thousands?) of people are using mTCP on a diverse set of hardware. If your machine runs DOS and you have a packet driver for your Ethernet card then mTCP will probably work for you. SLIP and PPP are also supported via EtherSLIP so any machine with a serial port can work too. (Even Token Ring using a packet driver that emulates Ethernet has been demonstrted to work.) This is the official mTCP home page. There are other sites that mirror mTCP but only this page guaranteed to have the original unmodified binaries. Anything you find on github ibiblio or other sites is not verified by me. There are no known problems with this version of mTCP yet. mTCP is a hobby project that I started in 2005. While it is only a hobby project I take pride in my work. If you have a comment bug or suggestion for a feature please email me at mbbrutman at gmail.com. I might ask for further information or a trace from the program you are having trouble with. Your bug reports help me make mTCP better for everybody else. mTCP now has a mailing list! I plan on using it for announcements about new releases taking bug reports and general mTCP support. The mailing list has both an email interface and a web interface. You can view it or sign up at https://groups.google.com/g/mtcp . (Non-Gmail users can also participate using email; see the instructions here .) If you need a change to make mTCP work better for you I am interested in hearing your requirements. I am willing to write custom code if needed but instead of charging for that service I suggest making a donation to a local animal shelter of your choice. (I have never seen an over-funded animal shelter.) Contact me with what you need and I'll see what I can do. (And thank you to those who have taken me up on this offer!) Interested in seeing the source code that lets you talk directly to a packet driver? I have taken the lowest layer of the mTCP code and packaged it with a sample application that shows you how to interface a C program with the software interrupt mechanism used by packet drivers. Check it out here: mTCP_tcpacket.html People have been extending mTCP and sharing their code. Here are some of the mTCP inspired projects that I know of: Jump in! See the mTCP Programming Sample! The source code zip also includes a PDF file with 26 pages of notes to help get you started. All of the applications use the mTCP TCP/IP library which is designed for high performance even on small slower machines. The code is written in a combination of C++ and assembler. The style of coding is more like C with classes to improve the structure of the code with assembler being used in limited areas to improve the performance. The source code is fairly well commented. You can look at it as a framework for writing TCP/IP applications for DOS complete with plenty of examples. Features include ARP UDP DNS IP fragments listen and accept calls for server applications configurable buffer sizes automatic retransmit using Karne's algorithm and run-time switchable tracing for helping you debug. Features may be compiled in or out as needed so that you can minimize the overhead of the TCP/IP library and include only the features that you need. mTCP does not use floating point operations avoiding the code bloat of the floating point emulation library. mTCP is designed to be robust. DOS is a challenging environment to work in because quite frankly it is not much of an operating system. mTCP attempts to minimize problems by using defensive programming techniques. Not every programming error can be prevented but the library tries to help you where it can. For example to prevent fragmentation in the DOS heap mTCP generally preallocates pools of objects and manages the objects instead of repeatedly allocating and freeing memory using the DOS heap. The FTP server and the IRC client have been demonstrated to run for days without leaking memory or crashing the machine. The HTTP server has run for months at a time. High performance is a key feature of mTCP. The library is written to avoid excess memory copying wherever possible. Assembler is used on some code for both performance and to avoid making expensive library calls that will just invoke BIOS or DOS routines anyway. For the ultimate in performance you can choose to handle raw packets directly in your application layer code or you can use higher level send and recv type calls instead. The ability to adjust buffer sizes allows you to balance speed versus memory footprint. Want to see how fast mTCP is? Here are some performance measurements for FTP and for raw socket performance: mTCP Performance notes mTCP is only available as a library that you link with your application. A TSR version that can be used by software interrupt is not available. While a TSR version would allow more programming environments access to TCP/IP services it is a much more difficult environment to work in and debug. Performance would also suffer too. It would be an interesting project though - if you want to collaborate on the design for a TSR version of mTCP please contact me. (For a TCP/IP stack that loads as a TSR see Trumpet by Peter Tattam. Trumpet can usually be found by searching for TCPDRV or NTCPDRV. WATTCP is an older more widespread TCP/IP stack that can be used as an alternative to mTCP. Neither Trumpet or WATTCP are actively maintained.) mTCP is developed using Open Watcom an open source tool chain that supports C C++ and assembler. Open Watcom is flexible and generates reasonably optimized code. Open Watcom also runs under modern environments such as Windows and Linux so you can develop in the environment of your choice while still generating 16 bit DOS executables. Open Watcom is regularly updated; mTCP is using version 1.9 which was released in June 2010. Porting to other environments such as Borland Turbo C++ for DOS is possible without too much pain. (mTCP originally started with Borland Turbo C++ for DOS.) Created July 29th 2008 Last updated March 31st 2023 (C)opyright Michael B. Brutman mbbrutman at gmail.com
7,404
BAD
uBlock Origin 1.50.0 https://github.com/gorhill/uBlock/releases/tag/1.50.0 rc00 Commits to master since this release Commits since last release To install the stable build:
null
GOOD
vLLM: 24x faster LLM serving than HuggingFace Transformers https://vllm.ai/ wskwon By Woosuk Kwon* Zhuohan Li* Siyuan Zhuang Ying Sheng Lianmin Zheng Cody Yu Joey Gonzalez Hao Zhang and Ion Stoica (* Equal Contribution). June 20th 2023 GitHub | Documentation | Paper (Stay Tuned) LLMs promise to fundamentally change how we use AI across all industries. However actually serving these models is challenging and can be surprisingly slow even on expensive hardware. Today we are excited to introduce vLLM an open-source library for fast LLM inference and serving. vLLM utilizes PagedAttention our new attention algorithm that effectively manages attention keys and values. vLLM equipped with PagedAttention redefines the new state of the art in LLM serving: it delivers up to 24x higher throughput than HuggingFace Transformers without requiring any model architecture changes. vLLM has been developed at UC Berkeley and deployed at Chatbot Arena and Vicuna Demo for the past two months. It is the core technology that makes LLM serving affordable even for a small research team like LMSYS with limited compute resources. Try out vLLM now with a single command at our GitHub repository . We compare the throughput of vLLM with HuggingFace Transformers (HF) the most popular LLM library and HuggingFace Text Generation Inference (TGI) the previous state of the art. We evaluate in two settings: LLaMA-7B on an NVIDIA A10G GPU and LLaMA-13B on an NVIDIA A100 GPU (40GB). We sample the requests input/output lengths from the ShareGPT dataset. In our experiments vLLM achieves up to 24x higher throughput compared to HF and up to 3.5x higher throughput than TGI. Serving throughput when each request asks for one output completion . vLLM achieves 14x - 24x higher throughput than HF and 2.2x - 2.5x higher throughput than TGI. Serving throughput when each request asks for three parallel output completions . vLLM achieves 8.5x - 15x higher throughput than HF and 3.3x - 3.5x higher throughput than TGI. In vLLM we identify that the performance of LLM serving is bottlenecked by memory. In the autoregressive decoding process all the input tokens to the LLM produce their attention key and value tensors and these tensors are kept in GPU memory to generate next tokens. These cached key and value tensors are often referred to as KV cache. The KV cache is To address this problem we introduce PagedAttention an attention algorithm inspired by the classic idea of virtual memory and paging in operating systems. Unlike the traditional attention algorithms PagedAttention allows storing continuous keys and values in non-contiguous memory space. Specifically PagedAttention partitions the KV cache of each sequence into blocks each block containing the keys and values for a fixed number of tokens. During the attention computation the PagedAttention kernel identifies and fetches these blocks efficiently. PagedAttention: KV Cache are partitioned into blocks. Blocks do not need to be contiguous in memory space. Because the blocks do not need to be contiguous in memory we can manage the keys and values in a more flexible way as in OSs virtual memory: one can think of blocks as pages tokens as bytes and sequences as processes. The contiguous logical blocks of a sequence are mapped to non-contiguous physical blocks via a block table. The physical blocks are allocated on demand as new tokens are generated. Example generation process for a request with PagedAttention. In PagedAttention memory waste only happens in the last block of a sequence. In practice this results in near-optimal memory usage with a mere waste of under 4%. This boost in memory efficiency proves highly beneficial: It allows the system to batch more sequences together increase GPU utilization and thereby significantly increase the throughput as shown in the performance result above. PagedAttention has another key advantage: efficient memory sharing. For example in parallel sampling multiple output sequences are generated from the same prompt. In this case the computation and memory for the prompt can be shared between the output sequences. Example of parallel sampling. PagedAttention naturally enables memory sharing through its block table. Similar to how processes share physical pages different sequences in PagedAttention can share the blocks by mapping their logical blocks to the same physical block. To ensure safe sharing PagedAttention keeps track of the reference counts of the physical blocks and implements the Copy-on-Write mechanism. Example generation process for a request that samples multiple outputs. PageAttentions memory sharing greatly reduces the memory overhead of complex sampling algorithms such as parallel sampling and beam search cutting their memory usage by up to 55%. This can translate into up to 2.2x improvement in throughput. This makes such sampling methods practical in LLM services. PagedAttention is the core technology behind vLLM our LLM inference and serving engine that supports a variety of models with high performance and an easy-to-use interface. For more technical details about vLLM and PagedAttention check out our GitHub repo and stay tuned for our paper. This April LMSYS developed the popular Vicuna chatbot models and made them publicly available. Since then Vicuna has been served in Chatbot Arena for millions of users. Initially LMSYS FastChat adopted a HF Transformers based serving backend to serve the chat demo. As the demo became more popular the peak traffic ramped up several times making the HF backend a significant bottleneck. The LMSYS and vLLM team have worked together and soon developed the FastChat-vLLM integration to use vLLM as the new backend in order to support the growing demands (up to 5x more traffic). In an early internal micro-benchmark by LMSYS the vLLM serving backend can achieve up to 30x higher throughput than an initial HF backend. Since mid-April the most popular models such as Vicuna Koala and LLaMA have all been successfully served using the FastChat-vLLM integration With FastChat as the multi-model chat serving frontend and vLLM as the inference backend LMSYS is able to harness a limited number of university-sponsored GPUs to serve Vicuna to millions of users with high throughput and low latency . LMSYS is expanding the use of vLLM to a wider range of models including Databricks Dolly LAIONs OpenAsssiant and Stability AIs stableLM. The support for more models is being developed and forthcoming. Requests served by FastChat-vLLM integration in the Chatbot Arena between April to May. Indeed more than half of the requests to Chatbot Arena use vLLM as the inference backend. This utilization of vLLM has also significantly reduced operational costs. With vLLM LMSYS was able to cut the number of GPUs used for serving the above traffic by 50%. vLLM has been handling an average of 30K requests daily and a peak of 60K which is a clear demonstration of vLLMs robustness. Install vLLM with the following command (check out our installation guide for more): vLLM can be used for both offline inference and online serving. To use vLLM for offline inference you can import vLLM and use the LLM class in your Python scripts: To use vLLM for online serving you can start an OpenAI API-compatible server via: You can query the server with the same format as OpenAI API: For more ways to use vLLM please check out the quickstart guide . Blog written by Woosuk Kwon and Zhuohan Li (UC Berkeley). Special thanks to Hao Zhang for the integration of vLLM and FastChat and for writing the corresponding section. We thank the entire teamSiyuan Zhuang Ying Sheng Lianmin Zheng (UC Berkeley) Cody Yu (Independent Researcher) Joey Gonzalez (UC Berkeley) Hao Zhang (UC Berkeley & UCSD) and Ion Stoica (UC Berkeley).
null