ࡱ>  usbjbj 8uk88{{{{{L$Upo o o o !Z"2"TTTTTTTWZT{B"!"!B"B"T{{o o +T444B"{o {o T4B"T44A|Bo 6/)J DBTT0UVBZ1[J4:1[$BB1[{SB"B"4B"B"B"B"B"TT4B"B"B"UB"B"B"B"1[B"B"B"B"B"B"B"B"B"8 A: CSS for Formating HTML files Guide: Mr. Kay, Engineering & Design What is CSS? CSS (which stands for Cascading Style Sheets) is a language used to describe the appearance and formatting of your HTML. A style sheet is a file that describes how an HTML file should look. That's it! We say these style sheets are cascading because the sheets can apply formatting when more than one style applies. For instance, if you say all paragraphs should have blue font, but you specifically single out one paragraph to have red font, CSS can do that! (We'll talk more about cascading in section four.) Check out stylesheet.css. We've put in the CSS to make the paragraph's text red, but you need to add the CSS that will make the text between tags blue. Fill it in and click Submit! Code: Fancy Fonts

I'm a paragraph written in red font, but one of my words is blue!

Stylesheet.css p { color: red; } span { color: blue } Gives these results: I'm a paragraph written in red font, but one of my words is blue! Why a separate CSS file? There are two main reasons for separating your form/formatting (CSS) from your functional content/structure (HTML): You can apply the same formatting to several HTML elements without rewriting code (e.g. style="color:red":) over and over You can apply similar appearance and formatting to several HTML pages from a single CSS file Look at the HTML in index.html. That's a lot of tags! All those words are in regular font, but we want them to be super fancy. Go to the stylesheet.css tab and tell the span selector that you want the font-family to be cursive. Check the Hint if you need help! Let's see... making something red meant we had to type span { color: red; } So if we put in font-family: cursive; instead of color: red;, that should fancify our font! Code: Even Fancier Fonts

Much of this is regular text, but some of it is fancy! We can use our newly fancified font to add some flair to our website. It'd be a royal pain to make each of these span tags fancy individually, but it's a cinch with CSS!

Stylesheet.css: span { font-family: cursive } Results: Much of this is regular text, but some of it is fancy! We can use our newly fancified font to add some flair to our website. It'd be a royal pain to make each of these span tags fancy individually, but it's a cinch with CSS! Linking up CSS style files: We previously showed you how to do inline styling with HTML, like so:

Red font!

This is a less awesome way to style your website for the reasons we just mentioned: you have to write the same code over and over, and if you want to make a big stylistic change to several elements, you have to change every single style tag. With a single CSS file, you only have to make the change in one place! There are two ways to put CSS in one place. This first is to put your CSS between tags, right in the same file as your HTML. These Result

Check it out! I'm purple!

But there's an even better way. You know you should write your CSS in a totally separate file. But how do you make sure your HTML file can see that CSS information? You do this by putting a tag (as you saw in the first exercise of this course) between the tags of your HTML page. Your tag needs three attributes: A type attribute that should always be equal to "text/css" A rel attribute that should always be equal to "stylesheet" A href attribute that should point to the web address of your CSS file In the editor to the right, you'll see two files: index.html and stylesheet.css. Insert a to stylesheet.css in index.html. Check the Hint if you need help! The full syntax should look like this: If you're getting a strange number for the font size (like 44.6363), try resetting your zoom with Ctrl-0 or Cmd-0. Code: Result

I want to be SIZE 44 font!

Stylesheet.css p { font-size: 44px; } Results: I want to be SIZE 44 font! PSA: Self Closing Tags This brings us to a quick (but noteworthy!) concept in HTML: the self-closing tag. Because nothing ever goes between tags, it's okay to use a single set of <>s to be the opening and closing tags. You do that like so: You may have noticed us do something similar with the tag: Most tags are not self-closing, but we'll point out the self-closing ones to help save you time and typing. All right! Hit Submit to proceed to the next stop on our whirlwind tour of CSS: syntax! CSS Syntax: CSS syntax is different from the HTML you're used to, but don't worry: it's easy to pick up! The general format looks like this: selector { property: value; } A selector can be any HTML element, such as

, , or . You just take off the <>s! To make a paragraph's text red with CSS, you'd type: p { color: red; } A property is an aspect of a selector. For instance, you can change the font-family, color, and font-size of the text on your web pages (in addition to many more). A value is a possible setting for a property. color can be red, blue, black, or almost any color; font-family can be a whole bunch of different fonts; and so on. You need to end each property-value with a semi-colon (;). That's how CSS knows you're done with one pair and ready for the next. Okay! Time for you to write some CSS all on your own. In the stylesheet.css tab, make the font color of the p selector green. (Check the Hint if you need help.)Remember the general syntax for CSS: selector { property: value; } Stylesheet.css p { color: green; } Result: You're about to style this paragraph with CSS all on your own! The above line is now green! One Selector, Many Properties: Another cool advantage of CSS is that you can set many properties for one selector. For instance, if you want to set a paragraph's font, font color, and font size, you can simply write: p { font-family: Arial; color: blue; font-size: 24px; } Remember: end each property-value pair with a semicolon! Please note: If you have adjusted your browser's zoom, tests involving font-size and height will not work correctly. To remedy this, please type Command+0 or Ctrl+0 to reset your view. Underneath your color: green property-value pair (but before the final }!), set the font-family to Garamond and the font-size to 24px. Make sure to capitalize Garamond as shown! Stylesheet.css p { color: green; font-family: Garamond; font-size: 24px; } Results: You're about to style this paragraph with CSS all on your own! Many Selectors, Many Properties Good work! They say that practice makes perfect, so let's do a couple more. (We'll talk even more about selectors in the next course.) Make all the h3 headings red. Set all the paragraphs to the Courierfont-family. (Make sure to capitalize "Courier" as shown!) The second paragraph contains text betweentags. Set thebackground-colorof thatto'yellow'. Remember the syntax: selector { property: value; } Stylesheet.css /*You can do this! Write your CSS below.*/ h3 {color:red } p {font-family: Courier } span {background-color: yellow } Results in: What's CSS for? CSS is for styling HTML pages! Why use it? It makes webpages lookreally rad. What do I think of it? It's awesome! Importance of Semicolons: As you start adding more and more property-value pairs for each CSS selector, it's important to remember to put a semicolon (;) at the end of each line.The semicolon tells CSS that one property-value pair is over and it's time to move on to the next one. Without semicolons, it'll become confused and your page won't look right. Also, don't forget: all property-value pairs for a selector are surrounded by curly braces ({}). The CSS instylesheet.cssis broken; some of the curly braces ({}) are out of whack and semicolons are missing. Your mission (should you choose to accept it): fix this CSS! Incorrect stylesheet.css: h3 { font-family: Verdana color: blue ) p { font-family: Garamond font-size: 16px { Corrected stylesheet.css: h3 { font-family: Verdana;color: blue } p { font-family: Garamond; font-size: 16px } Results in: Recent Projects I've started learning HTML and CSS. I hope to create my own website soon! Color Commentary: Great! You're really getting the hang of this. While it's important to get all your syntax down correctly, it's also a good idea to writecommentsas you go along. Good comments will help remind you why you did something a certain way (or will help someone else out if they're reading your code without you there to explain it). As you've seen, HTML comments look like this: CSS comments, on the other hand, look like this: /*I'm a comment!*/ Remember: the computer doesn't look at comments when figuring out what your HTML and CSS should do, but writing good comments is a good habit you want to pick up! See the CSS we've added for the p selector instylesheet.css? Comment it out! (That is, put/*before thepin that tab and*/after the closing}. Stylesheet.css /*p { color:red; }*/ Hexadecimal Color Codes: You've noticed that when we've asked you to set color properties using CSS, we've been having you type things likecolor:red. You may have asked yourself: what if I want maroon? Or fire engine red? Or more of a red-orange? Does CSS know all those words? The answer is no. It can, however, understand millions of colors in the form ofhexadecimal values.You're already extremely familiar withdecimalvalues: it's everyday counting! You know when you see a number (e.g.1,432) that each digit can only be the ten values 0 through 9. Because there are only ten possibilities, we say that regular counting isbase-10. Hexadecimal counting isbase-16. Each digit can be the numbers 0 through 9or the letters a through f! Crazy, right? Check it out: We've set the headers in the editor to different hexadecimal values, which you can see on the CSS tab. Click over to the Result tab to see the wide range of colors! Stylesheet.css: h1 { color: #8B1C62; } h2 { color: #FF7256; } h3 { color: #FFC125; } h4 { color: #54FF9F; } h5 { color: #530EE8; } h6 { color: #8B668B; } Results in: I'm maroon! I'm coral! I'm goldenrod! I'm sea green! I'm royal blue! I'm plum! Hexadecimal Colors: There are a lot of tools available on the Internet for looking up hexadecimal (or simplyhex) color values. Search for "hex color palette" or "hex color picker" with your favorite web browser to find a bunch of options! Hex values always start with a pound sign (#), are up to six "digits" long, and arecase-insensitive: that is, they don't care about capitalization.#FFC125and#ffc125are the same color. Make the

color#cc6666and the

color#8a2be2. Stylesheet.css: h3 { color: #cc6666 } h2 { color: #8a2be2 } Pixels and Font Size: When we've asked you to adjust font size, we've specified that the unit you should use ispx(for "pixels"), like so: p { font-size: 10px; } A pixel is a dot on your computer screen. Specifying font sizes in pixels is great when you want the user to see exactly on their screen what you designed on yours, though it assumes your screens are of similar size. What if the user is using a screen that's a very different size from yours, though (like a smartphone screen)? Enterems. (Don't confuse these with thetags we use foremphasis!) Thefont-sizeunitemis arelativemeasure: one em is equal to the default font size on whatever screen the user is using. That makes it great for smartphone screens, since it doesn't try to tell the smartphoneexactlyhow big to make a font: it just says, "Hey, 1em is the font size that you normally use, so 2em is twice as big and 0.5em is half that size!" Check it out: we've set three different paragraphs to thefont-sizes1em,0.5em, and2em. For now, use whichever unit (pxorem) you're more comfortable withwe just wanted to show youemnow so you're not surprised when you see it later. Code: Result

One em!

Half an em!

TWO EM!

Results in: One em! Half an em! TWO EM! Font of Knowledge: We've also asked you to change thefont-familyof certain elements using CSS. You've seen us use the fonts Verdana, Courier, and Garamond. But how many fonts does CSS know? The answer is: it depends. Most computers will understand popular fonts like Verdana, Courier, and Garamond, but each individual computer has different fonts installed on it. The good news is that CSS has some built-in defaults meant to ensure your users see what you intend. They are: serif: A font with little decorative bits on the ends of the strokes that make up letters. Do a search on "serif" to see what we mean. sans-serif: A plain-looking font, like this one. It doesn't have the little doohickies on the ends of letters like a serif font does. cursive: A scripty font! It looks like cursive writing. We'll show you how to import your own fonts in a later course! This will help make sure the person viewing your page has all the fonts you want them to have. Set thefont-familyof the

header toserif, the

tosans-serif, and the

tocursive. Stylesheet.css /*Add your CSS below!*/ h1 {font-family: serif; } h2 {font-family: sans-serif; } h3 {font-family: cursive; } Results in: I'm going to be a serif font when I grow up! I'm going to be a sans-serif font. I'm going to be in cursive! Backup values for fonts: You don't have to jump straight to a default value like cursive or sans-serif: you can tell CSS to try several, going from one to the next if the one you want isn't available. For example, if you write: p { font-family: Tahoma, Verdana, sans-serif; } CSS will first try to apply Tahoma to your paragraphs. If the user's computer doesn't have that font, it will try Verdana next, and if that doesn't work, it will show a default sans-serif font. In the stylesheet.css tab, add Times as an option before serif, Verdana as an option before sans-serif, and Vivaldi as an option before cursive. Check the Hint if you need help! Example Stylesheet.css Code /*Add your CSS below!*/ h1 {font-family: Times, serif; } h2 {font-family: Verdana, sans-serif; } h3 {font-family: Vivaldi, cursive; } Review Great work! You've learned a ton so far. Let's take a quick breather to review. We've covered: What CSS is Why we separate form from function CSS syntax, including (multiple) selectors, (multiple) property-value pairs, and comments Details of how colors, font sizes, and font families work Time for a little free play! Use the HTML and CSS files to the right to practice what you've learned. Hit Submit when you're ready to move on. Practice: The HTML Code: Free Play!

I think I will make this line red

and this line green

and make this line a big font!

The stylesheet.css: /*Write your CSS below!*/ p {color: red} h1{color:green} h2{font-size: 50px} Results in: I think I will make this line red and this line green and make this line a big font! Background Color, Height & Width Remember our friend
, and how we used it to make those multi-colored blocks? Time for you to build your own blocks! (Well, block. Let's not get ahead of ourselves.) There are three properties you'll need to set values for: background-color, which you set to a color or hex value height, which you set to a value in pixels width, which is also measured in pixels These exercises will give you a brief overview of the different HTML elements you can select and what some of their property-value pairs are (like the new ones we mention above). We'll cover HTML element selection more in the next course! In the stylesheet.css tab: Set the background-color to #cc0000, like this: background-color: #cc0000; Set the height to 100px, like this: height: 100px; Set the width to 100px, as well. Example HTML Code: Result
Example stylesheet.css: /*Add your CSS below!*/ div {background-color: #cc0000; height: 100px; width: 100px; } Results in: A big block (100 x 100 px) with a maroon color Bordering on Insanity: Many HTML elements support the border property. This can be especially useful with tables. The border property in turn supports several values. For example, for a border 2 pixels thick, solid, and red, you'd type selector { border: 2px solid red; } Borders: pretty fancy. In the stylesheet.css tab: Set your tds (table data cells) to have a height of 50px so we can see them better when we add our border. Give your tds a border of 1px dashed blue. Give your table a border of 1px solid black. Example HTML Code:
Nine Blocks!
Example stylesheet.css: /*Add your CSS below!*/ td {height: 50px;} td {border: 1px dashed blue;} table {border: 1px solid black;} Results in: (Outside border black, inside blue) Nine Blocks! Links and Text Decoration: Links have a lot of the same properties as regular text: you can change their font, color, size, and so on. But links also have a property, text-decoration, that you can change to give your links a little more custom flair. You're probably used to seeing links that are blue and underlined, right? Well, that's not the way it has to be! In the stylesheet.css tab, give your a selector a color of #cc0000 and a text-decoration of none. Check out how the link changes in the Result tab! Example: HTML Code: Result

The below link goes to Google!

Google Example: stylesheet.css /*Add your CSS below!*/ a {color: #cc0000; text-decoration: none; } Results in: The below link goes to Google!  HYPERLINK "http://www.google.com/" Google Review: HTML + CSS = BFF All right! Final section. Time for some review! You're learning a lot, so from here on out, we'll do more frequent reviews to make sure you've got a handle on all this new material. Okay, all on your lonesome: add a tag between the tags in the HTML tab to the right. The link should have an href attribute that points to stylesheet.css. Here it is: Result Many Selectors, Many Properties: All right! Our HTML bone is connected to our CSS bone. Next: let's review selectors, properties, and values. Remember, the syntax is selector { property: value; } Add a pair of

tags inside the body of our HTML page. Your h1 header can say anything you want! Then, on the CSS tab, make its font Verdana and its color #576D94. Add a pair of

tags below your h1 header. Put any text you like in there, then head over to the CSS tab and set the font size to 18px and its color to #4A4943. Heres the stylesheet.css: h1 {font-family: Verdana; color: #576D94; } p {font-size: 18px; color: #4A4943; } Fall Back As we've seen, sometimes a user's computer doesn't have the mega sweet fonts we wish it had. For that reason, we give their browser a few fallback choices! Set the p font-family to Garamond. Give h1 a backup font of sans-serif and p a backup font of serif. Example stylesheet.css: h1 {font-family: Verdana, sans-serif; color: #576D94; } p {font-size: 18px; font-family: Garamond, serif; color: #4A4943;} Sizes and Borders Excellent! Your page is a little bland, though. Let's add a picture with a border. Add an to your HTML document. Its src attribute can point anywhere! (Check the Hint if you're stuck or need a picture.) On the CSS tab, set you image's height to 100px and width to 300px. On the CSS tab, give your image a border of 1px solid #4682b4. Resulting stylesheet.css: h1 {font-family: Verdana, sans-serif; color: #576D94;} p {font-size: 18px; font-family: Garamond, serif; color: #4A4943;} img {height: 100px; width: 300px;} img {border: 1px solid #4682b4;} Results in: This is Mr. Kay's page! This is just a test page though. Don't get your hopes up!  INCLUDEPICTURE "http://coolstuffiknow.files.wordpress.com/2012/04/cool_003.jpg" \* MERGEFORMATINET  Links and Text Decoration Great work! We're almost there. Add a link to your HTML page using tags, and be sure you include a href attribute (check the Hint if you need a reminder). Your link can go anywhere! On the CSS tab, change your link's text-decoration to none and its color to #cc0000. You're done! Revel in the glory of your newfound CSS knowledge for a moment, then head on to the project. Example HTML Code & stylesheet.css: Result

This is Mr. Kay's page!

This is just a test page though. Don't get your hopes up! LinkedIn

Stylesheet.css h1 {font-family: Verdana, sans-serif; color: #576D94;} p {font-size: 18px; font-family: Garamond, serif; color: #4A4943;} img {height: 100px; width: 300px;} img {border: 1px solid #4682b4;} a {text-decoration: none; color: #cc0000;} Results In: This is Mr. Kay's page! This is just a test page though. Don't get your hopes up!  INCLUDEPICTURE "http://coolstuffiknow.files.wordpress.com/2012/04/cool_003.jpg" \* MERGEFORMATINET  HYPERLINK "https://www.linkedin.com/uas/login?goback=.nmp_*1_*1_*1_*1_*1_*1&trk=hb_signin" LinkedIn Drawing Your Button: Let's get started! First things first: we'll need to create our button. We'll do this with
tags. Please note: If you have adjusted your browser's zoom, tests involving height and width will not work correctly. To remedy this, please type Command+0 or Ctrl+0 to reset your view. On the CSS tab, add a div selector and add property: value pairs of: height: 50px width: 120px border: color of #6495ED background-color: #BCD2EE. Your border can be any type (dashed, solid, and so on) and any width. (We like 2px.) Stylesheet.css example: img { display: block; height: 100px; width: 300px; margin: auto; } p { text-align: center; font-family: Garamond, serif; font-size: 18px; } /*Start adding your CSS below!*/ div {height: 50px; width: 120px;} div {border: 5px solid; color: #6495ED;background-color: #BCD2EE;} Shaping Your Button: This involves a new property calledborder-radius. (We'll learn more about it in later courses and projects.) This property modifies the corners of HTML objects; it's how you get those cool rounded buttons! Set yourdiv'sborder-radiusto5px. Stylesheet.css example: img {display: block; height: 100px; width: 300px; margin: auto; } p {text-align: center; font-family: Garamond, serif; font-size: 18px; } /*Start adding your CSS below!*/ div {height: 50px; width: 120px;border-radius: 5px} div {border: 5px solid; color: #6495ED;background-color: #BCD2EE;} Positioning Your Button: Nice work! Now we'll work on centering your button on the page. We'll go over positioning in the next course or two, but we think it's a good idea to give you a preview here. Here's how it works: margin:auto;is the CSS you use to tell the browser: "Hey! Make sure to set equal margins on each side of this HTML element." When the margins are equal, the object is centered. text-align:center;is how you center text elements. On the CSS tab, set yourdiv'smargintoautoand itstext-alignproperty tocenter. Example: Stylesheet.css: img {display: block;height: 100px;width: 300px;margin: auto;} p {text-align: center;font-family: Garamond, serif;font-size: 18px;} /*Start adding your CSS below!*/ div {height: 50px; width: 120px;border-radius: 5px; margin: auto;} div {border: 5px solid; color: #6495ED;background-color: #BCD2EE;text-align: center;} Adding the Link: Great! Now we want to add a link with text to our button. In our example back in the first exercise, you may have noticed that we usedtags to create a different font color for"Facebook!", like so: Friend us on Facebook! You can do this too, if you like, but it's not required. On the HTML tab: Add a link (usingtags) between your
tags. You can set itshrefattribute to go to any website, and you can make the link text itself say whatever you want! On the CSS tab: Set your link's text-decoration to"none". Give it whatever color or font type you like! HTML Code Looks Like: About Me

We're Codecademy! We're here to help you learn to code.



Mr. Kay's Profile
Stylesheet.css Looks Like: img {display: block; height: 100px; width: 300px; margin: auto;} p {text-align: center; font-family: Garamond, serif; font-size: 18px;} /*Start adding your CSS below!*/ div {height: 100px; width: 240px;border-radius: 20px; margin: auto;} div {border: 5px solid; color: #6495ED;background-color: #BCD2EE;text-align: center;} a {text-decoration: none; color: #cc0000;font-size: 40px} Results in:  INCLUDEPICTURE "http://bit.ly/NnVbxt" \* MERGEFORMATINET  We're Codecademy! We're here to help you learn to code.   HYPERLINK "http://www.linkedin.com/pub/timothy-kay/16/132/34" Mr. Kay's Profile #EFRSijstyz: C [ e f i   ! J ` DZǛs^s^Shap>hap>B*ph)hap>5B*CJOJQJ\^JaJph333/hap>hap>5B*CJOJQJ\^JaJph333hap>0J$CJOJQJ^JaJ hap>0J#hap>0J&CJOJQJ^JaJhap>0JCJOJQJ^JaJ hap>0Jhap>hPzk5>*CJhap>5>*CJhh5CJ h5CJh5>*CJhntL5>*CJ FS   * 1 9 z   ! % 2 4 5 < I K ` -DM [$\$gdap>gdap> & Fgdgd $6CPhiy®|Š|gggchap>)hap>5B*CJOJQJ\^JaJph333hap>CJOJPJQJaJ$hap>hap>CJOJPJQJ^JaJ hap>hap>CJOJPJQJ^J&hap>hap>6CJOJPJQJ]aJ hap>hap>CJOJPJQJaJhap>5>*CJ/hap>hap>5B*CJOJQJ\^JaJph333hap>hap>B*ph3f&` / PWgi-$ 2( Px 4 #\'*.25@9dgdap> & Fddd[$\$gdap>ddd[$\$gdap> & Fgd-DM [$\$gdap>-QZb2uUgd b@ & Fgd-DM [$\$gd b@-DM [$\$gdap>$:HUZu2345:;FGJKOPQRSTUżo_h b@0J#CJOJQJ^JaJ$h b@h b@0JCJOJQJ^JaJ h b@0J$ h b@0J h b@0J h b@0J h b@0J# h b@0J h b@0J h b@0J h b@0Jh b@hap>5>*CJh b@5>*CJ/h b@h b@5B*CJOJQJ\^JaJph333h b@hap>OJQJhap>hap>hap>OJQJ"!"'(<=ACICbcJWu{̴qq$h b@h b@CJOJPJQJ^JaJ h b@h b@CJOJPJQJ^Jh b@CJOJPJQJaJ h b@h b@CJOJPJQJaJ/h b@h b@5B*CJOJQJ\^JaJph333h b@h b@0J$CJOJQJ^JaJh b@0J#CJOJQJ^JaJh b@0JCJOJQJ^JaJ,2;CV  & Fddd[$\$gd b@ddd[$\$gd b@-DM [$\$gd b@ ^_@Ptuy{・tkb^X^H8Hhn0JCJOJQJ^JaJhn0J#CJOJQJ^JaJ hn0Jhnh b@5>*CJhn5>*CJ/hnhn5B*CJOJQJ\^JaJph333h b@)h b@5B*CJOJQJ\^JaJph333/h b@h b@5B*CJOJQJ\^JaJph333h b@CJOJPJQJaJ h b@h b@CJOJPJQJ^J$h b@h b@CJOJPJQJ^JaJ h b@h b@CJOJPJQJaJ _>V_g-DM [$\$gdn-DM [$\$gd b@ddd[$\$gd b@$ 2( Px 4 #\'*.25@9dgd b@'hEQ ,!7!L!N!]!a!s!gdngdn & Fgd-DM [$\$gdn{  $&']^abhilmpq~DEQȼȼڐ΄~ hn0J hn0J& hn0J' hn0Jhn5>*CJ hnhn hn0Jhn0JCJOJQJ^JaJ hn0J hn0J hn0J# hn0J hn0J hn0J hn0J!hn0J#CJOJQJ^JaJhn hn0J$1 !"#%&)*/056NPEJqv  꾸hn0J&CJOJQJ^JaJ hn0J hn0J hn0J& hn0J hn0J hn0Jhn0JCJOJQJ^JaJhn0J#CJOJQJ^JaJ hn0Jhn hn0J hn0J( hn0J'8 ,!4!5!7!;!C!D!E!J!K!L!N!t!~!!!!!""""""ľʬt\Shn5>*CJ/hnhn5B*CJOJQJ\^JaJph3fhnhnB*ph3f)hn5B*CJOJQJ\^JaJph333/hnhn5B*CJOJQJ\^JaJph333 hn0J( hn0J hn0J hn0J& hn0J hn0J' hn0J hn0Jhnhn0JCJOJQJ^JaJhn0J&CJOJQJ^JaJ s!v!~!!!!!""""""q$$$$$$$$$<%gdn-DM [$\$gdUgdngdn & Fgd-DM [$\$gdn"""""""""""""""""""""""""""1#=#x#|#}######$$$1$2$zjhn0J*CJOJQJ^JaJhn0JCJOJQJ^JaJhn0J&CJOJQJ^JaJhn0J#CJOJQJ^JaJhn0JCJOJQJ^JaJ hn0Jhn hn0J hn0J( hn0J) hn0J hn0J hn0J' hn0J hn0J& hn0J hn0J#)2$>$B$C$I$M$U$^$b$c$g$k$m$o$$$$$$$;%<%>%?%^%_%%tkbK-hXFhXFB*CJOJPJQJ^JaJph333hn5>*CJhXF5>*CJhUhXF5>*B*CJph3fhXFB*ph3fhnB*ph3fhUhUB*ph3f)hU5B*CJOJQJ\^JaJph333/hUhn5B*CJOJQJ\^JaJph333hn0JCJOJQJ^JaJhn0J#CJOJQJ^JaJhn0JCJOJQJ^JaJhn<%=%>%?%_%%&d&&&& '. 2( Px 4 #\'*.25@9dhx-D4$M gdXFdx-DM gdXF & Fddd-DM [$\$^gdvBd-DM gdXF & Fgdgdn %)&-&.&4&&&&&&&&&&&&&&&&&&&&&&&&'л壻ллУ壻лw_J)hXFhXFB*CJOJPJQJ^Jph/hXFhXF5B*CJOJPJQJ\^Jph-hXFhXFB*CJOJPJQJ^JaJph333)hXFhXFB* CJOJPJQJ^Jphj/hXFhXF5B*CJOJPJQJ\^Jph333)hXFhXFB*CJOJPJQJ^Jphhv)hXFhXFB*CJOJPJQJ^JphD3hXFhXF5B*CJOJPJQJ\^JaJph333' ' '''''''''''("(;(<(ë~~lS~~G>hXF5>*CJhXFhXF5>*CJ0hXFB*CJOJQJaJfHphq #hXF0JB*CJOJQJaJphhXFB*CJOJQJaJphhXFB*ph)hXF5B*CJOJQJ\^JaJph333/hXFhXF5B*CJOJQJ\^JaJph333#hXFB*CJOJPJQJ^Jph)hXFhXFB*CJOJPJQJ^Jph)hXFhXFB* CJOJPJQJ^Jph '''H'V'X'p'r''''''''("(<( & FgdXFgdXFgdXF-DM [$\$gdXF. 2( Px 4 #\'*.25@9d-D4$M gdXF<((())))))))*%*'*** +wXXwC+/h@jh@j5B*CJOJQJ\^JaJph333)h@j5B*CJOJQJ\^JaJph333=hXF0JB*CJaJehAfHphDq rA-hXF0J5B*CJOJQJ\^JaJph333)hXF5B*CJOJQJ\^JaJph333IhXF0J,B*CJOJQJ^JaJehAfHphDq rAIhXF0J+B*CJOJQJ^JaJehAfHphDq rA#hXFB*CJOJQJ^JaJph333<())********* + + +'+,+N+P+Q+U+}+dx-DM [$\$gd@j-DM [$\$gd@jhdx-DM [$\$^hgdXF + ++%+&+'+~+++++++',(,,,,@-A-n-ҺꮞҕuauI4uau)h@jh@jB*CJOJPJQJ^Jph333/h@jh@j5B*CJOJPJQJ\^Jph333'h@jB*CJOJPJQJ^JaJph333-h@jh@jB*CJOJPJQJ^JaJph333hXF5>*CJh@j5>*CJh@jB*CJOJQJaJphh@jB*OJQJph/h@jhXF5B*CJOJQJ\^JaJph333/h@jh@j5B*CJOJQJ\^JaJph333)h@j5B*CJOJQJ\^JaJph333}++++++++o---n.///"/&/'/A/hd-DM ^hgd@jhdx-DM ^hgd@j & FgdXFgd@jgd@j-DM [$\$gd@jn-o-p-s-t-----n..............֬֕{cN{c9c{cNc{c)h@jh@jB*CJOJPJQJ^JphLk)h@jh@jB*CJOJPJQJ^JphD/h@jh@j5B*CJOJPJQJ\^Jph3333h@jh@j5B*CJOJPJQJ\^JaJph333-h@jh@jB*CJOJPJQJ^JaJph333)h@jh@jB* CJOJPJQJ^Jphj)h@jh@jB*CJOJPJQJ^Jphhv)h@jh@jB*CJOJPJQJ^Jph'h@jB*CJOJPJQJ^JaJph333......///%/&/'/(/ջwbJb2)h" 5>*CJ/h@jh" 5B*CJOJQJ\^JaJph333/h@jh@j5B*CJOJQJ\^JaJph333)h@j5B*CJOJQJ\^JaJph333-h@j5B*CJOJPJQJ\^JaJph333)h@jh@jB*CJOJPJQJ^JphD/h@jh@j5B*CJOJPJQJ\^Jph3333h@jh@j5B*CJOJPJQJ\^JaJph333)h@jh@jB* CJOJPJQJ^Jphj)h@jh@jB*CJOJPJQJ^Jphhv (/@/A//////00000011111111111 2*2ȣ~jjVjjj'h;(0J!B*CJOJQJ^JaJph333'h;(0JB*CJOJQJ^JaJph333Ih;(0J+B*CJOJQJ^JaJehAfHphDq rAIh;(0JB*CJOJQJ^JaJehAfHphDq rA'h;(0JB*CJOJQJ^JaJph333#h;(B*CJOJQJ^JaJph333h@j5>*CJh;(5>*CJA/*2222222223333(3*3+303A3C3D3I3Z3\3]3-DM [$\$gd;(hdx-DM [$\$^hgd;(*22t3333333333=4>4A444ºxdPx+Ih;(0JB*CJOJQJ^JaJehAfHphDq rA'h;(0JB*CJOJQJ^JaJph333'h;(0JB*CJOJQJ^JaJph333#h;(B*CJOJQJ^JaJph333h;(5>*CJh;(h;(B*phfh;(B*phfh;(B*phSh;(B*CJaJphTh;(B*ph%h;(B*phrVh;(B* phb/h;(h;(5B*CJOJQJ\^JaJph333)h;(5B*CJOJQJ\^JaJph333]3b3s3u333333333~555555-DM [$\$gd Ldx-DM [$\$gd;( & FgdXFgd;(gd;(gd;(gd;(gd;(gd;(-DM [$\$gd;(455%5U5V5W5]5^5a5b5c5i5j5~55555٠{٠{fO0{=h;(0JB*CJaJehAfHphhvq rA-h;(0J5B*CJOJQJ\^JaJph333)h;(5B*CJOJQJ\^JaJph333Ih;(0JB*CJOJQJ^JaJehAfHphDq rAIh;(0JB*CJOJQJ^JaJehAfHphDq rA'h;(0JB*CJOJQJ^JaJph333'h;(0JB*CJOJQJ^JaJph333#h;(B*CJOJQJ^JaJph333555555555555555555555 6 6ɴɏjɴjɴɏjRRI@h;(5>*CJh L5>*CJ/h Lh L5B*CJOJQJ\^JaJph333Ih;(0JB*CJOJQJ^JaJehAfHphDq rAIh;(0JB*CJOJQJ^JaJehAfHphDq rA)h;(5B*CJOJQJ\^JaJph333-h;(0J5B*CJOJQJ\^JaJph333=h;(0JB*CJaJehAfHphhvq rA555555 66666::::::::2 2( Px 4 #\'*.25@9hdhx-D4$M ^hgd Ldx-DM gd L & FgdXF-DM [$\$gd L 6e6f6h6i66666666r7s7777 8 8Ӿ覑|gS;/h Lh L5B*CJOJPJQJ\^Jph333'h LB*CJOJPJQJ^JaJph333)h Lh LB* CJOJPJQJ^Jph)h Lh LB*CJOJPJQJ^Jphhv)h Lh LB*CJOJPJQJ^Jph/h Lh L5B*CJOJPJQJ\^Jph)h Lh LB*CJOJPJQJ^JphD)h Lh LB*CJOJPJQJ^Jph333-h Lh LB*CJOJPJQJ^JaJph333 8 88888$8,8.8/828387888<8=8A8B8D8E8I8J8R8S899 9 99999|hիPP|h/h Lh L5B*CJOJPJQJ\^Jph333'h LB*CJOJPJQJ^JaJph333/h Lh L6B*CJOJPJQJ]^Jph333-h Lh LB*CJOJPJQJ^JaJph333)h Lh LB*CJOJPJQJ^Jph333)h Lh LB* CJOJPJQJ^Jphj)h Lh LB*CJOJPJQJ^JphD)h Lh LB*CJOJPJQJ^Jphhv99999999999999:::::O:P:R:S::b;o;w;;꾩꾩꾩ꩾ꾩ꩾ|g_Sh LB*CJ aJ phh LB*ph)h L5B*CJOJQJ\^JaJph333/h Lh L5B*CJOJQJ\^JaJph333)h Lh LB*CJOJPJQJ^Jph)h Lh LB*CJOJPJQJ^Jph333-h Lh LB*CJOJPJQJ^JaJph333)h Lh LB*CJOJPJQJ^Jphhv)h Lh LB*CJOJPJQJ^JphD::*;R;[;c;o;w;;;;;j==w>>M?????-DM [$\$gdcyhdx-DM [$\$^hgdcy & FgdXFgd L-DM [$\$gd L;;;;;;;;;j=o===w>~>M?T?vbNNN9)hcy5B*CJOJQJ\^JaJph333'hcy0JB*CJOJQJ^JaJph333'hcy0JB*CJOJQJ^JaJph333Ihcy0JB*CJOJQJ^JaJehAfHphhvq rAIhcy0JB*CJOJQJ^JaJehAfHphDq rA#hcyB*CJOJQJ^JaJph333h L5>*CJ/h Lh L5B*CJOJQJ\^JaJph333h LB*CJ0aJ0phT?U?Y?Z?`?a?g?h?i?k?l?m?v?w?|??????????????????????*@7@d@ÞÞÉÞÞÉÞÉqihcyB*ph/hcyhcy5B*CJOJQJ\^JaJph333)hcy5B*CJOJQJ\^JaJph333Ihcy0JB*CJOJQJ^JaJehAfHphhvq rAIhcy0JB*CJOJQJ^JaJehAfHphDq rA-hcy0J5B*CJOJQJ\^JaJph333&?? @@)@+@7@d@@@@lAAAAA}B/CKCcC-DM [$\$gdNhdx-DM [$\$^hgdN & FgdXFgdcygdcygdcy-DM [$\$gdcyd@@@@@@/C6CECCCCCEExFzFFFFFHGįmdL7L7L7L)hn5B*CJOJQJ\^JaJph333/hnhn5B*CJOJQJ\^JaJph333hn5>*CJ)hnhnB*CJOJQJ^JaJph333)hN5B*CJOJQJ\^JaJph333/hNhN5B*CJOJQJ\^JaJph333)hNhNB*CJOJQJ^JaJph333h L5>*CJhN5>*CJhcyh LB*OJQJphhcyB*OJQJphhcyB*OJQJ^JphcCCCCCCCCC*D9DEDhDDDEEEEEE-DM [$\$gdngdnhdx-DM [$\$^hgdn & FgdXF-DM [$\$gdNEF!F*F2FGFpFFFFFFFFG%G5GIGJGVGyGGGGGgd'-gd'-gd'-gd'--DM [$\$gdnHGIGVGyGGGGGGGyHzHHHIIJJJJJJʿm[m[m[m[m[mC/h'-h'-5B*CJOJQJ\^JaJph333#hnB*CJOJQJ^JaJph333)hnhnB*CJOJQJ^JaJph333hn5>*CJ/hnhn5B*CJOJQJ\^JaJph333 h'-h'-h'-6CJ0aJ0h'-h'-6CJ0aJ0h'-h'-B*phh'-h'-B*ph)h'-5B*CJOJQJ\^JaJph333)hn5B*CJOJQJ\^JaJph333GGHHI?I.JIJJJ KKKZKrK{KKKKKK-DM [$\$gd'- & Fdx-DM [$\$gdnhdx-DM [$\$^hgdn & FgdXFJJKKLNLOLPLgLhLLL{M}M,N-NZN[NmNϺϺϮuuu`H/hdhd5B*CJOJQJ\^JaJph333)hd5B*CJOJQJ\^JaJph333#hdB*CJOJQJ^JaJph333)hdhdB*CJOJQJ^JaJph333hn5>*CJh'-5>*CJh'-h'-5>*CJ)h'-5B*CJOJQJ\^JaJph333/h'-h'-5B*CJOJQJ\^JaJph333/h'-hn5B*CJOJQJ\^JaJph333KKKKLLLOLPLhL=MHMcMeMMN-NZN[NnN~N-DM [$\$gddhdx-DM [$\$^hgdd & FgdXFgd'--DM [$\$gd'-mNnN*P+PPPPPQQQQRRSTT^TlTmTϺϺϮuu`H`H`H/h]h]5B*CJOJQJ\^JaJph333)h]5B*CJOJQJ\^JaJph333#hdB*CJOJQJ^JaJph333)hdhdB*CJOJQJ^JaJph333h'-5>*CJhd5>*CJhdhd5>*CJ)hd5B*CJOJQJ\^JaJph333/hdhd5B*CJOJQJ\^JaJph333/hdh'-5B*CJOJQJ\^JaJph333~NNNNNNNNO,O8OCOLO[OjOyOOOOOOOOOOOPP-DM [$\$gddPP#P+P,PDP\PpPPPPPPndkd$$If4=0634aytd$-DIfM [$\$gdd-DM [$\$gdd PPPPPPPP]kd$$IfFJ=06    34aytd$-DIfM [$\$gddPPPPPv]]]$-DIfM [$\$gddkdc$$IfFJ=06    34aytdPPPQiRRSvqiNN:-DM [$\$gd]hdx-DM [$\$^hgdd & FgdXFgddkd!$$IfFJ=06    34aytdS!S(S0SqSSSSSSSTTT2TFT]T`TaTmTTThdx-DM [$\$^hgd]-DM [$\$`gd]-DM [$\$gd]mTTTTTTTTTTTUU;VGVlVmVoVpVV WYYpY|YллЩpXpXpX@/hQhQ5B*CJOJQJ\^JaJph333/h]h]5B*CJOJQJ\^JaJph333)h]5B*CJOJQJ\^JaJph333#h]B*CJOJQJ^JaJph333hd5>*CJh]5>*CJ#hdB* CJOJQJ^JaJph)h]h]B* CJOJQJ^JaJph2jh]h]B* CJOJQJU^JaJph)h]h]B*CJOJQJ^JaJph333TTTU;VGVWV^VfVVVVVV W@WWWWW\XY-DM [$\$gd] & FgdXFhdx-DM [$\$^hgd]YYHYJYnYpYqY|YZ~ZZZZ-DM [$\$`gdr-DM [$\$gdrhdx-DM [$\$^hgdQ & FgdXFgd]-DM [$\$`gdQ-DM [$\$gdQ |Y:Z;Z}Z~ZZ[[[[%[x\y\R]]]~f]H6-h 5>*CJ#hrB*CJOJQJ^JaJph333)hrhrB*CJOJQJ^JaJph333h]5>*CJ/h0Ch0C5B*CJOJQJ\^JaJph333)hQ5B*CJOJQJ\^JaJph333)h0C5B*CJOJQJ\^JaJph333/hrhr5B*CJOJQJ\^JaJph333/hrhQ5B*CJOJQJ\^JaJph333#hQB*CJOJQJ^JaJph333)hQhQB*CJOJQJ^JaJph333Z[[%[x[[:\y\\\ ]1]R]^]v]]^5^gd gd gdr-DM [$\$gdrhdx-DM [$\$^hgdr & FgdXF-DM [$\$`gd0C]]^]]]^^^^^5^______k`l```````FaHaaӾuuuuuuY7h0Ch0C5B*CJOJQJ\^JaJmHph333sH)h0C5B*CJOJQJ\^JaJph333)h 5B*CJOJQJ\^JaJph333/h0Ch0C5B*CJOJQJ\^JaJph333 h"Nh"N)h"Nh"NB*CJOJQJ^JaJph333h]5>*CJ h h jh Ujh Uh hr5>*CJ5^U^^H_______>`V`_`g````;aaaaaaab-DM [$\$gd0Chdx-DM [$\$^hgd"Naaaaabbb'c(cccccccccccddffʲ~xofQ?#hOCrB*CJOJQJ^JaJph333)hOCrhOCrB*CJOJQJ^JaJph333h 5>*CJhOCr5>*CJ h0C0Jjdh0CUjh0CUh0Ch0Ch0CCJ(aJ()h0C5B*CJOJQJ\^JaJph333/h0Ch0C5B*CJOJQJ\^JaJph3337h0Ch0C5B*CJOJQJ\^JaJmHph333sH1h0C5B*CJOJQJ\^JaJmHph333sHbWb{bbbbbb&cccd|d1eveeeeehdx-DM [$\$^hgdOCr & FgdXFgd0Cgd0C-DM [$\$gd0Cef1f7fHfXfgfvfxfyf}ffffffgKgLgbg1hVhnh & FgdXF-DM [$\$gd2 hdx-DM [$\$^hgd2 fJgKgLgagbgggg1h9h:h=h?h@hFhGhoJoJ+=h2 0JB*CJaJehAfHphhvq rAIh2 0JB*CJOJQJ^JaJehAfHphDq rA-h2 0J5B*CJOJQJ\^JaJph333'h2 0JB*CJOJQJ^JaJph333'h2 0JB*CJOJQJ^JaJph333#h2 B*CJOJQJ^JaJph333hOCr5>*CJh2 5>*CJ)h2 5B*CJOJQJ\^JaJph333/h2 h2 5B*CJOJQJ\^JaJph333GhMhNhPhQhRhThVhnhohhhhhhhhhhhhhhiiîÉڮq\q\q\q\qD\D\D\D/hyh2 5B*CJOJQJ\^JaJph333)hy5B*CJOJQJ\^JaJph333/h2 h2 5B*CJOJQJ\^JaJph333Ih2 0JB*CJOJQJ^JaJehAfHphDq rA)h2 5B*CJOJQJ\^JaJph333-h2 0J5B*CJOJQJ\^JaJph333Ih2 0JB*CJOJQJ^JaJehAfHphDq rAnhohhhhhhiOiiiiiqj$kYkkd-DM gdy & Fddd-DM [$\$^gdydx-DM gdy & FgdXF-DM [$\$gd2 -DM [$\$gdyiiiiqj~jj$k(k)k7k8kYkqkrkukwkxk~kkkkkkkkkkkkkվeMeMMeMeMMe/hyhy5B*CJOJPJQJ\^Jph3333hyhy5B*CJOJPJQJ\^JaJph333)hyhyB*CJOJPJQJ^Jphhv)hyhyB*CJOJPJQJ^Jph333)hyhyB*CJOJPJQJ^JphD-hyhyB*CJOJPJQJ^JaJph333h2 5>*CJhy5>*CJ/hyhy5B*CJOJQJ\^JaJph333kkmmmmmmmmmmmmmm͸ͯzePe;;)h%Gh%GB* CJOJPJQJ^Jphj)h%Gh%GB*CJOJPJQJ^JphD)h%Gh%GB*CJOJPJQJ^Jphhv)h%Gh%GB*CJOJPJQJ^Jph333-h%Gh%GB*CJOJPJQJ^JaJph333hy5>*CJh%G5>*CJ)hy5B*CJOJQJ\^JaJph333/hyhy5B*CJOJQJ\^JaJph3333hyhy5B*CJOJPJQJ\^JaJph333kkllIljllmmmPmmnNn_nohd-DM ^hgd%G2 2( Px 4 #\'*.25@9hdhx-D4$M ^hgd%Ghdx-DM ^hgd%G & FgdXF-DM [$\$gdymmmmmmmmnn n nnnnnnNnpnqnrnثثؖثeM8)h%Gh%GB*CJOJPJQJ^Jphhv/h%Gh%G5B*CJOJPJQJ\^Jph3333h%Gh%G5B*CJOJPJQJ\^JaJph333-h%Gh%GB*CJOJPJQJ^JaJph333)h%Gh%GB* CJOJPJQJ^Jphj)h%Gh%GB*CJOJPJQJ^Jph/h%Gh%G5B*CJOJPJQJ\^Jph)h%Gh%GB*CJOJPJQJ^Jphhv#h%GB*CJOJPJQJ^JphhvrnsnunxnynnnnnnnnnnnAoBoHowoxoopꨎwbJ/h%Gh%G5B*CJOJQJ\^JaJph333)h%G5B*CJOJQJ\^JaJph333-h%G5B*CJOJPJQJ\^JaJph3333h%Gh%G5B*CJOJPJQJ\^JaJph333/h%Gh%G5B*CJOJPJQJ\^Jph333)h%Gh%GB* CJOJPJQJ^Jphj)h%Gh%GB*CJOJPJQJ^Jphhv)h%Gh%GB*CJOJPJQJ^JphDooxooooooppp=pppppppqq\qqq-DM [$\$gd%Ghd-DM ^hgd%Ghdx-DM ^hgd%Gpppq/q0q>q?qLqMqrqsqqqqrrrrrrrrrrrϺϺϺϺϺϺ纥o^oIo^)j#h C-h C-CJOJPJQJUaJ h C-h C-CJOJPJQJaJ)jh C-h C-CJOJPJQJUaJhN5>*CJ/h%Gh C-5B*CJOJQJ\^JaJph333)h C-5B*CJOJQJ\^JaJph333)h%G5B*CJOJQJ\^JaJph333/h%Gh%G5B*CJOJQJ\^JaJph333/h.vh.v5B*CJOJQJ\^JaJph333q r_rrrrrrs stsus$dd-D@M a$gd C- dgd C-$ddd[$\$a$gd C- $da$gd C-gdn-DM [$\$gd.v rss s!s`sasrssstsusŭ{hXFhn5>*CJ%h C-h C-B*CJ(OJPJQJph%h C-h C-B*OJPJQJaJphd.jh C-h C-B*OJPJQJUaJphd h C-h C-CJOJPJQJaJ.jh C-CJOJPJQJUaJmHnHu!h C-h C-B*OJPJQJph 61h/R :pd/ =!"#$% $$If!vh5t#vt:V 406,5/ 34ytd$$If!vh55r5#v#vr#v:V 06,5/ 34ytd$$If!vh55r5#v#vr#v:V 06,5/ 34ytd$$If!vh55r5#v#vr#v:V 06,5/ 34ytd"aDd%%V  S 2Acool_003Rx`4g#:T"!HEeU,PB @@@A%L,4JQ"$@@@@@@@A B DPCI %SsfU0'+|u۫E+lK4٢YJ+*ߪ:j(bqɘlWzyiss$@D**B9"P@@@@@@A(,xM„e @ )J$A! V[:0+m5\9mPsAt4wy0ыM7%4ѥWPTE/1e?6Gnz8V˿MÇ?&Ο 0 E1-Kĺ lrA#Nrkn˗/h싼̭Mav Ha(D"IEHD! Y ,ZBQaD{gI6T )0 .*K7Ӝ+]lz)aU)J$@@@@@@@@@D!h ڲ- kb|ApfVzR*qQOsp{wLy\uz~8^ eLb Z>+3#&Z:J"eψ~ ie d]豶=t꧓{xCesC`%*3peo} %xiik(TRPUQQ! PP"%CK7;,[Pv/?.Gnexma2KM'6]˞1w|jxvv2u{sT8QutDUfK}Ju+qxM]^im[E^m.46 ŗRڗ6S~e\H "P2"PJ  0 ,ki7-o{uZĽ>prnݖF8#{|2-dNtT^|\cpsq. ׵?VqiX-]A 7R!~N^bq8~mEu˒&'[of=?K}JyA~gƜsU6*̤R"4K#;?_+;BϪB4vŻ\;aw[C= *E 4 p\{/xil"u˿q}U^lrsyN7 6]ez]`hueK4)B frU%PX(i D "ԍ~mvYdSҘ6ŀjoEZ՛iY7bɋǑ$Au:X\XT\5ٞ`l^JJ&6 WF`ƁZrD5MóM%F g' k{kMXc!.] T UW\)@7(v>-gfՇ|+Zښf8bo{ek&6{ u *\ѥuKihxlu7yYu6w?SD4Iuο6klPxM5좖rJْD(UJQ PX"вJ-$@@@<"5Tc _NN&dksfiS5-&W6Ѐ.^h澧+cƛz0xWguS9A6y䨟V<.>7ep٣MRmk\̹Ls Е~n%P6߭U~Xi9 P C^ku1}|옻tEw|pXneP3|F{ռ1O.y[UH "*YJUB @R!@ B !(ݥ9uEcMgik}V}3>2JڬC`ѕN?⮢tj+_`u^e}sVB~X{2&ĭJN^#C׮}YUrURsdÖb-RD!oa{Tz}Cܷ0$nۗ}=vI|qkLW24MBW奣]qV+yBIp?7sR",U*!`A P  % mGRΚG]>\9ؕoskn2t:z9g'[]^0Û&YV8n칳uэ  N}tT{M&\Տ/U9FmFNICU\wv"D P١;=U- ϧ5Av-n\Pی;{P&4lE; Zˢ:a:r7^}F:rt,kY۶#鎦YE8`PpE"as ۲yy2vuVRƬ*,U*!+A PHA!B𲆉D],]#luӦyƝh3r){֖E\Me (L٭TXO" )2Җ8e|/9 r-%R8#@) D[yzWdKr1 Bxfo yKѥwWK4_]4Yct{cHsI~օ"edn,-vr+M,Ah.&Z%z9u6tjܺ汴Ŷa؏ЭfT<+ @@@@D)nYʪT TB𲆐H,[RqJM@os]l4]Pm1G@m6֯aae;v/WVLz;l^Y\+X+Þ1B D "*:.vw6ԯ3{?.[6+ϦYkjek܎[X0K ԑg&n.eS*Exæ֜x$1tuyJ+!@$~'(sxiOM+Я,`V@Pe*VDTR!PJ ju a(H%Yi_oWQ$dܯi7\y}c Cj d:8_.Vkuٚ ֞'X."kH;oþ^´~J2j8>{[NxxL|4-Y&VAlUi:z)|N`s8njO⽻rj|%4NLa{nJw,RY2^[ۮci`mnS&iEڟ>h i<-[Ppkmp/smU"+6j|*i[].ڿekUo[GÀ͕vW<3 o1Xoy mQ:WїÙnk?'r妖 r:' {R8R++r #rp[{\C7Uŋ]}2b-嶢/n'JzE0~)Ltt%/Ӳ/=4 ixᰌ1֕8_~omR-g/nZ?qˊڪRD !PJ  BCXJ$DڪҮ f.,OO`.lb.\rO'.zGaz>6|s{8^#>Ig4߭/,:b?^qn5#e[wİjsG$mM[΍,ԐÈaGgL&2d0G=i ,b@7 7YҨZ(,CﮝoTFEBHd猎sImޗk_RCFϗnJM==hnTֳhqږ^#7xsg W^lUԑGjh7!KثOKmҦKF+=.n#G4x{]. lB#1fj]{cOVipk:?᭭oVq E4pK{WQ KJtM@/WiZy<pHmcuɒL1p"8iߪ&4{Q2 ^rBJb@@A*AXB  4D@HDU^ª0[u˚_4qSXcۋ6Y3T}3Jz&7UɹVcdע/K4eV߲7v:63?շb:ۍ-? )^9a|n$7_uM&1h}Vӎikp t1ػ\ߋm\-0?ceX%nmɘOZN %.m|ke471,uoޢt3[˪7Yӎn\mEl4×&ݜ0l&)Pea/*b`Dmw(gÛ}V\9c.')O锽)kb6wKi>aĮtgMbViqÏF eazZQ~I:8k6 bݶuK}6;|Đp6^R*ݔH (RTVr XB ,Qa Vz?Jcơh?EOMgY7]UjN;6y^%'h,0xm^k2E<Ȇ $6~^L^Yo8"--wR+`sxWU:EӨ v@9KeZblLV䝡flӟUÐ{5BHubpђKntVj9{ȭf9"~j{A=t]x厥РF'nLno3emӚc9&׺rګ"T{B]U֏ϭ606\tDqqHOEF1<|J=(&u o8V% P )*+C)B R A* A!  !e aګ-j`F;7>&"Yu Nķ;71vmkTH憁q{:+qC7>R:^KfDGoZ)+F88Xm7e.]q[6J4F 9c?wm3MuhPÓ!n{권jsf`vqmfkW;SM%)ѲioEǓ oنk~f>5aS[:@fkw@y*|ughmg~M)Zu^۪+0RO1ڷA{ʈ4 Y8lvkufaluXk+Z˵촮E2czzvr}L]l})l@ޑ헍uyf1(~]gar续U%LBJW( ;im7D襦epdN2_vtЕ9D@T)B @@R!@  &P,q Uezb*KNJ[Ź1ޚ ,##Cu;i{m5 '`̤ÌmT Nͨcll Aٵa[ܫqpp7{yZC&qLw ocu*ԅf`s>&v]&DmYSˆ7Sc&1n^C**17w[6z>o/熎"kӧ=M&K{qy;Q-^˫ےtɃ/}s.,guT )*+2  A`hX(iX@@@@D,4mӴ9YKbVE~K=g鵵S${Oi_c7sţg}ȶ^-:mҢgF]F껁pV(MV&b[yy 99ip ҷCFrpxr¶8g9B6X{ 3b)rϒk-Z'Jwd'ǰU+dIZ*#e 2rA׃%QovNދ%=83Svoost?&}T"׺h/J*_r9xe˂2KihiU6ON .:Ջ/zGӤ ۢY^D0$Mp#Yګ纔q&TrI\ޥ}L.;]UjuuWm91S\>W%!79;oMm?W Nՙ+u,U,ЂJA L2 a*'lItcۈpקr:% q#+wm賏ORhv㎙rBT5%'e,K $d2vyIэqt9_KB=Mm{c;⡗423E.׷XqKj$8TϒGB7OkWKFgD:feS)wP8-XNi q-N'>Um)ޯK-uxz#{Hg;e˞| eə4mWq,`_[.K`nFVt[֜a_l3Ft\yTp,N?kel|}66Ж`Fcl8lQTB֗HXE='y*yix VKmoyڙ]i豎N kCtmmjM6j^φ8~h0BsmEarmGE"%?^>K]-^m;OɨHdbuۙmZ0?9KqTZx^%+cŞyb˞ӲkWC{Tp66؅я.kcѭ8=[dyk#{6@/a~9sjbwۋm>EVõ0ZAiح=nmgQҳw+r^Xӊ+ )sQ4&ږW2􅣕}<)d^cXOrݧ =2Z|yGMhSSSF{cLo/g<Z5kֿ6׈`~#7E޶Ꙧ/q9P#]5򼗒Jjt6xB[xl֚f賴jUtÃguZvgL~\󕋧l,;Aԫ{D;\EeLӱC ,7eӃ>ÚږԱYYw|zY ѶsLdחgMo jN rxY^enH}w]9slvVi s@Vi4J7*?!~K/nR|EtWF쬩Fj*@QYUJR"B @R!@  e @wDûcXmCAuCQbLŘ+9r[@ȿֵkV`{܃qϟKSZrM2|YR3K[F>023|ړ 76ZzoZ1L&=HQ6uGE;[ȎJuzz|<[ğu&;sOV)r˫h(%sU*?mPXduRkMfmE0'+?+Nm]s%Y¥Y)ee4VUVRU%"PJ%`,a (jnѲ69=;0 lQɬ5`Z[JWoN9xsvjdYIvZ&޵QF+X=}uaWlQYSFxr \;,g:iÝJ*P/oitc}p]z\:Ӳ>+6\sK_k9Ep+ci54Q<4&ok~hgsi{~DGl)x rSæ̻۫0FjdB4]cUe 'pka;s~Vp21BW&\S˧]/x[pz^6^rڊRꭷ,:lm1ꔟ躺gդ,zpSſ⽝u% msq䴺qpr~ju9ƥ^霴VeeL1;2IVReE,(B A L,e/TXD%dJB4(iHtV/7Xe)^)ev^>KΆ%|È]nSFN%tT3hۭǪnsnⶏ䷗h7:2gYH{y@kn)yh$%oJ"=F6PuEkk==O*~wesN;dmmRmFb>[1[YY72KRN2,V"Zٖ[nצ F66^kjJN+7~j֓3*fEb~ 8z L#~(6[}i` &Ji]!p,5 Y=/HyB>yיNg {PjV6ZM )i.v>! w8w] 2RTqVs,DC+K*fU%K9] "DBJ E+^J ȝ, nWW};hp$9aU :q[k|/>`h g;X?\4Atvg3~z8:n+M)`fk.kXґʡ#u|~O:V+BO6ﵮ1m&toѰ-71g tm VA;׾q֑g_*qA^18YRPBc˦m/4ڡ[+ Hj:iH=DTO;e״u=}k'GkΑ;DlZ/hk 1Bnv`rzjh;pK`YP>t%He eLnh4qe- 1Go# 1cIm^VlVzm\$z^"#puz4tN*Tա m,eYʪTA(!"V e "R+(Z!UmZ"eUӤ9r䶛V |sIyM= )&r|DIfޘK\98Ζajq|y-Iڷ;pZ2׷%V]eďfuOiKoP诗*Gnv{.ItZRf=",SOWH9Ecn:{Z6lT4JiNgULhЬ6FxZ*6w1 Wz=<"tÑ4r1 Da36e8X^EvК3s֞fѫ%:+W/1O(_Oq6/s 5 KMl(T;Kʼ0 Y"@@@@@@@A( A(X(Z . B"𲅴 D33eYkV ۺs [.Ic7|Q6eztd4p^𪏒RGh"GR<=_gŻ\X&)llgv1*ܸ5mE;.3&Z÷'&Xl5ŗ7d%۲ɫ.-kOIӥr4pːm<3pz*v讴Z:YDz74tz8d~VԼOwPښ\ɤq.VviWhuWtq*╳\'Nno+^^iܺ Hcqmy%SzU"ЧjbV92HĬ8*㵶[i㌁w;sNulFߢNXE=KV_E͗/f,[u[GO&lsNmoCkKFLk>R&=I.9٫=Qתy6ӵ "?v̺ zxM1yjOo_:k]ÿTV:~g+SJ4Q$ǘ^ܹV89LLYtk2teɰgBzL'1ݚL}-,ί;ţit\yw8uf1'u4*6;. /}d:ӎpFYIoEH{[O@ Z{1Ľ.ՊWse5&ws$Z4Pr?3^cP.U +*8)efxahb!]Q X4"D6UDТZU~9]) G{JjZfdE˒4suMx뺍%1Uf6 edK#RmڒnCܯO?{2℩ kjyd/kظN˗_qsdlj5YLىjJp˛7cq*|rmj޽S#MKmԔy#~x) nyܗcS LϪpVcF/QcGϳ4;FX=1rpϒf=9"8)˸ـ.X{ko?IW!f+{ӧnT3/_%v88ia.Wb2;5N3`-E;8(Ů09JNV6b*U*Y,B @R-bf0 ve|F?gqlmۺ~$j)䧑,B֗9I$X.|Zx] ĈgE>Uas.}n=9V/ڭaʑ`DN3 )#n+_N,;Dfg :K^7:j>%W,ܮomT[b嶺q%;CQ ݺZ7ifVD>M/ҎP!auxw՞gMM׻yY^H d8յA^tsnnb\ʁp MxÛVfo1خDBs@?|DWkKJ=h٦Ca+thiYX2qm1u,R9uzOnkddVnݖVnڳđεC+Y\ꗦo&?=+#ugks~,m'ĪjX+cNm\QR4:7[^i n }U=8eg<ӵnHD6"U^f7huVL&tT9J͡E,D%H)LK+[s,Y><׷k8}]C_"ܞ1ŵIFւ";ZNCvpNƾ/4ZDGrg p4騾tyj e0-w+cf} KW~v*XSxmHwNO׶?mU[La,>,RKY-3 \f[,k5a=Z6xm@6:׵ >1F7nFXFFh6ZnRֳJB,-~^hu(Ệ,RK$_U[jǷbbr[ƛY1u+.aXRIF-C]^2W/+;p^ 6^%oNw v(ۏut .:+d#`TӔGzh}gvRYմI%sHʗ{.|卦v tDͦKw[x֟RӃ;̏$40v.3 g+1fj^mfR%5N7@- ]eH6Wrk9 m<,b&Qb(:Ogˢr|V)e*&ө,TzoQ#xd:,8ק yoMEŜt1:z O+s#Wv>/;̦1eT5YyxtӘj^!v[$MSſsA-yd*GzHĒTdgM ߰Xws0pcuW&-inY.>#58jj!]s~ۮl;hewͿe.Ƥ>_p%J{H,<},ss z.M+2~c '鿉x|1NZk%2d򱒰F9!{x6BCeZ~L2[4U lL6v\|{CqMk3&_n_ \v]NF)\ZtaR,{ogsf?}sPÏZOhgvj)f/^+ټ(!kkӲ9(UIxtdo?e׊DbqiuVWj9k㴲Ô:裆95 yj)sZEt朳*7t+2R]AS%"AYٶ6Ћ. Ν :Vń7e5S>Cu[N چTdL^(LXi(.dw-?l+yvOV6u,JL"v9ڪojHl3+U_7 BHlVyܭy4tlVtbcܶ [Ϝ t01l5;m5h!aM Dlwd_k7 ;_&:csx1ðZ"-\k%qg5*kS+1, ]w*??O'lb87U?oE-rŶcxedyD#1W6\GTJs ~/.iz,+eU\?p5?KYN[EOvn\#Ѝ;.ƥ rSqlV&!;RH%k.\LL4S,U_>/E򎓶Yk)fh{5!)[D9#&ke̤b qgñ63x"rZɶ\Y!sh;. o16ݗ&XOjmjC_gn/+*_u9`ľW --sthݷ]DK@GWJsehg۫M(Epî{CBq122D-,vWR[ѷ^!\Limph16 JblɄNfo)2skB[mb SAHZ߰U(m_OIZ%ss7V[p>7KӁWO['gfvN˲)?.DOx(%9d E٧wU xw[.-}|9F^o_ᘽɽ?mכoY?MiQ$4ӑtEԆ[|Z3@Ӕ8,oDCfz* i6C͟⬠e;ɘգlyiTպBnlZ258\$<.'uد۱O9\1i%%i$TUYa}U3m9G)SncXS^%i43 =R u+ !{ݕ~&ӗA`;-VIn#S&=7Dc.t5kkS5e\ӽg]S&ya/'su:c7UJJAs-qD>vʜ[[7\y>mefA(/"aֽ{Cj-s+*}G[4v!hN0+@7qWE]tnk9ֆ_ɺ MSIh3-{Z陔~*n]YZWvt}=U>}euefȸPm7DB*D^'EZeQ{V=CEZ[g}22U;夨sH:.\Ѻb^I]e#%\UoӡQO'5$t܋ov%i|^f1x8#lO[pƜv!V0JVN/ a..[ ~(e>T϶}j6]O&@\Imw/:G%uskB DuרRLJTHĎlWq5),TG9XNAU0yp"mCnTd TEDPHDwEA !H(eee !ïc}9uM}Zs,bjܘN58NS㓄SiIwdr:ɴu(ofUtW +Dza;b9t֭ᕎ#3Qf0A U;o{#o=Hsrbk<-khq䥚 UC8fAh6Sk NZT5v d sF׭%1}v'FnpN ɵxJ8nQe`&<"[366!7Sꊣ^q1S^M(B+Q]!m% k6#ȞLͿM쫦ˤ>PO=Ӊ}o8{yϲq?' q߲q?%~߲h-'D~8'lo >4~MQ.'/oG &'Ħ#Sy_>?*7` 'o+F5g)!N ?N ~QN ~Dk8{wfӉ1G~'z'~Oi)~G4|=}#gM#G |h9W&jS&L4HM#r4nQrIRm !H(]XUBE) T$@DB @@A( R B"aDdMV  S 2Acool_003Rx`4g#:T"!HEeU,PB @@@A%L,4JQ"$@@@@@@@A B DPCI %SsfU0'+|u۫E+lK4٢YJ+*ߪ:j(bqɘlWzyiss$@D**B9"P@@@@@@A(,xM„e @ )J$A! V[:0+m5\9mPsAt4wy0ыM7%4ѥWPTE/1e?6Gnz8V˿MÇ?&Ο 0 E1-Kĺ lrA#Nrkn˗/h싼̭Mav Ha(D"IEHD! Y ,ZBQaD{gI6T )0 .*K7Ӝ+]lz)aU)J$@@@@@@@@@D!h ڲ- kb|ApfVzR*qQOsp{wLy\uz~8^ eLb Z>+3#&Z:J"eψ~ ie d]豶=t꧓{xCesC`%*3peo} %xiik(TRPUQQ! PP"%CK7;,[Pv/?.Gnexma2KM'6]˞1w|jxvv2u{sT8QutDUfK}Ju+qxM]^im[E^m.46 ŗRڗ6S~e\H "P2"PJ  0 ,ki7-o{uZĽ>prnݖF8#{|2-dNtT^|\cpsq. ׵?VqiX-]A 7R!~N^bq8~mEu˒&'[of=?K}JyA~gƜsU6*̤R"4K#;?_+;BϪB4vŻ\;aw[C= *E 4 p\{/xil"u˿q}U^lrsyN7 6]ez]`hueK4)B frU%PX(i D "ԍ~mvYdSҘ6ŀjoEZ՛iY7bɋǑ$Au:X\XT\5ٞ`l^JJ&6 WF`ƁZrD5MóM%F g' k{kMXc!.] T UW\)@7(v>-gfՇ|+Zښf8bo{ek&6{ u *\ѥuKihxlu7yYu6w?SD4Iuο6klPxM5좖rJْD(UJQ PX"вJ-$@@@<"5Tc _NN&dksfiS5-&W6Ѐ.^h澧+cƛz0xWguS9A6y䨟V<.>7ep٣MRmk\̹Ls Е~n%P6߭U~Xi9 P C^ku1}|옻tEw|pXneP3|F{ռ1O.y[UH "*YJUB @R!@ B !(ݥ9uEcMgik}V}3>2JڬC`ѕN?⮢tj+_`u^e}sVB~X{2&ĭJN^#C׮}YUrURsdÖb-RD!oa{Tz}Cܷ0$nۗ}=vI|qkLW24MBW奣]qV+yBIp?7sR",U*!`A P  % mGRΚG]>\9ؕoskn2t:z9g'[]^0Û&YV8n칳uэ  N}tT{M&\Տ/U9FmFNICU\wv"D P١;=U- ϧ5Av-n\Pی;{P&4lE; Zˢ:a:r7^}F:rt,kY۶#鎦YE8`PpE"as ۲yy2vuVRƬ*,U*!+A PHA!B𲆉D],]#luӦyƝh3r){֖E\Me (L٭TXO" )2Җ8e|/9 r-%R8#@) D[yzWdKr1 Bxfo yKѥwWK4_]4Yct{cHsI~օ"edn,-vr+M,Ah.&Z%z9u6tjܺ汴Ŷa؏ЭfT<+ @@@@D)nYʪT TB𲆐H,[RqJM@os]l4]Pm1G@m6֯aae;v/WVLz;l^Y\+X+Þ1B D "*:.vw6ԯ3{?.[6+ϦYkjek܎[X0K ԑg&n.eS*Exæ֜x$1tuyJ+!@$~'(sxiOM+Я,`V@Pe*VDTR!PJ ju a(H%Yi_oWQ$dܯi7\y}c Cj d:8_.Vkuٚ ֞'X."kH;oþ^´~J2j8>{[NxxL|4-Y&VAlUi:z)|N`s8njO⽻rj|%4NLa{nJw,RY2^[ۮci`mnS&iEڟ>h i<-[Ppkmp/smU"+6j|*i[].ڿekUo[GÀ͕vW<3 o1Xoy mQ:WїÙnk?'r妖 r:' {R8R++r #rp[{\C7Uŋ]}2b-嶢/n'JzE0~)Ltt%/Ӳ/=4 ixᰌ1֕8_~omR-g/nZ?qˊڪRD !PJ  BCXJ$DڪҮ f.,OO`.lb.\rO'.zGaz>6|s{8^#>Ig4߭/,:b?^qn5#e[wİjsG$mM[΍,ԐÈaGgL&2d0G=i ,b@7 7YҨZ(,CﮝoTFEBHd猎sImޗk_RCFϗnJM==hnTֳhqږ^#7xsg W^lUԑGjh7!KثOKmҦKF+=.n#G4x{]. lB#1fj]{cOVipk:?᭭oVq E4pK{WQ KJtM@/WiZy<pHmcuɒL1p"8iߪ&4{Q2 ^rBJb@@A*AXB  4D@HDU^ª0[u˚_4qSXcۋ6Y3T}3Jz&7UɹVcdע/K4eV߲7v:63?շb:ۍ-? )^9a|n$7_uM&1h}Vӎikp t1ػ\ߋm\-0?ceX%nmɘOZN %.m|ke471,uoޢt3[˪7Yӎn\mEl4×&ݜ0l&)Pea/*b`Dmw(gÛ}V\9c.')O锽)kb6wKi>aĮtgMbViqÏF eazZQ~I:8k6 bݶuK}6;|Đp6^R*ݔH (RTVr XB ,Qa Vz?Jcơh?EOMgY7]UjN;6y^%'h,0xm^k2E<Ȇ $6~^L^Yo8"--wR+`sxWU:EӨ v@9KeZblLV䝡flӟUÐ{5BHubpђKntVj9{ȭf9"~j{A=t]x厥РF'nLno3emӚc9&׺rګ"T{B]U֏ϭ606\tDqqHOEF1<|J=(&u o8V% P )*+C)B R A* A!  !e aګ-j`F;7>&"Yu Nķ;71vmkTH憁q{:+qC7>R:^KfDGoZ)+F88Xm7e.]q[6J4F 9c?wm3MuhPÓ!n{권jsf`vqmfkW;SM%)ѲioEǓ oنk~f>5aS[:@fkw@y*|ughmg~M)Zu^۪+0RO1ڷA{ʈ4 Y8lvkufaluXk+Z˵촮E2czzvr}L]l})l@ޑ헍uyf1(~]gar续U%LBJW( ;im7D襦epdN2_vtЕ9D@T)B @@R!@  &P,q Uezb*KNJ[Ź1ޚ ,##Cu;i{m5 '`̤ÌmT Nͨcll Aٵa[ܫqpp7{yZC&qLw ocu*ԅf`s>&v]&DmYSˆ7Sc&1n^C**17w[6z>o/熎"kӧ=M&K{qy;Q-^˫ےtɃ/}s.,guT )*+2  A`hX(iX@@@@D,4mӴ9YKbVE~K=g鵵S${Oi_c7sţg}ȶ^-:mҢgF]F껁pV(MV&b[yy 99ip ҷCFrpxr¶8g9B6X{ 3b)rϒk-Z'Jwd'ǰU+dIZ*#e 2rA׃%QovNދ%=83Svoost?&}T"׺h/J*_r9xe˂2KihiU6ON .:Ջ/zGӤ ۢY^D0$Mp#Yګ纔q&TrI\ޥ}L.;]UjuuWm91S\>W%!79;oMm?W Nՙ+u,U,ЂJA L2 a*'lItcۈpקr:% q#+wm賏ORhv㎙rBT5%'e,K $d2vyIэqt9_KB=Mm{c;⡗423E.׷XqKj$8TϒGB7OkWKFgD:feS)wP8-XNi q-N'>Um)ޯK-uxz#{Hg;e˞| eə4mWq,`_[.K`nFVt[֜a_l3Ft\yTp,N?kel|}66Ж`Fcl8lQTB֗HXE='y*yix VKmoyڙ]i豎N kCtmmjM6j^φ8~h0BsmEarmGE"%?^>K]-^m;OɨHdbuۙmZ0?9KqTZx^%+cŞyb˞ӲkWC{Tp66؅я.kcѭ8=[dyk#{6@/a~9sjbwۋm>EVõ0ZAiح=nmgQҳw+r^Xӊ+ )sQ4&ږW2􅣕}<)d^cXOrݧ =2Z|yGMhSSSF{cLo/g<Z5kֿ6׈`~#7E޶Ꙧ/q9P#]5򼗒Jjt6xB[xl֚f賴jUtÃguZvgL~\󕋧l,;Aԫ{D;\EeLӱC ,7eӃ>ÚږԱYYw|zY ѶsLdחgMo jN rxY^enH}w]9slvVi s@Vi4J7*?!~K/nR|EtWF쬩Fj*@QYUJR"B @R!@  e @wDûcXmCAuCQbLŘ+9r[@ȿֵkV`{܃qϟKSZrM2|YR3K[F>023|ړ 76ZzoZ1L&=HQ6uGE;[ȎJuzz|<[ğu&;sOV)r˫h(%sU*?mPXduRkMfmE0'+?+Nm]s%Y¥Y)ee4VUVRU%"PJ%`,a (jnѲ69=;0 lQɬ5`Z[JWoN9xsvjdYIvZ&޵QF+X=}uaWlQYSFxr \;,g:iÝJ*P/oitc}p]z\:Ӳ>+6\sK_k9Ep+ci54Q<4&ok~hgsi{~DGl)x rSæ̻۫0FjdB4]cUe 'pka;s~Vp21BW&\S˧]/x[pz^6^rڊRꭷ,:lm1ꔟ躺gդ,zpSſ⽝u% msq䴺qpr~ju9ƥ^霴VeeL1;2IVReE,(B A L,e/TXD%dJB4(iHtV/7Xe)^)ev^>KΆ%|È]nSFN%tT3hۭǪnsnⶏ䷗h7:2gYH{y@kn)yh$%oJ"=F6PuEkk==O*~wesN;dmmRmFb>[1[YY72KRN2,V"Zٖ[nצ F66^kjJN+7~j֓3*fEb~ 8z L#~(6[}i` &Ji]!p,5 Y=/HyB>yיNg {PjV6ZM )i.v>! w8w] 2RTqVs,DC+K*fU%K9] "DBJ E+^J ȝ, nWW};hp$9aU :q[k|/>`h g;X?\4Atvg3~z8:n+M)`fk.kXґʡ#u|~O:V+BO6ﵮ1m&toѰ-71g tm VA;׾q֑g_*qA^18YRPBc˦m/4ڡ[+ Hj:iH=DTO;e״u=}k'GkΑ;DlZ/hk 1Bnv`rzjh;pK`YP>t%He eLnh4qe- 1Go# 1cIm^VlVzm\$z^"#puz4tN*Tա m,eYʪTA(!"V e "R+(Z!UmZ"eUӤ9r䶛V |sIyM= )&r|DIfޘK\98Ζajq|y-Iڷ;pZ2׷%V]eďfuOiKoP诗*Gnv{.ItZRf=",SOWH9Ecn:{Z6lT4JiNgULhЬ6FxZ*6w1 Wz=<"tÑ4r1 Da36e8X^EvК3s֞fѫ%:+W/1O(_Oq6/s 5 KMl(T;Kʼ0 Y"@@@@@@@A( A(X(Z . B"𲅴 D33eYkV ۺs [.Ic7|Q6eztd4p^𪏒RGh"GR<=_gŻ\X&)llgv1*ܸ5mE;.3&Z÷'&Xl5ŗ7d%۲ɫ.-kOIӥr4pːm<3pz*v讴Z:YDz74tz8d~VԼOwPښ\ɤq.VviWhuWtq*╳\'Nno+^^iܺ Hcqmy%SzU"ЧjbV92HĬ8*㵶[i㌁w;sNulFߢNXE=KV_E͗/f,[u[GO&lsNmoCkKFLk>R&=I.9٫=Qתy6ӵ "?v̺ zxM1yjOo_:k]ÿTV:~g+SJ4Q$ǘ^ܹV89LLYtk2teɰgBzL'1ݚL}-,ί;ţit\yw8uf1'u4*6;. /}d:ӎpFYIoEH{[O@ Z{1Ľ.ՊWse5&ws$Z4Pr?3^cP.U +*8)efxahb!]Q X4"D6UDТZU~9]) G{JjZfdE˒4suMx뺍%1Uf6 edK#RmڒnCܯO?{2℩ kjyd/kظN˗_qsdlj5YLىjJp˛7cq*|rmj޽S#MKmԔy#~x) nyܗcS LϪpVcF/QcGϳ4;FX=1rpϒf=9"8)˸ـ.X{ko?IW!f+{ӧnT3/_%v88ia.Wb2;5N3`-E;8(Ů09JNV6b*U*Y,B @R-bf0 ve|F?gqlmۺ~$j)䧑,B֗9I$X.|Zx] ĈgE>Uas.}n=9V/ڭaʑ`DN3 )#n+_N,;Dfg :K^7:j>%W,ܮomT[b嶺q%;CQ ݺZ7ifVD>M/ҎP!auxw՞gMM׻yY^H d8յA^tsnnb\ʁp MxÛVfo1خDBs@?|DWkKJ=h٦Ca+thiYX2qm1u,R9uzOnkddVnݖVnڳđεC+Y\ꗦo&?=+#ugks~,m'ĪjX+cNm\QR4:7[^i n }U=8eg<ӵnHD6"U^f7huVL&tT9J͡E,D%H)LK+[s,Y><׷k8}]C_"ܞ1ŵIFւ";ZNCvpNƾ/4ZDGrg p4騾tyj e0-w+cf} KW~v*XSxmHwNO׶?mU[La,>,RKY-3 \f[,k5a=Z6xm@6:׵ >1F7nFXFFh6ZnRֳJB,-~^hu(Ệ,RK$_U[jǷbbr[ƛY1u+.aXRIF-C]^2W/+;p^ 6^%oNw v(ۏut .:+d#`TӔGzh}gvRYմI%sHʗ{.|卦v tDͦKw[x֟RӃ;̏$40v.3 g+1fj^mfR%5N7@- ]eH6Wrk9 m<,b&Qb(:Ogˢr|V)e*&ө,TzoQ#xd:,8ק yoMEŜt1:z O+s#Wv>/;̦1eT5YyxtӘj^!v[$MSſsA-yd*GzHĒTdgM ߰Xws0pcuW&-inY.>#58jj!]s~ۮl;hewͿe.Ƥ>_p%J{H,<},ss z.M+2~c '鿉x|1NZk%2d򱒰F9!{x6BCeZ~L2[4U lL6v\|{CqMk3&_n_ \v]NF)\ZtaR,{ogsf?}sPÏZOhgvj)f/^+ټ(!kkӲ9(UIxtdo?e׊DbqiuVWj9k㴲Ô:裆95 yj)sZEt朳*7t+2R]AS%"AYٶ6Ћ. Ν :Vń7e5S>Cu[N چTdL^(LXi(.dw-?l+yvOV6u,JL"v9ڪojHl3+U_7 BHlVyܭy4tlVtbcܶ [Ϝ t01l5;m5h!aM Dlwd_k7 ;_&:csx1ðZ"-\k%qg5*kS+1, ]w*??O'lb87U?oE-rŶcxedyD#1W6\GTJs ~/.iz,+eU\?p5?KYN[EOvn\#Ѝ;.ƥ rSqlV&!;RH%k.\LL4S,U_>/E򎓶Yk)fh{5!)[D9#&ke̤b qgñ63x"rZɶ\Y!sh;. o16ݗ&XOjmjC_gn/+*_u9`ľW --sthݷ]DK@GWJsehg۫M(Epî{CBq122D-,vWR[ѷ^!\Limph16 JblɄNfo)2skB[mb SAHZ߰U(m_OIZ%ss7V[p>7KӁWO['gfvN˲)?.DOx(%9d E٧wU xw[.-}|9F^o_ᘽɽ?mכoY?MiQ$4ӑtEԆ[|Z3@Ӕ8,oDCfz* i6C͟⬠e;ɘգlyiTպBnlZ258\$<.'uد۱O9\1i%%i$TUYa}U3m9G)SncXS^%i43 =R u+ !{ݕ~&ӗA`;-VIn#S&=7Dc.t5kkS5e\ӽg]S&ya/'su:c7UJJAs-qD>vʜ[[7\y>mefA(/"aֽ{Cj-s+*}G[4v!hN0+@7qWE]tnk9ֆ_ɺ MSIh3-{Z陔~*n]YZWvt}=U>}euefȸPm7DB*D^'EZeQ{V=CEZ[g}22U;夨sH:.\Ѻb^I]e#%\UoӡQO'5$t܋ov%i|^f1x8#lO[pƜv!V0JVN/ a..[ ~(e>T϶}j6]O&@\Imw/:G%uskB DuרRLJTHĎlWq5),TG9XNAU0yp"mCnTd TEDPHDwEA !H(eee !ïc}9uM}Zs,bjܘN58NS㓄SiIwdr:ɴu(ofUtW +Dza;b9t֭ᕎ#3Qf0A U;o{#o=Hsrbk<-khq䥚 UC8fAh6Sk NZT5v d sF׭%1}v'FnpN ɵxJ8nQe`&<"[366!7Sꊣ^q1S^M(B+Q]!m% k6#ȞLͿM쫦ˤ>PO=Ӊ}o8{yϲq?' q߲q?%~߲h-'D~8'lo >4~MQ.'/oG &'Ħ#Sy_>?*7` 'o+F5g)!N ?N ~QN ~Dk8{wfӉ1G~'z'~Oi)~G4|=}#gM#G |h9W&jS&L4HM#r4nQrIRm !H(]XUBE) T$@DB @@A( R BzDd 5R  S .ANnVbxtb*WO=67 ۦg:n*WO=67 ۦPNG  IHDR,PEo iTXtXML:com.adobe.xmp Adobe Photoshop CS5.1 Macintosh xmp.did:F77F1174072068118C14E2E52481B4D4 xmp.iid:F77F1174072068118C14E2E52481B4D4 xmp.did:F112EF70F91E11E089C6B9EAB72A68E4 xmp.iid:F112EF6FF91E11E089C6B9EAB72A68E4 xmp.did:F77F1174072068118C14E2E52481B4D4 IDATxxTW.   $ d lΡw;}3=oޛonw:9gpmlcDTJU'ٻjP(Iߡ$$ٵkm n- @:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@:@!=,buxK<"@;@rG{v +t./)Ǐ>F8auo˶k}=l>Gaz) NA_9tm[e0@]2F9 Ed( #yƱ#ǧיض-1#`78|(}[z{'Nx[t D6De;f'%'%%[cG_[Lq2-e(2Xr4J'?`?Ouzf=0 w[(gxzG29BAdI_?3e}LjD -^nm4|_L,oʪ9|3zfϞcoH~s`{o~zr6ʕa'''1McG?eqdS7+\+c]ȵEX]VVs?{ά0{vaon3Aa"RLq4DD.ZVܔxǔ Ɯ+#|͓WR̝|p0@jЕq)IdΆc8zK1w h1[k8llAΎVLkq.}GEMsdyyŶ_ERGFk^Ӂvde#XmW46d:{ZZjֱDB6 -mq>2CvZQWWlA&w.z!u&ӝȾJoY0y;lg0л2RiǏ.T" N[ m5C Z2Eii >5$/ꕫYn%%D"`g=h:.mUUU?~wN(}[;w?FƓ?BkE,DxJ`st}F}dHK2m9W\dpsTlڴ|pn6sssUu?>5O?[Dr:>woH!tb7)wpW!ۙ-7 zQp!nZ3uL69pq}h͐nZf1GY2Ϡ eakk 3;͛"9 V2=Iv)t 㼐#jny5g߯Z\zU\>}sNQKW]F|$R6jԝ:y`?Tϴd/䃛o [HTT#UE@KWoHt;`}ه.~FC:lOtjkEɥK~oOz}p* t\P6} 7+ Xi.G9ךWVVbquѯ_3>˽zNQNWQt'kHAWDŸn#VN:|?H߱v 7\RaWҗERiIq Gb[4]cΫlXQQ!.±cԣ F6M 3!3`w2xUWq> &rd'qŋz±V^~ZAW+BKo,4Oʱ |͓wКuSLT\?mz@{gicG/!~.+uymR㺮Ljp6ķy"O54iy 3!3`w$jJ;ell=3iiyq~|i{q2]%8gc= D0 jݺ #o˗/]^B37,ѣǗMr+7F eY45r%3 Z"{5DjZZiVV̄O ǓVփqZ#ܐƹqN0"'b8_GU_sJ{1̷j沑@^W\Sa-|=I]*)YJnn>YV@sǩt$ɶ"vjqƓRM923.ȽW&M 3!3:;]t d>ccaBD^E௪%%1Χq~XQstn630uZz;܍>7f5II>7]R:udYdvhY* Kfp4hAIESd d&d&@G829Ak^9GU\xd{Ԉ˗/k׮cϛ7#\kεav6vl٪>)APɉDНbv?zؼ)S's{%Wt~5s9nB EA֔M d&d&@W@;ƹs>mRDZZW9|Hr386· 5^\@0p]%e8ZH6I48al@ / pG# ̄M8]RcOr{d5pYyE|ޣGɪU+ !כ_ȹ]{6ޫ6}^;ur8]/-66ЃvlJ;}3֊klNٳgT2&BA@fBf@ݰqS>@e5tyiTW+/s=|bmJ#XF83 G$0O^:6λI=vK-Øi.wۂf]($nsjF]2= s=ÇlYVsqRۯ_.w9OJ8W l>c#Q-2ݿ.%=j@O>>mvב lr4(L gjʦ!LL.N9}Ƭ#=KF85LOmFzvvWK,-܈y4ҝQfۼ2Υj۽Np͖<إq<i4k믽Q4;򡞒AԅTgjzw 37`TM );vP++wmv*huIc*t>4-j@#S%-' 45H82͎[G9U3@# 3!3`wѦuppeee9gmnĜ#\^Eq.d=Lͷ,LU締H[dxHr g6pjv&& Х)R܃ry iFOLpd ' Poٲs #loMangߏ9qtx~Tfӣ͎<)9vlGMdeⱓ 2(d\}:py0n=/'tذqQ;u1ZJ⵱*%{2/3#Xb-xLL\뇖Ja}vsooڰ4ҹ>--5kߞMe9΄; 7%]VZ*jIZ< ~ cSKu7b5˗np3:'̄5聃"t%@pUUU_~_qs==?47@_̪*Lˉ-40|||}O? t@X|Gٖm>e8&ujʦ22+Gdӽ Rە#M9O24n@wGmtdQII9:9MĚƩp.BO=oˤ`ba;oNcE~5;r3x|Fh=@fBftEt:e=as(rSfΜŵ_XF'N7p tuUu9]}n;Lqğ;[޽{_nj~:M6;mOyow}!fG]9aԞa$sCǏ/:L]%37=w?s;k!e=z#ǾSRR27I]+ [/"L<ЎMFyɲeK8jO.uI~:!P=lvD?ͷfGī!R6323.H^dek)LL G+0 aչ3S#Q]]Dg͚qTĢ\{nkj{vٲǧ[ ΝpЫ4:K68~ѣ{٬Y3?f@# 3!3`w8C-Ygmq02V>('>}\y deBkvdC;|J(Mȥ#t kx o֞u6|BZCGQL˶.~-bH[k_s~ZQSS#/8) ]5;af6ǻqGyRRaz}!uN5"ff<8뛾g归ӄTs@N+/r_%ς{`7"/8|7Mلŗ_ 9swqF@稴q+Z׸v"˗/5ZqIdgB]μysv]BRz~9Ez:R8W!LL_M"|ضmDZ_-^EfX%tkT433Xٱl{LCZ=E'8NszGH,"֍8ɰI~t#V) >bg"VKx@TJ;]۞ Qލy)˿;=7WUhӅt>^r mhZ`uunذnYy".95Xe@+z8o&08|Z?4V|%];v*bF2}NV\,.ڲKN Y[hLm0y ڹg,\sD-Tyz=OtbugG'T2{vADBKwlJaNN \ay{ђͫN{͍yi:ίׯ . I&yU-5@P0F;ґy7/ʷ D&84ſ>wޜuJǓھnr}g.OMzoi_=QDVӻu+ %u\#;EJJ_/!_oI[* #ڐg'uƾֳg6}*fYfo}{ޙ,>[3e[YY)z9ieoK>s78?>Lkln 8dgѫW:md[cFop@oM.? v]voon,vEqyNL1^Z)YJg˗ҥKƌu0 VYG޷N㋻ֺvh-$Ts\N'ՇsLaa$ mc/'oHFoӖK5a0eg#bLTrCG&ӖXbŲ@L7 ]ڇ~D/"ė,:`7C#NFȯs]zZN:;֫tN(;^._̻,- 4uDݠWn/0t(^.j_=F\,>vaNwM[q uٳWپ}ڳɶmw~WˋTss>n8Utz/3 e"ItqCS8 teY~o#m3mQ^v9כ6nyEML6#Y;|`:Dɽu}GzkW}Vuz Zo{/xfS^RD$Z]>fzJrܯj8E%׊ފ]@7,kItZ{y9@Dzzz٘ѧתZylݑ.soyx@Rr$0a.朴?,|}|vQϽQRri\@D0Cn>)<@ adWBPV~|}PH?a˃p_`0RMdg?%}wûr0Oލ&Ic2w7''IIdÜDDi14Hy2.o:q$j$ IMm{ߓ{ֲwYijҺeho-U4V.QQ9c ?JS"OrtLI"Z0M@#>Yi!o=jiv ٓp&3hRoeCfv^ٕ%  :xHč{28?X־7\]0h= Y?ʒ["Q"j&1: a nP"b aw=PQQL>vܰC TKoCziIM h'uǻJ+ȵdWϳgϽxy2sja}y]?Cm?er&/i~ ZqjbL7|F*N}h/$Jt^z[˻Je20Io ٻ7V&FIO-'[c@IцS8BrCoXyrM޳?{Vfo={W0//gL/J:{2̮,/U PVlbȑ!wϾM]|{9\ydur\HN°4   >eo|΀x`͢";K[=;;ƏH{͆ E{Cʼz#>@5]Og%eJipz;3yƙtٴvJqcD,T'WW&χ2HjBmoq?T+7>֭[6t:5[B^Љ?|6ˋSYBc k)}钴ro܆?Udt^zՙqE˗Q:[*iicF$Ntپ}&M.:]&LKyEui.]g=V17y~VYKOm]Θi,y_j{ր2K]OC}NIM^ox;c};7%~ƜL[Ҭ{md2OhJF1ueTԉ3If$}R TjN˦i/X0?}sYg%$Lڒm‡($*IqJrLpW<܆n}˺UWnjjE%iM_McՏqٺ}:d˧} Y}ԚXF/h%;Bz{Z"~Zq*7keZt<@\ڷm2m'Lभ3 U JsNw7Vw^֫W򊊡OzltH[:3=w;!7~,@yoiYFTʟ#FI$ࣩ|:RI! e۹HTpS۲6H֓7s ;/\U0 amkiNF(+̿Xp>}zkQ|W|Di zwp jͪ5+߳c~@gZŢog5+t^Xر;N竲TͻC?T'&+]zm5}AJg{ǽ`[u1o˯iHM<Ù).3GoϹ3yV陼Z#ǜZyJo?缈kb 3i5@K狅.(`OЄ{~K.i #lojE[g?uvB_UU%uV6}SLJ*>|[Kf3@WO2Px`93gJ5+#m2tMBGiZ/D'S{JC!:D?NdNZH>CJݻ={:{R LA/G#A<[ndX%Dhm_>- P =33f4{g+D?b.\|֒gmݼyaLQtT^+?{dsu&uK7;Xmj3qZfKՀ=܉(|"ٝ@O}L?2q-$| vA#шky@֬pcnͮ?7/z)V\~@*5Bqt}mێ?+/+QR܄Μyj~FollĊ6]єutYYeee+G]=zGEEE);{\os_IɥTYkY]T1d$^+nR\#J gK~W‡5HJ.QwۄʭFj5]m9+q䓏5\ tFzO?DUU;5ڻ_ty )N[@1^Qqhz_g"d歑q4ۇi~K+qχ{_}3Bdx i6W]G\+Au8Gk'OCWc eqV^3Mݙ)!nCe^ g  PXI4'G.-=7Ι\uzQ|WGπ=ߥtI|v_#;VWLxAi c9Q ICVxmU4#rd'JJiUU"wp+2dȐb˺W|Svl$\qN)ZVM~L>ړyd׉oyɗ r~zRSC>e4E"|+#}t;[S 'UFZtc8:h}<%'m#G\c< =?#SIK.]xk]nTWOPi̍^ҳOG5kV~?؝yn=k|2}y|(~FfB^֧EmG%wOC!ޛHfh.Y+ng0,h7ګwxy_U$3?һgjC lmU6%sJ,-SdJe-ʦ裫STiF"Q!UcAHq@:(7o,FTZ{[knUSЅqyIR}GqZJww=Csמ1ܳZmaFffܳ!D[#3!/o4У5ƲQ襏wA5#ovS=GS+*+`,\o *bQgώս/f~Taϳ#c#PGv3HnidžKy6 gLmMӘfiVsIXҪ#ﻔ}ij}eDF=b09QJvJJJw]\Etz|GȀ|>ܜ͗/_j碟(Ai_D6_PFu=~SSxr*HT)e?d*qtn\OP/&ps{dSHf^"2Bl14Qtu:WUVYfnb-Rt~t?:ZY~nj`KiV/#f-^\O9Q qר-Zt1].hƹ'WÅiuZ'<.YuŴh{w#'}_{V6d9Mrs@we\[#3!/ËGZ0gυa$KCr䯣''ݺ9cٜfzx0wH4CVK¥IY5^&uV:{FwJO#z;0F՛gm t#}/9K-wȯ> 1tH~F0;dZs*čI康+E%Kq~{`AΝ٣5O?+8T]~S_{l5+NÇ|^u Zu~VnWDڭ{ZPB8eݏ۽{~hxI:6JkE8$'5 L3:%V< |yYm UΥ-[h0\F(/S5edG$/H; \V߾z{Ŋe&9'`DHϛPܺea>.ΈJIYy9{K_U֔ta+;Q 6uye 7 "P<!3ō,!f׮=E~ vp\x2 #T ի.;|N;{*r~>B̫|ְqyN=C=Ze59]:f8kfi޽w%)j7oHޙ{/u̘k>b87S=2|k" ؊wO_%}3uOu/DQ2EUZLbtX;*"ާ־pႵGś[yK4wMYPΑjZZu4wxgC'9Nv$߅=S4elSRt(C^N$)\Ϸb#Բ.)Ѱ!ϊkT^r=E"Mq'YUMOh/O2#?W@1ٹDF, y9CpĴ3FhF5#;4EJd,%l߶s<zFL[SX-w3_/^IҢD^y~Ě<( +Grn^)Zȿtԣ{$W%ǎ1 ) d̎%3!/ۘ q~vp8DL+6xwfҤvqw;z،9j7ju82HN\8>'N5/})A2w7z禭: G8z;e-rĸqchվg(\F3eŝw{@تA\ߡCΉ9~]@Wn2ze֟zGkNFR̙ϮdEk U_jJnt#--uzv"Lj,ǹF~)]_>^Ж-۞%=nsCΊ<8UZ:ȿg6z]Hp &>~{kcRI6[Ռy=6ĐD2ݦ'`^8@l;eG ¥FUbJ笙3⤢oQeQ;4Lo'MFT \D"/8Lsє#G4i{M$gb@6< ŖF۴j1m:-Ge}{V)'^Q: 3ōl"H! zBۇxnU+rvGjJJٚիNTF{ <oO% 抪JhҤZmr"&}?C_:ӝgz#tS[]֬CK4ުq7YYY_XMw$}c:DVU5MKM-Ύkb tj=h؛bdj)%ÇKUc+o:+Js۬i!GjxÇQ%֜򖒚Z䓏4بqFsu׮`/_KL4qk2#mIsKw؝oD;Jϣ KyX 2)M$_g7ſZ:Dnc驲=lzlJ_iֿ}gx"+yqyM3BY2yLt--IfʆG%庹%I.7m1ΨxRFϙ.LZ|p#cuT㙦[N@n^ɒh:kG۳"~φ÷ǥz|I雙K̼2VcL<8oS5,slٳ좏j[*_U?F{&}+ʦՃ)\Ͱ'^X8wr~#.Bu?[!^aPtNJ%o9yS IzCߏD|uƉ,Z(SE}Qz ⚈¼:ST )LӘ2e򇚁%ƫ([ԛw2ΖQQ!#}‡٣^""^`# %nDТS$! 8 ܔ߲am&"fkhfN{78qS d WNN'k֬#H%gDK~oRYv=lLz9Q[L7ؙ%9爌-{dI`ۖ:{ԐS8JE 6JZ_ьPhXjh}E3 uU_biMm(_ όhd 䉷hZ>{ _ݢ0];f!{Zܜϴ3^ua k,|HeFt4 ecoR:= {ۯWs~S3ݭFyP+{Y6z&x[)"HzzKi&egIљjȮ^O&\|`|N]K.]^G,1d3lpkɳj}‘ Bٔ2ڹOz_URmզ5:tdHȕDKZLv5*#2ztIMK+[x^]?ƢV씝jx GyJ!eHi;̞uqػg8?Nv+99:7o yd&etQ<$[fVM83;x4u-"6U\ĢFyc߳dS𝦾O?3Y{\T.[*9΅ٛ84?֨=hͷ㥚˗U6/ӻ K@O|k|L5VsS@5(^:^ՕX}C*YK#,|n>˺s<*zu?;)Fݜ(?+_S]}@9̈́*~~y'ܴؠTrTNuܼq34J)qY3U=eׄQ6Wk4P5;hDQ/ ҢA6l'OMMf8!7S*ׄ֙{rc;hƇdum3B[%o1= =L3")$?پ@g7:|_'?'҆_ٗE4;gPڳmhV})5ӾGwdfRnWwq/MџsoSlJ##?xqCֲԔIc!F: ^.X+ zV[v+X7~GWz4qd-qʼH (y|lxF3Q!k= )!r Ɍ".M{aE~bٖG4,{ 6lY F) b^gݳHyH kg[+jjkD\ ܉T'j"@h>~3ax!]/ǣjjɒE|NhM5U5Ul:%Y_ m|''&x!;,)p/iWUskk03iZ\eu:Z/ zjsQlPC,:,5N.W,Emg4EK^?M6)5{Od{'Y:Ğc (kxK˼ܳ7 3}\Zݮ[cxFW4nߘ1XOhTL!CgպURnn's}Bkk 9SZ;|-mjz|ddˣ33B֟tXaw3!}qef+(WF/sUc3SeY$xٵ]Mzأ KEQo~қԇBa1F$Y2=ok h>`h ju 7Ѧ;'m 狟DkX=sh(1^]u.Kͮ3m[GfR}y cƌXOIPflܰy"kL G'Ysɇ*JV+ .r/iVMr qku"FW^䓏9ҧ! =ns-ބ}4)w`aB^ݰ|ZgjWQ0;w=Sox5u5jW u!G/-f_o6ynNQb%^&am h]h ENOINq'˩1gr2Ct(!eЙ,GW #[F$5z7=WZ΍Dp\HSMOxp*ݺe{>1TMn)ȳ^X}]g+ رkhҠ3}J٪^zv[d>bAHsD Nٜ8>U J`Pm)_3EF/ڐ!C>ZE2cgRyEw~dEtQvvʆhOtfWTVͼ8%#L5]zU\4U[ɒ:`?˒M:C1Y{߳lYQܶm KF]9*kMɴy5i˞ 2Dv##L%nYuiF4lE7HOZ+7eN@ Dkݫ5j'“s ǕtOKZa=q{)j[UF˄GQCob ;m;fܴqW^$ESJ:s@|s&;vFtVsrr>w0r&4IF8 ~OKM՝*y8XuI(e%ok$ΉX=G$"/JHė'jȈF4 m|3qAQ∌BZgIiU:/sYa%RvKՈX~RJϞ-䬍3sƌRFI͜5/o*** Ugb="wzGT}"K/C>YM/G8^Yl(yv`wd y|S:lҖQYϛvv$;#ҁ74Q, ٙW|3hVV*QHdtqOoR2+k0"l }FFI%z// }Yw$r\&@6 {}3]O>VME:uvՅ19znYM9fsyʔX=L_|ٿ1>:zVj+Nt<^ujSxF*jlUs҈~Tİ\ZsJiF"4ՏPX7cyh3.yCuQ:imڸe);zxHEd[netƯ؈b ט~ҢJffqEcOs%w{٧F\t1+yw&GSϞ=7H"RxWjRWbe{6XU;QcG32olӦ=ߑe&ehc-˚ll!^'g*>8>y/&`4e=ڔ)U=Z^4"#m\jtUkYd޼U/kfJ/33uZç*Z W(#05=۪'* ڻgSEbFhJҁ-2ޞ>}a.Nt<^}iCջ.z.nՃ.NsIR,%e:q6<C?4Tc!iמʚ8ڏ=kI}c4(2Ƒ-̰< x\Mh,(QtZ"e˶x{-y7(+YG nayP2m\pJx}Hs^k;{I]t5Ǝl(4(&0;Ξ) -}gEKo獼iYf$2RMzTd7m "]&_ä[Fg^Bа`  CUǣJ/Dû/FF?>(gΘӯkVYJКqy~մ'lWZXnܡlk[ek UD\ҾN$2 sp ?56g'9M=OΓ򾕢ªs;+ooztu2 4m Mnm)K}8Rӓt2*5G_hf/v]Xv{=m| Qo˻O[ tߑe&e3C[6o-(ur=\t#ޓ0;Q9 ×T|YZGJw$ʋqn@x=[^5W9^bU<}?Si^{.+"Z3݇_ӝ0EXX>1ՐzNopmFҠ)뉻wV)ffvJ\Ě|i㱧),Fٳ>wΥyǣnཤ42{e=Ƅ% ϓ̩tNwxS~BK-9,s66t*t}PMzCӓV*eq{%_T_-]d ?%~CS#IwlgN'7 ǎ-=[>MzR蜁X T?JAmmoC=͚GWm>|դwŚh>.WH]0Y~]Οa/[fvi~(SY& ⺀n#-7x3}tFЕ=xdY$= +=e+77lΥ! {7c߫xcjU@[ggD߾}ig eev_C4j%@WbMq QsRգg/حx`|0/?;W]_)))n}]tuXڪW%pdsFΌ5رgE|R{bVO ~06m\$HRlz2,/)s^]T5A2tI& Jh+tqONܲyk^f5Wʊ gF]sFz Kml2=JfHF(vlk;yyYy=MV3fDJQlfG $Y~_ՆftOS52{Tڸ}nnmq .hh)鹎6:>Ն|9|kѾ߲y[_{2,"#FԯNZpnGц|LowX CuuB t5.!55F3Э0oBầ-9s,mbnÊ<)FƧv'^x_ii NK [kx6ГCYYY%w;ɓL y!JrR>O4{[ڜF5;hX34'S5=jzr\lyH\;Vh"5O׉lR6H;{Y5&7҉Yxѫď**z%tQ|L>턦y}y>Y-͒8Csu/'^QyjVfB^ډ<[;F)ڜҾ}{nO3ݚgFf+h-"N7˱_Ξ՘ yvB4]gP1bĈz5-j(ش~42d]w za{4F9O@fgeN5k6|ϟwBգ~e=ߝ8q??f(9r}٧7^䪦FE˫F $foT{ nGߩ~P' MO_^Mx!WE.ʪΨw/}S4e$GnYUU40t*:I?oރoHERԨ .}SsKfFFq߾٥r_;/.-|ܳz+ڳjcYCb[lGV"@, ?jMz- Ny0FY>5Scre.-n2O|M`-3<bڌ&<25~YFW}.hnQCP ~ĥ)L[+ t? :F#|12hzE:{ Akjἤkɍ֩V)3R[?sx„{uרxU s:,q)qX_p|9- xM?ɩ\KСC>f2NF['9HlINͲe#k19JoСiNh$Ζ8$ ae)Hcr͚qM.(((xxvpk(UDm63e[a#/$_Fh㠮(޳2mPfkeFE )]UfB^6#DzG>螪A(wpg"[ 㴗cWϓoqJjQf{,,kzsr{-z.w5]3zcN/?jׯ_g0 Hk=CFhN9DP"</`P>*LzBBZH*z(+umV{Qi6ZwmV@K'$H/S7w&d&yoRxyf;sO!.+\aLf`OՇzdg1R(͙"|p^Lw LKܰn]bbdVӏt1\SPB6qzY[V!ݞ{aOKc0 ?GFd8J3:46ʤ*\~YL'f/0_!j=H_֑h GQgFJ){ E[-Ut}x54[ Qu/C<[;\c t5Y>W ҡF& ;XwY|%VBiԱJnGlDwI~NE6`Qxmx2o|; c/0ϏݢʵO g;A eVGd :/P ]uݚJks%aPYa7q>q/b0 zϯO%Not )T曜\ {? Df8ߚ ͣ*i6Ə L5T]Ur-7?zʈnrstrvoėpw/ݭˎY:/iyj 0v9NA3M}:X {%势i|3e$u!3\#*g|\+ߢ]eG.е:+}w{|tB$sz4{5AYYE|1Io𐝲iZ<~q_qӾE2.^TgEC\9u2:NdCdV8QL3M}rШu@׊6˖(=GA,SpC==ށ|QSR[wE A n rGMWpбĽbpy;G8 %wJ8.deٛoOU (TIJ#Փ%P_b.B!r4 !$ GE(jb'23()z2Г/ !2Րhz{3|^ԿmĿE11-}~m2P4b=͒5Z іhLS'-rR|dľ#hYml.UGP?-A  4AԨ=g>|UW~(y[,JV u!|i ]5[.egYlYOf[93ufLS_([t)ku ٳgthIDgߙb,Ȓ9ۯ?(Hp9':IzEF=$(`{x [GQ`[aU:l~ q9reYD%>f}e4-,,Dƒ|u &RB89nE%D#G!jP/_Ful% 6@Nccc7eKٿ@9 jɑ,M^:姜2GpCdl:NrHrO͘6 맗\:B'C輊޳5o( e6ә N.Uw5`-ـcvzvKXPV[.P-e, r'MfZW17z'Qg `cQᾃh펡%Z0lg 4 fQG]u:τ_\uQ:#PN||<G/7=4y "n|H}Ai~ E?I؛PBdDO6T[SⴴTf_byJeTieV%~FQtv.9j MY'wݻg; ix a|I_uJH,6Zu& ŷ-&Q&.D4"w4i˰xr8&i@0VHaPƌ ˒m.-X s s;Xj?O.H/]uۇjcsQ#vz7dH TKثM8{13mډ%0+-[>U{o3B=@h-h-Jˤ1#ػwi˝~o0qLzZM?_yd0)= )-=s/8F54U#kT>Φ٪'^h\'>|~'}tgh`2p9gpz|Ԍ ]ʟ#:*B.ԵLTXnjzԈzɬ3#3M}Ntc#6))EYpHgX1IҌ%ađ#H!췋#Ț8WOvצwE`H``n;%x`lA>6bpRƨQ#wJfG,N n*iYx:e](mԅ`=iCC>#}0PޅRV~* .w'0RNvjBl<* 1~O^^XBу~#o/83Z9AzY[ʿ>F?\B2{s/dXb槔 Mu -:_]kx>}v͗F鼎.2=u@EjӺ,3Ng2f}^IҿlζW{V 7nw8zZU+5Ϙ( 3f NW[XC*';AWɠ##x`Xp{;wV&s=@x]]ر+(9r1X6d^FZ~PECʅ'99t4[iRdA?lA Qk9΢tKdpȣ|^g~Ni%ZU5 ^}_|CJa$fTA&r{k/K jygYAfy}ǭHq [dpMF:ԗQ]ȟd_je!oOj/%,a.((( i|}9S ((_Իo/[>( PyCZ4##$dALAI$_'k$ߜzK}B z2r,eKW΂KDbRu1×VbbbƯ9ӾOVAC%gzVr-\Gl %^Bf5>T1(p?H#0 3Ng24L-4 lʁXtv heKٚ`]G^R髰{Ӱ\6^JƁ7o喁j|l\+L 7ӏ&@G]Em,KW\9۲l;C5!J`PDSA&/24#,r[Hʬe"i,*Tf EE':32:ԗM N -EqZ V,6;HB ʟ+.azc㶁Z9\(B{H>233vH-i+ccP ?Ǘ w~4:( ٴT'ɠ[|1۝'#d3bccYxzYsgheS!dfD w'0oO>4#D?Q(]pozdUq)FC 3Y.g[g5*PgﺨO  ]{>}ILf<*2<5cxLrSGgS*Pfd z1Z5ufu/CZj×_|5`lB3lMj!g@oΣ4&:`!E}Qc{Z,$+O<^m{ w}N: C@HZ*Vd#w:S8~\GnT#(ljVH,s^ 'G6j9^3=]EpwETk˞k՜YE( fG*EHiqw^~ѾbU# 2;VRZɿp֩F?K1kjkr>rss$%% >lxK jYC>e'nwtkHhc kt+RGC5 (Z5ufdu/C;[:.{kpE #)dzz)̳ UuEq/,y` m<Ga6tV{Zb;s%80A7~5 +1ZBe:ExLv ։A yu\QH\ %WyzOy?#D뛋jD_~Bd=  !6jƤ>{G a>{ȴS XV_W7و-K>'[`0[K{6S@0a¸oN?KEgm #"ȵ"Т}O beJp"|)9ebKWs@LAwߛA"|K1I6hƵXj^ح YhȬvS{3*Yh XtCB;k^=BLutz 06'J{J15Ho E7Atn">6(|?M+5?Fi.tN82nCQ\$%3acr3Bōsj);xi| 8(tآLшП$,djA.W:|ʓOxfa6b#XNe:)) & L%O6~*GnI ! =X1Q=K"XyY#C7K{TH>RwO[ f)-׺/l Y@ YIF*+2EWo(*-=OkSg6ԙ /}tтyXkl@UHahXnժn ݨ6L+V6(a󡆀,<4B@.ݧ>홨# r=s?}"dްځ^8+I_sul]N ϢFh}]}6tkG E Hʢ-}\F1Fqg,:M{xaD # (IԲg3H~A(RQʤĤ7UJB/<.3 Me7S 3 %>X1ʂWz8Oy6K#_(1K]F'=SWbЂz᫋,zuI*]d\F6"6.+_/\9F HdW&:H1p7P TgxˀHYgP+Sg63_}y˫,|e,OU]hi4]<'gcࠇ^A Wzc0ɠ^yz +9`ឝwu>ףG!G \%.VQ B (}/a.FW rG\AWU(3j܁̂=TA-Z: ګ5d7EI@u1fx$&iƒj(aʎNן{ܡW:^ OZ)L`~>#'fǍ[/IhoY}Ji")=ނKBFի.:>s"FzLؿ](Crv{z:2tч/v1?$~ Mnʂt8+V|Q3g E{b<󲃌K3]nM}՗@WKxzַonW l-Zz#{i~NKfυф63HOrr62@K H4dUo6ZEްSqWܳ_OVa};F+[62,>᧟~.so<ؓ0&ƲN]du E*w5dXj;Ʋa4/s5{Npjy{A,h:23E+s4'rVB%K^+ ޳ʟ.>2]gr5;lK;MV]w >B7e$ъ\kz6fn9eпr:K۳N{JÕB#,Z74yB1tM1cF7J|p27#v4tba#k<Π#@S\\\ yyJ Y)MjbbbZmuWt4CH>KcUrmv/rLQM9Ē4|ښhWJ9[u77Z/dYV[r8'@":eP*E>{PQ` _^z^f5ý[]N竪sN⣒.GSY;~Xt墑0lCdxeiwaJ$!:P Wf=~!cCѿ3LZ;:{b1΀%GҭmJp!1b1g,)lTm^oskXxa3@:%9# dθQQA@3\z[Yo<=wZ~jy;>dCmLl8rҭN ^+*+A.8iii ¡1ήK~᫋gg'sWWg췥\s ABo|ԹG+]4Q .r1eɎ&RYT Wo%~vzFFC{~㍷*'l3;t]a-=['k]y+V|䩋8O\ϽrEϞ=JBMgf 7\Iԫw=M=>2tk#B-tFL3D6)w9ǽϹJkuM_<lWځVEVr/MLL&1,}h[/΢6WW"oB{P}4홲=י.gxA,:SO;e}.u,Lxxoe9s6ނ\-vRĈ= aT .ΔoyhKůE;Sh=)s^)qy{19%nh)2/hq g(*Q*A|Dn%'gN Kc?Cf3o&K5s&:X!"tęstΩZfj5#,ɂns wCJj!)`Rgb[SghZRr{b3nBV:w1B#oZ(%>{L|~9Ý+oáh[|88mr~0)ZQQ1׃ Ī&tg߾}8gzQ@nTKFbcb{̀>O,*+s9x)%&UWW؃!']SJ>058"Jp/`x"4'<hs2j̞;RFFƮ9/@mߏWpfghR3A//xu.УWS~.;0AO\PC`*pE.؏Evr&dOH4JQoe.c#*Y˜{ѓv;\-6.U]+Oy Uvvݢ_2@Kgܳ3ۑ`N*``/)oݒTgWQ! o᠗{uiEobqN1sP$r\dٖ3hҥ ۢ̓H2^7y=]{LCuv|a֯vAW͆9!XpyG DrM'.dc`h_,` y]}TUUPˠpLɗA1R5p^yy!nd5%f18ic:^-,#8F]T,8W8 ZB? ,~.^5ּCfff*(9>Rs_6/#[#E$\)]VV:IwFM2 :ι*LZAv/d 2vk[`Ť˞{B>س3ہ`s,o}y~\SS] z-a xTl q"}㌚qzp|X|T[^I:Rr8r|'W_Ytm*9\cǎf魂YcLyY_dʞW+l6)\AW/))qV6-0^o d g7p4GQYK_ Oh1ڥmKN٤j)?/wM`OWIޘ 9VR9ov1+ŌA wx srKVa>|ɋgս ~-xpϼ!w22BީM7p[_ЍMqivBg_~Yv jv&Hcyhv7oBq]"̃SOO蘘zh8$# ;,8J|a%#e^12k̶әM_be^tm[6`o*@͸wcwu T>W*pYYJ:[oqϢYRR/UltwDJg)BO>;H  ÁV<>Ԕ#"5tR+"@ ~ o&z͖6#4 AP.QPK^8"jWAݒf^izZN+ XG#oܶ,/@R4^3ZYQ̳KC|s0Tr?rJ76ɓ w~) B2 =zHFpt.PG+ieuZގ>@'5*&b = X,'͐!Mw,mGPICrׯ'8rC;zQ[Vɏe k;M D5{؄`@]L?LJFչjy$N3g~F,;e=3x\Dm.z{EȽtf$W4XrU S4'Nɓ+K8]t~g<:D2@:]-aE@sO XDUfU`+z\F{l~RK[@ج֩??o|dxT!bA5TUw9# [Hc >xGokXb lyA6`]ʷsbv.`\QoY}b[93$%;>tX*yxtbGxA,6Q堫Ԯ]?"'^T yzs٩܏^m,o\ƪe3 p}c~a67 IxAgffk1T$0 _Q R"(_x 6iPB;wׂ1ނ٠2T4Z uذC9?ùefa5\h}6rRRFI2vKV!j ė+cOv7h e`Oxڹܽ{ӹ8Kcpb`hbߙ+F%&1D8s׮ݚoiS^Au.2dԔ{k ~[$CE"ј`|dkHsYf^fνϑ ,;%YX^kFŹTp#X^i$;#,F`&Ga宵)ә{b@}F`PӗNa2?g ˂FHS>|Vq {[VP988`MvyȺEuUS>ږg9%(N3FAt0ΠA\\~_~5YA7HH J'>Hu2:r<Z#~Bt/^rwP2ܳϿa/YH",O}9@&t7OzhZi{pF*zqFSN EQvvS2ZfMә58r1rDԗRʯV1\ec࠻ñ=p@0f hG2{~ 8t}/_ JX5;b!BjP\ noQ ?;v=xxz}u-"Fq=$.rv&l4!q㦾vcP[MIm?^iaÆn?~2a8 L36y|φcq4'ͣu dY~p`;7@@΃7M`#THHPs٤r(,M9 ّߋs wʋ&c{!?~ӏ?k U,ڵ߽x5 UU^0W^R޽л.xZN?ޚn U@}ް>k޻n݆)3*ogz2X 4duQ#{o}` ӫ;{>~Ms_'k/~xSP?8 }R[e;9pߵ@9D贂18E=ڨ+u瘡# ȓO>Od#0Oe#}fo+oNIf̓̇_&xd60Ysp׮]B4]m#Efp|O:9zne>8*%?|ThSgFTgY/U}ߎg,v?!iӦA:lWH"رcnxGi)^{V6ğ7<%R j~갳` 2W: Fe;ާ[a*Lu-Q][~>yY8BQs9gyQ;\dE{׮3n^\ 0`? |~+=EQFH8c1bt?!8XsE}V/Ah$wEE'xqq&'wy/soD%yg}k8Fkζ YwqƔgyL,(M;;5FAK9b )b* q3duСہ6.IMMY_Q^ ;L*8&&T&L+8iG.RV*?[;VmHH =~IR\_? 9HWoSfЎ/ Te{V$PW1v%gО9$耱_q(yE9PtApI]9vܘ[n- \/\ La8CܿtQW+1^GLH%''woe]Ozoyg= ٲD@]ʊS_x+Es$vt!mB(nٺ9p~s*+ע1T[,,tE sly[&s/΀NnaxV0v7ӻ!V|w)ΌΜ5k& k7N07 xm 7B_yYd!ӯ-.)yR6:ÊgH6~m J# ڲُp^@sz|U* >ZQvcY20ͨ"$͔k<=z|ka[A+A"jO?>pj7zr꒔YwS> CQ$3#\K!Ծ j)0(4XO8arNń0^E@AyExj zcrSgFRgvS=23@ԗTWёc,X] JomAW `Q s^~r93~}' '0nyl0RN5V==Fy~}b1d@-}G41ICO>o9VtEEQ쯿mg0a&F TEV*r3F[00Qɨ3+gy~޴yhz"D6dϸoGڳw>b||TAS/9"Thc)<02=PϘsԨ_И<(;3'nwn4e?~=;Zu ʶ],DO; Ǡ)N,>$:tE"("}WN2uyߏC,U!8"fƎeZZs.ceVtٜFDb9fV>98twgSgF\gO?uM\p:3v}1B=NUbG퐄!}`C.ݾE"zA`v={l+ߊ'VmQQ\O6h#z {SRSK@#`OR[S32wQQo7N:@Ӕe:.3N;~,FۊD=7єŌ=Rx*K_i:N2y V&K8#rw\wϞVыz}sVv VftxG~cx諯V85UE%Cydu#?Ç _`7pq5 xRRSSZzJ)%rDO_+RJ>. } PMU`l"_d , |rmOzÑ *9.b2sj]WJFxVj @$$&<=ˬ"9"|jvڭ7:m!-a@s^z T7oL|,/,h֗ϖ,~m'DY,<DĠsY;d y㟯¡(8=ݯ_ݒLӝԯvA$x%{JKn͚uBPHLL̦ZIo(mhT H^=u0W˗M&Q]XXO%}FLq-- _-[͞}K` dzI>|蓚#^efGS8~iO2+\;z/<I4o >5ufLU&MgKXs U'LplaTtL27lHf7n_|kϜ.]栃V-,slJ.IIΠ, V]a˦1N]^=C pJ+zV`'h`٤"dR5yЀihoܣQ]x;M;Ǹ_>F#F0χ۷ظ_eGOq)99{~-%tu_b=f(glqY{y+o5ɵo.@isAXD@ڌ3zk{YRE `L*@fy(T u 7\:A;Mf:mѮ/} u:*Yi=ǫ ݽpoCqCdO֛8WO#ۛէ`;bi;>oz.m/_GZ(=Fɰ(c+ut; )˯88{ZҳQJC1_L?F,\L) gɩ=眳ޏMl{K]/ʁ= EV3q{[ɣrv=z!q[w6&rALKfɎ 7U=)/ElU#4ه@';9>gӻ's_t:u2̩tGќ% .5 ٿ ]WBsތֲ*Tf9wƌ3ߦI__%g<Eǜګߡ(JM6:ͼ߿*ʈasV:-kCP4vjs㌐C]| %n!BU2L-RiUԊQPd|q>t0WvU qc<IYs$)~齘s-sQUyy 9M!^*b:6so~HQՏ9b3yAEGc2 mFgμpiTtζffH1,Нw1Z 7p Da|isw/&z?t1jfc2H]肆# Qq4s~'2yStu즞={,ۡM_~g|':/s=" ɣ{4Љz܇OFfffpzCE--@yzgW^* 9{! ڃR@Rej$?¹GT ^J[UWܣ,l6ŀJG222vcno\.زessEtSQvzB;#bc,Hj`b_"y}5d|H5~U+&MVIqa}mK4iC2+$ ͆`0O?P޿isMSKjYG|4DPzr0*WIh c+/+(_tg7G ;{ua eBw__ӧs/fPmڸOeeB,c(2]G ͷ4oʔɌ2]*?wSK˱s`oHvN՚:jrQ/W/xFt]}Q6ÇmZz)O\fQ2{Wf^c?/li]%Q#>֪"3Ng/fn&˷߬Ls׵>FuM:?j؋+ z4u5΂:Qi-T[S`+/_3k`nm$ [t*EXgʏU'^rP}_ lVlp,۾R[\#00r2vﻕY+,T\ 3Uǎ[?ǚw'ˠkz2&G>w  4BY LTy˹ט 5zԗ?7}=5VӿQY_}q>UO-n7ږt@-IRb7.;Ic0ʁP޿5߼F'bmn^q?z'h :ѦfjbgyzFNʴ*9gB9[5p\C ^3O>J"!-_wu_pZZוNjc G߽N:$<k]nn-]'yШ_lj'%DR@j8.cǍ[{Y;SwιnH=|NQ~Qdق9U6do]٘:muѪ/U[o$;_b8m,U(7 U(WC+޽{EK̜|<:&f7Wm-7~Ewqcƌy>o` ^J~&[NőFȞ:~~GVst_@ {ڄRWƽfl5emQ/<ڿh##')?J0"=hHQ#{[n%Bƀ5<GތSc۶mS`e5n\nt~AAC. /m@Щ0x~Yz̈́ E3 3@?{=ܳ߼ٟ@⬳\~7%Q$D ` ӕ>I[:pȞ]7n^okȮJC`=8:/U˙i# J 9;'".>nM'yFNO1!X r/2x]>]HN\nnM .9s:ahdqF&;fnEÇ*_"U^لF46w{,-뇈)] J:Lw Fv}kY*.vt@لYI']xXueu2SWfwSYv4j2yw+8ce~1ssʪd(:/ɭ3۟<^^횧{b__GNoϞ=L:eWqCp3{CBZ7oQ訶q 3}UDEGزuT5D|Kv=HGy<~E_c뷍+ } :e =gԖ5k+'z0Wlq)KQ+4.4>1ׯ_iVV_7me x6(f(B`;rғN:|ck0]*<◜2EUZfg)eî]Sy<4Z:l*)bȎ9#G`^έA/UH?ZhWgsӦM#,FL:b<$4V,{5U] H8w!pNq'1˹5_gV[A[Sg<%:6ULٽ& z[/`-|31bؗCnW_5ˑqvUL^ylAqOhcωUWF"~Dv믓@D6|F|.|GVY#{p"\i̘ѿApZ dTY=څ}ϝ7vOZbSJM({z辕+A+nв$[֞QO<=/\n@p@p):*JNI 4Qi`Ig=a4]?n̙I5EaUI#xhͺ{DZv'G>KŐĨ Y8r у)à*?QaÆA2zoQyhR#g"!CѮ,Y:{OZDGqѬ1#@F&  tte-b#(ޱ <ߌ^ˎ9ҏǾDޱ\?>1l&θĊ~n>_b-gpZx$xU\\?Wٳg Dޥ3hV/g1s2]AU]DCF"<ӧ x9ѥBK9:;E6Zf/^:?[9YL}dT4AO(**:^|bTA3<y駟ى'0闃tN$3ۿݵxR:7 x̛ҕ?L-;ZhM]Q&1cB$%%U\pyoO:eS|'#9uߋALC ?馿ü)ŪQ3c9}8袓} Py\k׮e% _eδTh _ĈN9_o9S=z2ZFO`b[z`We,䨧^f {c""r ☋j K&L2zg6JE]F4h%L%í2/: *B+ OEC(̴ А9>6M5k6!:%"7E'ػU0ֺQ;tuuuZ)-W.II03أG#Glq+]udT ]{$PϠƍ;爼iJp 085k|ո낃$5M4l oF. ] K]g'<23#9=|p_v9[m%yf=l޼dmGg-#d…f|gvųb݅rޤTh t]<5u/fμhM#IϤܸ+>A9fa2F{o,: :'O _oEןA=G9Ϛu2SbQ]342tAoIGi 3(.}_mx٠`E,:,QPN5{DCN-Q%Պ lSJBL #=|aE#FC4HDiL+\ΥFIP]KB#O>vJCVog&InuYge]|DUrնLٶ:K;٪V-fFg[ddd۟_b ^rz=a5n}`^mWSX (X5W-%˽ TN,Zd-[=Az̘1?͘BY?DW`Z$'dzjUL?p\(8qo!^Wu|t\ ;SA_t vW]]ӵ65!йgϞECbT YJg¦S#gBOU ]R677&s)7t 8pD⻬]]>t^3GSzk*ȸv1\X \iiie-E*.fd݅ei#2 ,nk&wp׍۶mCet:]qe]$Ueee=wpb FpW6uf֙]_xzDCaΪDw ̞c0:=^s"yy2^ 풼:n%љ~0ɀ9?KvtMv e.s\2ef*;ԲYsnGgq%h9G緢\socƌFG3%p9:Ǟ5PWW7Iv]8ᳳJB9$AYVpʭ}ZG_q{<ɜ9Wqj5`?9*ywXގ/cc,tg+B?W{u~gO< =&Oe.s\2e.s1~][ɳ=nDu9;7r:Uv!>9Gy9Ğl=lك0í;@PޞPޣG A7Ote.s\2er`\9칐v:" :NF%$W̙s凒# wy7,Z$>#c5Y{-oMl?3e.s\2e`:8ws駞`! 38)S&/33͞cyycιw}bBδϱ>ƮwR+Eڤؚ"j| %.JqE1.E,Y`ɲfՕ]5]]!N>wsۡ;SA\|'s{zNH"ǯf+Yрv]Qo~A;BZ-իLr5;B+"+Gxfv3Ĵ9y>"GHWg}z{###E@_L<*E80C^*G@1Ǘk/zψЛMN/}}/Mf4۷=V׋>55T`ZvIꜧR4~YT-Z==SZwb|zc{_{wܵ6[c ,N|ttO9e=Ž޾] :4!4kOs?n-EOstE@TKS܏R>Jec>_O.M3s[}qCs}LiEcY>8|kcoq.tA>o%K~߾CY+U|EV"EER-#ǔ-[G>')Lj.MgX@)ʿAr?8սA<pٶ-^> ]W7FF/yLkߟןWt )s&;pѢ99ic]?H]=/=~Ӎ..sᶑ /kNYzZL99ye{Z)_rmp3kWχҍ<t)\sw֮=kYL-oWN{:{j7SPZ___CrG־7Oڤz.Z]آ<o7^z6kSZ#ٳ'T*Yt}_~+wY>&w'k`.Y޵g.';U4T`l`` 9z嬔֧^Ɨ/[hdcYT;j~Ytat8kW#ڋp>u M@xۋY{ yvy>rIw}[߾G(BzR#R ͚~Q-oE5[ߺg6|''K7 :[¹#=GXbE[>_?ޱ{?oZ/<uq[lwqyw Q U/_>G;w>73Ϭ(4NZ׭[spp0F5;|47&xW||ߙ2S'XxM|ĔvҊPJaJ?XzeIق3=B )X4R@/wԧa1礼 `"V c)o`?{[١*zsP.M ۍZyJ0/!ON) bXϦv8.p ::  ::  ::  ::  ::  ::  ::0OxS(tEXtSoftwareAdobe ImageReadyqe<IENDB`j2  666666666vvvvvvvvv666666>6666666666666666666666666666666666666666666666666hH6666666666666666666666666666666666666666666666666666666666666666662 0@P`p2( 0@P`p 0@P`p 0@P`p 0@P`p 0@P`p 0@P`p8XV~ OJ PJ QJ _HmH nH sH tH J`J PzkNormal dCJ_HaJmH sH tH d@d H3 Heading 1ddd@&[$\$5CJ0KH$OJPJQJ\aJ0`@` "_r Heading 2$<@&$56CJOJ PJQJ \]^JaJ`@2` H3 Heading 3ddd@&[$\$5CJOJPJQJ\aJZ@Z /;( Heading 4$<@&5CJOJ PJQJ \^JaJ`@R` H3 Heading 5ddd@&[$\$5CJOJPJQJ\aJP@P 0;( Heading 6 <@&5OJ PJQJ \^JDA`D Default Paragraph FontRi@R 0 Table Normal4 l4a (k ( 0No List `^@` %0 Normal (Web)ddd[$\$CJOJPJQJ^JaJBOB %apple-converted-space*W@* %`Strong5\.O!. % ace_keyword4O14 %ace_identifier,OA, % ace_stringBb@QB %0 HTML CodeCJOJPJQJ^JaJ(Oa( %ace_linee@r %0HTML PreformattedA 2( Px 4 #\'*.25@9dCJOJPJQJ^JaJ\O\ %0HTML Preformatted CharCJOJPJQJ^JaJO %tag"O" %title*O* % attribute4U@4 %0 Hyperlink >*phRR H3Heading 1 Char5CJ0KH$OJPJQJ\aJ0NN H3Heading 3 Char5CJOJPJQJ\aJFF H3Heading 5 Char5OJPJQJ\"O" |value.X@. @Emphasis6]X!X _rHeading 2 Char$56CJOJ PJQJ \]^JaJHO1H ace_keyword ace_operatorBOAB /ace_string ace_regexpHQH /ace_constant ace_numericPOaP ap>ace_punctuation ace_operator"Oq" ap>rules O ap>rule$O$ nnumber@O@ nace_paren ace_rparen6O6 XFace_punctuation*O* XF ace_paren&& @jcomment.. @j ace_commentRR ;(Heading 4 Char5CJOJ PJQJ \^JaJRR ;(Heading 6 Char5CJOJ PJQJ \^JaJ00 L ace_constantPK![Content_Types].xmlj0Eжr(΢Iw},-j4 wP-t#bΙ{UTU^hd}㨫)*1P' ^W0)T9<l#$yi};~@(Hu* Dנz/0ǰ $ X3aZ,D0j~3߶b~i>3\`?/[G\!-Rk.sԻ..a濭?PK!֧6 _rels/.relsj0 }Q%v/C/}(h"O = C?hv=Ʌ%[xp{۵_Pѣ<1H0ORBdJE4b$q_6LR7`0̞O,En7Lib/SeеPK!kytheme/theme/themeManager.xml M @}w7c(EbˮCAǠҟ7՛K Y, e.|,H,lxɴIsQ}#Ր ֵ+!,^$j=GW)E+& 8PK!Ptheme/theme/theme1.xmlYOo6w toc'vuر-MniP@I}úama[إ4:lЯGRX^6؊>$ !)O^rC$y@/yH*񄴽)޵߻UDb`}"qۋJחX^)I`nEp)liV[]1M<OP6r=zgbIguSebORD۫qu gZo~ٺlAplxpT0+[}`jzAV2Fi@qv֬5\|ʜ̭NleXdsjcs7f W+Ն7`g ȘJj|h(KD- dXiJ؇(x$( :;˹! I_TS 1?E??ZBΪmU/?~xY'y5g&΋/ɋ>GMGeD3Vq%'#q$8K)fw9:ĵ x}rxwr:\TZaG*y8IjbRc|XŻǿI u3KGnD1NIBs RuK>V.EL+M2#'fi ~V vl{u8zH *:(W☕ ~JTe\O*tHGHY}KNP*ݾ˦TѼ9/#A7qZ$*c?qUnwN%Oi4 =3ڗP 1Pm \\9Mؓ2aD];Yt\[x]}Wr|]g- eW )6-rCSj id DЇAΜIqbJ#x꺃 6k#ASh&ʌt(Q%p%m&]caSl=X\P1Mh9MVdDAaVB[݈fJíP|8 քAV^f Hn- "d>znNJ ة>b&2vKyϼD:,AGm\nziÙ.uχYC6OMf3or$5NHT[XF64T,ќM0E)`#5XY`פ;%1U٥m;R>QD DcpU'&LE/pm%]8firS4d 7y\`JnίI R3U~7+׸#m qBiDi*L69mY&iHE=(K&N!V.KeLDĕ{D vEꦚdeNƟe(MN9ߜR6&3(a/DUz<{ˊYȳV)9Z[4^n5!J?Q3eBoCM m<.vpIYfZY_p[=al-Y}Nc͙ŋ4vfavl'SA8|*u{-ߟ0%M07%<ҍPK! ѐ'theme/theme/_rels/themeManager.xml.relsM 0wooӺ&݈Э5 6?$Q ,.aic21h:qm@RN;d`o7gK(M&$R(.1r'JЊT8V"AȻHu}|$b{P8g/]QAsم(#L[PK-![Content_Types].xmlPK-!֧6 +_rels/.relsPK-!kytheme/theme/themeManager.xmlPK-!Ptheme/theme/theme1.xmlPK-! ѐ' theme/theme/_rels/themeManager.xml.relsPK] uk { "2$%'<( +n-.(/*245 6 89;T?d@HGJmNmT|Y]]afGhikmrnprus:<?@BEFGIJLMOQSTUWYZ\]^`acfhjqtvx{|~` - s!<% '<(}+A/]35:?cCEGK~NPPPPSTYZ5^benhkoqus;=>ACDHKNPRVX[_bdegiklmnoprsuwyz}LLLUVV'[[[[[[jjj k`krkukXCCXCX8@(  H  C oB S  ?kukNt _Hlt352674698 _Hlt352674699 _Hlt352674700kkkkkkwk@@@kkkkkkwkLOQTV`bf : C < E  1469;EGK$&*  ^ailmp&)"-LU :#G#}$$' '''((((f.h.//// 0000!0,0B0D0`0b000012222P2R222"3$3s3u33333=6G666========(?3?,C/C1C4C6C@CBCFC7D9DEE FFFFFFFFFFFG G GGG(G*G1G6G>,>0>B>F>>>??%?(?5?8?y?|???BC CCCC]CcC}CCCCCCCCD D7D9DEE=EEELEREnFwFFFFFFFFFFFFG%G'Ge~4kR *oY[E FD7]B_k$?MniI2k,*Ne(/ wI F ' W n) l* 0 (^RX / J k;F M GV _Z Dq RT~34QXU$sYrVW`;a?1?xAJ]s|8u4~F 8,9CGF1DEex)nio||BBm5<7]590$P0|8ucZ0l14QI2~zVI&4k4dN.6ybq478VQmq8]is8n8RC:pE:fWmW`;m5<4'4?'4?*?lE?A~@}%KE?zJ.L G/7L||xQLWmLR{rPO~':O|8u[O GeP$m(ddiTPdF`PQt\|bPe@uAlP:>e~4MQ *VQ(^Ryb]sRd+0SSQt\sS!uu7Td BT&lUVQ&7]+0S7] @^F Bz^o_5_8[K`s8TEa4QXUyb~UbX Ec'dyWqydE?"3ek$eU:fHfI&4\Mfd4RfQt\D fybi3gk5g$Cgo gX #hL~iEh2Hni Pkjj&e~l~4QIRs8L/dHRW`;8P[C@?nr2 " Bd;a"+[,\% E%y&;('- C-H3ap> b@0CXF%GOJ LntL"NxOUyjPzkOCr_r1or|w\9R',lN}e@j9XE?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abdefghijklmnopqrstuvwxyz{|}~Root Entry F/Data 1TablecU[WordDocument8SummaryInformation(DocumentSummaryInformation8CompObjy  F'Microsoft Office Word 97-2003 Document MSWordDocWord.Document.89q