ĐĎॹá>ţ˙ ‰‹ţ˙˙˙…†‡ˆ˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙ěĽÁ7 řżVçbjbjUU "B7|7|6ă˙˙˙˙˙˙lŢŢŢŢŢŢŢňŹMŹMŹM8äM4N,ň…č2POLœO˛O˛O˛O˛OĐT,üVččččččč$ˇé ×ën*čŢX˛O˛OXX*č¨cŢ޲O˛O?č¨c¨c¨cX.޲O޲Oč¨cXč¨cf¨cdŇpÝtŢŢ ć˛ODO  Á7+ě€ÇňşKŹMBX8 äŕ^ ćäUč0…čBáŢEězc.Eě ć¨cňňŢŢŢŢŮ Introducing JavaServer Faces Over the last few years, Java has established itself as the leading technology for web application development. Developers are using technologies like servlets and JSP to develop scalable and robust browser-based user interfaces for countless applications with great success. But as web applications become more complex, some developers are longing for the good ol' days of traditional graphical user interface (GUI) frameworks with rich, powerful user interface widgets and event-driven development models. Servlets and JSP have served us well, but HTTP's stateless nature and simple, coarse-grained request/response model forces application developers using these technologies to struggle with details that are handled behind the scenes by GUI frameworks like AWT/Swing, the standard GUI framework for Java. 1.1. What Is JavaServer Faces? JavaServer Faces (JSF) simplifies development of sophisticated web application user interfaces, primarily by defining a user interface component model tied to a well-defined request processing lifecycle. This allows: A device-independent GUI control framework. JSF can be used to generate graphics in formats other than HTML,using protocols other than HTTP. A better Struts? Like Apache Struts, JSF can be viewed as an MVC framework for building HTML forms, validating their values, invoking business logic, and displaying results. Creating and Rendering Components JSF is a very powerful framework with lots of different features and options you can tweak to satisfy your needs. Trying to grasp everything at once would be overwhelming, so we'll take it one step at a time, looking at each feature in the context of the sample expense report application. This chapter focuses on how JSF components are created and rendered, using the sample application filtering criteria and menu areas as concrete examples. The Basics At the core, JSF is a Java API built on top of the Servlet API. In addition, it defines JSP custom tag libraries that hide the API layer to make it easy for Page Authors to include JSF components in a JSP page.The figure below shows both these layers and how JSF applications can be developed on top of either one or both. JSF layers  INCLUDEPICTURE "http://safari.oreilly.com/getfile?item=MG1yNWFkY3MwL2c2OWl0cHM5SmYvZTAvMy81aTNnLl9nc2ZpMTYwMGY-" \* MERGEFORMATINET  This picture shows where JSF fits in with other Web-tier technologies. First of all, just like all the other Web-tier technologies, JSF is built over Servlet. In fact, most of JSF APIs are built over Servlet directly. JSF also leverages JSP as well. And JSF custom tags which we will talk about in detail later on are based on JSP custom tag technology. JSF Architecture - JavaServer Faces' Implementation of MVC One of the key advantages of JSF is that it is both a Java Web user-interface standard as well as a framework that firmly follows the Model-View-Controller(MVC) design pattern. This makes JSF applications much more manageable because the user-interface code (View) is cleanly separated from the application data and logic (Model). To prepare the JSF context, which provides application data access to the pages, and to guard against unauthorized or improper access of the pages, all user interactions with the application are handled by a front-end "Faces" servlet (Controller).  INCLUDEPICTURE "http://www.oracle.com/technology/tech/java/newsletter/articles/introjsf/mvc.jpg" \* MERGEFORMATINET  Figure : JavaServer Faces Implementation of MVC The JSF Lifecycle The life cycle of a JavaServer Faces page is somewhat similar to that of a JSP page: The client makes an HTTP request for the page, and the server responds with the page translated to HTML. However, the JavaServer Faces life cycle differs from the JSP life cycle in that it is split up into multiple phases in order to support the sophisticated UI component model. This model requires that component data be converted and validated, component events be handled, and component data be propagated to beans in an orderly fashion. A JavaServer Faces page is also different from a JSP page in that it is represented by a tree of UI components, called a view. During the life cycle, the JavaServer Faces implementation must build the view while considering state saved from a previous submission of the page. When the client submits a page, the JavaServer Faces implementation performs several tasks, such as validating the data input of components in the view and converting input data to types specified on the server side. The JavaServer Faces implementation performs all these tasks as a series of steps in the JavaServer Faces request-response life cycle. Figure below illustrates these steps.  INCLUDEPICTURE "http://java.sun.com/javaee/5/docs/tutorial/doc/images/jsfIntro-lifecycle.gif" \* MERGEFORMATINET  The life cycle handles both kinds of requests: initial requests and postbacks. When a user makes an initial request for a page, he or she is requesting the page for the first time. When a user executes a postback, he or she submits the form contained on a page that was previously loaded into the browser as a result of executing an initial request. When the life cycle handles an initial request, it only executes the restore view and render response phases because there is no user input or actions to process. Conversely, when the life cycle handles a postback, it executes all of the phases. Usually, the first request for a JavaServer Faces pages comes in as a result of clicking a hyperlink on an HTML page that links to the JavaServer Faces page. To render a response that is another JavaServer Faces page, the application creates a new view and stores it in the FacesContext instance, which represents all of the contextual information associated with processing an incoming request and creating a response. The application then acquires object references needed by the view and calls FacesContext.renderResponse, which forces immediate rendering of the view by skipping to the Render Response Phase of the life cycle, as is shown by the arrows labelled Render Response in the diagram. Sometimes, an application might need to redirect to a different web application resource, such as a web service, or generate a response that does not contain JavaServer Faces components. In these situations, the developer must skip the rendering phase (Render Response Phase) by calling FacesContext.responseComplete. This situation is also shown in the diagram, this time with the arrows labelled Response Complete. The most common situation is that a JavaServer Faces component submits a request for another JavaServer Faces page. In this case, the JavaServer Faces implementation handles the request and automatically goes through the phases in the life cycle to perform any necessary conversions, validations, and model updates, and to generate the response. The details of the life cycle explained in this section are primarily intended for developers who need to know information such as when validations, conversions, and events are usually handled and what they can do to change how and when they are handled. Page authors don't necessarily need to know the details of the life cycle. Restore View Phase When a request for a JavaServer Faces page is made, such as when a link or a button is clicked, the JavaServer Faces implementation begins the restore view phase. During this phase, the JavaServer Faces implementation builds the view of the page, wires event handlers and validators to components in the view, and saves the view in the FacesContext instance, which contains all the information needed to process a single request. All the application's component tags, event handlers, converters, and validators have access to the FacesContext instance. If the request for the page is an initial request, the JavaServer Faces implementation creates an empty view during this phase and the life cycle advances to the render response phase. The empty view will be populated when the page is processed during a postback. If the request for the page is a postback, a view corresponding to this page already exists. During this phase, the JavaServer Faces implementation restores the view by using the state information saved on the client or the server. Apply Request Values Phase After the component tree is restored, each component in the tree extracts its new value from the request parameters by using its decode method. The value is then stored locally on the component. If the conversion of the value fails, an error message associated with the component is generated and queued on FacesContext. This message will be displayed during the render response phase, along with any validation errors resulting from the process validations phase. If any decode methods or event listeners called renderResponse on the current FacesContext instance, the JavaServer Faces implementation skips to the render response phase. If events have been queued during this phase, the JavaServer Faces implementation broadcasts the events to interested listeners. If some components on the page have their immediate attributes set to true, then the validation, conversion, and events associated with these components will be processed during this phase. At this point, if the application needs to redirect to a different web application resource or generate a response that does not contain any JavaServer Faces components, it can call FacesContext.responseComplete. At the end of this phase, the components are set to their new values, and messages and events have been queued. Process Validations Phase During this phase, the JavaServer Faces implementation processes all validators registered on the components in the tree. It examines the component attributes that specify the rules for the validation and compares these rules to the local value stored for the component. If the local value is invalid, the JavaServer Faces implementation adds an error message to the FacesContext instance, and the life cycle advances directly to the render response phase so that the page is rendered again with the error messages displayed. If there were conversion errors from the apply request values phase, the messages for these errors are also displayed. If any validate methods or event listeners called renderResponse on the current FacesContext, the JavaServer Faces implementation skips to the render response phase. At this point, if the application needs to redirect to a different web application resource or generate a response that does not contain any JavaServer Faces components, it can call FacesContext.responseComplete. If events have been queued during this phase, the JavaServer Faces implementation broadcasts them to interested listeners. Update Model Values Phase After the JavaServer Faces implementation determines that the data is valid, it can walk the component tree and set the corresponding server-side object properties to the components' local values. The JavaServer Faces implementation will update only the bean properties pointed at by an input component's value attribute. If the local data cannot be converted to the types specified by the bean properties, the life cycle advances directly to the render response phase so that the page is rerendered with errors displayed. This is similar to what happens with validation errors. If any updateModels methods or any listeners called renderResponse on the current FacesContext instance, the JavaServer Faces implementation skips to the render response phase. At this point, if the application needs to redirect to a different web application resource or generate a response that does not contain any JavaServer Faces components, it can call FacesContext.responseComplete. If events have been queued during this phase, the JavaServer Faces implementation broadcasts them to interested listeners. Invoke Application Phase During this phase, the JavaServer Faces implementation handles any application-level events, such as submitting a form or linking to another page. At this point, if the application needs to redirect to a different web application resource or generate a response that does not contain any JavaServer Faces components, it can call FacesContext.responseComplete. If the view being processed was reconstructed from state information from a previous request and if a component has fired an event, these events are broadcast to interested listeners. Render Response Phase During this phase, the JavaServer Faces implementation delegates authority for rendering the page to the JSP container if the application is using JSP pages. If this is an initial request, the components represented on the page will be added to the component tree as the JSP container executes the page. If this is not an initial request, the components are already added to the tree so they needn't be added again. In either case, the components will render themselves as the JSP container traverses the tags in the page. If the request is a postback and errors were encountered during the apply request values phase, process validations phase, or update model values phase, the original page is rendered during this phase. If the pages contain message or messages tags, any queued error messages are displayed on the page. Advantage of using jsf (vs. MVC with RequestDispatcher) Custom GUI controls JSF provides a set of APIs and associated custom tags to create HTML forms that have complex interfaces. Event Handling JSF makes it easy to designate Java code that is invoked when forms are submitted. The code can respond to particular buttons, changes in particular values, certain user selections, and so on. Managed Beans In JSP, you can use property="*" with jsp:setProperty to automatically populate a bean based on request parameters. JSF extends this capability and adds in several utilities, all of which serve to greatly simplify request parameter processing. Expression Language JSF provides a concise and powerful language for accessing bean properties and collection elements. Format field conversion and validation JSF has builtin capabilities for checking that form values are in the required format and for converting from strings to various other data types. If values are missing or in an improper format, the form can be automatically redisplayed with error messages and with the previously entered values maintained. Centralized file-based configuration Rather then hard-coding information into Java programs, many JSF values are represented in XML or property files. This loose coupling means that many changes can be made without modifying or recompiling Java code, and that wholesale changes can be made by editing a single file. This approach also lets Java and Web developers focus on their specific tasks without needing to know about the overall system layout. Consistent approach JSF encourages consistent use of MVC throughout your application. Disadvantages of using JSF (vs. MVC with RequestDispatcher) Bigger learning curve To use MVC with the standard RequestDispatcher, you need to be comfortable with the standard JSP and servlet APIs. To use MVC with JSF, you have to be comfortable with the standard JSP and servlet APIs and a large and elaborate framework that is almost equal in size to the core system. This drawback is especially significant with smaller projects, near-term deadlines, and less experienced developers; you could spend as much time learning JSF as building your actual system. Worse documentation Compared to the standard servlet and JSP APIs, JSF has fewer online resources, and many first-time users find the online JSF documentation confusing and poorly organized. Less transparent With JSF applications, there is a lot more going on behind the scenes than with normal Java-based Web applications. As a result, JSF applications are: Harder to understand Harder to benchmark and optimize Undeveloped tool support There are many IDEs with strong support for standard servlet and JSP technology. Support for JSF is only beginning to emerge, and final level is yet to be determined. Rigid approach The flip side of the benefit that JSF encourages a consistent approach to MVC is that JSF makes it difficult use other approaches. Advantages of JSF (vs. Struts) Custom components JSF makes it relatively easy to combine complex GUIs into a single manageable component; Struts does not. Support for other display technologies JSF is not limited to HTML and HTTP; Struts is Access to beans by name JSF lets you assign names to beans, then you refer to them by name in the forms. Struts have a complex process with several levels of indirection where you have to remember which form is the input for which action. Expression language The JSF expression language is more concise and powerful than the Struts bean:write tag. This is less advantageous if using JSP 2.0 anyhow. Simpler controller and bean definitions JSF does not require your controller and bean classes to extend any particular parent class (e.g., Action) or use any particular method (e.g., execute). Struts does. Simpler config file and overall structure The faces-config.xml file is much easier to use than is the struts-config.xml file. In general, JSF is simpler. More powerful potential tool support The orientation around GUI controls and their handlers opens possibility of simple to use, drag-and-drop IDEs Disadvantage of using JSF (vs. Struts) Established base and industry momentum Struts has a large core of existing developers and momentum among both developers and IT managers; JSF does not. Confusion vs. file names The actual pages used in JSF end in .jsp. But the URLs used end in .faces or .jsf. This causes many problems; in particular, in JSF: You cannot browse directories and click on links It is hard to protect raw JSP pages from access It is hard to refer to non-faces pages in faces-config.xml Self-submit approach With Struts, the form (example.jsp) and the handler (example.do) have different URLs; with JSF they are the same. Less current tool support Struts is supported by many widely used IDEs; JSF is not (yet) No equivalent to Tiles Struts comes with a powerful page layout facility; JSF does not.But you can extract Tiles from Struts and use it with JSF. Much weaker automatic validation Struts comes with validators for email address, credit card numbers, regular expressions, and more. JSF only comes with validators for missing values, length of input, and numbers in a given range. But MyFaces has several powerful validators Lack of client-side validation Struts supports JavaScript-based form-field validation; JSF does not Worse installation JSF does not have equivalent of struts-blank to start with POST only JSF does not support GET, so you cannot bookmark results pages JSF Tag Libraries The html_basic tag library defines tags for representing common HTML user interface components. The tags in jsf_core are independent of any rendering technology and can therefore be used with any render kit. Using these tag libraries is similar to using any other custom tag library. To use any of the JavaServer Faces tags, you need to include these taglib directives at the top of each page containing the tags defined by these tag libraries: <%@ taglib uri="http://java.sun.com/jsf/html/" prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/core/" prefix="f" %> The uri attribute value uniquely identifies the tag library. The prefix attribute value is used to distinguish tags belonging to the tag library. For example, the form tag must be referenced in the page with the h prefix, like this: Make sure that you also package the html_basic and jsf_core TLDs with your application. element: A JavaServer Faces page is represented by a tree of components. At the root of the tree is the UIViewRoot component. The view tag represents this component on the page. As such, all component tags on the page must be enclosed in the view tag, which is defined in the jsf_core library: ... other faces tags, possibly mixed with other content ... You can enclose other content within the view tag, including HTML and other JSP tags, but all JavaServer Faces tags must be enclosed within the view tag. The view tag has an optional locale attribute. If this attribute is present, its value overrides the Locale stored in the UIViewRoot. This value is specified as a String and must be of the form: :language:[{-,_}:country:[{-,_}:variant] The :language:, :country: and :variant: parts of the expression are as specified in java.util.Locale. Nested views: page or another JSP page, you must enclose the entire nested page in an f:subview tag. You can add the subview tag on the parent page and nest a jsp:include inside it to include the page, like this: jsp:include page="theNestedPage.jsp" You can also include subview inside the nested page, but it must enclose all of the JavaServer Faces components on the nested page Event Handling Tags and Attributes: To register an action listener on a component: or actionListener attribute To register a value-change listener on a parent component: or valueChangeListener attribute To Add configurable attributes to a parent components: Data Conversion Tags Registers an arbitrary converter on the parent component Registers a DateTime converter instance on the parent component Registers a Number converter instance on the parent component Facet Tag Signifies a nested component that has a special relationship to its enclosing tag. Parameter Substitution Tag Substitutes parameters into a MessageFormat instance and to add query string name/value pairs to a URL. Tags for Representing Items in a List Represents one item in a list of items in a UISelectOne or UISelectMany component. Represents a set of items in a UISelectOne or UISelectMany component. Container Tags Contains all JavaServer Faces tags in a page that is included in another JavaServer Faces page. Validator Tags Registers a DoubleRangeValidator on a component Registers a LengthValidator on a component Registers a LongRangeValidator on a component Registers a custom Validator on a component Output Tags Generates a UIOutput component that gets its content from the body of this tag. Using HTML Tags: HTML Tags Used to control display data or accept datafrom the user Common attributes are:- id: uniquely identifies the component value: identifies an external data source mapped to the component's value binding: identifies a bean property mapped to the component instance UIForm & tag A UIForm component is an input form with child components representing data that is either presented to the user or submitted with the form. The form tag encloses all of the controls that display or collect data from the user. Here is an example: ... other faces tags and other content... The form tag can also include HTML markup to layout the controls on the page. The form tag itself does not perform any layout; its purpose is to collect data and to declare attributes that can be used by other components in the form. UICommand & The UICommand component performs an action when it is activated. The most common example of such a component is the button. This release supports Button and Link as UICommand component. In addition to the tag attributes listed in Using the HTML Tags, the command_button and command_link tags can use these attributes: action: which is either a logical outcome String or a JSF EL expression that points to a bean method that returns a logical outcome String. In either case, the logical outcome String is used by the navigation system to determine what page to access when the UICommand component is activated. actionListener: which is a JSF EL expression that points to a bean method that processes an ActionEvent fired by the UICommand component. UIInput & UIOutput Components The UIInput component displays a value to a user and allows the user to modify this data. The most common example is a text field. The UIOutput component displays data that cannot be modified. The most common example is a label. Both UIInput and UIOutput components can be rendered in several different ways. UIInput Component and Renderer Combinations inputHidden Allows a page author to include a hidden variable in a page inputSecret Accepts one line of text with no spaces and displays it as a set of asterisks as it is typed. inputText Accepts a text string of one line. inputTextarea Accepts multiple lines of text. UIOutput Component and Renderer Combinations outputLabel Displays a nested component as a label for a specified input field. outputLink Display an tag that links to another page without generating an ActionEvent. outputMessage Displays a localized message. outputText Displays a text string of one line. UIPanel Component A UIPanel component is used as a layout container for its children. When using the renderers from the HTML render kit, a UIPanel is rendered as an HTML table. This component differs from UIData in that UIData can dynamically add or delete rows to accommodate the underlying data source, whereas a UIPanel must have the number of rows predetermined UIIPanelComponent and Renderer Combinations panelGrid Displays a HTML table Used to display entire table Render attributes are- columnClasses, columns, footerClass, headerClass, panelClass, rowClasses panelGroup Groups a set of components under one parent Used to represent rows in the tables What are Backing Beans? A Server-side objects associated with UI components used in the page Define UI component properties, each of which is bound to a component's value or a component instance Can also define methods that perform functions associated with a component, which include validation, event handling, and navigation processing. Why Backing Beans? Separation of Model from View (MVC) Model handles application logic and data: Backing Beans are Model objects View handles presentation: UI components (Another critical function of web applications is proper management of resources. This includes separating the definition of UI component objects from objects that perform application-specific processing and hold data. It also includes storing and managing these object instances in the proper scope.) How to Specify Backing Beans in JSP page? A page author uses the JavaServer Faces expression language (JSF EL) to bind a component's value or its instanceto a backing bean property – JSF EL is in the form of "#{...}" A page author also uses the JSF EL to refer to the backing-bean methods that perform processing for the component. Navigation Model The JavaServer Faces navigation model makes it easy to define page navigation and to handle any additional processing needed to choose the sequence in which pages are loaded. As defined by JavaServer Faces technology, navigation is a set of rules for choosing the next page to be displayed after a button or hyperlink is clicked. These rules are defined by the application architect in the application configuration resource . To handle navigation in the simplest application, you simply Define the rules in the application configuration resource file. Refer to an outcome String from the button or hyperlink component's action attribute. This outcome String is used by the JavaServer Faces implementation to select the navigation rule. Example of navigation- rule:   /greeting.jsp        success     /response.jsp    This rule states that when the button component on greeting.jsp is activated, the application will navigate from the greeting.jsp page to the respose.jsp page if the outcome referenced by the button component's tag is success. Here is the commandButton tag from greeting.jsp that specifies a logical outcome of success: As the example demonstrates, each navigation-rule element defines how to get from one page (specified in the from-view-id element) to the other pages of the application. The navigation-rule elements can contain any number of navigation-case elements, each of which defines the page to open next (defined by to-view-id) based on a logical outcome (defined by from-outcome). In more complicated applications, the logical outcome can also come from the return value of an action method in a backing bean. This method performs some processing to determine the outcome. For example, the method can check whether the password the user entered on the page matches the one on file. If it does, the method might return success; otherwise, it might return failure. An outcome of failure might result in the logon page being reloaded. An outcome of success might cause the page displaying the user's credit card activity to open. If you want the outcome to be returned by a method on a bean, you must refer to the method using a method expression, using the action attribute, as shown by this example: When the user clicks the button represented by this tag, the corresponding component generates an action event. This event is handled by the default ActionListener instance, which calls the action method referenced by the component that triggered the event. The action method returns a logical outcome to the action listener. The listener passes the logical outcome and a reference to the action method that produced the outcome to the default NavigationHandler. The NavigationHandler selects the page to display next by matching the outcome or the action method reference against the navigation rules in the application configuration resource file by the following process: The NavigationHandler selects the navigation rule that matches the page currently displayed. It matches the outcome or the action method reference it received from the default ActionListener with those defined by the navigation cases. It tries to match both the method reference and the outcome against the same navigation case. If the previous step fails, the navigation handler attempts to match the outcome. Finally, the navigation handler attempts to match the action method reference if the previous two attempts failed. When the NavigationHandler achieves a match, the render response phase begins. During this phase, the page selected by the NavigationHandler will be rendered. Where can Outcome come from? The outcome can be defined by the action attribute of the UICommand component that submits the form.The outcome can also come from the return value of the invoke method of an Action object. The invoke method performs some processing to determine the outcome. One example is that the invoke method can check if the password the user entered on the page matches the one on file. If it does, the invoke method could return "success"; otherwise, it might return "failure". An outcome of "failure" might result in the logon page being reloaded. An outcome of "success" might result in the page JSF Examples: For step by step procedure to create a simple jsf application using Netbeans go to  HYPERLINK "http://www.netbeans.org/kb/articles/jAstrologer-intro.html" http://www.netbeans.org/kb/articles/jAstrologer-intro.html Here you will learn how to create a jsp page, backing beans, converters and validators. Example: Library Management Choose File > New Project (Ctrl-Shift-N), select Web Application from the Web category, and click Next. Name the project LibraryWeb, specify a location for the project, set the server to the Sun Java System Application Server, set the Java EE Version to Java EE 5, and click Next. Select the JavaServer Faces checkbox and click Finish. JSP Pages Create two jsp pages as listBooks and editBook. Creating the listBooks Page Right-click the project node and choose New > JSP. Name the file home, and click Finish. Make sure the JSP File (Standard Syntax) option is selected. Now we need to declare the JSF tag libraries in the JSF file. Change the following code: <%-- <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> --%> To the following: <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %> <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %> Notice that you can use the code completion to help add the tag name and attributes. The code completion can also help you add the URIs of the tab ibraries. Now add the code to your jsp page in between editBook JSP page Create a jsp page same as described above and include the following code. Add / Edit a book Adding Beans – we have 3 beans to create books, list the books and to simulateDB. Books.java package library; import java.io.Serializable; import java.util.Map; import javax.faces.component.UIParameter; import javax.faces.context.FacesContext; import javax.faces.event.ActionEvent; public class Book implements Serializable { private long id; private String author; private String title; private boolean available; public Book(){} public Book(long id, String author, String title, boolean available){ this.id = id; this.author = author; this.title = title; this.available = available; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public boolean isAvailable() { return available; } public void setAvailable(boolean available) { this.available = available; } public long getId() { return id; } public void setId(long id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public void setBook(Book book){ this.setId(book.getId()); this.setAuthor(book.getAuthor()); this.setTitle(book.getTitle()); this.setAvailable(book.isAvailable()); } public Book getBook(){ return new Book(this.getId(), this.getAuthor(), this.getTitle(), this.isAvailable()); } public void initBook(ActionEvent event){ this.setBook(new Book()); } public void selectBook(ActionEvent event){ SimulateDB simulateDB = new SimulateDB(); FacesContext.getCurrentInstance().getExternalContext().getSessionMap(); UIParameter component = (UIParameter) event.getComponent().findComponent("editId"); long id = Long.parseLong(component.getValue().toString()); this.setBook(simulateDB.loadBookById(id, session)); } public void saveBook(ActionEvent event){ Map session = FacesContext.getCurrentInstance().getExternalContext().getSessionMap(); simulateDB.saveToDB(this.getBook(), session); } public void deleteBook(ActionEvent event){ SimulateDB simulateDB = new SimulateDB(); Map session = FacesContext.getCurrentInstance().getExternalContext().getSessionMap(); UIParameter component = (UIParameter) event.getComponent().findComponent("deleteId"); long id = Long.parseLong(component.getValue().toString()); simulateDB.deleteBookById(id, session); } } BookList.java package library; import java.util.Collection; import java.util.Map; import javax.faces.context.FacesContext; public class BookList { Collection books; public Collection getBooks(){ SimulateDB simulateDB = new SimulateDB(); Map session = FacesContext.getCurrentInstance().getExternalContext().getSessionMap(); books = simulateDB.getAllBooks(session); return books; } public void setBooks(Collection books) { this.books = books; } } SimulateDB.java package library; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; import java.util.Map; import java.util.Random; public class SimulateDB { private Collection books; private void init(Map session) { books = new ArrayList(); Random random = new Random(); books.add(new Book(Math.abs(random.nextLong()), "David Roos", "Struts book", true)); books.add(new Book(Math.abs(random.nextLong()), "Micheal Jackson", "Java book", true)); books.add(new Book(Math.abs(random.nextLong()), "Bruce Lee", "Java2 book", false)); books.add(new Book(Math.abs(random.nextLong()), "Tom Jones" ,"EJB book", true)); books.add(new Book(Math.abs(random.nextLong()), "Mc Donald", "Jboss for beginners", false)); books.add(new Book(Math.abs(random.nextLong()), "Lars Mars", "Using Myeclipse for cooking", true)); books.add(new Book(Math.abs(random.nextLong()), "Mary Jane", "EJB or spending your weekends", true)); session.put("bookDB", books); } private void loadData(Map session) { books = (Collection) session.get("bookDB"); if (books == null) init(session); } private void saveData(Map session) { session.put("bookDB", books); } public long saveToDB(Book book, Map session) { loadData(session); boolean bookExist = false; ArrayList booksNew = (ArrayList) books; int index = 0; for (Iterator iter = books.iterator(); iter.hasNext();) { Book element = (Book) iter.next(); if (element.getId() == book.getId()) { booksNew.set(index, book); bookExist = true; break; } index++; } books = booksNew; if (bookExist == false) { Random random = new Random(); book.setId(random.nextLong()); books.add(book); } saveData(session); return book.getId(); } public Book loadBookById(long id, Map session) { loadData(session); for (Iterator iter = books.iterator(); iter.hasNext();) { Book element = (Book) iter.next(); if (element.getId() == id) return (Book) element; } return null; } public void deleteBookById(long id, Map session){ loadData(session); Collection booksNew = new ArrayList(); for (Iterator iter = books.iterator(); iter.hasNext();) { Book element = (Book) iter.next(); if (element.getId() != id){ booksNew.add(element); } } books = booksNew; saveData(session); } public Collection getAllBooks(Map session) { loadData(session); return books; } } Faces-config .xml List of books /listBooks.jsp editBook /editBook.jsp Add or edit a book /editBook.jsp listBooks /listBooks.jsp Book bean bookBean library.Book request BookList Bean bookListBean library.BookList session 1) What is a converter? A converter is used to format an object to a “nicer” text to be displayed. For example if you want to display a date in JSP you can use a converter to format the date in terms the user understand, like “10/03/2005”. But there is another way to use a converter. If you use them in conjunction with an input control, the user's input must be in the format specified by the converter. If the format of the input is not matching the format you can throw an exception in the converter which is displayed to the user. The associated object is not updated. Using converters Converter can be specified within JSP, or you can register converters programmatically. You can register a converter using JSP in one of the three ways: Specify the converter identifier with a component tag's converter property. Nest the tag the converters's identifier inside the component tag. Nest the converter's custom tag inside a component tag. The following JSF Tags supports converters. If you don't specify a converter, JSF will pick one for you. The framework has standard converters for all of the basic types: Long, Byte, Integer, Short, Character, Double, Float, BigDecimal, BigInteger and Boolean.. For example, if your component is associated with a property of type boolean, JSF will choose the Boolean converter. Primitive types are automatically converted to their object counterparts. Using standard converters DateTime converter For all basic Java types JSF will automatically use converters. But if you want to format a Date object JSF provides a converter tag . This tag must be nested inside a component tag that supports converters. The converter DateTime supports attributes, like type or dateStyle, to configure the converter. The listing below shows the attributes you can use with the DateTime converter. Attribute nameDescriptiondateStyleSpecifies the formatting style for the date portion of the string. Valid options are short, medium (default), long and full. Only valid if attribute type is set.timeStyleSpecifies the formatting style for the time portion of the string. Valid options are short, medium (default), long and full. Only valid if attribute type is set.timeZoneSpecifed the time zone for the date. If not set, Greenwich mean time (GMT) will be used. localeThe specifed local to use for displaying this date. Overrides the user's current localepatternThe date format pattern used to convert this number. Use this or the property type.typeSpecifies whether to display the date, time or both. Number converter The second converter you can customize by using additional attributes is the Number converter. It is useful for displaying numbers in basic formats that works for the user's locale. The listing below shows the attribute you can use with Number converter. These attributes allow for precise control how a number is displayed. Attribute nameDescriptioncurrencyCodeSpecifies a three-digit international currency code when the attribute type is currency. Use this or currencySymbol. currencySymbolSpecifies a specific symbol, like “$”, to be used when the attribute type is currency. Use this or currencyCode.groupingUsedTrue if a grouping symbol, like “,” or “ “ should be used. Default is true.integerOnlyTrue if only the integer portion of the input value should be processed (all decimals will be ignored). Default is false.localeThe locale to be used for displaying this number. Overrides the user's current localeminFractionDigitsMinimal numbers of fractional digits to display.maxFractionDigitsMaximal numbers of fractional digits to display.minIntegerDigitsMinimal numbers of integer digits to display.maxIntegerDigitsMaximal numbers of integer digits to display.patternThe decimal format pattern used to convert this number. Use this or attribute type.typeThe type of number; either number (default), currency, or percent. Use this or the attribute pattern. The example Application Create a new java project named JSFConverter and add the JSF capabilities. Backing Bean Create a new Java class named MyBean in the package converter.bean. Add three properties, dateVar of type Date, integerVar of type Integer and floatVar of type Float. Initial the properties with some values. Provide getter and setter methods for each properties. The following source code shows the Java class MyBean.java: MyBean.java public class MyBean { private Date dateVar = new Date(); private Integer integerVar = new Integer(2023); private Float floatVar = new Float(9.099783); public Date getDateVar() { return dateVar; } public void setDateVar(Date dateVar) { this.dateVar = dateVar; } public Float getFloatVar() { return floatVar; } public void setFloatVar(Float floatVar) { this.floatVar = floatVar; } public Integer getIntegerVar() { return integerVar; } public void setIntegerVar(Integer integerVar) { this.integerVar = integerVar; } } Application configuration file Open the faces-config.xml and add a managed bean associated with the backing bean MyBean. Add a navigation-rule for the JSP file example.jsp. The following source code shows the content of the faces-config.xml: myBean converter.bean.MyBean request example.jsp The JSP file Create a new JSP file named example.jsp . Add the following example usages of converters for the DateTime and Number converter: <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> JSF Converters

DateTime converter

Display only the date and the dateStyle is short

Display only the time and the timeStyle is full

Display both date and time, the dateStyle is full and the locale is ru

Display the both, date and time and the dateStyle is short

Display a date with the pattern dd.MM.yyyy HH:mm

Input a date and the dateStyle is short

Input a date matching this pattern dd.MM.yyyy

Number converter

Display maximal 3 integer digits

Display type is currency and the currencySymbol is $

Display type is percent

Display maximal 4 fraction digits

Display number matching pattern ###0,00%

Input a number but only the integer digits will be processed

Input a number matching the pattern ##0,00

What are message resources? The message resources allows the developer to internationalize his web application easily. He can put labels and descriptions texts in a central file and can access them later in the JSP file or Java class. The advantage is that you can reuse the specified labels or descriptions in multiple JSP files and provide multiple language support for your web application. Message resource bundle Message resource bundles are simply property files with key/value pairs. You specify for each string a key, which is the same for all locales. The following listing show three message resource files which supports only the English language, the English language for the USA and the German language. All files have the extension property and after the name the language and country code. If you specify a message resource bundle in the Faces configuration file or in a JSP, you only specify the name of the resource file, without the language and country code and the extension property. MessageResource_en.property MessageResource_en_US.property MessageResource_de.property Here's a little example which shows the content of a message resource file: welcome=Welcome on this site. login={0} have been logged in on {1}. The key welcome stands for a string that represent a welcome message. The second line is parameterized, and can accept two parameters that can either be hardcoded or retrieved form an object at runtime. If the two parameter were “raj” and “10/10/2007”, the user would see “raj have been logged in on 10/10/2007”. Using message resource bundles You can create a message properties by right clicking on the project( new( Properties Filee. Now let's show how you can display a localized string of our message resource bundle with a JSF component. It's the same way you associate a property of a backing bean with the component. This displays the string “Welcome on this site.” for the key welcome under the variable name bundle. The HtmlOutputFormat component allows you to have parameterized strings that work in different locales. Usually the parameterized strings comes from a model object and may or may not be localized themselves. The first parameterized string is hardcoded, the second comes from an object. Example: Utils.java Create a new Java class named Utils in the package messageresource.utils. The code starts with a utility method, getCurrentClassLoader(..), that returns either the class loader for the current thread or the class loader of a specifed default object. The method getMessageResourceString(..) returns the localized message key. public class Utils { protected static ClassLoader getCurrentClassLoader(Object defaultObject){ ClassLoader loader = Thread.currentThread().getContextClassLoader(); if(loader == null){ loader = defaultObject.getClass().getClassLoader(); } return loader; } public static String getMessageResourceString( String bundleName, String key, Object params[], Locale locale){ String text = null; ResourceBundle bundle = ResourceBundle.getBundle(bundleName, locale, getCurrentClassLoader(params)); try{ text = bundle.getString(key); } catch(MissingResourceException e){ text = "?? key " + key + " not found ??"; } if(params != null){ MessageFormat mf = new MessageFormat(text, locale); text = mf.format(params, new StringBuffer(), null).toString(); } return text; } } MyBean.java Create a new Java class named MyBean in the package messageresource.bean. We provide getter method getWelcomeMessage() which returns a message string, to show you how you can use the method getMessageResourceString(..) of the Utils class within a backing bean class. The following example shows the class MyBean.java: public class MyBean { public String getWelcomeMessage() { FacesContext context = FacesContext.getCurrentInstance(); String text = Utils.getMessageResourceString(context.getApplication() .getMessageBundle(), "welcome", null, context.getViewRoot() .getLocale()); return text; } } Message Resource Bundle/Property Create three simple text files in the package messageresource: MessageResources_de.properties MessageResources_en.properties MessageResources_en_US.properties Add the following key/value pairs to each of the message resource file. MessageResources_de.properties: welcome=CS411 students login={0} CS411 {1}. imagePath=/images/image_de.gif MessageResources_en.properties: welcome=Welcome on this site. login={0} have be logged in on {1}. imagePath=/images/image_en.gif MessageResources_en_US.properties: welcome=Welcome on this site. login={0} have be logged in on {1}. imagePath=/images/image_en_US.gif Configure the Faces configuration file Open the faces-config.xml and first add the supported locales for your application. Than add the mapping for the backing bean class MyBean. The following source code shows the content of the faces-config.xml: en en en_US de messageresource.MessageResources myBean messageresource.bean.MyBean request Output with JSP Create a JSP file named example.jsp The following code shows the JSP file example.jsp: <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> JSF message resource





CS411 JSF Notes  PAGE 33 IhAkÎß| Ÿ [ g Ş ś ˇ < ? ¤ßâć"'$%š›œĐâko‘7GLU` u ’$Ż$ˇ)Ó)S.o.ˇ2Ő2ř45K8™899Ó9á9Ő:é:L;t;¨<Í<k>>Ă>?ß?ă?ó@AüüúúüüüőőüüüüőőđőüëăëÚëÚŃőëăëăëÉëÉëÉëÉëÉëÉëúúúúúüÇüÇüÇÂÇü 6\]\5\mH sH jImUmH sH jUmH sH 6]mH sH mH sH j3 U jU55\LHIhAmÎß| } Ÿ [ \ g Ş Ť ś @ A Ł¤ß#$žŸýýýýýýřóřóýýýííýýýýýýýýýýýý„Đ`„Đ & F & F6çUçţţŸĎĐâňŕ]ş` a u ! "Š#’$“$Ż$&/'ą'p(F)ˇ)¸)ýýýýýýýýýýýýýýýýýýýýýýýýýýýýý¸)Ó)ă*Z,-×-S.T.o.ł0e1;2ˇ2¸2š2ş2ť2Ő2i3?4ř4ů457K8L8…8™8ýýýýýýýýýýýýýýýýýýýýýýýýýýř & F™899Ó9á9Ő:é:M;t;¨<Í<k>>Á>Â>Ă>˙>?ó@AłAÄA[BöńěçâçÝçŘçŘÓÎĚĚĚÓÎÓÎÇÎ & F & F & F & F & F & F & F & F & F & F Ć AłAÄA‘BŞBQC`CäCDDDDŚDŐDíDÄEŘEeFF3G]GÍGńGaHŻH I9I]IaI|IƒI†IŒIZJpJŽJ’JŹJŻJâJüJ*0JjľU jU6\]mH sH \mH sH 5\mH sH 55\\PŚ\°\ę\](]s]¸]š]Ď]^i^˝^Ć^Ç^Đ^ú^__S_§_ď_đ_`X` `Č`LaMaýřřóóóýîčččččččččččččîččččč„h^„h & F & F & FMaqbrbübýbcjcľcdPd|dˆdÄdĐd.e8e[eie‰eŠeˇeĂefůůůůôůůůůôďęďęďęďęčôÖŃ & F & F Ć8„8„^„8`„ & F & F & F„h^„hffifwf•f fÄfĹf×f&gogżg h3h4h`hlh‚hŸh˙híč×čÉčÇÂźźźźźÇÂŽŠŠŠ & F & F Ć8ě„`„„h^„h & F & F Ć8„ ^„  & F Ć„8„^„8`„ & F & F Ć8„8„^„8`„˙h i6i[i\itiôi j jljąjÄjčj2k[k\kŁkîk:l‚lŠl‹lľlýl@möńńďďďććďďďďááďďďďďďďďÜÖ„ ^„  & F & F & F„`„ & F & F„`„@mdmemŘmŮmęmšn–oÔopÎpëpýp*q>qgq’q§qťqür+sBs¸t‡wĽwäw+y‰zů÷ň÷÷÷÷÷íí÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷ & F# & F„ ^„ ‰zçzv{Ő{(|›|;}<}=}Z}ž}F~§¨ś€č€é€n ‚X‚Y‚c‚”‚°‚Gƒúúúúúřřřřřřřřřřřřňíííňňňčă & F+ & F+ & F)„h^„h & F$GƒĄƒŚƒĺƒęƒüƒ8„t„…M…N…O…P…Y…r……˛…Ä…Ů…č…†-†>†l†|†‹†Š†Đ†á†úúúúôôôôôôôôôôôôôôôôôôôôôôôô„Đ^„Đ & F+ᆇ‡-‡K‡v‡‡‡ˇ‡á‡ń‡ˆˆDˆUˆuˆ”ˆÉˆîˆ ‰ ‰@‰W‰g‰w‰•‰˝‰Î‰đ‰ŠEŠůůůůůůůůůůůůůůůůůůůůůůůůůůůůů„Đ^„ĐEŠlŠ‹Š ŠŔŠ×ŠçŠůŠüŠ‹2‹a‹ˆ‹›‹§‹˛‹ł‹Ĺ‹ŒŒŒ;ŒCŒFŒMŒWŒbŒ”ŒťŒůůůůůůůůůůůůůůůůôůůůůůůůůůůů & F+„Đ^„ĐťŒżŒăŒ#59_{ ˛śÝ Ž4Ž;ŽLŽOŽjŽ“ŽŞŽŤŽĚŽçŽ#.67ůůůůůůůůůůůůůůůůůůůůůůůůůůůů„Đ^„Đ7‰•ŚĂŮÚ-S“ŤÂŢŕń9‘I‘a‘w‘•‘˜‘š‘œ‘š‘Ę‘úőďďďďďďďďďďďďďďďďďďďďďďďďď„ ^„  & F+ & F+‰•Ă-…˜†˜”˜Ľ˜Ś˜KšLš\š|ĽŽĽŠžŠśŠŢŤńŤĂŹĚŹüŹ­­ˇ­(Ž<Ž÷ŻűŻýŻ°° ° °°°$°&°+°-°7°9°C°H°O°—°ž°´°ť°ą@ąœą ąĹąŘąK˛~˛ž˛Ś˛Á˛Ĺ˛É˛Ň˛,ł4łAł\łźłÁłĂłÉłŐłŮłŢłâłüł´i´n´p´v´‚´†´‹´´Š´­´ŃľŐľś%śrśxśˇ8ˇü÷őüőőüőőńńíńńńíííííííííííńííńííííńíííííííííííńíń6]5\5mH sH 5>*^ʑ͑ő‘ ’’0’D’G’v’”’—’Ž’ť’ž’Ü’ě’ď’ “““D“Z“^“`“““Á“ă“ ””ůůůůůůůůůůůůůůůůůůůůůůůůůůůůů„ ^„ ”(”+”L”e”}”˜”›””Ç”ä”ç”锕•C•Œ•Ž•ä• –U–X–‚–„–Ü–Ţ–———@—ůůůůůůůůůůůůůůůůůůůůůůůůůůůůů„ ^„ @—C—o—Ĺ—˜V˜€˜ƒ˜…˜†˜”˜Ľ˜Ś˜Ă˜Ů˜™™™™.™L™O™y™Ď™ř™š š2šKšůůůůů÷ůůůňůůůůůůůůůůůůůůůůůů & F+„ ^„ KšLš\šmšnšŠš§šÂšŘšńšňš › ›+›P›q›—›ô›Tœ°œ nÚHžIžožužžžŇžůôůůůůůůůůůůůůůůůůůůůůůůůůůů & F+„ ^„ Ҟ힟Ÿ7Ÿ]ŸcŸ–ŸąŸÔŸ  ] Œ ż ç  Ą Ą.ĄCĄMĄVĄpĄšĄÄĄďĄ ˘˘1˘N˘ůůůůůůůůůůůůůůůůůůůůůůůůůůůůů„ ^„ N˘T˘U˘Š˘Ľ˘ç˘ŁTŁ^ŁsŁyŁ~Ł´ŁĎŁţŁ@¤o¤—¤ť¤É¤Ó¤í¤đ¤ ĽĽĽCĽ^ĽzĽůůůůůůůůůůůůůůůůůůůůůůůůůůůů„ ^„ zĽ{Ľ|ĽŽĽś§ŠžŠśŠŞŢŤßŤŕŤńŤJŹ‹Ź×Ź­g­Č­ŽMŽNŽzŽwŻxŻąąůůôîîčćććććććććććććććććććć„ ^„ „^„ & F+„h^„hą-ą@ą$˛˛˛AłPł\ł]łgł ´ýýýýýý÷÷€´÷÷v$$If–<4ÖÖ0ľ˙ë "nÖ0˙˙öˆ6ÖÖÖÖ3Ö4Ö<aöbÖ$If ´ ´´ś´ˇ´Ŕ´ľľ"ľzľ{ľƒľ×ľŘľÝľśŠ´„„Š„„Š€„„Št„„Šě„„$Ifu$$If–<ÖÖ0ľ˙ë "nÖ0˙˙öˆ6ÖÖÖÖ3Ö4Ö<aöbÖśśś%śÜśIˇJˇŮˇčˇôˇŠˆˆˆˆˆˆ‚‚$Ifu$$If–<ÖÖ0ľ˙ë "nÖ0˙˙öˆ6ÖÖÖÖ3Ö4Ö<aöbÖ 8ˇˇ‡ˇŮˇôˇI¸M¸Q¸Y¸g¸u¸Ő¸Ý¸ë¸÷¸MšQšÓšŘš—ť›ťźź ź#źDźPźoź}ź›źĄźąźżź×źŢźíź÷ź ˝˝ł˝ž˝Ŕ˝Á˝Î˝ńżŔŔ)ŔbŔhŔ‘ŔœŔŇŔâŔÂ+ÂGÂRÂ4ÎQÎŔĎŘĎ Ń(ŃŇ!ŇGÔfÔŞÔŤÔŻÔ°ÔĺŐěŐÖ ÖÖ"֥ת׾×Ó×Ř×č×ý×'Ř@ŘVÜWÜdܘ܏Üüřüüüüüüüüüřüřüüüüüöôđřüüüüřüřřüüřěěüüüôçüüüřçü 5>*\ jŕđ5>*5]5\6][ôˇőˇ¸x¸ˆ‚‚$Ifv$$If–<4ÖÖ0ľ˙J "âŚÖ0˙˙öˆ6ÖÖÖÖ3Ö4Ö<aöbÖx¸y¸ˆ¸ů¸ú¸šSšTš`šÚšŰšâš8ş9şKş|şŠ„„Šh„„Š„„Šx„„Š„„$Ifu$$If–<ÖÖ0ľ˙J "âŚÖ0˙˙öˆ6ÖÖÖÖ3Ö4Ö<aöbÖ|ş}şşŔşÁşŇşťťť@ťAťIťťžťŁť źŠ„„Š„„Š„„Št„„Š°„„$Ifu$$If–<ÖÖ0ľ˙J "âŚÖ0˙˙öˆ6ÖÖÖÖ3Ö4Ö<aöbÖ ź ź ź#ź$źoźpź}źÁź$˝M˝„˝Ŕ˝Á˝Í˝Î˝Šˆˆˆˆˆˆˆˆˆˆˆˆˆˆu$$If–<ÖÖ0ľ˙J "âŚÖ0˙˙öˆ6ÖÖÖÖ3Ö4Ö<aöbÖνđżńżŔjŔŸŔäŔÂÂ+ÂUÂŤÂ3Î4Î5ÎQÎżĎŔĎŘĎ[Ń$Ň@Ň_Ň{ŇÇŇ ÓFÔGÔfÔýýýýýýýýýýýýýýýýýýýýřřřýýýýý & F,fÔĂÔ.ŐVŐÖ,ץת׾×ŘąŘýŘţŘVÜWÜcÜdÜŽÜpÝqݤÝÉŢĘŢëŢ*ßIßhߊßÓßóßýýýýýýýýýýýýýýýýýýýýýýýýýýýýýŹÜÇÜŰÜ"Ý>ÝFÝKݗݢÝÉŢëŢß(ß*ßHßIßgßh߉ßÓßňß>ŕ]ŕżŕáŕFánáwá‡á-â=âeävä—ĺŃĺŇĺŕĺGçHçNçOçQçRçVçüüüüřüüüüüüüřüüřřřńîńćń0JmHnHu0J j0JU5\6]+óß>ŕ^ŕżŕâŕFáGánáúá?âeäfävä›äÎä3ç4ç5ç6çSçTçUçVçýýýýýýýýýýýýýýýřřýöýýý$a$ 1h°Đ/ °ŕ=!°"°# $ %°3 DdŕŕĽNđв đ S đŹAÁŒ˙Ăgetfile?item=MG1yNWFkY3MwL2c2OWl0cHM5SmYvZTAvMy81aTNnLl9nc2ZpMTYwMGY-đ€bđ ­ŤŤř¸e$ľľÖ4,™˙ë Dnđă ­ŤŤř¸e$ľľÖ4,™˙‰PNG  IHDRĂŞ'Z €PLTEŻŻŻ———yyyssskkkiii[[[ţţţKKKüüüňňň===ćććäääâââ---ŢŢŢÖÖÖĐĐĐĆĆĆÄÄÄŔŔŔ´´´°°°ŚŚŚ   ˆˆˆ€€€zzzpppjjjddd```\\\ZZZPPP˙˙˙LLLůůůóóó@@@ńńńďďď<<<íííĺĺĺ000ßßß×××ÓÓÓ ĎĎĎÇÇÇĹĹĹĂĂĂżżżˇˇˇľľľÜ`ŕ褘¨-d¨‡rH-enœbŹŕP~X8Ä0|`0pÔíűí1dĐ$ŰpŰ€sÓţX("[40D ¨¨˙ÜrřaíŇ3bKGDˆH cmPPJCmp0712HsźčIDATx^í] {˘FmiKíôCźŘbiŮ´ ´P‘kář˙żŞďŽš‹ńŽa ˘áž'‡ÇeŢygÖčť{’Ďćj~o$ş™ZČ0¤3ľîcŔđé—ă$fJCÚýü‡˛ßçŒáłż`ßţ9k Ÿ˙+çá—ׯ_˙řýź1üúćM;w ż˝ze0\Fî ×'^ †‡—AĂ%xp:çězíXÇ'×á˜tŒîéŽÖ[ňҐh%§"wwϒp▬ŁÓšmŃúÝýuš{WĹҒn×éÖíděÖŢyŹ mťÇaőč´:\;ݝâi4Űܒyη겫՚şľKŽ“Ór˝§ez’ ĺVęŢy+‡l wÔĺyşĽPzćDYđ‡ƒëšƒ˘?8ĆowžŚ´Ďĺp{˘ĺÎ í<$ÇÉ­m~KkU´ľě-u´tóŽŔ–ĺÝŽĽgG~r<–ŇĂm4¤z”“˝ És¨ťŰ[^ęZŮ;˛=Ë]ĽÔĽ)~ąŔĺ…”ć+Ë[ÓíŢN•'h ÷Ń!tťşkٛdŠž•-˝ŰzyîĐ-⠁ !ééŇË=řě\ŰFĂ,í|)™H•§˝OmL¸+8ŘpÉĂrď:¨âÝö?‹śžľňP2Ör}g§{WÎ9š˘°đŕÎÝßšH>ú|ď}ĄěĐ ڙ3<<*SKÚĽÄM-™ZŇŻ–§=M-™Z2ľôÓç쇒•% ř†J=gâ[ŕ°éŤ9 0x°,Ă_émĂĘĂu6˝Ç°ż5T7EÂăŚj ;´$ĽÄ‚XFŔ1zn…ŇWT˘Ä¨J´„ §ŽAh:'P=ĽüV@ř„’WRb& žő.jĐŕUjTH­°˛’˘¤źÎAʆń$>ÔtčĄx( ’.ŤĘ†Iyz<IRôú¸hÁqƒşNsćZ’˘sSÖD °„ žĹRžîł~ŽÁ}şáŐŹBŹŽŁ´ă3ň EgČčX ­*ÔRŁŒ-?ůđőú1¨Á…˝1‚Oču)ŸCÉ([,@°ę˛ľą8tł,ąľ$o!eËĽč8Üśę:LľÇŮú!nü’(ş_u’ĤU7ƒöžËôżŔŕ\ŞŹŞˇj {ßÍXŽĐgĂzşo´˙ź?’çm0čçÎđpžžÖĎúűž†ĂØú9~ŽŠ%SKŚ–2`úÁôƒéÓş5püţŤ…giŅ´]ݜ>ÇďRďăž›îs ÝLMëgx˜6żşŁt35­ŸáaÚüęŽnxĐÍÔ´~†‡ióŤ;ú ŽżĘœÝżÝŤÚýw¤~LŢĚŃóđúŸ9ÚO‡ď >ÔŇßňťœçhęű§†oż›ŤýőĂ_Ď×ä÷ąË×Ńű/˜Ÿé ˙ŻţĹPcDIENDŽB`‚bDdŕŕdđL˛ đ S đ(AÁ˙Ămvcđ€Rđva>ţ—ď@GĄ˙>˜Ţqá˙Raw  FđJa>ţ—ď@GĄ˙>˜Ţqá˙˙Ř˙ŕJFIFHH˙ívPhotoshop 3.08BIMí ResolutionHH8BIM FX Global Lighting Anglex8BIMFX Global Altitude8BIMó Print Flags 8BIM Copyright Flag8BIM'Japanese Print Flags 8BIMőColor Halftone SettingsH/fflff/ffĄ™š2Z5-8BIMřColor Transfer Settingsp˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙č˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙č˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙č˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙č8BIM Layer State8BIM Layer Groups8BIMGuides@@8BIM URL overrides8BIMSlicesuú Untitled-2ú8BIMICC Untagged Flag8BIMLayer ID Generator Base8BIM New Windows Thumbnail ›p6PFŕ ˙Ř˙ŕJFIFHH˙îAdobed€˙ۄ            ˙Ŕ6p"˙Ý˙Ä?   3!1AQa"q2‘ĄąB#$RÁb34r‚ŃC%’Sđáńcs5˘˛ƒ&D“TdEÂŁt6ŇUâeňł„ĂÓuăóF'”¤…´•ÄÔäôĽľĹŐĺőVfv†–ŚśĆÖćö7GWgw‡—§ˇÇ×ç÷5!1AQaq"2‘ĄąB#ÁRŃđ3$bár‚’CScs4ń%˘˛ƒ&5ÂŇD“TŁdEU6teâňł„ĂÓuăóF”¤…´•ÄÔäôĽľĹŐĺőVfv†–ŚśĆÖćö'7GWgw‡—§ˇÇ˙Ú ?őT•|ű…}Ě0úësšN :=łýĽCŞf×N=Y”:Ë溲/acYšîmFĐÍűśzgą%:ëîŻ×(uÎý˜üŰ^ÚŠ¨†¸VòťEŽôo~cväVĆ6šńkő(ÉťíŸ­śŞ:ël;šý?D4H=Ü]))ÎŻ­uŇăętW†‚'mÍ.ú^”05Żw˛Ë™šőUčýŸŐ˛§Ůo şwWëˇÝV>_H}ŹsmÉŢŃP`šśą“mÎݲŠö;gé,łůś3ôşŽ˙Jďšżůˇ]ţ•ßsň)R-XËęX´ąÝ;ívÚă^ـÇ9ŽônˇŐ›hoÚ6ţ“bŻ‡ÖzŽFEuÝѲ1ŞąĹŚçž˘Đ>ŒcÜAfĎQ\/´sq&äSz–§?s?ň)R­ş’Śiââ~L˙ȧm—4Îý˙Ép´ĐÔŠVŰXyWë7RśŞşYĘÁ`&ťXŕ×:YM•qú~Ť3¨ţof÷ô˙ŇÓOÚnŤmŽhpáŔ|Ó¤—Ź}`ˇ%”ŮŇMnżkď.i`¤—´:76ß[ŘÇ?ô^—ügó‹y$’S˙ĐôžŚ×ż§ä5/qa†´I>MhY,%ÖÖĘńr™şÚ‰ÝNĘÚľÜç:˙ÜDĎť3í×6§Ýą…  Á-ÖťóBˇŠClɃ´ěyƒÓś=É)Đęš=j›éoNĆmő¸8ŘIKłNçÔÖ7ű_¤˙ŤÍ~OT=¨Ů“_Ů_UěĎaÚčôÇšŽcŸô~—Ťżóý?đJÍ= ™ö=÷ZÇ9ÖĎŃ%ťœŃőôlžŁ‹ő¨ŒrAŒXíÂ&kúmţNćŘĎúÚ,XN3Î@{äˎ#îüXë˙ á÷?Żó8ßQş†~^vS2˛m˝­¤ś×šŕí€yrë­ČŚŤUŽ‹lՕ4<ßVg§˙ üÚྥâť.üÜvä]‰ž–ÍŘÎ ´c}Źąěˇf˙ÎÚÝë°ŻĄbVÇVŰŽsl;ŹßéX^ďß˝×QgŽ˙ĺ]˝ë|n‡?–0ˆŒ@‡Ś#†?ÍŁë´U—čfěÄŽŰjĆŋM™YaÓˇ–}žÇmßüo˘ľZŃéľÎs-t<ŹT-éלołcuŒMĹĄŽŠ˜ăl=Žö3ěÍgšžĹuíefśč×"8ŇÚęS\ŕČĐËøj.=Ăż9çé(ÖKšÇ\?1*T˜ľ§Oqsyqv€ęć—9żšŞegW‚Ě›^ŚĐŃĄ;ŁtQ›Ţˆ[9F12‘ŒE’{Jćkţ¨ü‹3'ëgŐÜ[UŮŐďa‡5›Źƒű§ŃmŠ°úқ~Mąű5ĽŽ| -gŃ˙Í÷Ż.`"ś† @#Ëä´~đřs^ᜤ(T*ý^2iççăĆXLr _Şî>Ÿîž¨>ť}Xq›­őU-LĽÔj6ŕŢ̆, Áđ{~“?´źcÝâ>ăýë­˙â:śY™'~V9τâÂya)ÜÔřdź?ŁÂł–çç“ „ŁWîŰ˙ŃďŢÇ;;)Í $=‚Ňá­uđ•{[síŇ;kŻúoň?H›"œ‘—{†#ŻŽÇ5Ě{^ĆđĆąÚ=Űż50űcb:}°;}jŕ‘ôw7~ŢȢ’ôŠjNĆąěkŸX~Ç œŕý§ůJ•™=ř÷ôűň)ĄÖ֔͡űŞŻßîýÜKßůŒZ}.›hŔŞŤ›˛Ćƒš˛ Kœ4šŞ­ľíc띂í›ô㖵îoŃ÷ › ‚4 ßŐÂéX˙UzEÖ[‰›X}”‡;Ô¸8ŽŰ›s4nú˙›ý+VÖ>N6U^ś-Źž˘KE•Í%ş<%H A‘\)w{›ţKS‚ĆˆkK@ŕ ŢÜ+Ev\š2ČĎ$Ľ9ĺ#Ĺ-d[M.ˇ%⺚Dź’ “ ‡7ÝťrŻW]éޝ{z†8c›ú7˝ĽĄÁĽőŻ}k˝Ô]˙mX˙ćŐłąÂŇŕ €ęŢDŽş´Ö2‹X+śŻRą1ő9ÍôaŽŻoľ%‹Ńš2jâäS}.ŰjÚ`ít=śíöšFĚzn¤QkwÖ ć˛×˛´Ĺ XŃ ihđź¸Vœă k‹ťK\Ńý§=­I^‡TWtüfŕÝn= mďĆ}cÓhîníťYűĎkW€[ěp-{=ŻaŃŔ×4űšĺíĚnĆ5źíOÁWÉé}7-Űňń(ČxáÖÖן˝írżđ˙ˆWŒq‰ŃĐđ˜đľšŽLfŁÁĂጯ.ťü[ąç¨ĺÚMBĂ`níÁŰ7ýű5v#ę˙AţÎĹ˙śk˙ČŤŐ×]LÔĐĆ7Fľ “BąÎ|b9°ËqÇĄ”ĽˇélÇËü<âČ&g|=˙Ňôlě^§uÍvpĹ``H´ąîq%Ěúun§oöÓaâőšŻkňóëȧ`kęn?§/áYgŻfĎwř7zż÷őó*I)úŠgő,NŤáöń„ͤ)mŽÜC˙IžĂˇŘďKc=?ßý˙ŃüʒJ~—f[ml´ÚűëKÜüvŕ÷ľô7eo§o٨Łé~—ŤbˆÂúŔ?ľ*"f/tČÝ7Żš’IOÔ¸ĚČe fM­žđ?IkYéľÇĹľnłgý¸ŠžUI%?U$žUI%?NuzťÝ[únETěWueí~íĄŻŢÇąőýžŁö‡˙‚UٍőŸŇ÷ćâ‹_-fžýŸŚc­ýˇßé˙čľóZI)ú[ěżX˝°çQęme ‚5ţ•ÁÖŘÇ{}oŃlF§Ź2ű“Mô:MlŽŁ[šInÁšÖŰíkZ˙ó×Ěi$§˙Ů8BIM!Version compatibility infoUAdobe PhotoshopAdobe Photoshop 6.08BIM JPEG Quality˙îAdobed€˙ۄ              ˙Ŕú"˙Ý!˙Ģ  s!1AQa"q2‘ĄąB#ÁRŃá3bđ$r‚ń%C4S’˘˛csÂ5D'“Łł6TdtĂŇâ&ƒ „”EF¤´VÓU(ňăóÄÔäôeu…•ĽľĹŐĺőfv†–ŚśĆÖćö7GWgw‡—§ˇÇ×ç÷8HXhxˆ˜¨¸ČŘčř)9IYiy‰™ŠšÉŮéů*:JZjzŠšŞşĘÚęúm!1AQa"q‘2ĄąđÁŃá#BRbrń3$4C‚’S%˘c˛ÂsŇ5âDƒT“ &6E'dtU7ňŁłĂ()Óă󄔤´ÄÔäôeu…•ĽľĹŐĺőFVfv†–ŚśĆÖćöGWgw‡—§ˇÇ×ç÷8HXhxˆ˜¨¸ČŘčř9IYiy‰™ŠšÉŮéů*:JZjzŠšŞşĘÚęú˙Ú ?ďůłfĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6‰<˝őďџĽŹţ˝Z}SëzľŻz|šV¸Şg›6lUŮłe3˜€ŁrNŔ UźŮłbŽÍ› Í>Z’Ć}M5‹6°ľqÍظŒĹ†€$’rŕń/ÂŘŞo›‚xn ŽćÚEš •dŠT!•Ń‡%eał+)ŰĹ]›6lUŮłfĹ]›]ęúU…Őľíě÷w§ź˛*I3‘ˆi˙łŠß_Yi–˛_j7ÚZD–âwXăPOÉ܅œU› cóƒ-Ő­ŒZŤÝßD.,­Öd2M ÂXRź¤Œ„?— ąWf͛vlŮąWf͛vlŮąWf͛vlŮąWf͛vlŮąWf͛vl,´ó—ďďäŇěuKK‹řš‰m"ž7™}3ĆNQŤá}žÓyËöڒh׼¤Zœ…U,^xÖrŇn€D[_ö~U3͛6*ěŘ PÖ4'ĐĽôFĺý+ŹHąúü‘ó#›oöWâŽÍŻő .ÖKíJć+KHŠę\Nëkȅ^Nä(Ť8­˝ÄpEuk*Ío2‰!š2rWF]™XbŞ™łfĹ]›6lUŮłfĹ_˙ĐďůłfĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6lUŮłfĹ^wů×ć ď/ůâ]:V‚ćöhě„ÉPȲy °ű%Ł“—ůXţTŸ’î|Ż› ˇĄŠ4WXšq5Hćo÷_Ůă’ď;ůRŰΞ\ťĐn$0™¸ź_NXĎ(ÜŻí/ěş˙&sË­;óžűFN’->=5ś—Ě1ÎD ü5âÔ2‰„đŘŤ"óš/|ĽčYśĺć2j ,ěZr!ő8žľĂ_gš/_ísÄô˙=y›IóFŸĺ_>iöKŹ+7PÓdv…¤Sý̉7ď}•ĺǘ̟źÍůs­=§•ľ ř_yƒĘĹH“Qv?[ZŤ¸’O‰”ó_Ýňý†ăĎ–<Ýç8hţfó}žeĺţOga âęYf$0‘¤@c摿ó|ŞUŚţhyűZÓ5űí/Hӝ|ż4Íu4Ď,jĐD âˆ3łÜpŽGwicě|üĎó–šćŻ"y{[łXŹôBJňÝ$—Ö7‘ÄÔă–|cő>/Ôɇ’|“ć]#Ëžy°ÔlÄ7:Ë]9=X›Ôőb•âGe“:˙yÇ .ż,<ŮuůM¤ůx["kzeü—­dŇÇGFiž•Y˘ĺĆUoˇŠ§ŢdüÁóǕő-čséśÚžŻ˘{{c*Ćg2íD2Čă„|Lm?¨ű|xŕŤß?yÇO—Gň´šMœŢvՄ’ľşJÂÎŢ-ÂY\v,ąťđGýŸö8]ňכüÁç#ů’}--—MŤjŃĽÄR,ŐäbQŚř/ÝŁaŸœüŸŻ?›tŸ>ůQ`¸Ô´čšÚçOšIg…ƒŻÁ-Wă4‹ń‘ŠŞywĎ:ŘóQň?œě-í5‰ úՕՃłŰ\ Ż Ť/ď‡ű_Č˙ěřž—˙’[Î_ö׃ţN[ç]ĐźŠćmkĎ1ů˙ÍöĐi’Y[M7J‚QpËPᤚe?ÝŇýć˙#ă‡X~ZůĘË2ůrM< SPÔbš´ƒ×„‡‰főžšíü.ŘŤ!‹Ďzž›§ůCÉžYśľŸ[źŃínĽŸPÇkBC'Ů¸7ÂżńśÓ˙3uôŻ6A¨YŰÁć?+ŰÉpńÂí5¤ÁPźr#UdáČ|k˗Ĺ˙GŤţXëo-yŠŰIłÖnl4Ťm;VĐoUá‡Óçǔ\Đü?ě0ŇÇÉşÓůkĚčŢYŇt;íJÂ{=:ÓN ÎÂD?ťššŞŔG>gŽ*üťó—ž<çő=RóIł´ňôą:ËvŽŢłĎP˜b.Üa2|?ň˙y#"?–:ĽĺĎ#éz6Ż‚úŘMëD^œç’Eřă,‡ŕučŮ.Ĺ]›6lUĺ˙žZ\ŇůfÓĚśCý;˗q^DèBĘŻ÷?Ł'ű ,üÖÖ?Ĺ:”üťĽľ[͡ó4$[€Žkżěź¨ßóË:śŻŚÁŹéWşMĐŹ°Io'ĘE)_˘šÇ˙-ż/üçaćm>űÍöč–>^˛–ÓHa$Rri$rŒně)Ň|NżďźU=Ôu‹]óWË~U‡IÓÚ§~ëS–ŢÁQ܁3ňœ\`űĘdJÇňËĚY[˝"ŰĘz?™a’w’ĂZž‘㍀â—0żď->ĚMŠłk?Ě[‹ß1ůbĄ|żć›)&ł™•…Â] Iˇ/Kˆ _ąö˙kh˙šŚö/8\ŢAVú ËsĽ0 >łl, #'Ÿ+ˆ8růřbžmňVŻqä­./[ZÚů‹Cž;Ű,†Ýe,~ął|1ˇ¨ĎűĆřŮ0Ě?•şÄÖUŇôz, k“ćW‹[_V+Ér*_ý%&oÝü_*ô&ęzśłĺ7VÖ⊠ëčEĂò˘¤„´T4_HŁ7ҸŘăHcH˘P‘ƢŽ@ Šť6lŘŤłf͊ť6lŘŤłf͊ť6lŘŤłf͊ť6lŘŤć)BÚ_ć$žhV"7ó=ދr?gč—ŃŽŰ~ôfž&Ô?3ôŸ69%u3KekSą‚ŔÁ 0˙XśKăüťó3ysÎÖĆŰŃÔŻľƒŞč$K,b—Ő…Ăă0äż˝á‚ňű_śˇüśŠa#čwOwŽ?ŠôŢwŽy[vý÷ď=EýףyŞJŃŔź¸‘ b/¤¤‹ńÍ9ó7–3üŰoĺÔÔ4{[QĄÜĹę¤7QťĚ%×ÄR8˘U‹űžo/ď0ÇÍ—ZŒt˝óf›ĄXů˘ĎT‰VçKž‘axfP‹ęĂ$ĄŁř¸Ă>*—ůˇÎßă?ĘO2ľĹ°łÔô˘,ő tR1"ÝEG‰˙j7ŁŔçNňüĄ\˙śm§ü™Lę^Eó×ĺΚĽA éznłŠÉnŃXi4Lp̒/Ö&•„O*/Šö~čžR°şŇü­˘éˇÉéÝYŮ[Áq!¸ÉJŽź”•j0ýœU9͛6*ěŮłbŽÍ›6*˙˙ŃďůłfĹ]›6lUŮą6ž%ZEu€8ĺtqÉ0ńŁ]›6lUŮłfĹ]›6lUŮłfĹ]›6lUŮłtÜâ?Zľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\ßZľ˙Ç˙ż×V͈ýj×ý˙ü˙\r\A#qIQ˜ô ŔŸĂT͛6*ěŮłbŽÍ›6*ěŮłbŽÍ›6*ěŮłbŽÍ›6*ěŮłbŽÍ›6*ěŮłbŽÍ›6*˙˙ŇďůłfĹ]›6֙“GÔ V[iŠ°4 ˆÚ„Šźg^ś†O0k𣹟–ŹČ í܌žţX"ÇŁ_˘(EĎEPţâĂ#_Pňˇ[”´őČc$ƒ™rKň~\żÖĹĄËvĘRŢKhU&Xî8iJ˛ öĹ^­›9wŠĄ˙ËT_ô”ęŚŐ'˛M>áôšŕ’ř(ôŽś'ŻÚ™ěrűM„ ržţJvőÜŮüžiŰNšúÉŠhZEW.ŢÚ&“Ó<¤K˙+ńɆvlŮąWf͛iÝcVw`¨ ł3䓄ď{ţđRŢŃş]¸&W0ÄŔË,żň%×*âCŠ]É˙xŹÜŚ˜E[ţ*ƒ’|?ˇ7übř„“]Î’:=„‡•Ú5ä}K§iOЧ÷i˙<Ń1˙˘ôżů`ś˙‘˙Í8/6!?EéňÁm˙"#˙šs~‹Ň˙ĺ‚ŰţDG˙4ŕźŘŞô^—˙,ßň"?ů§7č˝/ţX-żäDóN ͊Ą?EéňÁm˙"#˙šs~‹Ň˙ĺ‚ŰţDG˙4ŕźŘŞô^—˙,ßň"?ů§7č˝/ţX-żäDóN ͊Ą?EéňÁm˙"#˙šs~‹Ň˙ĺ‚ŰţDG˙4ŕźŘŞô^—˙,ßň"?ů§7č˝/ţX-żäDóN ͊Ą?EéňÁm˙"#˙šs~‹Ň˙ĺ‚ŰţDG˙4ŕźŘŞô^—˙,ßň"?ů§7č˝/ţX-żäDóN ͊Ą?EéňÁm˙"#˙šs~‹Ň˙ĺ‚ŰţDG˙4ŕźŘŞô^—˙,ßň"?ů§7č˝/ţX-żäDóN ͊Ą?EéňÁm˙"#˙šs~‹Ň˙ĺ‚ŰţDG˙4ŕźŘŞô^—˙,ßň"?ů§7č˝/ţX-żäDóN ͊Ą?EéňÁm˙"#˙šr›HŇ]xľ…˝=ĄE?z¨836*‚];ęŰéˇّŇ%oR‘‚^AWţ0´82ÓR”Ęśš„b+†Ú)Sxe ŻŔOĒ~ע˙ňú™xÉĄŠâ6ŠeäJŠĐ‚ C)Ť)ř•‡ŮÁJ i› ´ťš\ËcvÜî­¨}NžŹO_JZ š|,’ʼn†8ť6lŘŤłf͊ť6lŘŤłf͊ť6lŘŤłf͊ť6lŘŤłf͊ť6lŘŤ˙ÓďůłfĹ]€5Ďřâę_ó ?ü›l€5Ďřâę_ó ?ü›lU‰yv[—´úšŔ$<ňIpŹŕŠăUQC_‡íĂ[™u;y/.”@9ËqHŽTř3;¨oő— ´[kÖąK››Ôő."’H$>3:Ť-ĚrţŃcÉ0|śzÔń´71]Ë í$Mqd/u% W˙%°°<Ó cŐŽ#{ˆ@ńHZ•Ű•$–/eߊţ˜m]váőxŮH5ߗ¨ňat–~´,žZärYݞԒNä’W|ĽŰ,ą]*=7—Î3çżŮ>ˆgüŹ*–ţ^˙ź7Ÿń’/ů1Lrů}ţđŢĆHżäÄy0ČłvlŮąW`]Jďę:}Íĺ9cgUń`>ôś Âż1o¤Č§ěÉ$¸ńWž4u˙dŹF*§emő;HmIäŃ Woć~˛?ű9 6/–w$ĺd˜;6l }¨Řip}kRšŽŇA=Y˜"ňjŃj{šb hnJ'6ŒźĽ˙Wť?ůšżĆ^R˙ŤÝŸüŽ\Yř9Ôçţ”§y°ŒůËĘCs­Ů?âĺĂ°CĘjЃĐâĆP”~¨˜ßxŚóf͋f͛vlŮąWf͛AÉŠŰÇ<–â;‰d‡ˆ—ѡ–URĘAxіźY[+ô¤_ňËy˙H“˙Ő<¤˝Úˇüg‹ţĄĄÁ7zś›c(‚îĺ"”¨q?H AؕlČťô¤_ňËy˙H“˙Ő<߼"˙–[ĎúDŸţŠŕżń‹˙-‰ř˙Lßâ-ţ[ńţ˜ÚxBô¤_ňËy˙H“˙Ő<߼"˙–[ĎúDŸţŠŕżń‹˙-‰ř˙Lßâ-ţ[ńţ˜Úđ„'éHżĺ–óţ‘'˙ŞyżJE˙,ˇŸô‰?ýSÁâ-ţ[ńţ™żÄZ/üś'ăý1ľáOґË-çý"O˙Tó&§nóEGqĚJÄfˇ–5,¤ăÍŃVź›˙ˆ´_ůlOÇúanŤŽi3MŚ˜î•„wEä 1âżW9će\m)Śl5˝!™T^GV!Vź…Y"Ÿ`ü(vlŮąCłf͊ î[ę÷ÖŁýůőI}ŇâŕgHżáđ÷5}Źš´“Ű2žŕýb!Q÷áţÎ<›6l vlŮąWf͛vlŮąWf͛vlŮąWf͛vlŮąWf͛˙ÔďůłfĹ]€5Ďřâę_ó ?ü›l€5Ďřâę_ó ?ü›lUˆčŃŰIĽĆg˛šť"{ž-lĚĄGŞvn3Cżü úžŸ˙V}Gţ ˙ěŤň呺ŇU˝{ˆxÜ\Š[Čc˛Ú€× Důnż˙¤†˙šp°)OčČď.ä†Ř5’C22Ng’Bf2 5.USĽţV Ň­_NŐ ŁH&ő`E#Œ8ŇI§ľ_ŮÁM¤#0‘n.㗂Ćň¤Ě­ BĹ=CO—›|X­žš–×Xő'žV?RâC! ˗­)VŠGĺ÷űĂy˙"˙“äĂ!˙—ßď çüd‹ţLG“ ‹7` cUˇŃ´ůoî7 AcíI#l‘ŻťśÎMćÝfM_W’1Uľ°w‚ČĄ2)á4Ź?™™x'üW˙_ Ešp{O]–YˆšL#ß3Ëŕ>˘ô úmKEÓő •UžęŢ)ĽXëŔ3 f Ë~5;b~aßL żíę&,ăjź$o""Š*Ź’€¨32s^.ň2ěhŇČEA¨ę݈Éxg˝Ój´őž —ţoë{IGŠřO݄^W××_ÓRyUbžWëp/@XUdŽż¤˙łţW4ýœć|˓ţFÉ˙5`­3P—DşŠúÔ°/ "­ŕۜgýŠňżbL<ö›ób‡(BD‰™V×ôČp÷×rů§˙(Ô?óü››&PLˇEp‚J‹"‡X€e?eˇß!żšňC˙1ąÉš˛#›ŮvOüihżčcű¸ź6lŮkëęs˙q/úúłŇśżď-żübţ 3ÍS˙q/úúłŇśżď-żübţ 2čđžŰýz/ęĺűńŞć͛"ńn͛6*ěŮłbŽÍ›ą=†äř ă>aüô¸ŃźĂyĄŘčöښ[ÍčŰÜŰÝ3‰kN4Ćăžüýيiě:GűÝŤĆxżęVřîŢ˙Ě-§üœşÂ%]ę×Đ_Ýë–)ŚßÍ4NöI!—ÓSmw*Ÿźăö×ö0ŢřîŢ˙Ě-§üœşČłÉî­­@k™Ł„1˘™ 'ۑ‡ém+ţ[­˙äjÍXú(ŚÖ´Ő•E]0W÷>8?ę6_ňÍü˙LUKôś•˙-Ö˙ň5?ćŹßĽ´Żůnˇ˙‘Š˙5bżQ˛˙–hżŕúfú—üłE˙żÓRý-ĽËużüOůŤ7ém+ţ[­˙äjÍXŻÔlżĺš/řţ™žŁe˙,ŃŔ/ôĹTżKi_ňÝo˙#SţjÍú[J˙–ëůŸóV+ő/ůf‹ţŚo¨ŮË4_đ ý1T›Ě:Ś˜úLŞ—°1ő ŘJŸďčýńsŠiĽ/m÷?ďč˙ćŹ2ú—üłE˙żÓ őŰ;5Ń5&[xÁłB-ťolmZślĽű ňŤ/$ÁŮłfĹP:ÇűŔßńšŰţ˘bĂü Ö?Ţ˙ŒÖßőŕ,âěŮł`Kłf͊ť6lŘŤłf͊ť6lŘŤłf͊ť6lŘŤłf͊ť6lŘŤ˙ŐďůłfĹ]€5Ďřâę_ó ?ü›lŒšî!’ —œRŠI÷VXm튼źé‘Ë4­ź'Eiů ćÎiɛoŠŤöx˛~óíó_‡–‘ÚĘŇŮA5ʂbŒPĚ|<•WŠźœ¸|<’><ůżĹ“Ąĺ-€6ë7=żçŽođž…ţů—ţ’nęŽ*ŔěŹ`ž)Œ–P( –• JnKĹ)éJޗű ¨ô†ĺ{{~ŸPRÝE9EVřy˙vą|^ŸÚâüçßá= ýó/ý$Ü˙Ő\Żđž…ţů—ţ’nęŽ*ƒňtié8˘P‘¤Ń*"ŠźT “ŕ=?KąŇ’Hěc1‰[Ԑłź…˜(J–•žĘŽ Ĺ]?=ůsŻÚ/@Ť¨FŁŞ–ăţyý‰⿏ýՓ̦VŠ î8AŁn>ŻKU‚x2LÇ>ą?Ă!ç˜i^FżŐ4Ë=Iu"p¤â3níÄHĄ¸ňőו+׎;PňĄajnHŔôxŁăőwŢȑVžšű<ůgHľľˇąś†ÎŇ1˝ş,PÄżeQQěŁů‡ţ9m˙íę&,ů„SIÓâňՄƒkýW÷÷ĽOíĹaôáňnŸÓ*żÔ,4ŤWžÔîbłľíĎ;„AôˇSţHČŻřÚ˙[oKČú4şœdńĹím4ŃNŹ’0úĹĎüń‹XůEŠéumećóŠä/őVőDt˙|ێ6°Ş˙Ć?öXaŠyˇĘú=SRÖ,í™*=2xˆŁ-%h~Ç U%˙_kt—Ď:Äş˘Ÿ‹ôElôô'ąXˆ¸šă٧“ âňO•­ő‹=nŰL‚ ˝>ŤYˆ‘R8ב`â5}eäʒýŻ‹Ě ˛‡¤jÚÇ/ł%ľ›Ĺ î?v`J2|hߡ›ôć%ř­–‰§é(OÂڝŰÜIOňĄ˛^*Zżď߃öđ.ě†ÖňßOmzţńý;kVI璄ńŽ;HÚŠ (ýœ  yŤËž`ŐîćŃő;{ľ{kUPŽňrĹ}6ă%@eýœ śňŻš5Šu‹mgÍR2Ă4]ŹPG {hÁ.ÓýfZ›ƒ"ş>C,?%á°ÔNŁç„ˇ–É ÍŽ_‚2ňJ¨óń%dô~^•}?ă灘äökŻřîiżń†ëţdáž]ÇsM˙Œ7_ó' ńT°ę7ÓI(ÓěÖxav‰Ľ’oJŽ›8Uô䪍|żŸ–o­kŸőm‡ţ’żëÎ^‰ţóÜ˙ĚeßýDI†XŞU.ŁŞ[F÷zr­ź@źÍŔ‘ÂŮ•8ůqýźsqz˘6°śŽĺTłMéS§|rŽVŻ˙›˙ů‡›ţ ؐžvś€ŰĎ?8”ÖˁEj1UżZ×?ęŰý%לßZ×?ęŰý%לߦ‡ü°^˙ȃýs~šňÁ{˙"őĹQśĎs$AŽĄX%ŠŹhţ §cˊÄp.˝˙=Oţa'˙“m‚­n>ľ”E$5$p™x6ßäŕ]{ţ8zŸüÂO˙&ŰZŸa~Cőeĺ'Ř_ýYy&ˇf͛@ëďĆkoú‰‹đƒX˙xţ3[ÔLX€ł‹łf́.́ﯭ4ËIŻďĽZŔźĺ•ŤEEOݜ‡Ěššľě‚˘ÂĐá”=Μ¨ŕÇ/ĺă#˙–™—ŁĐju“1Á ŻŞGhGŢZ5Ź:xńe•_ 7‘÷ąË40!–y(ÇWrEvęp‚ďϞP˛fIľhÓŞBLÇ­(=%[üœŕ7ˇwz”žžŁq-äżĎpí!ęó$/Éq‚ƒŚo°ű,húŠ=D#ţú_ńŻ'nňXŻÎGôř§śÜ~lyV"âusÇě˜ŕ*ýS1ŠŸěřá|˙œZR¨úś—w#Wâ´1€=Šźľűł‘fĚČ{3ĄT˛Ëß(ş.4ťkRyG~ő˝_ţW%żýYŚ˙‘é˙4ćœ–ŐßFš˙ôÎQ›,˙CŸÝ“ý;ĺ_|?Ň˝–?Í˙/3…’Ęú$=\¤Lű•›ţ m3üq@÷’[1$qžT w.ŞŃ€×Λ)Ÿł3ôdËű–ČöÖ }Přú_IéţbĐuP?Gj6÷ś’/:šĐÉć:.ç–ţ҆ůŠáޕćß2hźVĂQ”B˝-ć>´Tđá/"ƒţ14yŸŮ|ŃéóG'ôd8ĎÔĺbíźgl¸Ě<âx‡č}›!>NüĂ´ó‹§j­ž¨Őô‘IhŚ ,Ć&#ŕ`ű§˙`ď“lĐgÁ—C‹4 '`ţ7v¸ňĂ,ńČJ'¨vlٲŚo˙ÖďřQ/š4(&’ .Ŕ’'hä9Œ§‹-U ü' óŸ)>˝î˙ńűw˙QbŹŸüYĺ˙ůk˙’R˙ͿŞ_˙–żů%/üёşŸš§Ä⬓üYĺ˙ůk˙’R˙ͿŞ_˙–żů%/üёşŸš§Ä⬓üYĺ˙ůk˙’R˙ͿŞ_˙–żů%/üёşŸš§Ä⬓üYĺ˙ůk˙’R˙ÍGÍž^“y@7'җţhȎ§s5Ś›yu ýěK,uÜrD,ľ÷ňśż¨ëPęBöT”AÚ4 ť‰9Ěý…Ëc†rœ0Žf"[ďëĺCŤ’"qĆnć méçťŮâ–9˘I˘`ńȡчBŹ*ú1řE˙Ž6˙0Đ˙ÉľÁŮS7a_˜ă–ßńž×ţ˘bĂL+óürŰţ3Ú˙ÔLXŞó×6c×6I­Ů üÓ˙”jů‹ţM͓l„ţi˙Ę5üĆĹ˙&ćÄssű'ţ4´_ô1‹ýÜ^?›6lľőő9˙¸—ýFýYé[j 8š*Ăf; ÉĎ5OýÄżę7ęÎďŻůKMó~•ecŞOwźQŤí&ôDœŁQI‡*ÓáČOŁĂ{oýć‹úš~üiN˝ůŻĺ-Cikr5[ţ‹Ł§˘ô^HËmOçőr0ţoŐ|ĐĹ$Ôncłb+ĽyNÖkŠŘ˛“k2$PD]žúżĂüĎ[~Hy.ÎOZŇ]F)Nir Ňľ˙}xŒ:—đ*ń_1ů…WůFŚŕoě ń›%ŽŻŚ|ĽähôŮdŠ“T×nŃndäkĘoGëWŒÍCÍEăđaÇčŸĚ+ó[˙1Zi‘žąiV^ŁŽű\^ťü@üÜüIü­•˙*ţú˜üĂ˙q7˙š3ĘżƒţŚ?0˙ÜM˙ćŒVŰ—Z=Á[žÔő x겍>Ď( ô!j‡âO‰~ŢéžYňîOŃZMĽ› |q@ö5ZÉNf„˙6˙ĘżƒţŚ?0˙ÜM˙ćŒßňŻŕ˙ŠĚ?÷ůŁ|Yy,zÔÓŚVDĺ_Á˙S˜î&˙óFoůWđÔÇćű‰żüхYN‘ţ÷jßńž/ú†‡ ľ/3h>^óŁ­ßGbڅ˝źv5U‘îK’žœiźdÂ;ČKwŠ ó'˜G,kUԜŹ5\ńřĹÇý\„~aţSëšŢąc§čW׺XŐîŽu{Ă2@ŽŇ5aĎâŕß hůc“Ú.$Ötš#`čĐ\˛˛š‚ŁBĂLçDňžDş°´—WšÔ^XnyB斱ÂŃá<Šć~ňgGĹXőËiÝNąŢŢÚ39i˘ˇI?PýŚZĂ*ü_ľéˇ_Űĺ‰}bÇţŽú—üŠoű&Ùu" ŻíŁ• 7š5e> ĽŞ1Ÿ§tOúšÚČř˙ćŹU)3in8OŠjDŰI Ĺ'^ęÜmŐ¸ˇí|Xf5í)@Ui-ç ň/úwD˙Ť§üţjÍúwD˙Ť§üţjĹV~ŸÓ?ž_úGŸţŠćý?Ś<żô?ýSÇţŃ?ęçi˙#ă˙šł~Ń?ęçi˙#ă˙šąTUľÔ7‘  ,P’ed5ä¸VŔş÷üpő?ů„ŸţMś ˇšśťŒMk2O$ "`ëQÔrRF׿㇩˙Ě$˙ňmąUŠöä?V^R}…ů՗’kvlŮEŃJŤ0Íbj/Â+Š ľ÷żă5ˇýDŇřAŹź ˙­żę&,?ŔYĹŮąĽŃYU˜}š WoŁ,#óbQ”%Z34—ꊤHSăŻěŃ?ŕřç ŽD'qł/p|gnüŰ˙”Z?ůŒƒő>q!ŽB ˆtpHaţČoł"CG’Qß÷ĆÁţŹ:ź÷můˆţŚ7֒ü؏§pŸÝĘxJ*ŕ—ęÍę\/ڇ—ş8?ƒpÍ˙}Qřqšâu\=čşV͈ýbŸj)ÇáäülßZ€}˘ËîČëú×dżo˝x%ÜOťul؇Öíżßƒî?Ó/ëvßďÁ÷鏋ůńů…ŕŸóOÉ[6#ő˜ű,Œ|n?X˝g?b>íĹGâyÂáń!ĐßťŐţĺx%ÔWżo˝[6#[ŚčŠ˙(—?pâ?áł}_Ÿ÷Ň4Ÿäý•˙_řŰ?LIó>‘˙ţĹx@ćGĂ؛yfć4ó6ŽĂ“˘^ŔŁ P´Wýfř×ů3ŇŮć}×4…P֔aýüyéŒăýŚjńlœCÝőIč{˙ƒĚ°ČÜĹŮłfÎ}Úż˙×ďůÎ%iEÄńÂȲOŠÍye_RéÔąUd&ŸëgGÎmrž¤ˇ6âçkJxR9ś“Ý8 ˙ ŸgŻŘĹS?Đş—ý\,˙äLŸöQ›ô.Ľ˙W ?ů'ý”`/đľçý[´Ďř&˙˛\ßákĎúˇiŸđM˙d¸~ ~(ßĐş—ý\,˙äLŸöQ›ô.Ľ˙W ?ů'ý”`/đľçý[´Ďř&˙˛\ßákĎúˇiŸđM˙d¸üâý ŠŐÂĎţDÉ˙eżBę_őpł˙‘2ŮF˙ ^ŐťL˙‚oű%Íţź˙Ťv™˙ßöKÁ~(ßĐş—ý\,˙äDŸöQ…÷QÜÚĎseq,3RŘL˛BŒŸlʅX3ËţúÇ˙…Ż?ęÝŚÁ7ý’ŕw´}:KŤ)mmíä6ânVŚŞĘުՎÔĆŕ°${Ůî‹˙m;ţaĄ˙“kŽŐ5+m"ÂkűŁű¸†Ę>ÓąŮ#OňÝžĆčżńĆÓżćů6šÎ<ߎ>ŻŠľźD‹+hŁ_ç™IIeaţK_ěßýۆ"Í8}ĽŽ†‹M,ňŢ_L#üéžCýôž˘ßIŞi:”¨"’îçxÔňU2(bĄÚ \GĚ?ńËořĎk˙Q1g"Šęö’/nâŠ08ŇęuUQŃUD”U¤şž™=9oŽÝ Ť]NET†Sýçě°ĺ’đϓŠÔé+|YŽˇÚńoa Ôá?–őčźÁŚÇxCr  ŤpkÁČä8ŸÚÔŐţ6Lćß[ż˙–ëżúJŸţŞbÚ>Ł&…wĺşÖ8ÔE<5űpw]ĎŰOˇ/Ű˙]°đ0ö—M<Ř !8BD‰Ęu鿢^™Küç­d'óOţQ¨ć6/ů76L š;˜"¸„Ö)‘dŒA*ÒÔ›†ţi˙Ę5üĆĹ˙&ćȎoaŮ?ńĽ˘˙ĄŒ_îâńüŮłeŻŻŠĎýÄżę7ęĎJÚ˙źś˙ńŠ?ř€Ď5OýÄżę7ęĎJÚ˙źś˙ńŠ?ř€ČOŁÂűoő迍—ďĆŤ›6l‹Ĺť6lŘŤłf͊ť6lŘŞ–‘ţ÷jßńž/ú†‡‡ţ;ˇżó i˙'.ą-#ýîŐżă<_ő +üwoćÓţN]dYŽKnżăšŚ˙ĆŻů“†xYu˙Í7ţ0Ý̜3Ĺ*e †)^ő"š\í˙™>ńĺŇ4™¤if°ˇ’G5wxQ˜ŸĹjqż ô_úśÚ˙Ȉ˙ćœUÎßů“ďĺô[ěńjuĽý˘˙Őś×ţDG˙4âöÖ6eŹVĺčĹĽiŇź@Ž*–ÚKŹjŃ_@֐Cp˘H˘x¤‘Â6éÍÖX‡.?j‰đýŸ‹íâކťţ˙˛˙¤y?ęž;Ë˙ńĂÓżć!˙ 0ËAé×OsŠ*ŞÍm+A7 ˛€Ü’ťńeeŮą={ţ8zŸüÂO˙&ŰŁ˙yŠŸů}ů7?^˙Ž§˙0“˙ÉśĹV§Ř_ýYyIöä?V^I­ŮÔ5ëYźé§É=ÂC§i4+3°XĚϢgä~ľÂÝ?ՓůňGćmQô"YĄ4ş˜‹{Sü˛HÇ˙<Đ<Ÿěs˜˘ˆÔ"lŞ(8|?7{W1˙!GüŹ˙Ž3_9ůŽÂ_Đ÷%üW–w†ŕGŞäŞÁ*˛¸B~ zMţžN,/`Ôl żśnPÜ"ȇ˝V‡üĽčŮÄj|rqůyŞ°{RJ€ní}`'Oůë"˙ĆWČĘ-ËěŽÝ:˝dąd‡†2@p âőÂřˇôýq˙pżóoţQh˙ć2ÔůĹ3ľţm˙Ę-üĆAúŸ8Śv>̉d˙‡KýÄśżĆ!˙ î¤ěŮłg@ꝛ6lUŐ9ŞsfŔŽÍ›6vlŮąT~‡˙Ý'ţc­?äüyé|óF‡˙Ý'ţc­?äüyé|ă=¨˙Ă˙ ˙}'ĄěOî2Ă?އf͛9çn˙˙ĐďůÎżédŸöÚoú‹|čšÎżédŸöÚoú‹|T˛yoĺI Ľœ—fgGŽ5W ? ĘËɸ2łqű8ߎę?ői—ţGŰ˙ŐLÚo÷Ú§üơü˜ƒä˜%ćţůy4Š‚(Ť•–`^(˛rőW’îC 3Ů[ľęLŠăO…€eo޲W•pQé…:eĎŐ´=0úOĘÚKtćE#_ľşÓWúîŁ˙V™ä}żýTÍőÝGţ­2˙ČűúŠ›ô§ýŤďżäGüߛô§ýŤďżäGüߊ˘mĽžd-=ť[04ΎHţjÄYr5ŻÇZăţ`#˙“—%ś¸úĘôe‚†œgN }ŔŤ|9׿ă­q˙0˙Éˌ#›.Ń㍧Ě4?ňmrçŻ/ˆë֊NBęJ1Ű7Ž ͊ĽŻ é.ěć߉rY„o"-XՏe_‰ž&Ű+ü=¤˙ž_ţGM˙5ážlUN!ś‰ D‚ŠŁëßńĂÔ˙ćů6Řa…ú÷üpő?ů„ŸţMś*ľ>Âü‡ęËĘO°ż!ú˛ňMh-[M‹WÓçÓćnP rŇĽ$SĘ9úŽ3”úW?Xú‘‚G˝<-m—oR0Ć@ý›—ňgcČíî‡'řŤLÖízDĘşa‘Ă5?k—/Eé˙a_jv^=iĂ#`ă#iRú€ţŻÔÁ%ÓőHԛMźDW‘éV!tîĚ)úZ˙ŤUçüˆlézÇűŔßńšŰţ˘bĂüxˌ=—ĐŸň™żÓGţ!á×—Ö~Ÿ×lî-„ŹR6š&E,~<~*Ç:ĺţ“ő{Ö&ZMOF˝VÝ+é˙ČÖĺ/úžž ó~‡sŻ *Î˙G[Îw˛Tz2Ť‘ţSň/÷ç,‘˘$HąĆĄQTQ° 0)żłűU<Đ2‡BRţđě#ӆ#üö ůˇ˙(´óę|â™Ú˙6˙ĺţc ýOœS;/f?IJĂĽţâ7mŒCţ?ÝIŮłf΁Ő;6lŘŤłf͊ť6lŘŤłf͊Łô?řîé?ói˙'ăĎKçš4?řîé?ói˙'ăĎKçíGřŢřWűé=bq“ţţô;6lŮĎ;w˙ŃďůÎżédŸöÚoú‹|čšÎżédŸöÚoú‹|T§WrZŰ]ÍéßÜŮÉ)Wž8­Ěїâ8-o2†(ŤĎƒâ_\ţŻWŸô„?쏾îÚ&)%ÄQ°ę"ŠA9__ł˙–¸äjÍY& 7×!;6łzTě@łâH˙Ym/ú˃"Ő´ˆ"H!i(”$h-îhEuáƒ~żg˙-p˙ČÔ˙šł}~ĎţZá˙‘Š˙5b¨_Ózoűň_úF¸˙ŞYżMéżďÉéăţŠ`ŻŻŮ˙Ë\?ň5?ćŹß_ł˙–¸äjÍXŤ­Ž ťC%šfPx’Čńšőű2Ş6Fľďřë\Ěňră%1ÍÔR,Ş6,ŒWÂŞNEľďřë\ĚňrăHćË´_řăißó ü›\€t_řăißó ü›\“°ŻĚ?ńËořĎk˙Q1aŚů‡ţ9m˙íę&,Uyë›1ë—ĹŠZxäšÚ͛6*ěŮłbŽÍ˜‚:ćĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6jb¨[Ť7žh.!š’Ökq"ŤĆ#jŹœy¤ƒýÖš_WÔ˙ęďq˙"­żęŽ Ąűúe•aÔŠl ţŻŠ˙ŐŢăţE[ŐßWÔ˙ęďq˙"­żęŽ ĄĽhi㕁lĄ>ŻŠ˙ŐŢăţE[ŐßWÔ˙ęďq˙"­żęŽ ͊ŮB}_S˙Ť˝ÇüŠś˙Ş9žŻŠ˙ŐŢăţE[Ő›˛„úž§˙W{ům˙Tq+‹ ëŤymgŐŽ)‘Ł‘Dvª㋠ˆ|fĹl¸ AślŮ°ĄŮłfĹP:ÇűŔßńšŰţ˘bĂü Ö?Ţ˙ŒÖßőŕ,âěŮł`KüŰ˙”Z?ůŒƒő>qLí›@Ÿ*Ľiy ?*>qLí=˜˙É˙—űˆ<çmŒCţ?ÝIŮłf΁Ő;6lŘŤłf͊ť6lŘŤłf͊Łô?řîé?ói˙'ăĎKçš4?řîé?ói˙'ăĎKçíGřŢřWűé=bq“ţţô;6lŮĎ;w˙ŇďůÎżédŸöÚoú‹|čšÎżédŸöÚoú‹|T˛÷ąľ™Œ’ZĹ#žŽń+OňŠœŻŃś_ňĂü‰Oů§ŸHŇîĽiîm#–V§'aRh(1?Đ:/ü°C÷ë’`‹ýe˙,0Ȕ˙šrŽ›b:Ů@>p§üӁ@čżňÁÜŽ/iŚiöR--’ař ­1Tž(¤ť 5ž›§-ż9#ŒÎżznŃ"8™W“#q^X˙¨Ţ˙ŐżJ˙úŁ‹čżńÎOřËs_úI— 1TžëűűcVó[şŹénˆ—A"ş|(wFiya˝˙ků€ţN\aĺ—ütľořÉýCŚëßńÖ¸˙˜˙äĺĆ‘Í—hżńĆÓżćů6¸;čżńĆÓżćů6¸;'a_˜ă–ßńž×ţ˘bĂL+óÚLŽ~ĚOŽɎhäs˙§_ß9O—mľKÍúľŐާskkŽ]FşŒz™ŠŇ„ŤŹO`d *!ű\Sƒ+çW"„lě,Ź>ąő(V­L÷WkńÍ%=IZ¤üOÄd˜[ƒó&EžőîŹŇk´Ë^ŇkA7Ɩ˛žReT¸ä[ýé}őžÖÔ|ŮŹčš[]ęvv’ÜÍ%œVKe$˛Żús_^WšýÍ>ÔKţ•ö"ŕŘwgĺo.XL×ZdĘé,LĘŚ†9Č3EĒž“‘ý×O4Vň嵝ńd kuÄÜEĐü7ŽŹÄˇîżÝ<[÷?îŽf#qů‡­%ş4z9WŽK˜Ż. śŒ}[ƒ+ UA} S$ŸŇÄÉlßœđóĚ:„ú‡“ďNÔ!Ó.u4śˇ^Šô‹ÎČ}şEř=qĘîx|šáƒůOËRZĂdúd& vg…G Á¤ţô™„ŻęÓ÷źÝ˝_÷g,>›§]X*âŇ)töAłd/M~ĘzgŠÓáÂť<ßNó5ǕŕżÓä‚řębňĘŃtËë‡ÔăˇkĹr“Ăwn˛]O ‹7Ő¸úާŸ}L9śóś­}qĄŘŰŘEÖ§wgrn–xŃ>Ł—ÖŠ7ĎĆT?Ý̟ў [yKË6Zlš=Ś•oŸ3 %ˇT gZq‘žž§¨”ř$çÍ?g[č-Š˛6Ö1Dtă+YÚqĆvżĚżŢ<œŮ°-†ŹůËPš°Ö4XĄH5[+]]ľFÜxma?S¸„ƒČ=ߍĹËţ-ţLf™çűŘţŁ`ś/sŞi–w“˜îd•ĺťˇ…Ěâd­‘c3/$š_Z“üŠĚš.“4××YĆÓjp‹mBJÍ ŠEŽJłÁ™~Gü5ĺ˙­[ŢţŽ‡ë6‹[ËÄŐD#„W‹´*)ČăýŒWdŤČš–šŞXę“k“C4°j—–”*[Čbáń~‘űŻŰăýçǒŹ i§XŘ5ËŮ@°5äŚâç…@yXŇZrj|\pNvlŮąCłf͊ť!zžˇ發ŸsŚ_zštăVyÚ&oM– zr–=šz2†űköňi…v>Zňţ™¨\jş~™om¨]WëQ ܍_Ůć~'áö˙kźçDŸRÓďmŸSÔ.î%Ő­o¤´Ôŕžú݆ĄĆ[ęÂ]5⎒G駇Ňĺƒ˙+,ď侲Őoěu(ŒÖë¨Ţj[ˇši8ՒĎÔv„ˇ÷‰Í~ł“+/(ů_Mş¸žÓô‹kkŤĽtžhă™dÚEČŻű~Ÿ 3łłśÓí ą˛ˆCkl‹­x˘(˘¨­NĂŰÉuxőíCÍŢhƒEW—Sśšł].ęÚëÓÓíK[Âďő¸žUFFř‘a“žKŸÎˇ1ůšŰHô!žÂ{ÉtǸ„L^;ˆaiÉ2˛‹gcĂⶏ”‘~ܟą’Ť{ ;[‹ťťxV;‹çY/$ZÖGHÍSű1Ż°řg@ý#úXiń.Ąę‹t & SÖ>ĄSGn?ź˙vrĹmŠZ~`ę.tËËËNŐl5R…¤k”†Ĺ¤nődŻĹĹÉýœBĚ}f['•4S-ĂĂkun#ŠĺErü};„†[š řY~§ţőşžĆhţGK n=fîKYŢ;˜ŕŽŇŘۇ7e}i.Ľš2hŸ p¤Q|nüpÚ/)yfyí"Ň­Ö ž>˛q&˘3Ę0¤žQŹMńDąô›űźS˛ß*ëŻć 1îĺXŇxg’Úd‹ÔZ4tűpÜ,sŰÉń|PJ9§ó6ŕ[ :ÇKˇšuş[Ŕ r‰]ŮžÓť1,îß´îÜ°V;6lŘĄŮłfĹ]›6lUŹź ˙­żę&,? Xrłľ$öȃÄýb#OĂđqvlŮ°%'ó7—müĎĽś™s4k,rĹJ‡JńäIżÄżđëœ;ĚP×|śKßÁÎÔt˝‚Żű3NQĎPščœÄ(EAí›ĎímF†Ć:œ$lÂ\Żž'řdâjô8ľ4gq$9ü{ß,‚¨5ĄłĐš‘<§ŠťKqŚD’ˇÚ–P1÷&•>ůşüžŃߑłÔnŕ4řDžœŞ‰řĎüŒÎ‡´úYŢâɌůTăóôŸö.Ł'bçÝÎwú^?›:L˙“ş’ó6ÚźSűľ–J˙Źë#ńú#l7ĺ7šcPbšĘrM ‰$J´Y™ŢěŮ—á÷Ćcýë.ËÖňwî”[͓OůU~pţK?úHoúŁ›ţU_›˙’Ě{ýażęŽYüľŮżň‘”żSäígú‰ůÇő°źŮĐcü ×ŮŔšţÎ8űş d#ýXŤ˙†6ż“f ßëŠîśĐ$SůĽyhkţFS?h;6<˛™ůF˙|"ŮÉÖp÷Ę?Ąĺ¸čŁ’y’Ţi§Ň8cRîÇü”ZąÎ×cůSĺkRëëě:‰ĺ*¤˙ŠˆÁdŤMŃt?KK˛†Ń{úHšŸÎßi˙ŮÁĎíF ÓᔏC2">Qârqv$É.@tEŸ™§™y?ňÓQkť}[_-e´‘Ü[Ú#)•Ţ6'­ł¤qŐ~¡¨ßń^uĚŮłšŐë3jňřšĺf¨´b;˘ΟO<7ô‹s˙Tł‰tŸúEš˙ŞY&Q˘-żß×ô™s˙Uqkkm\źrNĎ$M<ҏ–WuüŹţ%Ň|n?éçţŠf˙é>7ô‹s˙TąZ(Š4ťY$yyMHy8†âh”ąęÜ"tNMűMÇâĆţˆś˙]˙ŇeĎýUŔ˙â]'Ćăţ‘nę–oń.“ăq˙Hˇ?őKÝ2śś‚Ň?J⤗bIff?iÝÜłťŸćfČν˙ků€ţN\a§ř—Iń¸˙¤[ŸúĽ„š•ä7÷÷76ÂODY¤\äŠHŞá§b•Pľ׌‘ÍščżńĆÓżćů6¸;čżńĆÓżćů6¸;'`{űUž˛¸łcAŚÂŔŠvlŮ°ĄŮłfĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6'<ńŰÇęISREYŘý”Eý§lRĄ2ýgQą˛Ş1źŸŮaÚ/ř)Ýţy>a~™g,KŤ°>štA”PˆľôĄSüą†˙e#HŘa‘dłf͊]›6lUŮłfĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6lUŮłfĹ_˙Ôďů—Ęs4óˤѤóI?Śa¸™\ČÑëń6IóbŹ_ü%w˙Wf˙¤x˙Žođ•ßý]›ţ‘ăţš(͊ąđ•ßý]›ţ‘ăţšżÂWővoúGúäŁ6*Ĺ˙ÂWővoúGúć˙ ]˙ŐŮżé?뒌ث˙ ]˙ŐŮżé?ë(]ş2Y¨ŔŠ˙G¸§ŽJłbŞ6–ëik˘ËiąęB(ZŸť͛vlŮąWĄÜŁ $Ó.,É}(Š€oú>J*BE‡ýFY"˙Œ_k óbŠ Ԗ/†ňÚćŐü•~‰-„ŃÓýf\géÝţ[bűĎôÉl6Ž=úwG˙–Řžóý3~Ń˙ĺś/ź˙LćĆŃÂÇżNč˙ňŰŢŚoÓş?üśĹ÷Ÿé’ŘÚđąďÓş?üśĹ÷Ÿé›ôî˙-ą}çúd‡66ź,{ôî˙-ą}çúfý;Ł˙Ël_yţ™!͍Ż ý;Ł˙Ël_yţ™żNč˙ňŰŢŚHsckÂÇżNč˙ňŰŢŚoÓş?üśĹ÷Ÿé’ŘÚđąďÓş?üśĹ÷Ÿé›ôî˙-ą}çúd‡66ź,{ôî˙-ą}çúfý;Ł˙Ël_yţ™!͍Ż ý;Ł˙Ël_yţ™żNč˙ňŰŢŚHsckÂÇżNč˙ňŰŢŚoÓş?üśĹ÷Ÿé’ŘÚđąďÓş?üśĹ÷Ÿé›ôî˙-ą}çúd‡66ź,{ôî˙-ą}çúfý;Ł˙Ël_yţ™!͍Ż ý;Ł˙Ël_yţ™c[ҘŇ;‘+vH•äsňH՟đÉlmxR%şťşÚÂĘFa=Ímâü\}ażäOű,gŚú2 ŤŠ ĹÝN1ĆU†*žüśç+ţܘ?6 H͛6)vlŮąWf͛vlŮąWf͛vlŮąWf͛vlŮąWf͛vlŮąW˙Őďůław˜-o/tRĎO~—“Ĺlţźląžß´qT?3ź‰&Ž4DÖĄ7…ý!łúFJńôĹÇCâĚ7œt_VˆÍ,’čzŒpÁ4ŽsźbŃÇxâ9}HšV x8z߇ŕČ“ŹůjßOó§uťŽy~çWŠçI2FŔÜK‰ IBďÂíţ_ňá™5M \ňOœuű]NÝwP“M“RŠÖ9RX#¸Ž;hQŚHývZ7Ť7űľ˙azŽ“ů­ä}rţ=3MÔ$–ęPěˆÖ׉Wř¤‰Whя\ŸŸ—T&Š!ä@č—Tßo÷ÖF|ľćèj-c7ć^`őínV=)4ŻŞa ż/Ź}5FoľńdKČžný˘i˛ţbEŚAŚˆÚOŹČžŤ3Cő Œ[ŐűĎŘő?ÉĹ_F^ßYéśs_ßΖ֐)’iĺ!QTwbp‡Ë˙˜PóEܖ&Ś—q‚Ţƒ,‘;*őxÄ˨žé…šÖWWžZˇš wźľąÔ-/u+8ÓÔiŹá“”č#ýżŮ~?ä`K:ůcÍ:íœUӆŻ¨Ú[\ÉŞ`hŁ°oN‘Äď2#ƒ;Ň.âŻE͜#ˡň5ǕçÓ5 ۟;]j?5ŮO4ěÔ>ˇő›i?qo‡Ő™cOň9`MŐŽ’|ËőŘÔ!ó“ŮE[‰}!nóRHžŻËŃe“öů&*÷›}[NşÔ.ôŤk”–úŔFא)ŤD&˘çŘUĺÇ˝ť†ÂŇ{ێ^ş4˛zhŇ?ă îßä˘ňÎu‘ ůÓóîXďâZÁwa ÄąÜÉń˙§IëÁ$ŠN}V?î8`;-PŔ|ăi˘ßҤňĚ×đ¤7W%ʒ$7Œdi%x¸'?ő1WžÚÜĹyk Ü˝+„Yc欍ĹŔeäŽѨ~ËŻ,[8d6­ŽkÚE•őÝ×Ő˙ŔĐ]şCs,<ć @ň4LŹűˇ?ň™~<,Ÿ[×/t$>ąr­Ł\Ř\›‹ŰËŤ(%ťŠB‘}fňÉ^oQaEhVFă,œńWĐŮł†ĹŁŞ]~Zézޤ×Ń^6Ź“\Ů\Ü(¸ˇŽ0Đ+ĚE´îUG¤îG'ţo;ŠŞ˘Ş(˘¨aŠˇ›6lUŮłfĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6lUŮłfĹ]›6lUŘ NÖ4ae}*ú ĺĚSľź‰(G°ü qol'óţ¸Ţ]ň†ŠŠB҄F 5$ÜN}BÔó~YÍ˙-y[ÍvzÓ/´ŤmkKŽ9?HD!őľ;^yaŁČdŠGoŮlUíšłƒčžkóhúo˜˜ĺ˝žmwô[čoč˛Ił(WÖ=`ŸźŠ^ťOŘÇ_yŁĚVöţrÖ˘ó,ŠwĺýqŕÓ´VôZ9a3$B—×tugH˝7ř=7oőU{%ǘt+Aznľ+XFšc]@É2/ŐĚß܉ęuę×÷|ţŢnCœĚşîš5ő&6÷i.‚TŹPş uŁ†Sł钫Í[SŐ|Çć+[Ÿ3ˇ•íźžśżRP-Är,Ńz’]\‹•&xYžExŃ?×Ĺ^ĄˆM{gndYî#‰˘‰Ž%WuRą/ڕ;Fż´˙g9Ÿ<ŃŠZĎ­OŁy†én´kY˝žŠy2óY–k‹ö¸¸EÂźđ‹Š<÷Żk_¤Ž!¸o+Ž¤–áŁôٞ˙GŕČK[Ä˙žDű|ţŰâŻk´ťľžśŠňĘd¸śCĂ5˙'ľóOšľáä{cŞKdڝîŠiu¨[$cëpZ¨\¤nŻ楸ü=OŢpĹ^Մˇ>pňëé×zĺ„ąˇŚöŇÜĒ+Ůdf řIůcŤjšŚŠĂŤ]5ěú^ŤyŚÇw Q$‘@Ë鴜ŠůrĽEäY<ŮçăçÓM/côŽĄčú‚?C÷ž‰—÷Ÿň+öąW˛++¨t!•…U†ŕƒÜc$žZ4–TćnŤ0څ¸ ?i¸Ž_p˙/jş€ň—–4_Óş|×_\ZClÖđ3ÚC1ú´×ˇË ŠâűĹÉ,äŕkÝSÍÓţXk:śŤqÝÜş´łŰ˜ă­‹*̕Œ˘ÍrĄb›nża}›8œžqբ״mKMÖîŻlőwôMĹ˝ĎŐcˇhZGÖŢĘ5k¸ý…~ł4Üßů><혍łf͊ż˙ÖďůłfĹVđN~§ΔçAZxW`…šňO:ŞƒĘ9xÓ͊­hъł(%7R@$lŁDłR\qr@ŤńÇćĹVúqüţďěl>߆eŽ4,ČĄKąOž;6*ěŮłbŽÍ›6*ěŮłbŽĘ 0* ěAčF^lUM …ĐDŃŤFże ‚˘ž-mB˛ˆ# Ôä- :Wl[6*˘śś¨Ü’ՇBAßčĘú•ŸüłĹ˙żÓ͊ť¨‰^ ‘ŤPR{œvlUhD \(Ô ŔniҧčAǏŚœys§N_Íţś)›ZQ s*9S*oO ă})OI)Dž8˛gý\S6*°E!‚(!xA^?ËţŽoFOŃô×Ň˙}Đq˙éÍŠ­1ĆYX¨,Ÿ`*+ááŽÍ›vlŮąWf͛vlŮąWf͛vlŮąWf͛vlŮąWf͛vlŮąT-ö›aŠ¤QjŃÜÇ ŠqJĄ‚ËŹrm?g5֝a{5­ÍÝ´sMdć[I]AhœŽ%Ł?˛J킳bŹ7ɟ—úo–m"ú䡺¤ÜKĽč(•y œۓŽ ńűYźżů}Śiš†ŤŠjpÚę7WşŹú­”ň@ŚKa7FŽü›’ńŻ%ɖlU+šňށx/Ĺ֛o0Ő M¨‡OŽ`ţäÍ_ˇéSŕĺörő.yVšSKľ˝šßű‰n!IěŹęv˙' óbŠU÷–<šŠÜ›ÍGJ´şš1s<ĐŁż¤Ă‰“ ńâxăĽňć<°Ď6›m$śĐ5¤4JY-ŮLm ľ9ĚlÉĂ óbŠMϕüšy§ŰéWzUŹö€ [iaGŽ :ՁáţÇ>ĽI-ŒÍe “Mĺú=¸(ô9Żôh?wɇfĹPś:nŸŚ,ɧŰGlˇ˝Ěë…4”ő%juw§ÄŘWuä(__IŠ^čvW˛ˇŠ%Ä°#ť0ýŚ,.˜}›KŻôT[eÔ´ëkľł`֋Copyright 1994-2005 Sun Microsystems, Inc. All rights reserved. ŁŹMtEXtCommentCopyright 1994-2005 Sun Microsystems, Inc. All rights reserved.Îě…^ŔPLTEŔŔŔ@@@€€€“Ÿ~15*bjT.29‹˜Ťđđđ]erŕŕŕżżż ĐĐĐ   ???```000¸Çž pppPPP ­‰Źş“{…iIO?$'°°°V]I =B4‡’tďďÖßßßnw_ĎĎϢąČŸŸŸt~ŻŻŻ—¤ş///"&*___ooo‹:?GELUOOOhr€QXdşËĺĹŐŠ˙˙˙ĹŁëbKGDˆH cmPPJCmp0712HsźDúIDATx^흉bŞ:†ĹĽEÜqoÝ­Ý÷ötŐđţou˙I@AŮąUo“{OU!ɗÉdf’¤ ™d Ä/TüK啲 ɏ; Ľš, &"KČ˝„X'•JĽY!¨üţú÷’~xÁčiĂ(tŇeź-¤Ó8”R+ib /üMŠ}Ź¤;Şuđo%ůńă§Ô1ĘZ­ĽUŒ2kľ´´ÁôZĽ UWŇĽš‘bJZ× Ł­§M5î+? CŇjŕ|›IňăÁO-N—tŐhCĽ4#­ă%e°ša´ÚF§ÄĘ)B ˙dQGí(AÉŞ˝L 2bJôw‹IňăÉOĽŃXÄRe­Ô€RÇŕuĄ¤ńŽŞąvE5…ŰrýlŻŞů3i@^Ž)-ä,ŐVj#UЋĄś”2˜Ć—|J+J§w”6چO’üx÷_Íâ:OĄŁ@ř¸óc j%­Ěů!%i?çGUjFAK§Ú:^:ŠvÉHkmz1ôv*­ Vt N[zŞ‚^ťĽ*š/@{›ÝW‰"Thľ=Ů0Ě`xéčF‹wUSţÚŕLOÓAŁ˛ˇ#6Ľ‹„†š…>Ř(ááŃůŔ^ čEi R¤)ČR}3rSAĎí$?ŢňMt` ´ ľV´FČ{ƒijfśúŻR­5EŠ ďi‚5k ˇŠUpŇčuK-đCÔCrŇ ţPť?e ]2E§NÚ3I~܋Fázpĺ=hsmĄ‚îI…üis…@¨e^öeŁPSÚ(H$bOő_Şů Ŕ9şd­ŕβÝŇZQ”$?[ŤRŢ­fâúĎ= Zy@/ 6RýTšL]ĚŚüŃэ,¨@ĆŔwDp¸ĺą“Z7Rű;řň.ŁB˛‡–ňÇŁhš5 lF…)LĽ­ë\bd¤­•JĽńŁę8P6ŕ™„ÉďˇěÜrÓčL#[„gŞ´–_™m&č $?%´ěœ d§Ĺ D(**x¸^Ú5â§ĆĂ$0řĽƒ{œŇZĘ(p˘W˛uf!Gš’Ÿ ~ŕŽŕ>wĘüGţöFŸŕCJĽČď:ćŘŰD‘K‘ZNSŘRĄ\Ŕ,EŁ°r!Ež;âG„6•"šÄ[ß$ůń(žš%Śkçgé…g:Ĺš?ÜÖOł˝M•%Ü0ëÔĐëŚKí´ł:|ŠŽPx˛iF1ľ˜^Đ$ůń¨ď iΠ˘Ŕ߀&;?hą8Œ#%źcŕ§@\ŐŽ\ě›.´ęœČ$ˆž—\§-äŞuΐ¨8Ŋb‚° Đ$ůń’d”UĄ-¨h—䍜óŁ đËăHj4Ş!'\Ö*ŹťŤÔŚđĄ=JK~řhč€ůk{pf€$3Š‰r" IňăUĂe˝¤h (ëŒÄŒŸšŚa¤BGZ=8cľÍr,“Â/۟ůBiP源ĹO@@“äÇť‚Ë^cŘpc 8Vö¨|U ż(ěvŔiäÚĺFee†¨CÚDQL8ÇĐäĄHďQţö§Ľ=Ix~ŰvŔzĐłů|/ĆďŕĂ +´óĂŇ˝EDYQLŢu41Ѳž$?1*Ä˝(׈OxŔ”‡ý‰ˆî”Ě "Ź™Ź…ć?ĽĹÞé“ĹTQŽ€&äÄ­)H~bđâpěđŹ•+Ďë!xSbkIň­Ö <"/T҅üĄN`E{’­žŽ4…u^$?Ńę!˝‚"Ň;_ˇS´Gř‰łmĄ(?żl ÎPÉO´ęˆËϞق˘ešÎ^ľGV$?ъü„ęźp’­˙jď_|ÍU‹’lŇÖŃ*ů‰ĚOŘ –úłž…Š÷]?Y_ś‡}ĚZŘ ÚĹy?aokß7-aá'ĎK­AH~˘URd~öUqf,š]jścB†äçGůQöOń1ó›çH@ňóƒüěłá0&?ë BňócüĐĘAű›bńła>”ëgFŹáúOÄ_ţĺÓcđă➐üDŹś?̏ëH@ö_Ńúłü´Ýç‰I~$?ŃJŔyśä'ZéýYůăQL’ÉO´ň'IyIů#ů‘ü ˘Žße˙•›ĺľRţHů“$ɏäGň#űŻ$ $šVĘ)$?Rţ$a ÉľRţHů#ů‘ň' IŽ•ňGĘɏ”?IHr­”?RţH~¤üIÂ@’kĽü‘ňGň#ĺO’\+叔?’)’0äZ)¤ü‘üHů“„$×Jůă!°ż0Ňj˙ž8…ŹVZüWb¤mž.•Ó1~Ÿ_Ň،qu˙B§í~“3ôO[Ž,¸Zá‹kŕ^\XË0¨Ű´ÉJ@ZÎżHë´ŽV˘ÍÄŇZ’EeX¸•N¨Á)ÔJ–ĺĺŇOąînŮľëÇ­‹´p+â%-Ž ‚VüX[7°­*ɂA;ř`pŢf é€uěiŻĘZ?/ŃľĽôňBĹťGśIW‚š6ŒCĹK÷tqˆmŔĘźÄĚHŸŽ]-杣x/'Gc\ëżű2śŃ°îmíŽ1`­4m“Fű9k…˛VŁ œË ű8ű/'AřŒN‹¸iŠ2ÁžB‰Ę#w÷‹n/@„ĎŰĂŘC-ĺ?Őť‡LâÓC‰şĽ­ÚüҀąf7~ĄăĘ)d?ĽTłˇą‹œ.|€ Z´­­—(# WĐncPöŸâ7ĘĘ-(őíÂ6ř1 P¸ÄŢ>4ĘŤ*–*kĽVŔ>ŕčş•‡( s)%Ĺ;B2|Đ8H6@ĆM’W–Ń>ˆ>IŐŘx–¨%Ěç_˛tŁ˙ęhŘőÉÉv’/t™ŒRß­˜%Ůh2ži›gBŠç’–:Qę× Œ%,s^ęţ-AgÍdÂĹp‚ý˘|‹Ť“ź%ĚçčÂüşÉ ~ˆé ŁÍč ľ°KvÁTÍNÍçiˇĐž‹!ŁMü|ľÁÄĽžčúĎźDĄ˙KĚĎ|ě_ľjŇދˇ"´_~vŸ<'˙ü›Â?ĽZŞ˘ášôvŞĂR­’jëF…^üzŰ2c—‰%Ă"ƒĹšýJDaŮä7Y4}ëźä…>ó—¤)ĆŚÉsrP\Œ˝o!+ţÍmY_ÖÖß´}ĎŤ$b/ą6ž´˛ËŔşčko@d’$˛ŻŢš•VťČúę {ÚBĄçýEĂvŠ+¨š1–ßBVBň4rö˙~;˛˜Ôż őgČOrőg>—üDăIňălé’ÉOŮ˙—řáť°„öÇš¤üůťň‡Ű•`c8—H‹bK~ţ0?| V˘‘OY ÇĘN›y4•Â@ĚcŁCÉĎ_ç–BU/éäÂTJz ť¤‘q öó¨ZŇumŠŤUňó‡ůé đ§7Y ćđN ˙Ť|^?ćQrĄÂ Nţđ°„ކE¨d4‹7~Ÿf]\'YO?kýÇ>~ç‘_Ń5éHúóJkݲÉţsK9yáM ´˙0])ąäŽF ąrAˆęŠóč€ŐČ[Žv™Édrą\ů8?ýţpÓvémόÂű:>ţ÷ô Hü Ľe2“čîçHü䟎óăčÁÁü@éŠQä@B*sDVü˜Ga‰Ś`˘üpŃӇłóä2G‚ŕ$—Ë,˝>ŢOs%Ô=šźl4NsN‰‹Ÿîč¤IˇčžäPÓČ4đˋËtI*ń?ΉŸc óÍŻŻoGó/Kţě‡<Š1?Ýćżpđ:Ÿ§S­r 7XŚŃÍ ”ĚCŮPxP7wI9ČäxÔÓiŽ˛fĽhüpąú”Ÿ_çoçłŰ<÷ňý˙•'Á4űÂ7óůąČž•BńŁ– tJä3F7†ŕ§‚ŕbČ:Já?đËGágtšč6{Ăć)|–Ăa3×5‡‹Ţ(—í7ŮćprŇĎćFŽ(˜Xüô†‹>Š:7ęçFYřвĂ,œŰ,s9˘ZŮě2Łó3žçÇoďÇď÷ůŁ§ŮüvüýŤůéí)4ž=°ďďąÍ[‡ŸnŚŮ^š%Ö ˛é/N›Ă"ž.›šꤟŁŹ%áçkÎîóﳧŁü=œc”‡ńőĂřý{ Śîßň÷GóŻqţŮÚB(~ ô[FşT0Қšb)ús!xąŽň/K†G„ýšţĚzš˛ßXLĐ´2ÍEÂ9“Y ˙ęR§°˛šDwÖpăm>ëŔ>tő_Đ/Đ/QwŮ`Ý KýKđsÂş(˙͞m“Ÿ˛-ŘBq„oXýW~ ąĂĐ,ďżćc´Üü×…Ö@5"oý×,§Ůą­Đ]řąűĹeő_<đb‚…§žD‰LNšäšÉ"‹úôdAÁ&€\ä#âÝá˙Zö_ ęÜó×ěá!oÇo˙x´ţěĘOđ<)*Žĺ$$ůł8iNQŻ§42=Ľt^Łî˘?Éäš'œŸ“fŽżäEÂIuă‡4“cşU†ő§ôŁTňć2°w‰ßŔÓóůCÜ@áÔlňgţôĆŔßO(ř<}ş…*tO/ř˙öřÍVčîň‡JŒ8ůđƒ›ÂAeÓk6†ý)}ęŃKn1šdNI# ŕ˜šĹĺĹĎő8ü• yřbÇ˙č០呿Ů;˛GD%ăÇ*ÇAłĚ…´\ăGďNQľÓ ˇŒB×i,“ɢ1ĚöđíN{ü}~ DŃż¸ń3,ô’ŮœP"ŚüGéN]c˛7őg“ŽŠ“Ÿ#SŠš%Đě[ŕ`ŠCż…OoPŽßŢŽĺmąęžüaę,.^TÜ<†ŁPΔ šÖe–>5rŮ,NÂą‰­ť÷’?źaŻ÷_<”x–Ţ!H‘‡<řoüZŔ;z1huČŢ/ńcJËó_Ŕab&Ÿ|ăÇLă$W"ĚDƒ˜ÍäĂc-} áóŽńcˌ€Ňí—?\˜îwüáŞ<ĐŠo§@¸>)Ű>[sŚ|Ś_lđs’Cęʏś6ó›Ďœ]Ś-ĹŽĎ.ˇßóŁˇî ~¸Ĺזě3Čq“íÄŻúM”ˇĆ­Ń>°•‡–Ţ?ŽšÜüŕĂOFô'ŤS֌ŰJ˜7囶ÄOŔ]śĂOŔMśĂßM,~’­ŔŔ˝[pßşôÓÓpĹĺ/đŒ&p‡ yc-`N×d–E’?0çSňrš‡ţă#4̖Ë,NĹów-ŕQFćÔlł)Сxvϲ ?¸É?ˇ"+6ĺĆńÖ=+> u s؊üa­;?ŚůntiŠˆný‰í˜ŤýÇÄzç’nW#oE¨d˛Đů~ú–ŢиĄĐ“Ÿ/wiĺŁ?Ó ž‹kňŻ őŹ‰¨’šA6?3žÝłě|őXç6řŽďĂ™Ą]’ýĘiüýsíú —ţĂ­=dÎ--Pyóc(ě–6LŔ$ń–2.ăp”6ÄÇœ&¤+ŢńäĂĆ˝ÎńĘÓ4ŇŽJvv,ę5íůˇ×Çëq>üu†ó)="”4ńpÂäŒ'œŸ.ς%Ö­˛ůßůżhXźÉĎ:!Śy‚çˆĽ×g<˙4?ÜjâĽ˙ŔwĘ[ĘŚŃő›]2÷uaéƒÁĎ%yň#ěn6ůĂK…Űmâg‹“Q;?< ŔNYś ĎEŚ™N ďdÄť~¸Ý͓Ÿ[2ś˝˝Ăž4†Ľ˝?ݏŻiśó×řhź&†<ůÖaQ\\:Ă×5ÄĂ “ŽâI›}ř Gý,ŹWôě˲ƒ1K“Q–zro~„ӟ÷7de|;{ş‚é< űŚ)GůŮýÓš÷ěégů1­ś^ü űÂŽ2 9 ‘ćv9‚Pv]>Ŕƒ˘iă3Ó,~ŽXŞ–PÖ?$˜X…ÜŽ0ݢVĚw~ňÇ\éf“ œotO)ţÁíOő휽áĺ‹ËúâÍŠŽ‚×a“źśTć;~,żă&?b%)!{Ćó/ %oş‘ˆŸ§{‡Ă‘ ߝŸĽżÇ,.HgŃw§?ÜĂ;ĚpÉeąföNšYîFőđ-U’MůĂW’‚!ŃČÂÁqÇ쁲@Nađó‘ő×řY99<Çď0žSt ľ-ž4Y÷ttB˙šŻÖá"ěë´9úŻý.˘}(q5ŕ˜œkňˆPČť>ƒË„žď<ůYyňźőŔ„ň§o;?łď{väTÜřąů›Íâ‚t&ÝcŁ‰Ĺ>ąědɏ锷şçnŻIݘ?+głŸţCđ@„RpÁ‘X˘žřůł’ Ţúú*ŢÂŔ—8˘éÓ§€ PúOĘ>ßĚŠ˙tŃ/r1ĆĽ‡¸§†:Ľ‘ ž€ośˇ•Ĺ;~ śQ„7?3v‹žę–Ö´@gľ’?3üë{§jępôˆdňéŒîęr$ܢź˙âBwŐgł˙˘ěáKţŕS†TĽÍţk`_kĹ[ţ‡ŹĚćč…)+6ůC!Lůľő#~J˙qŹ§ŕ)ŹO¨ lrĐ_sőGÓĹńářYsš9Ć_9|vŇ 0đă'}€Óě6đŇhć QŁFčË…]™ď<řąßÄgüőv-a×)ŃbńódqśÚń‡ý>ş+âçú°Đ˛˝Thâ‡2ğ—ĎĽčž;'Ë•řŒżĆ÷Đ}ň÷€g —ŮA‡Ś#k‹žü?Žšőś?OřÂ.<\ŁÉ(ţ9‡RáAĄä?Ô36&bÝźał‰ńu]â÷ť}†PY8$ąbGýĂŠů.?ÂPůr ŽÇ'6† aňƒŔąůż{Ź2čú!ůš¤UČx˛=“ŸF– °žáhFđěfŮ!—V˙•k24ÂüˆŹ@ČźSâü{LëŰYüܲ÷Ů;Ɠkśˆóăʉ×ÁXńĎ֏Ů=§~w˙źŽL†ý’ŸH…łqr¤řů°Ožqžäg­ŕ%?‘Xú3üˆđ™ŕ$ů‘üSâ}†äGň#ůA HýgƒDúsXŚ¤ü‘ň',+nçI~$?’Ů%°&ÁGŽżIüĚhü´ţł–pρ]P˙%×ţ˙ŠĂłP>¨őçývWBLf´öézöŃ>Ź?ŻqKÂ4űůchÉ÷“ůĽý/0ęő[ä{´$ß˙bś'ű_PČd„œě‘Š‘(ţŮńKXéĹĂ%AUÁţ;ţ€!J?ůţ;đVúmҲ•ýwŕţň,t^nˆLź]Q˜ýwb,˝ˇĆ›ßţ;[äx„!'K¨Y˙R70a$Ůöq%°íZBŇRŢ˙ -!¤ˇĹłH¨0űö˙ŠąŕĄ ´ďŢ~‹üء&@´Ą^˜ý'qřB |ü7Ô3h˙ÁdŸ€Ý¸Jś]#áăżýÖ;Ĺö•ÉÂFf> ƒo“Ú˙´kŇßĐ3hˇ_˘”9—\ˆ$ňŚ4÷4@Ća÷NÁÄׁCź˙iÂíb17­-Ěţ§,ΚŤŚúGűŸúĚđÚ&?†*Ś°ĆŰQ˜ďŒLkŸ%ąžBź]žAhđ†Âx€ŸEo×â'ţ|XL2(‰íŞy vô$Š+ŹÇ‡Ç9GN÷ź¸ü&n•žî]‚rCóT˛™Öbeœ€TŕŰ^ÇNŤĹđ|/vůfö@yŸŰ¤œkCD˝5żĆý[ćqáéÚú´ďpŸki˙­`íϏ-éĂýčĆYéJzč^j%Ýv˝ šˆ˙Í[RÔĚÎŕ7ŠŤÜq]ĂgZť™ÁvŕŚ:[ç'¨aţ÷(˛ĂĎĺ Ô!T&%?ĄŠÉ~’äÇV’ÉOäü$,˛$—ďĎľ˛˙ÚI]ČţKʟ$ŕI~$?’9ţJÂ@’kĽü‘ňGň#ĺO’\+叔?’)’0äZ)¤ü‘üHů“„$×Jů#ĺäGʟ$ $šVĘ)$?Rţ$a ÉľRţHů#ů‘ň' IŽ•ňGĘɏ”?IHr­”?{$bNĂŮĺe˜ż“żýšö˙żu6Ű~œż? $y’˙?~[CďRĚřÝ;I­íĎľ˙~ŇűS ěI$?ŹÂˇœ]Éϖ ôýœäçUř–ł+ůŮrţąŸ“üüą ßrv%?[.Đ?ös’Ÿ?Vá[ÎŽägËúÇ~NňóÇ*|Ëٕülš@˙ŘĎI~ţX…o9ť˙~ŠĹó-—Šüš°%đŕ'l^ĺyŰ/ƒăçŹHéĚ˝$źŽożÜä/Š88~ŠŹŠÄęŽȊ˛^ˇ* "sUy$?żKĎAĘ!7‹ĆŮ'ťx1Œ—*{ź2Œ ö‚ŁWěőG_..¤Výó4Śü9{š83ŞĎgçuŁzquöřlńň̊gx[4ŞŻg`JŚŸ.ä‡Âß!pΔčťWŁ TŻĎĎoQb/ĎühüTćË­°Ű¤ÄżŃÁ_y€ü@űĄŞ(ŚQU¨Ňŕ‡^ĐŤŐůAócěÚIąRťűţ̅ɏqwqe\‘üA2ůů„Ŕ9cĹ’?ćŃř•˜âłłTÚ4ŻœîJĽÓCMŠmˇ&Ęž7‘ÚIWpB…ßs)ţłů\‰‡DúՇ8L~ŒĎŞaź’ŕů´řšy=3>X]úâ(vüX٨h­šV6:Zş™Ä”–‚<̓钒ÖچZjăQÖj-8Ú]J—€OKűÍŮ(ĘŠÉWCŚü1ž/Ť€ç†U_Ą\'ä‡Wś ŚÓmCÁV’•BŠ6=Ő;aRki 4`FŠŠFĄb´Qm)mwđŕÎi…n_Ą‡PS\ySSbăȲJ)ń9ĘŠsĘ~{Kĺçŕř9&Âs]éý†éüÓUŃ űóY‘H4xOątZ!Jč $Qa:z,.–Ň ÁŞ.ź¨şVĂś‡Ź†SśÂލ„ß ~€4žW!úSšR*űšŽáŤ˛Ś—°ŰŠŇÖuÚŘš]RXO_Ň!`㌃ă'nF#]Ç is<¸J˛oéŹâÎvŠlkşĘů’´Ă”ÖĄőWJ-ŢóŞĽ ›5tťŔŸJȇR3”’j´Ű\lŚj$GNü‚äÇ­ž9(* ĄBP ؄‚ ľÝâÓş%P tžŽÚQIŢ]JkŠÂJA Œ–ÖÂ)FŤ]Ś—f(xPHŞ‚ŚĐÓjœJůŠ—$?žü Ź FK ô–QŁ—tŠéƒ´8XŃ?–NAh•T[W [şŠúŻ2 šˇ_HŹT^›&?FšŚa‡pŚÓŠ˙~„šçńnKEí˙3eŽH-´ÔŽ˘ AŤŘŤš‚†¤ŽĂoąť$†őű›„ţŹŔ¤€ŽˇuGiŤjťýYMa ‰Oü čżŔţŇĽHĆLĆůMę'ÄĐY˝Z˝1ÎëWŸŸ4 ‹7wŐgŒżŠŸŐgŒŔî>a Ú^: ~ čÁĘ:Ó¸tdÄk13j›´úŻ´ĆJ˘-éąťŻĂ‰˙ňçq/w7wx)Ţ\Ü 莞:Xżx.>>çĹĎW˜Šoî9œě~Ó2wؐüAŘŘ#ť“‚nŇęç™q/„Ďç <č܍ú+9ĆřŃłsăn2îf‘TĄřř$ŰX=žţăÉ"_ň“bó€ř)ëĚ$˜ŸŮç ÁBîSţ‚?p¤ňCĎěőĺÜ`Ş+&ąPj§şPŁ=ŇĘVŘń=/r}oűs4°íŸĺżw@ü(prAśP˘ÎěĺâŃăüŁzqÎ>|bĽý‹6r€AkXÚ÷ d ˛šˆá&ŕzŤé1ř‘Z ˙Łż-6‹bĆzĽť:ďœHđ@k~üŕŸ?-ůƒ° ćř¤˜ ç8ý7`aÚ÷á(éôƒáŔ)ÂMbLą<ákúGΌ$6Éc—4?Wä!˝@pę †ňxš+˘ŁŞÂ_ŠƒĎpŚšý×ŮEľ^}D÷\CŃÓJe¨”4Ě)Źq„Q1yá…;€Ľ,7YsMAô[mő ąIŽSÓoʅĺJlŇ@,ŠŘ<~΅CýrćŞ^çŢÓzýœéë7$aŽęĐŤ‹¤1ăĚł:ŢĄŤÇ38Žř!sŽ 8¨ŘĹ?Ó€w–›üXoˇJCäŰ›•ş‚q{Z×É_ş›XĂ<Xl ?e)†ő[OÜVËí˛ź#Ă;?8dźÂM€K”Š˙Čmëkýŕ†Ř¤ˆ“ ďh Š (#[+ą ů“XlJ~Ü+“›őÉ[Moˆ&;?Ü€#–›üXoĹŻĽY)IPMlž6Ä&0˙Áá˃—Vbü$›‡ÎťÄ˝.ŹPLLýěűp!Y}—čż„;€Ľ,7ŞĆzkń•zFĄ ąi燉@f%6ńÁ)6ŃĄ?t~śŽőƒiŚč<öý6ÜCvů#ÜÔ˜n­d˝]ńƒ’íUŠŤuąiç‡|Ş\íˇd%řY›äŽ”ţül#›…f…~n|œ ՔŇď‡CŻ‹M;?Źßźj›ĐÜ6ÄfÔŕém”=J+şŕ‹Dš˙ÉŰČC„Ç Ďcúo̚Řtč? w”ŽÄf6 S‚ÚÄ&ůTçm”ýă'„;Ŕ”?$ƒÚQ{„đuçzŚ§ŘÁžÉ|ě(Ńd’Ÿ BßĂĆ3i;PƒÜňžŠůW*ä˙ňÉĐ6Ú@PyĹçgZkf(Z2œü!Í-Źke˙ú/đĂçW„KŰZŚßîŔüńÝ ť".SH–ä'¨Q.űŻŞđJ˙ůu: ;:áJ˜’‘ü„)%Ž˙Äŕç÷đAšaĚgŻFťü žä'¨ÄȟOÇp˙o}ŻÄfhđ%??ĆĎ.™ ÇOxđ%?EnßŁő_!őĎpwßŢYař‰ţAóC‹<Ńě[†9ޔB[-˘×GDý'ôř7ú“$ť"˜Ÿhŕ4?5çh"ţ*ÁuŸŸ$9řYýÎâ'4ř˜KiŠÇŸB†h—(c“důw\]ĐErÜD|ŒhüDüń_<=€Ÿđ†ç5ƒj°sÄ;“;ă‡Č]Ľ$YŹÁ?Á&Xü„śŁí&?ť“?cˇe"I‹ěOđX ö v~°„Mü´;ůƒľś–)Q3/ůŮ("›đżţýęů1–žŚdYü–ŔĆ ęJűL6‘l—ü”-ůÖa˝œřRţl\Ĺ*ű„ß]ňc˜cř„Y¤JňăRD–đO8đÝ)?Ś`dĹíɏKŠ˜cř¤ߝň#ĆđIłȔäÇ­ˆ„đOĄť[~ Ă'͂ä'°ÜNŕÜŕ¸Ć€ßŢ1? ‰łXzRţ¸Ş>ůŔwÇü´%ĹO'ɏ{ —0Ť,iÚ5?…„ú˜üK~ÜKi°…ŻžŸ‚Šů%Š`ň˝É xÝ}k7ńË^”›”˝hëâzJ˜–dcޤšN6nňĂüZv/W„p:ľröU‹ąÇNżrď<œRIr˘W‚oŔÍŠNďi´’[żÉĎňÓIPą”ŻPĄźG~´ŇŕgÓ*SŠă‡í—„‰ěRß$„ I'KΧ”21Œr™˜)7ÂĺÁŢşÉSţ8^ú÷}Ëƒ.ݤ3#Óa3ĚMTg}ĹËČńżďqč›Lâć䴇œ8vŒúI~:Œ5O Ň%ž6¨nŃfÇ˙ć ŇŠ=HŸQ&AF9Ü$ČĚÁđtœ #łďľşuŞp[ôť rŇčá&6‹Ýňƒ “f’GE.ťÍ Eř<$(t\zhÁŽßHPč¸ôęœ' ćÓ,qN†ThŇIs‚Ś`óü ?h´Ód…žX\ő`h´IÚ,ŻŻ< 0„ Ń&l‹Ĺ0H”–Řř:>óů[(ŐX3aCX,˛ĚśĺŘňŁąlR|‹‘łU{KZčóů=ómś¤˝Ä9i4-kî™ HżçäC|ż› Ë%ÎɉÝgđsü @.?+)~ţ1ô,‰”QcPüJ=K"ĺG”ż› gIŘSNŽü›jű$yômŘĎńƒŞÝBŠgüőN”zbĄĎ5 ?ĺe”źĐŠ%řńƒ›$?ź+öťI›5ˇtŲ8?Ű)őăżÂ˛ •ÂŃ$?hő–ŸÓ!‰ŁŽSOyʸövvI*ůůËüä89g÷,ň䎁H~Ö4?+–ü42ËKŮgr§tđä2wÚXtŽáíšńBň#ůňeÉO†e‡Y˜†.›šl3ť˜˛an”…ÍŞßí6{Ă5/‚äGňłÁMýËEß~vq ËË˝úŻ Fç¨m7ü ˆą‰Ť!w­ś1Ćď;y>oÖŰ<ˇă÷őń—MţpiÄóĹűŻi.+řa˝\.çԃvÄŠe‰ŤMzKü<ď:†)˛ţóç粙4+~rŽqŘůáş~c˜íA ĺş˝,Y¨§ŮÉ%ŽâÓ\nšľ; "ɟŁűŁŁ#vهŸ“\w2™.NrxćnÎĘäOꦙ‡­nĺϔ{Æ}T *d2lđ—ě‚—§‚Ÿ>$jş´-풟áě$“kž,Řhz‰=mNO›lqŇĚe&}›Ů˝ÍoČt´O°†xCÎŮIů°ňŸöžĎŁK҈ü,şŠđ#Ä>ŠŚšlďrHňł7͞,NłÓĹtÂű…¨ü„ ŘőqśŹűżrýLf2˘Šƒ! ÷řĄôj8’͢%Ź™ŹÖäĎúS9őgÎĎ1›łŻŮőŃŰěú>?Ď?]ĎŢîçGďłë§üüím~}˙ďŽĘüÓŞ›[ăÇĺ&ŽňăĎËU <ě”5đ?WDńą ”+3/~üŹ{…9áA)ˇcüšŚwÇB=pĺnvĚěľ8ř >™iŸőœxú/źĐľœÓÇýW*äÔQřĄ"΢ľH™LwŸEŻćtş:ř)lěZ˝ĆŠ˙Ąů5ucˇ÷ó{4âŮő5ŽĚ˙ÝĎߞHě<°źŁsđSŕ[ŰÓŚ˙ÔĆ„DВŸÉM$k涟”ŰMlp~Ž(żżż}?Ý#´l†żIˇěhü>‡=!âçţˆqŠ+’ƒŸÍJü%~ ý Šś Œ8ߐ?ÄĎ Ô….ĹäĐS ů3ťeČ—źWTš÷_*ęŃĽjmĽ~ô.Ć_(xţţˆđ2B‰wcčżnďÉL6~(†=?˝‰•§Ń%˼xńŁ˘|ýsBO=ƒ°Ě÷˘ŸówD:AšBvÎĐ(ˇ2{ťŚ–r š\ř) ´n˝=ů9‰ Ô4͚ř~`ŕl,zŁ\zÉ œ˝[4úŮ\ą•žüTčŠř1["ąóŔ%Îx΃Łż¨œ)]Ďf˙žŢćó‡ź-ÜfĹŸ0Ÿ)ƒMy˘§?]6ľňâÁ/ß~ˆöˇŮ<ăČÉüë m(=ÝA†^ní‹ĽüĄĆŠŸÓ,W8ťPŢěi¸TCmîTó~*bĆÖÖů1‡U—/ÓÜ%‰ ü;ŧ“Ü%Ŕ$’Ë…u‘?)ą^Mx~ě­ök<Ł6œăżßnÇč \řI‰ŹóƒćĘ[,Ř“›ň§§üL/­ź¸ň3đźÉz˙EýřqJŇü6ŠŁďů 3GŽfó‡÷ą=nŃâÇŁ]äOŽŮ§ÇbÔeO+C¨Í‚Ÿ˛ľŽĐÖůqQÄBúu¨Qůą´… 5ŕÓí˙áĺţaՁÍý üü„xđSDŤ]–op˙ĹőđăĐäŢň÷$Fçł/ü˝Ď_ß_ŤpÁŮŘBɟ\vD`Ô?hÂ7~nň“Ë…çÇ0L­óąľţKhňC‡zFamݓoŁbŕ’îFöó“\ŽJ^¨nHŕ'MóÂÍŘ™˘ÄfRłˇę™ÍTâ”?iŰ:!ý×eď”P÷$Ch>?XiĐcH‰\ˆ°˝KtÜ]<žČ?‘–˜Űç“íČnç0Óz%şö_ ¸ě. ^GÍ锢}ššŠÝi~ ›š5ýYđ­M=C¨[n- lNX8óˇË†Ă•ę&řIŤ"ń×:IgöՇ<žĺöŸ•râ1~MdůĚöłôˆćó›–hĘEóÄ ŰëCË@Ž-ýs”Í5ÉěŐ6ôH€ĆX܇š÷š]ëî$&ý٧ÝĆ糖<§ŕÇraĂż=AáKÂAĆĐo9ˆÝ?čQQ¸ÝĹ%ÇvCô—ęáÜ Ă-͋D¨@Žd2–ęfńł*’Đü\çaV{€ú:zƒńö8ô=›żĂÖ?ËaÔkOÂ~¸|şóCAxŒ—…–‰&j>żŕ‡TÎĹ$c†íQ˙~LĎ|SŠĺŁŢ–Ţüřů"Ĺz3‰ńťg%şđCćÁK şčŐ ;iô˛9Ňß.ł_Ő~˜ÝĹ6ů6'Ôp $8{{lynji–ăhiŒ ť¨Ąş-ůA‘„ąÚĺ9ŻaŚý~úw ôŃřëF-ÄĎ÷Óńíšg۲?›Ćw~z“L&v¸G‚ü§źťpÜş śNôyŮO°ü_ÜĹń ~Hu˜öĆáÎ4ˆ,ëq~ şŮřQŒ”‡ň‡Ěł撷h|;ă^Ô'rQ‘S˙k ü.ň‡žk(Žü4#ěÏśçĎÔĚ`˙…rxÍżî-ż){şĂďŎ,Ş=++˙)ďŽwÏAf.Ç­S,?ˆŮhpőlqzr2Źďçr\Kƒ˛&gLů#zKusđc†‚žţŇlţÍđ˙1LOlN‘&?cöćÚ řa>qĺç=+†B€ţĘ|~Ńq•ł74Ăö?<菩ĄŘĺîě ćü˜9y‚ľçé{é7}ƒűô‹ËáBu´›˙}Łqă_›ZPÖřą$‹š_ˆ—‚Ř챜rYăŔ.̐Ťgă6š`8ŸÉ1hi¨+Q8ă1ÎĎ ~ŇTÝÖř×!řąĘs| dV‚˜ŢžíÎ ^UśćR¨šňCanœ,ËqľR<żŠ?#u™a{Ƣź ˆ­tă‡4”91%)dŕąüŚdYDk ~„ Ջęóĺ9ľkjYŤÖźîXP˙ľŮMĽŹ ó-M)aůŠ˛Ś—JeŁŚ)´>Xť¤¸Ź3gń#,i]DłQTĆč'˝ě$ƒbÍń¸63:‹/čĚSôr8*Tˇu~6lcţĹj„őţFZýű—ˇóó„#\{XĽń‡'x~J“ivČĂśÍç7í‡ CžŹ°˝aöDčŸŠ)dPÔřçeNž{š…ßÔƏéBuďż\u ů3ąćŔˆĘe‡ąErÖž+ĽžVZ•’j”Y!ĹT#ľšěLŔú›ĂBWŘ#Ĺ?ŻF-D Ł˜Űń7Łšý×|Őy:â\ô%?Ť‡3=Ó!Ÿu]l~ĐyĄ C(ůMmü˜.Toůł‰Đ?"€>ƒáă "úœüđ4vFŻ†Š?\ťuŠŃ~˝|uĎň ”.ƒ¤6ÚôNAS*.ŃŽťáÇ´š‚“‡‹šĆđ‡~ ŠĚEŃőü8ďŒ>Œ¸~ÂďóóuO1cÂoşäçÉ<âTĺ˘Ć?s#Œs „ÜR ËXqšÝf„€ŚĆ¨ß§I…öGţ˜@ŐXŠ]J›Ý™R"Ş*FŤoîbŔc–…{?§˙ZÓÂ}Œ$LĎDČçO"¸…pP ´é75űŻ‡ń˝ĺBMŇŃܘáŚSDݞĐlÁ%?ÔĽĄw#ƒ jśĂO=–Ą§ ´&XŞVŁNŤ` Ľ6íEż˛~ԎćŸzóîýMÔţ+ú~úsˆţ‹ŸňéəS;?°¸d2—M †{Nżřň‡řé@WVjŞŞ×ü/#0ɏwŤuQnˇÓ"÷_40Śąq–ő{v~0˝Ź)“E˜ăóC‹—ˇ•7őcťzř[K>0™”6WP–ü?—#„ü,&0j‘ÁJô_xwB~ĽFƒœI9&íż\ƒ%?Á˘R â€Ź Nüœ`'˝ËN´XAÁAäľIŚ˙H~âh<ÁĎbBËävűŹIËüœ\łIšP3Sá) őćÉ6'ůńŃG#żâ’´ŸúsœÜ„Ôř&Q!vtńN˛˙: ů üpóNŠw{[ÉĎ_燻ř0ڊ—~…ŸßZ?|݄˝ŃFöý„ý§ś•őĂí+éűŹß+Śř§ąŮ Ćé´kâ'0NouFŽ ó ‚×6ýJ5ÔRŠż€ňĄ–řAňššňj’Ńjř'—‰D51ť1VÂA¸Ü_ćÓMhɇűď˜ŰÎćąüI؛Œ†1ˇĺ9ą´Bˆç$/'˙ň '˜QƒoŇŰϝƪ’iFéĐűçšă/ŕ‚8U rHÁKËPtM§śdŻšü 4]GDk…)%}L6H¸w˜]Żmł W/ŁźĂc§¤;‘;w˝ö¸ßj (Ďż:WDř¤¤›„+Žń°ü)‹)Dž äyœź’.MĎÓ:Ó ŹWkľc›|ľP\Ă]J'áM‚ \|ŻÚ§QGÍI;XŒŠ"ľŻ5ń&Z;hi3ŁÉn˛ŚŸGßżicĺÇ ň/řŹÓÖ=żŒśŹßM|7án#×ĹŐ;+AľŕüŢű&žËölŢäřńÉFO‰çšF+¸C>;h/ę]ä-:?Ű|JŒ†Î۟ۥ˙–äg­aňÚzýĐë|›Ď/ůY+MŽ[ˇYţ[’gÂôGisęρ×óO=žäÇQ˛ŞeŠaôSő´Żż+ůqÔĚҐŕłŮ×ęüőç’ü؋cw+…4|ýz…íŮ %?ö ąşDr ŠTɏ­˜řŘÝJŃV6 UŘ˙Ó$?śJľ-e+Çđá`—üŹĘiÍŐ7H?\Á˙OΒüŹ*˛MKż(0 ęü3(ŕRßŰΆäg˝DĄýŽ˙ôŹxľíÚüýߓü숟ł—‹ęëcx‚ęU8ŠBŮŻűsó|ós\I~vÄĎçă™a|>†ŽŮs7ԊÖ˘ž?sqú.‘O”ü솟sF•zţ‰żŐĎ;ø)ÖŤ/gF˜œŐύťĎę‡aĹâgőůÜ(BˆˆƒçőŤOşiɝxsSÇ×Wá!ŒćşíŸcˇń?żŁ˙|źZuőňxwsqgT/>î.^ŒĎg taÜ]ÜÜ=žuöqSźř(~žčżĚƒEV->3H/?tâ {ž+n^hÔşˇčĐŘŽüěFţ,ՙ3V4ŒúŁQ88vˆĄGH›svVeEœpvNß=„";+’袍čS•Ň•!NÄqóۅF%+:J’ŸóĂť üŠ0rĆîđżÁC—†/ŸŮë ç‡3Êü ‹Ÿ"%t{8quÜqá9ˆüš$ůŮ ?Śćň"hXńáC"ˆ}p.„”:˙¨^œ{đc>˝+?âÂśŸK’ŸÝđcźB7WĆşŞçOKţ #ˆţ?s~îHSâĹԍňgóۅŸ?8zǃIýy  ßџ;V/Ţ@a0/ĎWK~Îş/ăęâšţúĚťĽł‹j˝úHoqđ´9řŠSşYő_ć9ś /¸ŚýSIňł#ůc\=W…h¸Ş@ń˝rCctăŚN~ţQFüŔŮáoqĂűsOaˆOgq|đ5˙–łÄ9Ť ĎIÎý\’ü슟ŸŤÓßüeɏä' o’~"ÎňŽ|úOô<`0=e‘5řivš#1¸řâœÁůŠó+?Ý=¨ÂźcOU:űâ9Ž2,ůI"eŁ\[H—ÄÎź?—8ÜśsöéćVˇĚƒ~şó׸˘ëüÇró;Á.Qjpˇţ/Ź@ő+"YŘi0~öR}†ŞcDFƒĽŤĎęů,ĚŁwäŮ0řř^@‡Óŕh5,ˇ*žÇXĚů0Uič&\ł-í˜%xĹľmԈŕçÖÁÇĎb1ěőîśŸsöq÷~ŹŁ|,.ř9Kçő"â>ÎMˇęĹ'yW×~ăÁRdşfˇń´‡ôťĺ‡¸űĐçú\\Ż°róó‹ÁŔ (yů„ˆaEűQÎĎ+Nż@ĐĐ ‰Ł×;Ë­JćÁ‹ť;zŠ.Łúyf\Á—FvĽŸŒŢŘOŞvʏ˜Áü zý‘=Ż¨v’p‚.h௰ĺü< R}ĺVĽŤ¸03]dřŤ Ű$÷Î?† 1űQ*b.fŮR *XĽŰ\GŽ˛ź1ŕřz˘}$#§ň#&aüÂôe^ĺUA  ˝Ćí¨Ő]@?HH,–[ՅxÍ^.^ ˘(E.˙m_€•M)ŐŹľĘąZœš*"m$ R˜ˇ6aiĹQEwɏ5ƒ9÷Ńʝós-劺x+L~>Đá@śľřÁńsƒGž=_YnU’ą+~6\˛ćoPř~Ÿ\łwqGlŃrăwśĘĹšŞ Ě)ÍŐŐTóĂW°4ˇ?ŚOâ§Äꖡ–ř\ż÷.ůÁęc<ýü @Bţ€âňüZ'ŞY÷gŐҟmG—üîă{řSĎ,ˇęĹ+9Zél´~Ł~ńň‚˜F¸fÉáşóÔ&}˛˘-M)a5hąÂ{ +çęŠQ.é –ËA‘ó%ßő-¤›Ć *ZC§kůůYăÎH%†UĆú—;îA%—(yQá/=§÷ŤŁt}#BŁĎnę7P›„[ľ^-’Ł•ÎŚƒÖoëÜÁzU'gęÎӀŃŮ­-ąŒEš?ĽđV°@7­ÉÍĺŽc#]2°$zŮŹ_á:-,ůĎnůĘŹ€îރm Ýěż°]€R ěŽe –üĐFmřĆägoź3~œËčěMłĺ"ţ˙œŽC”?8‡„ţŁÔT¨ĐÄOA'~T:ž.ÔśÂ7„€j-w-‰T:ťâÇśú@ńž>RV˙ĘÉR°ŸkcŤ6ÁŞ°ä6ŕ*ľX{¨h\ßŇhçH“ŸPť€láÎřëäëĚÜŔ Ě΀CĘçŽř1Ë[ŠRiÉg]/ɏd"I H~’”ŢNŻ6Ď°ÉuđxƝväŕóKç>ßK~ÂVŔžw×Ę3ü&a“ÇšF|N€ŰĹ/.NňśöěźG MŞ'œ°nM#ąţˆ{’üě!çŠWęŮ">M­}ů¨2ŹţA˛âźznź *é̸yyewˆśÄ[œĂ^Uo.č ¤%?đý^`Y#öbţšíBŹräóL’Ÿśg§a3!ţ‘BýŤWgI˜ÝOQ'őÇółç*ć\ÓźœţŤţzNsŠěٸáKj­řŠžž]ŮÇŮšůkś AŚägĎj?ůă,Őž¸ÚÍ+ÔňuŻ —°…ÔeWŒ‡ŕťWžĐ€‚č˛Ö¤áĆŰ"żšŽ[żfťĐxőSŻw.ź7@ő݉ó/Ia"ůśę‚lkŇ\ܜCŕˆŔ*ąŚŃÍ+{źóZÓČb|š,S áíÂ+sőś+×"Ǟăťô]Ú6Á0ƒÉäK` B˙1ďř›ť‹ĺš"ϟ4iĚ8WMbW"Ʌú)´äĎ?ÖŻŮ.üŞ’Á'Uş%ÉO`í× <˜’ĎTűŔT$šćˆćšjčŔĐ}Đ}Œâ+_Óčc4Pƒˇt‹íůńcýšíÂŞi#ŘK~bî#ý—{ŻTŠ‡9^˝ÂţCӐŽ._Mkńc\h9{|­âK1oࢊáŢâŕ#bwüpűĎ żš7muá™5§Ä˝˙˘šHŽÍÉ_řý@h­ićkë_Ń,ţFLšÂJâŢ:ž;Łč[`&ěĎčáhZ­¸˙ÚęÂłŔ \ÉĎďWţ˙鎒Ÿ˙Smţ~^$?ż_ć[¸ăšß„EŃ=Ůӕč¨~ I~~ Pţ'Óm€E“(\ŇŚQF)áôRéfşH~~ž˛ŕb>2&p…ä‡O˛CDë֓ägëEú?(řĄŠ9eŃ\ á͈gĆd@ւüąŽśŸœ &2ÓE8Ś*ă´ŇŔ¨´Zô˛öŘuk*Qk˜™$?A%´—ßs~ Š‚ÉîLPNLW˘<˜ŇĘjĽ–Gۏ-çü¤0#ŒNíhjs Ó:fŸŚé“Şá @gţFťéĚšśQŔ ÉOPâ÷bńœ ɗVÍ`#4-]TĽěG9?|ĽH“I˝Rf|]Ţ˙•*zÁ•ćo´uRŤ 4Ľp8-^ʟCćwEšuc­‚C:3-×BÓJ9^ ÍŢá‰L¨)B¸Óźđ_ÁwüĚß Ž SƄŰ&¨t$?A%´—ßó*oé˜&hNž4ëž ů‚U\ěG—ý—ŮDßS*c‘)Ě~§‹ő?Ë+˜żQPՁŢćÓ惓ä'¸Œöđ Ώ …DHÇŞű Ÿyš˛]ňSĆŠ,—Ł–Rüü@ Œg:[…ňdňƒ_%šč%¸6ägé~$küUƒ,J rČŹ{Ł†Ľ~ˆ“ŐŃ%?PwT|ŻhC ^Z8 )ŹBËşđƒćo 4]G×XĆ ­ăŸ$?A%´—ßDŖĄŤ)zŸBoCŸhY1zż:jgžTëńľČҊJçŇŮtĐú ŐôއqŽK~ö’ßy¨Őވąď'ů‰]t‡ĄäçđëđŔs ĺρWŕŽ˙?^ź’Ě YIENDŽB`‚yDĐÉęyůşÎŒ‚ŞKŠ ;http://www.netbeans.org/kb/articles/jAstrologer-intro.htmlŕÉęyůşÎŒ‚ŞKŠ Žhttp://www.netbeans.org/kb/articles/jAstrologer-intro.htmlyXô;HŻ,‚]ą'cĽŤ i8@ń˙8 NormalCJ_HaJmH sH tH <A@ň˙Ą< Default Paragraph Font.U@˘ń.  Hyperlink >*B*ph˙€e@€ HTML Preformatted7 Ć2”(ź Päx  4 Č#\'đ*„.2Ź5@9CJOJQJ^JaJ,@, Header  ĆŕŔ!, ", Footer  ĆŕŔ!&)@˘1&  Page NumberVăB˙˙˙˙HIhAmÎß|}Ÿ[\gŞŤś@ A Ł ¤ ß # $ ž Ÿ Ď Đ â ňŕ]ş`au Š’ “ Ż "/#ą#p$F%ˇ%¸%Ó%ă&Z()×)S*T*o*ł,e-;.ˇ.¸.š.ş.ť.Ő.i/?0ř0ů013K4L4…4™455Ó5á5Ő6é6M7t7¨8Í8k::Á:Â:Ă:˙:;ó<=ł=Ä=[>p>‘>Ş>Q?`?ă?ä?@@@Ś@Ő@í@ÄAŘA2BeBB3C]CÍCňC`DaDˆDŻD E9EžEďEFZFpFâFüFmgm’m§mťmün+oBo¸p‡sĽsäs+u‰vçvvwŐw(x›x;y‚l‚|‚‹‚Š‚Đ‚á‚ƒƒ-ƒKƒvƒ‡ƒˇƒáƒńƒ„„D„U„u„”„É„î„ … …@…W…g…w…•…˝…Î…đ…†E†l†‹† †Ŕ†×†ç†ů†ü†‡2‡a‡ˆ‡›‡§‡˛‡ł‡Ĺ‡ˆˆˆ;ˆCˆFˆMˆWˆbˆ”ˆťˆżˆăˆ‰#‰5‰9‰_‰{‰ ‰˛‰ś‰Ý‰ Š4Š;ŠLŠOŠjŠ“ŠŞŠŤŠĚŠçŠ‹#‹.‹6‹7‹‰‹•‹Ś‹Ă‹Ů‹Ú‹Œ-ŒSŒŒŒ“ŒŤŒÂŒŢŒŕŒńŒ9Iaw•˜šœšĘÍő ŽŽ0ŽDŽGŽvŽ”Ž—ŽŽŽťŽžŽÜŽěŽďŽ DZ^`Áă (+Le}˜›Çäçé‘‘C‘Œ‘Ž‘ä‘ ’U’X’‚’„’Ü’Ţ’“““@“C“o“Ĺ“”V”€”ƒ”…”†”””Ľ”Ś”Ôٔ••••.•L•O•y•Ď•ř•– –2–K–L–\–m–n–Š–§––ؖń–ň– — —+—P—q———ô—T˜°˜ ™n™Ú™HšIšošušžšŇšíš››7›]›c›–›ą›Ô›œœ]œŒœżœçœ  .CMVpšÄď žž1žNžTžUžŠžĽžçžŸTŸ^ŸsŸyŸ~Ÿ´ŸĎŸţŸ@ o — ť É Ó í đ  ĄĄĄCĄ^ĄzĄ{Ą|ĄŽĄśŁĽžĽśĽŚŢ§ß§ŕ§ń§J¨‹¨×¨ŠgŠČŠŞMŞNŞzŞwŤxŤ­­-­@­$ŽŽŽAŻPŻ\Ż]ŻgŻ ° °°ś°ˇ°Ŕ°ąą"ązą{ąƒą×ąŘąÝą˛˛˛%˛Ü˛IłJłŮłčłôłőł´x´y´ˆ´ů´ú´ľSľTľ`ľÚľŰľâľ8ś9śKś|ś}śśŔśÁśŇśˇˇˇ@ˇAˇIˇˇžˇŁˇ ¸ ¸ ¸#¸$¸o¸p¸}¸Á¸$šMš„šŔšÁšÍšÎšđťńťźjźŸźäźžž+žUžŤž3Ę4Ę5ĘQĘżËŔËŘË[Í$Î@Î_Î{ÎÇÎ ĎFĐGĐfĐĂĐ.ŃVŃŇ,ÓĄÓŞÓľÓÔąÔýÔţÔVŘWŘcŘdŘŽŘpŮq٤ŮÉÚĘÚëÚ*ŰIŰhۊŰÓŰóŰ>Ü^ÜżÜâÜFÝGÝnÝúÝ?Ţeŕfŕvŕ›ŕÎŕ3ă4ă5ă6ăSăWă˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜ 0€€˜ 0A€˜ 0€€˜ 0΀˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜ 0€€˜ 0…4€˜ 0€€˜ 0…4€˜ 0€€˜ 0€€˜ 0€€˜ 0€€˜ 0€€˜ 0M7€˜ 0€€˜ 0¨8€˜ 0€€˜ 0k:€˜0€€˜0€€˜0€€˜ 0€€˜ 0˙:€˜ 0€€˜ 0ó<€˜ 0€€˜ 0ó<€˜ 0Ä=€˜ 0Ä=€˜ 0€€˜ 0ó<€˜ 0€€˜ 0ó<€˜0€€˜0€€˜ 0€€˜ 0@€˜ 0€€˜ 0@€˜ 0€€˜ 0Ő@€˜ 0€€˜ 0ÄA€˜ 0ÄA€˜ 0€€˜ 0eB€˜ 0€€˜ 03C€˜ 0€€˜ 0ÍC€˜0€€˜0€€˜ 0€€˜ 0ˆD€˜ 0€€˜ 0 E€˜ 0€€˜ 0€€˜ 0€€˜ 0€€˜ 0ZF€˜ 0€€˜ 0âF€˜ 0€€˜ 0 $ š œ  |S|Ž|VăC˙ŹC˙ŹC˙ŹX˙„!!˙•€˙˙Ejsvrfaces-CHP-1-ITERM-1427jsvrfaces-CHP-6-FIG-1wp123500wp130038wp130040wp130065wp132131wp132133wp132083wp132164wp132107wp132204wp130059wp130054wp127679wp127681wp122224wp122230wp122233wp122235wp122237wp122238wp122242wp122245wp122246wp124024wp122252wp122254wp122256wp122257wp122258wp122264wp122267wp122269wp122275wp122279wp122280wp122284wp122287wp122289wp122294wp122295wp122296wp122297wp122299wp122301wp122310wp129065wp129066wp129067wp122848wp131071wp131072wp131073wp131045wp131085wp131086wp131155wp131166wp131150wp131152wp131027wp123090wp123125wp131113wp131114wp131115wp131116wp123075ŠŞâ â ňŕ]ş`u Š’ ’ Ż ""/#ą#p$F%ˇ%Ó%ă&Z()×)S*S*o*ł,e-;.ˇ.ˇ.Ő.i/?0ř0ř013K4šj”kÔklÎlšmťm@oBo¸pâsäs+u‰vçvvwŐw(x›xWă  !"#$%&'()*+,-./0123456789:;<=>?@ABCDŠŞâ â ňŕ]ş`u Š’ ’ Ż ""/#ą#p$F%ˇ%Ó%ă&Z()×)S*S*o*ł,e-;.ˇ.ˇ.Ő.i/?0ř0ř013K4šj”kÔklÎlşmťmAoBo¸păsäs+u‰vçvvwŐw(x›xWăé|é|5ă6ăGăRăW㏲×Ý4<A ‡ ú ý J z p { Ÿ § â ńňßŕŽ\]šş_atuŸ ¨Š‘ “ Ž Ż €"".#/#°#ą#o$p$E%F%ś%¸%Ň%Ó%â&ă&Y(Z())Ö)×)R*T*n*o*˛,ł,d-e-:.;.ś.ť.Ô.Ő.h/i/>0?0÷0ů01133J4 66Ź9â9AA%B+B&C1CŻDšDyE‚EG—GđGüG¤K­K´KşKńK÷KƒL…L×LŰLMM{M|MŽMĘMŤNŹNˇNźNňN÷NWP`P€PPőPůP‰Q‘QžQżQÉQÔQďQđQŇRÓR=S>SŽSŻSÔSŐSTTpTqTËTĚTDUEUáUâUCVDVŠVŞV%W&WmWnWŤWŹWďWđW7X8X˙XYYY(Y-YsYzYÄYÉYZZiZqZ˝ZÄZČZÉZÔZŮZýZ[§[Š[ţ[ \X\^\ô\ů\M]S]r^€^j_n_ľ_˝_|`‡`Ä`Ď`.a7a[ahaˇaÂabbbbibvb•bŸb&c)coctcżcĹc ddbdkd˙d eôeőe f flfqfŁgŹgîgňg:h>h‚h‡hýhiŮiéięi™jšj•k–kÓkÔkllÍlÎlęlëlül˙l)m,m=mBmfmkm‘m”mŚm§mşmťműnün*o/oAoBoˇp¸p†s‡s¤s§săsäs*u+uˆv‰vćvçvuwvwÔwŐw'x(xšx›x:yžy§yFzOzş{Ć{/}5}…~’~ŠŻ€€<€B€QR\]uv“˜¸ťĘĐŢßďđ‚‚6‚<‚E‚F‚s‚z‚‚‚‚’‚“‚˛‚ł‚Ů‚ß‚č‚邃ƒ#ƒ$ƒ4ƒ5ƒTƒUƒƒ…ƒŽƒƒÄƒÉƒčƒďƒöƒ÷ƒ„„'„(„M„S„\„]„„‡„ „Ž„Ń„Ň„ö„÷„……*…/…I…U…^…e…m…n…~……ž…Ÿ…Ć…Ě…Ő…Ö…ü…††*†M†N†t†u†•†™†Ş†Ż†É†Ő†Ţ†ĺ†ě†ö†˙†‡‡%‡:‡H‡e‡f‡‡™‡ ‡Ľ‡Ť‡°‡ł‡ť‡ˆˆˆ ˆGˆKˆOˆPˆZˆ[ˆeˆfˆ—ˆ˜ˆĂˆÄˆăˆ5ă6ăGăRăWă3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333é|é|5ă6ăGăRăWă˙˙jd,C:\Julek\JAVA\LectureNotes\Java\notesJSF.doc,d~Lfšd˙˙˙˙˙˙˙˙˙ş7‚ŢÔ˛˛˙˙˙˙˙˙˙˙˙X|ť Â)Ô?˙˙˙˙˙˙˙˙˙Ří BŇĚs˙˙˙˙˙˙˙˙˙Œ.‹ vÂfH˙˙˙˙˙˙˙˙˙B*˛bjŮ˙˙˙˙˙˙˙˙˙ÝVěěS˙˙˙˙˙˙˙˙˙ČŘ”ˆO˙˙˙˙˙˙˙˙˙s–ŚfÚ˙˙˙˙˙˙˙˙˙ krn˘o˙˙˙˙˙˙˙˙˙9čjl(Ć˙˙˙˙˙˙˙˙˙*;!WŠ¨˙˙˙˙˙˙˙˙˙cw7(šˆ˙˙˙˙˙˙˙˙˙ N˙)D˘Ž˙˙˙˙˙˙˙˙˙Ň5.3lĘ˙˙˙˙˙˙˙˙˙â4B/D˘Ž˙˙˙˙˙˙˙˙˙Ď4RgZT˙˙˙˙˙˙˙˙˙44b5†Ă_˙˙˙˙˙˙˙˙˙žWî7ź?ú;˙˙˙˙˙˙˙˙˙čZŚ9D˘Ž˙˙˙˙˙˙˙˙˙s˝?Ě& ˙˙˙˙˙˙˙˙˙xlE8ehś˙˙˙˙˙˙˙˙˙ů0G>´HÚ˙˙˙˙˙˙˙˙˙vKHÚÝŹ§˙˙˙˙˙˙˙˙˙äHäfś˙˙˙˙˙˙˙˙˙D*ËI8Ë~˙˙˙˙˙˙˙˙˙¨hŰNprŒÜ˙˙˙˙˙˙˙˙˙˘BĚYÂý Ż˙˙˙˙˙˙˙˙˙Ż|D[Ţv ˙˙˙˙˙˙˙˙˙œ6¤]Nš6^˙˙˙˙˙˙˙˙˙ĺwˇ] "˙˙˙˙˙˙˙˙˙ $sfN°PÔ˙˙˙˙˙˙˙˙˙ÁF i†Ă_˙˙˙˙˙˙˙˙˙ŮU÷jňYÔV˙˙˙˙˙˙˙˙˙˝@újfšd˙˙˙˙˙˙˙˙˙ÚMŠm‚§\ű˙˙˙˙˙˙˙˙˙‡;nş†ÜÎ˙˙˙˙˙˙˙˙˙6N|nˆÜ’Í˙˙˙˙˙˙˙˙˙ŕ!sśn0Œ˙˙˙˙˙˙˙˙˙$6,s¸œĘ˙˙˙˙˙˙˙˙˙čPĎypS N˙˙˙˙˙˙˙˙˙Đ[ĆzňYÔV˙˙˙˙˙˙˙˙˙Ë;~fšd˙˙˙˙˙˙˙˙˙ÜXŐZ¤>Č˙˙˙˙˙˙˙˙˙8!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHo8„ „˜ţĆ ^„ `„˜ţOJQJ^Jo(‡hˆHo8„p„˜ţĆp^„p`„˜ţOJQJo(‡hˆH§đ8„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđ8„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo8„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đ8„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđ8„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHo8„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đh„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJo(‡hˆHˇđh!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHoh„p„˜ţĆp^„p`„˜ţOJQJo(‡hˆH§đh„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đh„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđh„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHoh„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ„Đ„˜ţĆĐ^„Đ`„˜ţ.€„ „˜ţĆ ^„ `„˜ţ.€„p„˜ţĆp^„p`„˜ţ.€„@ „˜ţĆ@ ^„@ `„˜ţ.€„„˜ţĆ^„`„˜ţ.€„ŕ„˜ţĆŕ^„ŕ`„˜ţ.€„°„˜ţĆ°^„°`„˜ţ.€„€„˜ţĆ€^„€`„˜ţ.€„P„˜ţĆP^„P`„˜ţ.h„„˜ţĆ^„`„˜ţCJOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţCJOJQJ^Jo(‡hˆHoh„¨ „˜ţƨ ^„¨ `„˜ţOJQJo(‡hˆH§đh„x„˜ţĆx^„x`„˜ţOJQJo(‡hˆHˇđh„H„˜ţĆH^„H`„˜ţOJQJ^Jo(‡hˆHoh„„˜ţĆ^„`„˜ţOJQJo(‡hˆH§đh„č„˜ţĆč^„č`„˜ţOJQJo(‡hˆHˇđh„¸„˜ţƸ^„¸`„˜ţOJQJ^Jo(‡hˆHoh„ˆ„˜ţĆˆ^„ˆ`„˜ţOJQJo(‡hˆH§đ8„8„˜ţĆ8^„8`„˜ţCJOJQJo(‡hˆHo8„8„˜ţĆ8^„8`„˜ţOJQJ^Jo(‡hˆHo8„„˜ţĆ^„`„˜ţOJQJo(‡hˆH§đ8„Ř „˜ţĆŘ ^„Ř `„˜ţOJQJo(‡hˆHˇđ8„¨ „˜ţƨ ^„¨ `„˜ţOJQJ^Jo(‡hˆHo8„x„˜ţĆx^„x`„˜ţOJQJo(‡hˆH§đ8„H„˜ţĆH^„H`„˜ţOJQJo(‡hˆHˇđ8„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo8„č„˜ţĆč^„č`„˜ţOJQJo(‡hˆH§đ8!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHo8„ „˜ţĆ ^„ `„˜ţOJQJ^Jo(‡hˆHo8„p„˜ţĆp^„p`„˜ţCJOJQJaJo(‡hˆHˇđ8„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđ8„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo8„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đ8„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđ8„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHo8„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đh„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJaJo(‡hˆHˇđh!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHoh„p„˜ţĆp^„p`„˜ţCJOJQJaJo(‡hˆHˇđh„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đh„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđh„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHoh„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJo(ˇđ„ „˜ţĆ ^„ `„˜ţCJOJQJo(o€„p„˜ţĆp^„p`„˜ţCJOJQJo(§đ€„@ „˜ţĆ@ ^„@ `„˜ţCJOJQJo(§đ€„„˜ţĆ^„`„˜ţCJOJQJo(§đ€„ŕ„˜ţĆŕ^„ŕ`„˜ţCJOJQJo(§đ€„°„˜ţĆ°^„°`„˜ţCJOJQJo(§đ€„€„˜ţĆ€^„€`„˜ţCJOJQJo(§đ€„P„˜ţĆP^„P`„˜ţCJOJQJo(§đ8!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHo8„ „˜ţĆ ^„ `„˜ţOJQJ^Jo(‡hˆHo8„p„˜ţĆp^„p`„˜ţCJOJQJaJo(‡hˆHˇđ8„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđ8„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo8„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đ8„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđ8„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHo8„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ8!„8„˜ţĆ8^„8`„˜ţCJOJQJ^JaJo(‡hˆHo8„Ř „˜ţĆŘ ^„Ř `„˜ţCJOJQJ^Jo(‡hˆHo8„@ „˜ţĆ@ ^„@ `„˜ţCJOJQJo(‡hˆHˇđ8„¨ „˜ţƨ ^„¨ `„˜ţOJQJo(‡hˆHˇđ8„x„˜ţĆx^„x`„˜ţOJQJ^Jo(‡hˆHo8„H„˜ţĆH^„H`„˜ţOJQJo(‡hˆH§đ8„„˜ţĆ^„`„˜ţOJQJo(‡hˆHˇđ8„č„˜ţĆč^„č`„˜ţOJQJ^Jo(‡hˆHo8„¸„˜ţƸ^„¸`„˜ţOJQJo(‡hˆH§đh „Đ„˜ţĆĐ^„Đ`„˜ţo(‡hˆH)h„ „˜ţĆ ^„ `„˜ţOJQJo(‡hˆH§đ„$ „˜ţĆ$ ^„$ `„˜ţo(.„@ „˜ţĆ@ ^„@ `„˜ţo()€ „„˜ţĆ^„`„˜ţ‡hˆH.‚ „ŕ„L˙Ćŕ^„ŕ`„L˙‡hˆH.€ „°„˜ţĆ°^„°`„˜ţ‡hˆH.€ „€„˜ţĆ€^„€`„˜ţ‡hˆH.‚ „P„L˙ĆP^„P`„L˙‡hˆH.„Đ„˜ţĆĐ^„Đ`„˜ţ5o()€ „ „˜ţĆ ^„ `„˜ţ‡hˆH.‚ „p„L˙Ćp^„p`„L˙‡hˆH.€ „@ „˜ţĆ@ ^„@ `„˜ţ‡hˆH.€ „„˜ţĆ^„`„˜ţ‡hˆH.‚ „ŕ„L˙Ćŕ^„ŕ`„L˙‡hˆH.€ „°„˜ţĆ°^„°`„˜ţ‡hˆH.€ „€„˜ţĆ€^„€`„˜ţ‡hˆH.‚ „P„L˙ĆP^„P`„L˙‡hˆH.h„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJo(‡hˆHˇđh!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHoh„p„˜ţĆp^„p`„˜ţCJOJQJo(‡hˆH§đh„@ „˜ţĆ@ ^„@ `„˜ţCJOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đh„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđh„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHoh„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ„Đ„˜ţĆĐ^„Đ`„˜ţ.„ „˜ţĆ ^„ `„˜ţ.„p„˜ţĆp^„p`„˜ţ.„@ „˜ţĆ@ ^„@ `„˜ţ.„„˜ţĆ^„`„˜ţ.„ŕ„˜ţĆŕ^„ŕ`„˜ţ.„°„˜ţĆ°^„°`„˜ţ.„€„˜ţĆ€^„€`„˜ţ.„P„˜ţĆP^„P`„˜ţ.h„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJaJo(‡hˆHˇđh„ „˜ţĆ ^„ `„˜ţCJOJQJaJo(‡hˆHˇđh„p„˜ţĆp^„p`„˜ţOJQJo(‡hˆH§đh„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đh„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđh„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHoh„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ„Đ„˜ţĆĐ^„Đ`„˜ţ.€„ „˜ţĆ ^„ `„˜ţ.€„p„˜ţĆp^„p`„˜ţ.€„@ „˜ţĆ@ ^„@ `„˜ţ.€„„˜ţĆ^„`„˜ţ.€„ŕ„˜ţĆŕ^„ŕ`„˜ţ.€„°„˜ţĆ°^„°`„˜ţ.€„€„˜ţĆ€^„€`„˜ţ.€„P„˜ţĆP^„P`„˜ţ.h!„8„˜ţĆ8^„8`„˜ţCJOJQJ^JaJo(‡hˆHoh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„Ř „˜ţĆŘ ^„Ř `„˜ţOJQJo(‡hˆH§đh„¨ „˜ţƨ ^„¨ `„˜ţOJQJo(‡hˆHˇđh„x„˜ţĆx^„x`„˜ţOJQJ^Jo(‡hˆHoh„H„˜ţĆH^„H`„˜ţOJQJo(‡hˆH§đh„„˜ţĆ^„`„˜ţOJQJo(‡hˆHˇđh„č„˜ţĆč^„č`„˜ţOJQJ^Jo(‡hˆHoh„¸„˜ţƸ^„¸`„˜ţOJQJo(‡hˆH§đ „„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo „ „˜ţĆ ^„ `„˜ţOJQJ^Jo(‡hˆHo „p„˜ţĆp^„p`„˜ţOJQJo(‡hˆH§đ „@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđ „„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo „ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đ „°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđ „€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHo „P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đh„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJo(‡hˆHˇđh!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHoh„p„˜ţĆp^„p`„˜ţCJOJQJo(‡hˆH§đh„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đh„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđh„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHoh„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ„Đ„˜ţĆĐ^„Đ`„˜ţ.€„ „˜ţĆ ^„ `„˜ţ.€„p„˜ţĆp^„p`„˜ţ.€„@ „˜ţĆ@ ^„@ `„˜ţ.€„„˜ţĆ^„`„˜ţ.€„ŕ„˜ţĆŕ^„ŕ`„˜ţ.€„°„˜ţĆ°^„°`„˜ţ.€„€„˜ţĆ€^„€`„˜ţ.€„P„˜ţĆP^„P`„˜ţ.8!„8„˜ţĆ8^„8`„˜ţCJOJQJ^JaJo(‡hˆHo8„8„˜ţĆ8^„8`„˜ţOJQJ^Jo(‡hˆHo8„„˜ţĆ^„`„˜ţOJQJo(‡hˆH§đ8„Ř „˜ţĆŘ ^„Ř `„˜ţOJQJo(‡hˆHˇđ8„¨ „˜ţƨ ^„¨ `„˜ţOJQJ^Jo(‡hˆHo8„x„˜ţĆx^„x`„˜ţOJQJo(‡hˆH§đ8„H„˜ţĆH^„H`„˜ţOJQJo(‡hˆHˇđ8„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo8„č„˜ţĆč^„č`„˜ţOJQJo(‡hˆH§đ8„8„˜ţĆ8^„8`„˜ţCJOJQJo(‡hˆHo8„8„˜ţĆ8^„8`„˜ţOJQJ^Jo(‡hˆHo8„p„˜ţĆp^„p`„˜ţCJOJQJo(‡hˆHˇđ8„Ř „˜ţĆŘ ^„Ř `„˜ţOJQJo(‡hˆHˇđ8„¨ „˜ţƨ ^„¨ `„˜ţOJQJ^Jo(‡hˆHo8„x„˜ţĆx^„x`„˜ţOJQJo(‡hˆH§đ8„H„˜ţĆH^„H`„˜ţOJQJo(‡hˆHˇđ8„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo8„č„˜ţĆč^„č`„˜ţOJQJo(‡hˆH§đh„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJo(‡hˆHˇđh„ „˜ţĆ ^„ `„˜ţOJQJo(‡hˆH§đ„$ „˜ţĆ$ ^„$ `„˜ţo(.„@ „˜ţĆ@ ^„@ `„˜ţo()€ „„˜ţĆ^„`„˜ţ‡hˆH.‚ „ŕ„L˙Ćŕ^„ŕ`„L˙‡hˆH.€ „°„˜ţĆ°^„°`„˜ţ‡hˆH.€ „€„˜ţĆ€^„€`„˜ţ‡hˆH.‚ „P„L˙ĆP^„P`„L˙‡hˆH.Đ„8„˜ţĆ8^„8`„˜ţo() „„˜ţĆ^„`„˜ţ‡hˆH.‚ „Ř „L˙ĆŘ ^„Ř `„L˙‡hˆH.€ „¨ „˜ţƨ ^„¨ `„˜ţ‡hˆH.€ „x„˜ţĆx^„x`„˜ţ‡hˆH.‚ „H„L˙ĆH^„H`„L˙‡hˆH.€ „„˜ţĆ^„`„˜ţ‡hˆH.€ „č„˜ţĆč^„č`„˜ţ‡hˆH.‚ „¸„L˙Ƹ^„¸`„L˙‡hˆH.h!„8„˜ţĆ8^„8`„˜ţCJOJQJ^JaJo(‡hˆHoh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„p„˜ţĆp^„p`„˜ţCJOJQJaJo(‡hˆH§đh„¨ „˜ţƨ ^„¨ `„˜ţOJQJo(‡hˆHˇđh„x„˜ţĆx^„x`„˜ţOJQJ^Jo(‡hˆHoh„H„˜ţĆH^„H`„˜ţOJQJo(‡hˆH§đh„„˜ţĆ^„`„˜ţOJQJo(‡hˆHˇđh„č„˜ţĆč^„č`„˜ţOJQJ^Jo(‡hˆHoh„¸„˜ţƸ^„¸`„˜ţOJQJo(‡hˆH§đ8„„˜ţĆ^„`„˜ţCJOJQJo(‡hˆHo8„„˜ţĆ^„`„˜ţCJOJQJ^Jo(‡hˆHo8„p„˜ţĆp^„p`„˜ţCJOJQJo(‡hˆHˇđ8„¨ „˜ţƨ ^„¨ `„˜ţOJQJo(‡hˆHˇđ8„x„˜ţĆx^„x`„˜ţOJQJ^Jo(‡hˆHo8„H„˜ţĆH^„H`„˜ţOJQJo(‡hˆH§đ8„„˜ţĆ^„`„˜ţOJQJo(‡hˆHˇđ8„č„˜ţĆč^„č`„˜ţOJQJ^Jo(‡hˆHo8„¸„˜ţƸ^„¸`„˜ţOJQJo(‡hˆH§đ8„„˜ţĆ^„`„˜ţCJOJQJo(‡hˆHo8„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo8„Ř „˜ţĆŘ ^„Ř `„˜ţOJQJo(‡hˆH§đ8„¨ „˜ţƨ ^„¨ `„˜ţOJQJo(‡hˆHˇđ8„x„˜ţĆx^„x`„˜ţOJQJ^Jo(‡hˆHo8„H„˜ţĆH^„H`„˜ţOJQJo(‡hˆH§đ8„„˜ţĆ^„`„˜ţOJQJo(‡hˆHˇđ8„č„˜ţĆč^„č`„˜ţOJQJ^Jo(‡hˆHo8„¸„˜ţƸ^„¸`„˜ţOJQJo(‡hˆH§đh„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJaJo(‡hˆHˇđh!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHoh„p„˜ţĆp^„p`„˜ţOJQJo(‡hˆH§đh„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đh„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđh„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHoh„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJo(ˇđ€„ „˜ţĆ ^„ `„˜ţCJOJQJo(o€„p„˜ţĆp^„p`„˜ţCJOJQJo(§đ€„@ „˜ţĆ@ ^„@ `„˜ţCJOJQJo(§đ€„„˜ţĆ^„`„˜ţCJOJQJo(§đ€„ŕ„˜ţĆŕ^„ŕ`„˜ţCJOJQJo(§đ€„°„˜ţĆ°^„°`„˜ţCJOJQJo(§đ€„€„˜ţĆ€^„€`„˜ţCJOJQJo(§đ€„P„˜ţĆP^„P`„˜ţCJOJQJo(§đh„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJaJo(‡hˆHˇđh„ „˜ţĆ ^„ `„˜ţCJOJQJaJo(‡hˆHoh„p„˜ţĆp^„p`„˜ţCJOJQJaJo(‡hˆHˇđh„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đh„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđh„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHoh„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đh„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJo(‡hˆHˇđh!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHoh„p„˜ţĆp^„p`„˜ţCJOJQJo(‡hˆHˇđh„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đh„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđh„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHoh„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ !„8„˜ţĆ8^„8`„˜ţCJOJQJ^JaJo(‡hˆHo „ „˜ţĆ ^„ `„˜ţOJQJ^Jo(‡hˆHo „p„˜ţĆp^„p`„˜ţOJQJo(‡hˆH§đ „@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđ „„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo „ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đ „°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđ „€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHo „P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ „„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo „ „˜ţĆ ^„ `„˜ţOJQJ^Jo(‡hˆHo „p„˜ţĆp^„p`„˜ţOJQJo(‡hˆH§đ „@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđ „„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo „ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đ „°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđ „€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHo „P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đh„„˜ţĆ^„`„˜ţCJOJQJo(‡hˆHˇđh„Ř „˜ţĆŘ ^„Ř `„˜ţOJQJ^Jo(‡hˆHoh„¨ „˜ţƨ ^„¨ `„˜ţOJQJo(‡hˆH§đh„x„˜ţĆx^„x`„˜ţOJQJo(‡hˆHˇđh„H„˜ţĆH^„H`„˜ţOJQJ^Jo(‡hˆHoh„„˜ţĆ^„`„˜ţOJQJo(‡hˆH§đh„č„˜ţĆč^„č`„˜ţOJQJo(‡hˆHˇđh„¸„˜ţƸ^„¸`„˜ţOJQJ^Jo(‡hˆHoh„ˆ„˜ţĆˆ^„ˆ`„˜ţOJQJo(‡hˆH§đ8!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHo8„ „˜ţĆ ^„ `„˜ţOJQJ^Jo(‡hˆHo8„p„˜ţĆp^„p`„˜ţOJQJo(‡hˆH§đ8„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđ8„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo8„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đ8„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđ8„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHo8„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ8!„8„˜ţĆ8^„8`„˜ţCJOJQJ^JaJo(‡hˆHo8„Ř „˜ţĆŘ ^„Ř `„˜ţCJOJQJ^Jo(‡hˆHo8„p„˜ţĆp^„p`„˜ţCJOJQJaJo(‡hˆHˇđ8„¨ „˜ţƨ ^„¨ `„˜ţOJQJo(‡hˆHˇđ8„x„˜ţĆx^„x`„˜ţOJQJ^Jo(‡hˆHo8„H„˜ţĆH^„H`„˜ţOJQJo(‡hˆH§đ8„„˜ţĆ^„`„˜ţOJQJo(‡hˆHˇđ8„č„˜ţĆč^„č`„˜ţOJQJ^Jo(‡hˆHo8„¸„˜ţƸ^„¸`„˜ţOJQJo(‡hˆH§đh„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJo(‡hˆHˇđh„ „˜ţĆ ^„ `„˜ţCJOJQJ^Jo(‡hˆHoh„p„˜ţĆp^„p`„˜ţCJOJQJo(‡hˆHˇđh„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đh„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđh„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHoh„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ„Đ„˜ţĆĐ^„Đ`„˜ţ.€„ „˜ţĆ ^„ `„˜ţ.€„p„˜ţĆp^„p`„˜ţ.€„@ „˜ţĆ@ ^„@ `„˜ţ.€„„˜ţĆ^„`„˜ţ.€„ŕ„˜ţĆŕ^„ŕ`„˜ţ.€„°„˜ţĆ°^„°`„˜ţ.€„€„˜ţĆ€^„€`„˜ţ.€„P„˜ţĆP^„P`„˜ţ.h„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJaJo(‡hˆHˇđh!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHoh„p„˜ţĆp^„p`„˜ţCJOJQJaJo(‡hˆHˇđh„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đh„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđh„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHoh„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ8!„Ü„˜ţĆÜ^„Ü`„˜ţCJOJQJ^JaJo(‡hˆHo8„Ü„˜ţĆÜ^„Ü`„˜ţOJQJ^Jo(‡hˆHo8„Ź„˜ţĆŹ^„Ź`„˜ţOJQJo(‡hˆH§đ8„| „˜ţĆ| ^„| `„˜ţOJQJo(‡hˆHˇđ8„L„˜ţĆL^„L`„˜ţOJQJ^Jo(‡hˆHo8„„˜ţĆ^„`„˜ţOJQJo(‡hˆH§đ8„ě„˜ţĆě^„ě`„˜ţOJQJo(‡hˆHˇđ8„ź„˜ţĆź^„ź`„˜ţOJQJ^Jo(‡hˆHo8„Œ„˜ţĆŒ^„Œ`„˜ţOJQJo(‡hˆH§đ„Đ„˜ţĆĐ^„Đ`„˜ţ.„ „˜ţĆ ^„ `„˜ţo(.„p„˜ţĆp^„p`„˜ţ.„@ „˜ţĆ@ ^„@ `„˜ţ.„„˜ţĆ^„`„˜ţ.„ŕ„˜ţĆŕ^„ŕ`„˜ţ.€„°„˜ţĆ°^„°`„˜ţ.€„€„˜ţĆ€^„€`„˜ţ.€„P„˜ţĆP^„P`„˜ţ.h„„˜ţĆ^„`„˜ţCJOJQJo(‡hˆHˇđh„Ř „˜ţĆŘ ^„Ř `„˜ţOJQJ^Jo(‡hˆHoh„¨ „˜ţƨ ^„¨ `„˜ţOJQJo(‡hˆH§đh„x„˜ţĆx^„x`„˜ţOJQJo(‡hˆHˇđh„H„˜ţĆH^„H`„˜ţOJQJ^Jo(‡hˆHoh„„˜ţĆ^„`„˜ţOJQJo(‡hˆH§đh„č„˜ţĆč^„č`„˜ţOJQJo(‡hˆHˇđh„¸„˜ţƸ^„¸`„˜ţOJQJ^Jo(‡hˆHoh„ˆ„˜ţĆˆ^„ˆ`„˜ţOJQJo(‡hˆH§đ8!„ „˜ţĆ ^„ `„˜ţCJOJQJ^JaJo(‡hˆHo8„ „˜ţĆ ^„ `„˜ţOJQJ^Jo(‡hˆHo8„p„˜ţĆp^„p`„˜ţOJQJo(‡hˆH§đ8„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđ8„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHo8„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đ8„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđ8„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHo8„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đh„Đ„˜ţĆĐ^„Đ`„˜ţCJOJQJo(‡hˆHˇđh„ „˜ţĆ ^„ `„˜ţCJOJQJ^Jo(‡hˆHoh„p„˜ţĆp^„p`„˜ţCJOJQJo(‡hˆHˇđh„@ „˜ţĆ@ ^„@ `„˜ţOJQJo(‡hˆHˇđh„„˜ţĆ^„`„˜ţOJQJ^Jo(‡hˆHoh„ŕ„˜ţĆŕ^„ŕ`„˜ţOJQJo(‡hˆH§đh„°„˜ţĆ°^„°`„˜ţOJQJo(‡hˆHˇđh„€„˜ţĆ€^„€`„˜ţOJQJ^Jo(‡hˆHoh„P„˜ţĆP^„P`„˜ţOJQJo(‡hˆH§đ,ČŘŕ!sŇ5.ÝV˘BĚYœ6¤]cw7(ş7‚‡;nÜXŐĺwˇ]žWî7s˝?Ď4äH9č¨hŰND*ËIŒ.‹ xlE krÚMŠmŮU÷jĐ[ĆzŘí ÁF i44b5 $sf$6,s˝@újË;~s–d~LB*Ż|D[6N|nčPĎyčZŚ9 N˙)X|ť â4B/*;!vKHů0G˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙,˙˙,ś÷Üb>ě<ĺ       ś÷Üb        FÔ1        ÷ˆ ś÷Üb       .Tś        ÷ˆ ś÷Üb      ÷ˆ ś÷Üb        SfX2lu              ś÷Üb+ćC ś÷Üb     ŕIˆ€        ÷ˆ        ś÷Üb÷ˆ       ÷ˆ        FÔ1 ś÷Üb      ś÷Üb SfX2lu     ĐĘ %        ÷ˆ        FÔ1 ś÷Üb      FÔ1        ś÷Üb˜Œ˙       ś÷ÜbFÔ1ś÷Üb      ś÷Üb÷ˆś÷Üb      ÷ˆ                 ś÷Üb        ÷ˆ        ÷ˆ ś÷Üb      ś÷Üb ś÷Üb      rĺPA        ÷ˆ        ś÷Üb ś÷Üb      AŻPŻ\Ż]ŻgŻ ° °°ś°ˇ°Ŕ°ąą"ązą{ąƒą×ąŘąÝą˛˛Ůłčłôłőł´x´y´ˆ´ů´ú´ľSľTľ`ľÚľŰľâľ8ś9śKś|ś}śśŔśÁśŇśˇˇˇ@ˇAˇIˇˇžˇŁˇ ¸ ¸Wăžžžžžž–žžžžžžžžžžž–˙@€KÉVăp@˙˙Unknown˙˙˙˙˙˙˙˙˙˙˙˙G‡z €˙Times New Roman5€Symbol3& ‡z €˙Arial;€Wingdings?5 ‡z €˙Courier New"1ˆđĐhŠ´FŠ´FŢ Yť_é!MÁbœ!đ ´´0ć6㎡3ƒQđHX˙˙Introducing JavaServer Facesrajujdţ˙ŕ…ŸňůOhŤ‘+'łŮ0€˜ŔĚÜčô   < H T`hpxäIntroducing JavaServer FacesMintrrajuducajuaju Normal.dot jdm2mMicrosoft Word 9.0v@FĂ#@”ě€Ç@”ě€ÇŢ Yťţ˙ŐÍ՜.“—+,ůŽDŐÍ՜.“—+,ůŽX hpŒ”œ¤ Ź´źÄ Ě őäIndiana University_ćí Introducing JavaServer Faces TitleP 8@ _PID_HLINKSäAh` ;http://www.netbeans.org/kb/articles/jAstrologer-intro.html = Fgetfile?item=MG1yNWFkY3MwL2c2OWl0cHM5SmYvZTAvMy81aTNnLl9nc2ZpMTYwMGY-mv›mvc$njsfIntro-lifecycle  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ąţ˙˙˙Ł¤ĽŚ§¨ŠŞŤŹ­ŽŻ°ą˛ł´ľśˇ¸šşťź˝žżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙˙˙˙      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstţ˙˙˙vwxyz{|ţ˙˙˙~€‚ƒ„ţ˙˙˙ý˙˙˙ý˙˙˙ý˙˙˙ý˙˙˙Šţ˙˙˙ţ˙˙˙ţ˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙Root Entry˙˙˙˙˙˙˙˙ ŔF`M+ě€ÇŒ€Data ˙˙˙˙˙˙˙˙˙˙˙˙˘úś1Table˙˙˙˙˙˙˙˙ţEěWordDocument˙˙˙˙"BSummaryInformation(˙˙˙˙˙˙˙˙˙˙˙˙uDocumentSummaryInformation8˙˙˙˙˙˙˙˙}CompObj˙˙˙˙jObjectPool˙˙˙˙˙˙˙˙˙˙˙˙`M+ě€Ç`M+ě€Çţ˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙ţ˙ ˙˙˙˙ ŔFMicrosoft Word Document MSWordDocWord.Document.8ô9˛q