docs.oasis-open.org/odata/odata-atom-format/v4.0/cs01/odata-atom-format-v4.0-cs01.doc

Preview meta tags from the docs.oasis-open.org website.

  • General Meta Tags

    2
    • title
      <summary /> <updated>2012-03-30T07:11:05Z</updated> <author> <name /> </author> <link rel="edit" title="Customer" href="Customers('ALFKI')" /> <link rel="http://docs.oasis-open.org/odata/ns/related/Orders" type="application/atom+xml;type=feed" title="Orders" href="Customers('ALFKI')/Orders" /> <link rel="http://docs.oasis-open.org/odata/ns/related/Supplier" type="application/atom+xml;type=entry" title="Supplier" href="Customers('ALFKI')/Supplier" /> <category term="ODataDemo.Customer" scheme="http://docs.oasis-open.org/odata/ns/scheme" /> <content type="application/xml"> <metadata:properties> <data:ID>ALFKI</data:ID> <data:CompanyName>Alfreds Futterkiste</data:CompanyName> <data:ContactName>Maria Anders</data:ContactName> <data:ContactTitle>Sales Representative</data:ContactTitle> <data:Phone>030-0074321</data:Phone> <data:Fax>030-0076545</data:Fax> <data:Address> <data:Street>Obere Str. 57</data:Street> <data:City>Berlin</data:City> <data:Region metadata:null="true" /> <data:PostalCode>D-12209</data:PostalCode> <link rel="http://docs.oasis-open.org/odata/ns/related/Country" type="application/atom+xml;type=entry" title="Country of residence" href="Customers('ALFKI')/Address/Country" /> </data:Address> </metadata:properties> </content> </entry> This section defines the elements and attributes within an atom:entry element that are assigned meaning in OData. Element atom:entry An atom:entry element is used to represent a single OData entity, which is an instance of a structured type with an identity. Services can advertise the values of the atom:title, atom:summary, atom:published, and atom:updated child elements of an atom:entry element by annotating their OData entity types with the Atom.Title, Atom.Summary, Atom.Published, and Atom.Updated terms defined in  REF ODataVocAtom \h \* MERGEFORMAT [OData-VocAtom]. Attribute metadata:etag The atom:entry element MAY contain a metadata:etag attribute, representing an opaque string value that can be used in a subsequent request to determine if the value of the entity has changed. For details on how ETags are used, see to  REF ODataProtocol \h [OData-Protocol]. Attribute metadata:context If the root of the response is an  HYPERLINK \l "_Element_atom:entry" atom:entry element, or the entity set cannot be determined from the  HYPERLINK \l "_Attribute_metadata:metadata_1" context URL of the feed, the atom:entry element MUST have a metadata:context attribute, defined in the  HYPERLINK \l "_OData_Metadata_Namespace"  HYPERLINK \l "ODataMetadataNamespace" OData Metadata namespace, whose value is the context URL that describes the entity represented by the atom:entry. This URL MAY be absolute or relative to the context URL of the feed. For more information on the context URL, see  REF ODataProtocol \h [OData-Protocol]. Attribute metadata:metadata-etag If the root of the response is an atom:entry element, it MAY have a metadata:metadata-etag attribute to specify an ETag that can be used to determine the current version of the service's metadata document. For details on how ETags are used, see  REF ODataProtocol \h [OData-Protocol]. Element atom:id The atom:id element MUST contain the entity-id; see  REF ODataProtocol \h [OData-Protocol]. By convention the entity-id is identical to the canonical URL of the entity, as defined in  REF ODataURL \h [OData-URL]. If the entity is transient (i.e. cannot be read or updated), the atom:id SHOULD follow the pattern odata:transient:{some-generated-unique-identifier-to-not-break-atom-parsers}. Clients MAY assume that an entity with an atom:id that matches the transient pattern cannot be compared to other entities, reread, or updated. Element atom:category An OData entry MUST contain a single atom:category element with a scheme attribute equal to http://docs.oasis-open.org/odata/ns/scheme to identify the entity type of the entry. An atom:category element describing an OData entity type MUST have a term attribute whose value is the namespace-qualified or alias-qualified name of the entity type of the entry, in which case the type MUST be defined in the metadata document indicated by the current context URL, otherwise it MUST be a full URL to a metadata document with the namespace-qualified name of the instance�s type appended as a URL fragment. Example  SEQ Example \* ARABIC 6: entity of type Model.VipCustomer defined in the metadata document of the same service <category rel="http://docs.oasis-open.org/odata/ns/scheme" term="Model.VipCustomer"/> Example  SEQ Example \* ARABIC 7: entity of type Model.VipCustomer defined in the metadata document of a different service <category rel="http://docs.oasis-open.org/odata/ns/scheme" term="http://host/alternate/$metadata#Model.VipCustomer"/> For more information on namespace-qualified and alias-qualified names, see  REF ODataCSDL \h [OData-CSDL]. The entry MAY contain additional atom:category elements with different scheme values; such atom:category elements have no semantic meaning in OData. Element atom:link Atom defines two types of links within an entry that represent retrieve or update/delete operations on the entry: atom:link elements with a rel attribute of self can be used to retrieve the entity (via the URL specified in the href attribute). atom:link elements with a rel attribute of edit can be used to retrieve, update, or delete the entity (via the URL specified in the href attribute). An  HYPERLINK \l "_Element_atom:entry" atom:entry element representing an OData entity MUST contain an edit link if and only if the entity is updatable. It MUST contain a self link if and only if the entity is read-only or the read link is different from the edit link. Transient entities contain neither a self link nor an edit link. Clients MAY use the edit link to retrieve the entity if no self link is present. They SHOULD NOT attempt to update an entity that does not contain an edit link. Element atom:content The atom:content element contains the properties of the entity as a  HYPERLINK \l "metadataProperties" metadata:properties element unless the entity is a  HYPERLINK \l "_Media_Entity" media entity. Structural Property Primitive Value OData Atom and XML payloads represent values of primitive types following the rules of  REF ODataABNF \h [OData-ABNF]. Geography and Geometry values are represented as defined in  REF GML \h [GML]. Values of the other primitive types are represented according to the xxxValue rules, i.e. Edm.Binary as binaryValue etc. Example  SEQ Example \* ARABIC 8: <metadata:properties> <data:NullValue metadata:null="true"/> <data:TrueValue metadata:type="Boolean">true</data:TrueValue> <data:FalseValue metadata:type="Boolean">false</data:FalseValue> <data:IntegerValue metadata:type="SByte">-128</data:IntegerValue> <data:DoubleValue metadata:type="Double" >3.1415926535897931</data:DoubleValue> <data:SingleValue metadata:type="Single">INF</data:SingleValue> <data:DecimalValue metadata:type="Decimal">34.95</data:DecimalValue> <data:StringValue>Say "Hello", then go!</data:StringValue> <data:DateValue metadata:type="Date">2012-12-03</data:DateValue> <data:DateTimeOffsetValue metadata:type="DateTimeOffset" >2012-12-03T07:16:23Z</data:DateTimeOffsetValue> <data:DurationValue metadata:type="Duration" >P12DT23H59M59.999999999999S</data:DurationValue> <data:TimeOfDayValue metadata:type="TimeOfDay" >07:59:59.999</data:TimeOfDayValue> <data:GuidValue metadata:type="Guid" >01234567-89ab-cdef-0123-456789abcdef</data:GuidValue> <data:Int64Value metadata:type="Int64">0</data:Int64Value> <data:ColorEnumValue metadata:type="#org.example.Pattern" >Yellow</data:ColorEnumValue> <data:GeographyPoint metadata:type="GeographyPoint"> <gml:Point> <gml:pos>64.1 142.1</gml:pos> </gml:Point> </data:GeographyPoint> </metadata:properties> Note that the line break in the body of StringValue is intentional, it represents a line break. Element metadata:properties The metadata:properties element represents property values for an entity. Element data:[PropertyName] Within the metadata:properties element, individual entity properties are represented as elements where the name of the element is the name of the entity property within the  HYPERLINK \l "ODataDataNamespace" OData Data Namespace. The data:[PropertyName] element MAY include a  HYPERLINK \l "_Attribute_metadata:type" metadata:type attribute to specify the type of the primitive- or complex-typed instance. Example  SEQ Example \* ARABIC 9: <data:Rating metadata:type="Int32">4</data:Rating> The data:[PropertyName] element MAY include a  HYPERLINK \l "_Attribute_metadata:null" metadata:null attribute to specify that the primitive- or complex-typed instance has the null value. Example  SEQ Example \* ARABIC 10: <data:Rating metadata:null="true"/> Attribute metadata:type If the type of the property is anything other than Edm.String, the property representation MUST contain a metadata:type attribute to specify the URI that identifies the type of the property. For built-in primitive types the value is the unqualified name of the primitive type. For all other types, the URI may be absolute or relative to the URI of the containing type. The root metadata:type may be absolute or relative to the root  HYPERLINK \l "_Attribute_metadata:metadata_context" context URL. For non-built in primitive types, the URI contains the namespace-qualified or alias-qualified type, specified as a URI fragment. For properties that represent a collection of values, the fragment is the namespace-qualified or alias-qualified element type prefixed with Collection and enclosed in parentheses. Example  SEQ Example \* ARABIC 11: <data:Age metadata:type="Int32">25</data:Age> Attribute metadata:null Null-valued properties are represented as empty elements with the metadata:null="true" attribute. The metadata:null attribute distinguishes null values from other empty content (such as an empty string). Example  SEQ Example \* ARABIC 12: <data:Apartment metadata:null="true"/> The absence of the metadata:null attribute is equivalent to specifying metadata:null="false". Primitive and Enumeration Property For primitive properties, the content of the  HYPERLINK \l "_Element_data:[PropertyName]" data:[PropertyName] element represents the value of the property following the syntax for  HYPERLINK \l "_Primitive_Value" primitive values. Example  SEQ Example \* ARABIC 13: string value <data:Title>CEO</data:Title> Example  SEQ Example \* ARABIC 14: enumeration value <data:Pattern metadata:type="#org.example.Pattern">Solid,Yellow</data:Pattern> Complex Property For complex properties, the content of the  HYPERLINK \l "_Element_data:[PropertyName]" data:[PropertyName] element consists of nested data:[PropertyName] elements describing the properties of the complex type. Example  SEQ Example \* ARABIC 15: <data:ShipTo metadata:type="#Model.Address"> <data:Street>Obere Str. 57</data:Street> <data:City>Berlin</data:City> <data:Region metadata:null="true"/> <data:PostalCode>D-12209</data:PostalCode> </data:ShipTo> Primitive and Enumeration Property Collection For properties that represent a collection of primitive or enumeration values, the URI fragment specified in the  HYPERLINK \l "_Attribute_metadata:type" metadata:type attribute is the namespace-qualified or alias-qualified element type prefixed with Collection and enclosed in parenthesis. Element metadata:element Each item in the collection is represented as a metadata:element element in the  HYPERLINK \l "_OData_Metadata_Namespace"  HYPERLINK \l "ODataMetadataNamespace" OData Metadata namespace. The value of each metadata:element in the collection follows the syntax for  HYPERLINK \l "_Primitive_Value" primitive values. A metadata:element element MUST NOT contain the metadata:null="true" attribute value. Example  SEQ Example \* ARABIC 16: <data:EmailAddresses metadata:type="#Collection(String)"> <metadata:element>[email protected]</metadata:element> <metadata:element>[email protected]</metadata:element> </data:EmailAddresses> Complex Property Collection For properties that represent a collection of complex types, the URI fragment specified in the  HYPERLINK \l "_Attribute_metadata:type" metadata:type attribute is the namespace-qualified or alias-qualified element type prefixed with "Collection" and enclosed in parenthesis.. Element metadata:element Each item in the collection is represented as a metadata:element element in the  HYPERLINK \l "_OData_Metadata_Namespace"  HYPERLINK \l "ODataMetadataNamespace" OData Metadata namespace. The value of each complex-typed metadata:element follows the syntax for  HYPERLINK \l "_Complex_Property" complex-typed properties. A metadata:element elements MUST NOT be empty and MUST NOT contain the metadata:null="true" attribute. Attribute metadata:type A metadata:element element MAY include a  HYPERLINK \l "_Attribute_metadata:type" metadata:type attribute to specify the complex type of the represented instance. It MUST include a metadata:type attribute if the instance is of a type derived from the declared type of the property. Example  SEQ Example \* ARABIC 17: <data:PhoneNumbers metadata:type="#Collection(Model.PhoneNumber)"> <metadata:element> <data:Number>425-555-1212</data:Number> <data:Type>Home</data:Type> </metadata:element> <metadata:element metadata:type="#Model.CellPhoneNumber"> <data:Number>425-555-0178</data:Number> <data:Type>Cell</data:Type> <data:Carrier>Sprint</data:Carrier> </metadata:element> </data:PhoneNumbers> Navigation Property A navigation property is a reference to zero or more related entities. It is represented as a navigation link that MAY be immediately preceded by an association link. Navigation Link The navigation link is a URL that allows retrieving the related entity or collection of entities. It is represented as an atom:link element. Example  SEQ Example \* ARABIC 18: products related to a category <atom:link rel="http://docs.oasis-open.org/odata/ns/related/Products" href="Categories(0)/Products" type="application/atom+xml;type=feed" title="Products" /> The related data for the relationship MAY be included in the entity using a single child  HYPERLINK \l "_Expanded_Navigation_Property_1" metadata:inline element. Element atom:link In the case where the atom:link element describes a navigation link the attributes rel, href, type, metadata:context, and title MUST be used as described in the following subsections. Attribute rel The rel attribute MUST be present and MUST contain the string http://docs.oasis-open.org/odata/ns/related/ followed by the name of the navigation property on the entity. Note that the full name must be used; the use of relative URLs in the rel attribute is not allowed. Attribute href The href attribute MUST be present and specifies the URL that can be used to retrieve the related entities. This URL may be relative or absolute. For navigation properties declared by an entity type the URL should be the canonical URL for the navigation property, i.e. the canonical URL of the source entity followed by a forward slash and the name of the navigation property, see  REF _Ref357171696 \h Example 18. For navigation properties declared by a complex type that is used as a single value in an entity type, the URL should be the canonical URL of the source entity, followed by a forward slash and the path to the navigation property, see second atom:link in  REF _Ref357173514 \h Example 5. For navigation properties declared by a complex type that is used in a collection of complex type values, the URL should be the canonical URL of the target entity. Example  SEQ Example \* ARABIC 19: country related to an address within a collection <data:Addresses metadata:type="#Collection(Model.Address)"> ... <metadata:element> ... <atom:link rel="http://docs.oasis-open.org/odata/ns/related/Country" href="Countries('DE')" type="application/atom+xml;type=entry" title="Country" /> </metadata:element> ... </data:Addresses> Attribute type The type attribute MUST be present and determines whether the cardinality of the related end is a single entity or a collection of entities. The value "application/atom+xml;type=entry" represents a single entity and the value "application/atom+xml;type=feed" an collection of entities. Attribute metadata:context The metadata:context Attribute MUST be present if the navigation property is not defined in metadata. The value of the metadata:context attribute, defined in the  HYPERLINK \l "ODataMetadataNamespace"  HYPERLINK \l "ODataMetadataNamespace" OData Metadata namespace, specifies the context URL that describes the type of the related entity or entities. For details on the context URL, see  REF ODataProtocol \h [OData-Protocol]. Attribute title The title attribute SHOULD be present and equal to the name of the navigation property, and provides human-readable, possibly language-dependent, and not necessarily unique information about the link. Association Link The association link is a URL that allows retrieving the reference or collection of references to the related entity or entities. It is represented as an atom:link element. If the URL follows conventions, i.e. is the navigation link with /$ref appended, the association link MAY be omitted. Example  SEQ Example \* ARABIC 20: products related to a category <atom:link rel="http://docs.oasis-open.org/odata/ns/relatedlinks/Products" href="Categories(0)/Products/$ref" type="application/xml" title="Products" /> Element atom:link A collection of relationship links is represented by an atom:link element. The attributes rel, href, type, metadata:context, and title MUST be used as described in the following subsections. Attribute rel The rel attribute MUST be present. The value MUST contain the string http://docs.oasis-open.org/odata/ns/relatedlinks/ followed by the name of the navigation property of the entity. Note that the full name must be used; the use of relative URLs in the rel attribute is not allowed. Attribute href The href attribute MUST be present and MUST specify the URL that represents the collection of relationship links. This URL may be relative or absolute. Attribute type The type attribute MUST be present with the string "application/xml" as value. Attribute title The title attribute SHOULD be present and be set to the name of the navigation property. The title attribute provides human-readable, possibly language-dependent, and not necessarily unique information about the link. Expanded Navigation Property An expanded navigation property MUST be represented as a single metadata:inline child element of the atom:link element representing the  HYPERLINK \l "_Navigation_Link_1" navigation link. The value of the metadata:inline element MUST be the correct representation of the related entity or collection of entities. It is valid to include the metadata:inline element in only a subset of the entries within a feed. If at most one entity can be related, the value is the representation of the related entity, or the metadata:inline element is empty if no entity is currently related. If a collection of entities can be related, it MUST be represented as an  HYPERLINK \l "_Element_atom:feed" atom:feed. An empty collection of entities (one that contains no entity type instances) MUST be represented as an empty atom:feed. Each entity MUST be  HYPERLINK \l "_Representing_an_Entity_1" represented as an  HYPERLINK \l "_Element_atom:entry" atom:entry element or as HYPERLINK \l "_Resource_Reference"  an entity reference. Example  SEQ Example \* ARABIC 21: <atom:link rel="http://docs.oasis-open.org/odata/ns/related/Products" href="Categories(0)/Products" type="application/atom+xml;type=feed" title="Products" > <metadata:inline> <atom:feed> ... </atom:feed> </metadata:inline> </atom:link> Deep Insert When inserting a new entity with a POST request, related new entities MAY be specified using the same representation as for an  HYPERLINK \l "_Expanded_Navigation_Property_1" expanded navigation property. Deep inserts are not allowed in update operations using PUT or PATCH requests. Example  SEQ Example \* ARABIC 22: inserting a new order for a new customer with order items related to existing products <entry ...> ... <link rel="http://docs.oasis-open.org/odata/ns/related/Customer" type="application/atom+xml;type=entry" title="Customer" href="Orders(11643)/Customer"> <metadata:inline> <entry> ... <content type="application/xml"> <metadata:properties> <data:ID>ANEWONE</data:ID> ... </metadata:properties> </content> </entry> </metadata:inline> </link> <link rel="http://docs.oasis-open.org/odata/ns/related/Items" type="application/atom+xml;type=feed" title="Details" href="Orders(11643)/Items"> <metadata:inline> <feed> <entry> ... <link rel="http://docs.oasis-open.org/odata/ns/related/Product" href="http://host/service/Products(28)" type="application/atom+xml;type=entry" title="Product"/> <content type="application/xml"> <metadata:properties> ... </metadata:properties> </content> </entry> ... <entry> <link rel="http://docs.oasis-open.org/odata/ns/related/Product" href="http://host/service/Products(29)" type="application/atom+xml;type=entry" title="Product"/> <content type="application/xml"> <metadata:properties> ... </metadata:properties> </content> </entry> ... </feed> </metadata:inline> </link> <content type="application/xml"> <metadata:properties> <data:ID metadata:type="Int32">11643</data:ID> ... </metadata:properties> </content> </entry> Bind Operation When inserting or updating an entity, relationships of navigation properties MAY be inserted or updated via bind operations. If at most one entity can be related, the bind operation MUST be represented as a navigation link whose href attribute MUST contain the  HYPERLINK \l "_Element_atom:id" id of the entity to be related. For update operations a bind operation on a collection navigation property MUST be represented as a navigation link with an inlined collection of entity references. The referenced entities are added as additional related entities, and existing relationships are not updated or deleted. For insert operations collection navigation property bind operations and deep insert operations MAY be combined by inlining an  HYPERLINK \l "_Element_atom:feed" atom:feed that contains  HYPERLINK \l "_Element_atom:entry" atom:entry elements and  HYPERLINK \l "_Element_metadata:ref" metadata:ref elements. Example  SEQ Example \* ARABIC 23: assign a product to an existing category <atom:link rel="http://docs.oasis-open.org/odata/ns/related/Category" href="http://host/service/Categories(6)" type="application/atom+xml;type=entry" title="Category" /> Stream Property Element atom:link An entity or complex type instance MAY have one or more stream properties (for example, a photo property of an employee entity). Properties that represent streams have a type of Edm.Stream. OData uses the atom:link element to represent a stream property. Example  SEQ Example \* ARABIC 24: read link of stream property Thumbnail <atom:link rel="http://docs.oasis-open.org/odata/ns/mediaresource/Thumbnail" type="image/jpeg" title="Photo" href="Products(0)/Thumbnail" /> Example  SEQ Example \* ARABIC 25: edit link of stream property Thumbnail <atom:link rel="http://docs.oasis-open.org/odata/ns/edit-media/Thumbnail" type="image/jpeg" title="Photo" href="Products(0)/Thumbnail" /> The attributes rel, href, type, metadata:etag, and title are to be used as described in the following subsections. Attribute rel The rel attribute MUST be present and MUST be made up of the string http://docs.oasis-open.org/odata/ns/mediaresource/, followed by the name of the stream property on the entity. The rel attribute for an  HYPERLINK \l "atomLink" atom:link element that can be used to change a stream property value is made up of the string http://docs.oasis-open.org/odata/ns/edit-media/, followed by the name of the stream property on the entity. In both cases the full name must be used; the use of relative URLs in the rel attribute is not allowed. Attribute href The href attribute MUST be present and MUST contain the URL that can be used to read, or write, the stream, according to the rel attribute. This URL may be relative or absolute. Attribute type The type attribute MAY be present and specifies the MIME-type of the stream. Attribute metadata:etag The metadata:etag attribute MAY be present and specifies an etag value that can be used in an if-match header to conditionally write to the stream property as described in  REF ODataProtocol \h [OData-Protocol]. Attribute title The title attribute MAY be present and provides human-readable, possibly language-dependent, and not necessarily unique information about the link. Media Entity Media entities (in AtomPub: media link entries, see  REF RFC5023 \h [RFC5023]) are entities that describe and link to a media resource. Example  SEQ Example \* ARABIC 26: <entry ...> <id>http://host/service/Employees(6)</id> ... <link rel="edit-media" title="Employee" href="Employees(6)/$value"/> <content type="image/jpeg" src="Employees(6)/$value"/> <metadata:properties> <data:ID metadata:type="Int32">6</data:ID> ... </metadata:properties> </entry> Element atom:link A media entity MAY contain an atom:link element with a rel attribute of "edit-media" to specify a URL that can be used to write to the BLOB associated with the entity. The attributes rel and href MUST be used as described in the following subsections. Attribute rel The rel attribute MUST be present and MUST have the string �edit-media� as value. Attribute href The href MUST be present and its value MUST specify the URL that can be used to write the stream. This URL may be relative or absolute. Element atom:content For media entities the atom:content element MUST be empty. Properties of the media entity are represented by the  HYPERLINK \l "metadataProperties" metadata:properties element as a sibling to, rather than a child of, the atom:content element. Attribute src The atom:content element MUST contain a src attribute and the value of the src attribute MUST be a URL that can be used to retrieve the content of the media resource. Attribute type The atom:content element MUST specify a type attribute that SHOULD contain the MIME type of the media resource. Individual Property A valid OData payload may consist of a single primitive or complex value, or of a collection of these. A single-valued property that has the null value does not have a representation, see  REF ODataProtocol \h [OData-Protocol]. Single Scalar Value Example  SEQ Example \* ARABIC 27: string value <value xmlns="http://docs.oasis-open.org/odata/ns/metadata" context="http://host/service/$metadata#Edm.String">CEO</value> Example  SEQ Example \* ARABIC 28: primitive null value: <metadata:value xmlns:metadata="http://docs.oasis-open.org/odata/ns/metadata" metadata:context="http://host/service/$metadata#Edm.Date" metadata:null="true" /> Example  SEQ Example \* ARABIC 29: complex value <metadata:value metadata:type="#Model.Address" metadata:context="http://host/service/$metadata#Model.Address" xmlns:metadata="http://docs.oasis-open.org/odata/ns/metadata" xmlns="http://docs.oasis-open.org/odata/ns/data"> <Street>Obere Str. 57</Street> <City>Berlin</City> <Region metadata:null="true"/> <PostalCode>D-12209</PostalCode> </metadata:value> Element metadata:value Single scalar values are represented as a metadata:value root element that contains the representation of the scalar value. The attributes metadata:type and metadata:null MUST be used as described in the following subsections. Attribute metadata:context The metadata:value element MUST have a metadata:context attribute, defined in the  HYPERLINK \l "ODataMetadataNamespace" OData Metadata namespace, whose value is the context URL that describes the element. For more information on the context URL, see  REF ODataProtocol \h [OData-Protocol]. Attribute metadata:metadata-etag The metadata:value element MAY have a metadata:metadata-etag attribute to specify an ETag for the service's metadata document. It can be used to determine whether the client's cached copy of the metadata document is outdated. For details on how ETags are used, see  REF ODataProtocol \h [OData-Protocol]. Attribute metadata:type If the type of the scalar value being specified is anything other than Edm.String the metadata:type attribute MUST be present and specify the namespace - or alias - qualified type of the value. Attribute metadata:null The metadata:null attribute distinguishes null values from other empty content (such as an empty string). Null-values are represented as an empty metadata:value element with a metadata:null="true" attribute. Collection of Scalar Values A valid OData payload MAY consist of a collection of primitive or complex properties. Example  SEQ Example \* ARABIC 30: collection of strings <metadata:value metadata:context="http://host/service/$metadata#Collection(Edm.String)" xmlns:metadata="http://docs.oasis-open.org/odata/ns/metadata" > <metadata:element>(203)555-1718</metadata:element> <metadata:element>(203)555-1719</metadata:element> </metadata:value> Example  SEQ Example \* ARABIC 31: collection of complex values <metadata:value xmlns:metadata="http://docs.oasis-open.org/odata/ns/metadata" metadata:context="http://host/service/$metadata#Collection(Model.Address)" xmlns="http://docs.oasis-open.org/odata/ns/data" metadata:type="#Model.BaseAddress" > <metadata:element> <Street>Obere Str. 57</Street> <City>Berlin</City> <PostalCode>D-12209</PostalCode> </metadata:element> <metadata:element metadata:type="#Model.Address"> <Street>12345 Grant Street</Street> <City>Taft</City> <Region>Ohio</Region> <PostalCode>OH 98052</PostalCode> </metadata:element> </metadata:value> Element metadata:value A collection of scalar values is represented as a metadata:value root element that contains a metadata:element child element for each item of the collection whose content is an individual primitive or complex value as defined above. The metadata:value element MUST NOT contain a metadata:null attribute. The attribute metadata:type MUST be used as described in the following subsection. Attribute metadata:context The metadata:value element MUST have a metadata:context attribute, defined in the  HYPERLINK \l "ODataMetadataNamespace" OData Metadata namespace, whose value is the context URL that describes the element. For more information on the context URL, see  REF ODataProtocol \h [OData-Protocol]. Attribute metadata:metadata-etag The metadata:value element MAY have a metadata:metadata-etag attribute to specify an ETag for the service's metadata document. It can be used to determine whether the client's cached copy of the metadata document is outdated. For details on how ETags are used, see  REF ODataProtocol \h [OData-Protocol]. Attribute metadata:type The attribute metadata:type MUST be present and specify the collection type according to the rules described in section  REF _Ref359580461 \r \h 7.3.1. For collections of complex scalar values this attribute specifies a collection type for the base type of the collection. Individual elements of a derived type MUST specify their derived type with a metadata:type attribute on the metadata:element element. Collection of Entities Collections of entities are represented in Atom as an  HYPERLINK \l "_Element_atom:feed" atom:feed element. Element atom:feed Collections of entities are represented using an atom:feed Element, where each entity is represented as an  HYPERLINK \l "_Element_atom:entry" atom:entry or  HYPERLINK \l "_Entity_References_as" metadata:ref element. Attribute metadata:context The atom:feed element MUST have a metadata:context attribute, defined in the  HYPERLINK \l "ODataMetadataNamespace" OData Metadata namespace, whose value is the context URL that describes the entity set represented by the feed. For more information on the context URL, see  REF ODataProtocol \h [OData-Protocol]. Attribute metadata:metadata-etag The metadata:metadata-etag attribute MAY appear in an atom:feed in order to specify an ETag that can be used to determine the current version of the service's metadata document. For details on how ETags are used, see  REF ODataProtocol \h [OData-Protocol]. Element atom:id The atom:id element MUST uniquely identify the collection from which the feed was generated. Element metadata:count The atom:feed element MAY contain a metadata:count element to specify the total count of entities in the result to the request. This MAY be greater than the number of entries in the feed, if server-side paging has been applied, in which case the feed MUST include a  HYPERLINK \l "nextLink" next results link. Example  SEQ Example \* ARABIC 32: <feed xmlns="http://www.w3.org/2005/Atom" xmlns:metadata=http://docs.oasis-open.org/odata/ns/metadata metadata:context="http://host/service/$metadata#Customers" > <metadata:count>42</metadata:count> ... <atom:link rel="next" href="http://host/service/Customers?$skiptoken=1237"/> </feed> Element atom:link The  HYPERLINK \l "_Element_atom:feed" atom:feed element MAY contain a self link to allow reread the feed. The atom:feed element MAY contain a next link to indicate the presence of additional entities that belong to the collection. The atom:feed element representing the final page of results MAY contain a delta link that can be used to fetch subsequent changes (deltas) to the result. All three cases are distinguished from another by the value of the rel attribute as described in the following subsection. In a valid OData Atom response Payload the atom:link element representing a next link or a delta link MAY be positioned after the last  HYPERLINK \l "_Element_atom:entry" atom:entry or  HYPERLINK \l "_Entity_References_as" metadata:ref element. This defines an exception to the Atom Specification  REF RFC4287 \h [RFC4287]. Attribute rel A self link is represented as an atom:link with a rel="self" attribute. The href attribute MUST contain the request URL that produced this collection. A next link is represented as an atom:link with a rel="next" attribute and an href attribute containing a URL that can be used to retrieve the next set of results. Example  SEQ Example \* ARABIC 33: next link <atom:link rel="next" href="http://host/service/Customers?$skiptoken=1237"/> The contents of the href attribute SHOULD be treated as an opaque URL that can be used to fetch the next set of results. A delta link is represented as an atom:link element with a rel attribute of " http://docs.oasis-open.org/odata/ns/delta" and an href attribute containing a URL that can be used to retrieve subsequent changes. Example  SEQ Example \* ARABIC 34: delta link <atom:link rel=" http://docs.oasis-open.org/odata/ns/delta" href="http://host/service/Customers?$deltatoken=1234"/> The contents of the href should be treated as an opaque URL that can be used to fetch subsequent changes. The delta link MUST only appear on the last page of results. A page of results MUST NOT have both a delta link and a next link. Entity Reference An entity reference (see  REF ODataProtocol \h [OData-Protocol]) MAY take the place of an  HYPERLINK \l "_Entity" entity in an Atom payload, based on the client request. The id may be absolute or relative. Example  SEQ Example \* ARABIC 35: entity reference to order 10643 <metadata:ref xmlns:metadata="http://docs.oasis-open.org/odata/ns/metadata" metadata:context="http://host/service/$metadata#$ref" id="http://host/service/Orders(10643)" /> Example  SEQ Example \* ARABIC 36: collection of entity references <feed xmlns="http://www.w3.org/2005/Atom" xmlns:metadata="http://docs.oasis-open.org/odata/ns/metadata" metadata:context="http://host/service/$metadata#Collection($ref)" > <metadata:ref id="http://host/service/Orders(10643)" /> <metadata:ref id="http://host/service/Orders(10759)" /> </feed> Element metadata:ref A reference to an entity or one of its properties is represented in Atom using a metadata:ref element. Attribute metadata:context If the metadata:ref element is the root element of a response, it MUST have a metadata:context attribute, defined in the  HYPERLINK \l "ODataMetadataNamespace" OData Metadata namespace, whose value is the context URL that describes the reference. If it is part of an Atom feed, the attribute is optional. For more information on the context URL, see  REF ODataProtocol \h [OData-Protocol]. Attribute id The id attribute MUST be present. For entities the id attribute MUST be the  HYPERLINK \l "_Element_atom:id" atom:id of the referenced entity. It may be relative or absolute. Delta Response The non-format specific aspects of the delta handling are described in the section �Requesting Changes� in  REF ODataProtocol \h [OData-Protocol]. Responses from a delta request are returned as an  HYPERLINK \l "_Collection_of_Entities"  HYPERLINK \l "_Element_atom:feed" atom:feed. The feed MUST contain all  HYPERLINK \l "_Changed/Added_Entities_as" added,  HYPERLINK \l "_Changed/Added_Entities_as" changed, or  HYPERLINK \l "_Deleted_entities_as_1" deleted entities, as well as  HYPERLINK \l "_Added_Link" added or  HYPERLINK \l "_Deleted_Links_as" deleted links between entities, and MAY contain additional, unchanged entities. All added, changed, or deleted entities and links, including related entities, are returned as direct children of the  HYPERLINK \l "_Collection_of_Entities"  HYPERLINK \l "_Element_atom:feed" atom:feed element. Entities that are not part of the entity set specified by the  HYPERLINK \l "_Attribute_metadata:metadata_1" metadata:context attribute in the atom:feed element MUST include a metadata:context attribute in the atom:entry element to specify the entity set of the related entity. If the delta response contains a partial list of changes, it MUST include a  HYPERLINK \l "nextLink" next link for the client to retrieve the next set of changes. The last page of a delta response SHOULD contain a  HYPERLINK \l "_Delta_Link_as" delta link for retrieving subsequent changes once the current set of changes has been applied to the initial set. If the response from the delta link contains a  HYPERLINK \l "_Element_metadata:count" metadata:count element, the returned number MUST include all added, changed, or deleted entities, as well as added or deleted links. Example  SEQ Example \* ARABIC 37: delta response with five changes, in order of occurrence ContactName for customer 'BOTTM' was changed to "Susan Halvenstern" Order 10643 was removed from customer 'ALFKI' Order 10645 was added to customer 'BOTTM' The shipping information for order 10643 was updated Customer 'ANTON' was deleted <feed xml:base="http://host/service/" xmlns:data="http://docs.oasis-open.org/odata/ns/data" xmlns:metadata="http://docs.oasis-open.org/odata/ns/metadata" xmlns="http://www.w3.org/2005/Atom" xmlns:at="http://purl.org/atompub/tombstones/1.0" metadata:context="$metadata#Customers/$delta"> <title type="text">Customers
    • title
      <updated>2012-11-17T15:38:22Z</updated> <author><name /></author> <link rel="edit" title="Customer" href="Customers('BOTTM')"/> <category term="Model.Customer" scheme="http://docs.oasis-open.org/odata/ns/scheme"/> <content type="application/xml"> <metadata:properties> <data:ContactName>Susan Halvenstern</data:ContactName> </metadata:properties> </content> </entry> <metadata:deleted-link metadata:context="$metadata#Customers/$deleted-link" source="http://host/service/Customers('ALFKI')" relationship="Orders" target="http://host/service/Orders(10643)"/> <metadata:link metadata:context="$metadata#Customers/$link" source="http://host/service/Customers('BOTTM')" relationship="Orders" target="http://host/service/Orders(10645)"/> <entry metadata:context="$metadata#Orders/$entity"> <id>http://host/service/Orders(10643)</id> <title type="text" /> <updated>2012-11-27T15:38:24Z</updated> <author><name/></author> <link rel="edit" title="Order" href="Orders(10643)" /> <category term="Model.Order" scheme="http://docs.oasis-open.org/odata/ns/scheme" /> <content type="application/xml"> <metadata:properties> <data:ShippingAddress> <data:Street>23 Tsawassen Blvd.</data:Street> <data:City>Tsawassen</data:City> <data:Region>BC</data:Region> <data:PostalCode>T2F 8M4</data:PostalCode> </data:ShippingAddress> </metadata:properties> </content> </entry> <at:deleted-entry metadata:context="$metadata#Customers/$deleted-entry" ref="http://host/service/Customers('ANTON')" when="2012-11-27T15:38:25Z" metadata:reason="deleted"/> <link rel="http://docs.oasis-open.org/odata/ns/delta" href="http://host/service/Customers?$expand=Orders&$deltatoken=8015"/> </feed> Added/Changed Entity Added or changed entities within a delta response are represented as  HYPERLINK \l "_Element_atom:entry" atom:entry elements. Added or changed entities MUST NOT include  HYPERLINK \l "_Expanded_Navigation_Property" inline content. Added entities MUST include all selected properties and MAY include additional, unselected properties. Collection-valued properties are treated as atomic values; any collection-valued properties returned from a delta request MUST contain all current values for that collection. Added entities MUST include  HYPERLINK \l "_Navigation_Link" navigation links. Changed entities MUST include all selected properties that have changed and MAY include additional properties. Entities whose set cannot be determined from the context URL of the feed MUST include the  HYPERLINK \l "_Attribute_metadata:metadata" metadata:context attribute in the  HYPERLINK \l "_Element_atom:entry" atom:entry element to specify the set that the entity belongs to. This context URL MAY be absolute or relative to the context URL of the feed. Deleted Entity Element atom-tombstone:deleted-entry A deleted entity within a delta response is represented as an atom-tombstone:deleted-entry element, defined within the  HYPERLINK \l "_Atom_Tombstone_Namespace" Atom Tombstone namespace, as defined in  HYPERLINK \l "RFC6721" [RFC6721]. The ref and a when attribute MUST be present, the metadata:reason attribute MAY be present. All attributes have to be used as described in the following subsection. Attribute ref As defined in  HYPERLINK \l "RFC6721" [RFC6721], the ref attribute MUST be present. The value of the ref attribute MUST specify the  HYPERLINK \l "_Element_atom:id" atom:id of the deleted entry. It may be relative or absolute. Attribute when As defined in  HYPERLINK \l "RFC6721" [RFC6721], the when attribute MUST be present to specify the time at which the entity was deleted. This attribute is not used in OData and MAY be set to the time the delta response was generated if the service does not track when deletions occur. OData clients MUST NOT assume any semantics around this value. Attribute metadata:reason The metadata:reason attribute MAY be present. The value of the metadata:reason attribute MUST specify the string value "deleted", if the entity was deleted (destroyed), or "changed" if the entity was removed from membership in the result (i.e., due to a data change). Added Link Element metadata:link A link within a delta response is represented by a metadata:link element. A delta response MUST contain a metadata:link for each added link that corresponds to a $expand path in the initial request. The source, relationship, and target attribute MUST be present. All attributes have to be used as described in the following subsection. Attribute source The source attribute MUST be present and specify the  HYPERLINK \l "_Element_atom:id" atom:id of the entity from which the link originates. It may be relative or absolute. Attribute relationship The relationship MUST be present and specify the name of the navigation property on the source entity for which the link exists. Attribute target The target attribute MUST be present and specify the  HYPERLINK \l "_Element_atom:id" atom:id of the related entity. It may be relative or absolute. Deleted Link Element metadata:deleted-link A deleted link within a delta response is represented as a metadata:deleted-link element. Delta responses MUST contain a metadata:deleted-link for each deleted link that corresponds to a $expand path in the initial request, unless either of the following is true: The source or target entity has been deleted. The maximum cardinality of the related entity is one and there is a subsequent  HYPERLINK \l "_Element_metadata:link" metadata:link that specifies the same source and relationship. The service MAY return a metadata:deleted-link where one of the entities has also been deleted, or where there is a subsequent  HYPERLINK \l "_Element_metadata:link" metadata:link with the same source and relationship and a maximum cardinality of one for the related end. The source, relationship and target attribute MUST be present. All attributes have to be used as described in the following subsection. Attribute source The source attribute MUST be present and specify the  HYPERLINK \l "_Element_atom:id" atom:id of the entity from which the link originates. It may be relative or absolute. Attribute relationship The relationship attribute MUST be present and specify the name of the navigation property on the source entity for which the link is deleted. Attribute target The target attribute MUST be present and specify the  HYPERLINK \l "_Element_atom:id" atom:id of the related entity. It may be relative or absolute. Bound Function Zero or more functions MAY be bound to a collection of entities or an entity. The functions associated with a particular collection of entities or an entity MAY be described using metadata:function elements that are direct children of the feed or entry to which the functions can be bound. Example  SEQ Example \* ARABIC 38: a function bound to an entry: <atom:entry> ... <metadata:function metadata="#Model.RemainingVacation" target="http://host/service/Employees(2)/RemainingVacation" title="Remaining Vacation" /> ... </atom:entry> Example  SEQ Example \* ARABIC 39: a function bound to a feed: <atom:feed> ... <metadata:function metadata="#Model.RemainingVacation" target="http://host/service/Managers(22)/Employees/RemainingVacation" title="Remaining Vacation" /> ... </atom:feed>} Element metadata:function Each function is represented as a metadata:function element that MUST be a child of the  HYPERLINK \l "_Element_atom:feed" atom:feed or  HYPERLINK \l "_Element_atom:entry" atom:entry element representing the collection of entities or the entity on which the function exists. Attribute metadata The metadata attribute MUST be present and specify the namespace-qualified or alias-qualified name of the function, preceded by a #. A function may have multiple overloads with different parameters. If the URL in the  HYPERLINK \l "_Attribute_target" target attribute of the metadata:function element cannot be used to invoke all overloads for the function, then it MUST further be distinguished by appending the parentheses-enclosed, comma-separated list of non-binding parameter names, see rule qualifiedFunctionName in  REF ODataABNF \h [OData-ABNF]. Example  SEQ Example \* ARABIC 40: <metadata:function metadata="#Model.RemainingVacation(Year)" target="http://host/service/Employees(2)/RemainingVacation(Year=@Year)" title="Remaining vacation from year..." /> Attribute target The target attribute MUST be present and specify the URL to GET from in order to invoke the function. The first parameter of the function MUST be a binding parameter that is bound to the feed or entity on which the function is specified, and MUST NOT be provided as a separate parameter by the client when invoking the function. Attribute title The title attribute MUST be present and contain a human-readable, possibly language-dependent, and not necessarily unique name for the function, commonly used by clients to describe the function to a user. Bound Action Zero or more actions MAY be bound to a collection of entities or an entity. The actions associated with a particular collection of entities or an entity MAY be described using metadata:action elements that are direct children of the feed or entry to which the actions can be bound. Example  SEQ Example \* ARABIC 41: action bound to an entity <atom:entry> ... <metadata:action metadata="#Model.Approval" target="http://host/service/LeaveRequests(2)/Approval" title="Approve Leave Request" /> ... </atom:entry> Example  SEQ Example \* ARABIC 42: action bound to a feed <atom:feed> ... <metadata:action metadata="#Model.Approval" target="http://host/service/Managers(22)/Inbox/Approval" title="Approve All Leave Requests" /> ... </atom:feed> Element metadata:action Each action is represented as a metadata:action element that MUST be a direct child of the  HYPERLINK \l "_Element_atom:feed" atom:feed or  HYPERLINK \l "_Element_atom:entry" atom:entry element representing the the collection of entities or the entity on which the action exists. Attribute metadata The metadata attribute MUST be present and specify the namespace-qualified or alias-qualified name of the action element describing the action, preceded by a #. Attribute target The target attribute MUST be present and specify the URL to POST to in order to invoke the action. The first parameter of the action MUST be a binding parameter that is bound to the feed or entity on which the action is specified, and MUST NOT be provided as a separate parameter by the client when invoking the action. Attribute title The title attribute MUST be present and contain a human-readable, possibly language-dependent, and not necessarily unique name for the action, commonly used by clients to describe the action to a user. Action Invocation Action parameter values in the request body MUST be encoded as an  HYPERLINK \l "_Single_Scalar_Value" individual complex scalar value with the name parameters and no metadata:type attribute for the parameters element. Each non-binding parameter value specified MUST be encoded as an individual primitive or complex scalar value. The name of the scalar value is the name of the parameter. The value is the parameter value in the XML representation appropriate for its type. Any parameter values not specified in the request body MUST be assumed to have the null value. Example  SEQ Example \* ARABIC 43: <parameters> <param1>42</param1> <param2 metadata:type="#Model.Address"> <Street>One Microsoft Way</Street> <Zip>98052</Zip> </param2> <param3> <element>1</element> <element>42</element> <element>99</element> </param3> <param4 metadata:null="true"/> <!-- <param5/> not specified, has null value --> <parameters> Instance Annotations Annotations MAY be applied to an instance of a  HYPERLINK \l "_Collection_of_Entities" feed,  HYPERLINK \l "_Entity" entry,  HYPERLINK \l "_Entity_Reference" entity reference,  HYPERLINK \l "_Complex_Property" complex scalar value,  HYPERLINK \l "_Property" property,  HYPERLINK \l "NavigationProperty" navigation property,  HYPERLINK \l "_Function" function,  HYPERLINK \l "_Action" action,  HYPERLINK \l "_Added_Link" added link,  HYPERLINK \l "_Deleted_Link" deleted link, or  HYPERLINK \l "_Errors_as_XML" error within an Atom payload. Element metadata:annotation An instance annotation in Atom is represented as an XML element with the name Annotation in the  HYPERLINK \l "ODataMetadataNamespace" metadata namespace. The value of the annotation is specified according to the Annotation Value, described below. Attribute target The target attribute MAY be used to specify the annotation target. If the target attribute is not specified the target of the annotation is the element represented by the direct parent of the  HYPERLINK \l "_The_metadata:Annotation_Element" metadata:annotation element. Attribute term The  HYPERLINK \l "_The_metadata:Annotation_Element" metadata:annotation element MUST have a term attribute that specifies the namespace-qualified or alias-qualified name of the term being applied. Attribute metadata:type If the type of the annotation value being specified is anything other than Edm.String the  HYPERLINK \l "_The_metadata:Annotation_Element" metadata:annotation element MUST contain a metadata:type attribute to specify the appropriate type of the annotation value. Attribute metadata:null Null-valued annotations are represented as empty metadata:annotation elements with the metadata:null="true" attribute. The metadata:null attribute distinguishes null values from other empty content (such as an empty string). The absence of the metadata:null attribute is equivalent to specifying metadata:null="false". Annotation Value An instance annotation value may be specified as a  HYPERLINK \l "_Primitive_Values" primitive value,  HYPERLINK \l "_Collection_Value" collection value, or  HYPERLINK \l "_Structure_Annotations" structured value. Primitive Value When specified in the content of an annotation element representing a primitive value, the content MUST be formatted as per  HYPERLINK \l "_Primitive_Value" Primitive Types in Atom. If the type of the annotation value is anything other than Edm.String, then the annotation element MUST contain the  HYPERLINK \l "_The_type_attribute" metadata:type attribute specifying the appropriate primitive type. Example  SEQ Example \* ARABIC 44: <entry ...> <id>Customers('ALFKI')</id> <content> <metadata:properties> <data:ID>ALFKI</data:ID> <data:CompanyName>Alfreds Futterkiste</data:CompanyName> </metadata:properties> </content> <metadata:annotation term="com.contoso.display.highlight" metadata:type="Boolean">true</metadata:annotation> </entry> Collection Value The content of an element representing a collection-valued annotation MUST be the individual elements of that collection formatted as direct child elements of the  HYPERLINK \l "_The_metadata:Annotation_Element" metadata:annotation element as described in  HYPERLINK \l "_Primitive_and_Enumeration_1" Collections of Primitive or  HYPERLINK \l "_Complex_Collection_Property" Collection of Complex Scalar Values. For collection-valued annotations, the annotation element MUST contain the  HYPERLINK \l "_The_type_attribute" metadata:type attribute specifying the appropriate collection type. Example  SEQ Example \* ARABIC 45: <entry> <id>Customers('ALFKI')</id> <content> <metadata:properties> <data:ID>ALFKI</data:ID> <data:CompanyName>Alfreds Futterkiste</data:CompanyName> </metadata:properties> </content> <metadata:annotation term="com.contoso.PersonalInfo.PhoneNumbers" type="Collection(String)"> <element>(203)555-1718</element> <element>(203)555-1719</element> </metadata:annotation> </entry> Structured Value The content of an element representing a structured annotation MUST be a single child element for each property of the annotation type being specified, formatted as per  HYPERLINK \l "_Element_data:[PropertyName]" properties within an entity type. For structural-valued annotations, the annotation element MUST contain the  HYPERLINK \l "_The_type_attribute" metadata:type attribute specifying the appropriate structural type. Example  SEQ Example \* ARABIC 46: <entry> <id>Customers('ALFKI')</id> <link rel="http://docs.oasis-open.org/odata/ns/related/Orders" href="Customers('ALFKI')/Orders" type="application/atom+xml;type=feed" title="List of Orders"> <metadata:annotation term="com.contoso.display.style" metadata:type="#com.contoso.display.styleType"> <data:order metadata:type="Int32">2</data:order> </metadata:annotation> </link> <content> <metadata:properties> <data:CustomerID>ALFKI</data:CustomerID> <data:CompanyName>Alfreds Futterkiste</data:CompanyName> <metadata:annotation term="com.contoso.display.style" target="CompanyName" metadata:type="#com.contoso.display.styleType"> <data:title metadata:type="Boolean">true</data:title> <data:order metadata:type="Int32">1</data:order> </metadata:annotation> </metadata:properties> </content> <entry> Instance Annotation Target Instance annotations MAY target model elements represented by a  HYPERLINK \l "_Collection_of_Entities" feed,  HYPERLINK \l "_Entity" entry,  HYPERLINK \l "_Complex_Property" complex scalar value,  HYPERLINK \l "_Property" property,  HYPERLINK \l "NavigationProperty" navigation property,  HYPERLINK \l "_Function" function,  HYPERLINK \l "_Action" action, or  HYPERLINK \l "_Errors_as_XML" error within an Atom payload. Feed When annotating a feed, annotation elements MUST be direct children of the  HYPERLINK \l "_Element_atom:feed"  HYPERLINK \l "_Element_atom:feed" atom:feed element, and they MUST appear in a group at the beginning of the feed or (another) group at the end of the feed, depending on whether they are needed beforehand to understand the feed content, or can only be computed after serializing the feed content. Entry When annotating an entity, the annotation element MUST be a direct child of the  HYPERLINK \l "_Element_atom:entry" atom:entry element representing the entity. Entity Reference When annotating an entity reference, the annotation element MUST be a direct child of the  HYPERLINK \l "_Element_metadata:ref_1" metadata:ref element. Complex Type When annotating an instance of a  HYPERLINK \l "_Single_Scalar_Value" complex type, the annotation element MUST be a direct child of the  HYPERLINK \l "_Element_metadata:value" metadata:value element representing the complex-typed value. Property When annotating a property, the annotation element MUST be a direct child of the  HYPERLINK \l "metadataProperties" metadata:properties element, or a direct child of the element representing a  HYPERLINK \l "_Complex_Property" complex type in the case of annotating the property of a complex type. The value of the  HYPERLINK \l "_Attribute_target_1" target attribute MUST specify the name of the property being annotated. The annotation elements MUST immediately precede the target property element. Instance annotations are not supported when serializing single primitive properties in XML as described in  HYPERLINK \l "_Individual_Property" Individual Primitive or Complex Scalar Values HYPERLINK "file:///C:\\Users\\d037427\\Downloads\\Instance%20Annotations%20in%20Atom%20(1).docx" \l "z174ab0b818ff4c6a9131aa62331e8133" . Navigation Property When annotating a navigation property, stream property, or other element represented by an  HYPERLINK \l "_Element_atom:link" atom:link element, the annotation element must be a direct child of the atom:link element. Function or Action When annotating a function or action, the annotation element must be a direct child of the  HYPERLINK \l "_Element_metadata:function" metadata:function or  HYPERLINK \l "_Element_metadata:action" metadata:action element. Added Link or Deleted Link When annotating an added or deleted link in a delta response, the annotation element must be a direct child of the  HYPERLINK \l "_Element_metadata:link" metadata:link or  HYPERLINK \l "_Element_metadata:deleted-link" metadata:deleted-link element. Error When annotating an  HYPERLINK \l "_Errors_as_XML" error, the  HYPERLINK \l "_The_metadata:Annotation_Element" metadata:annotation element MUST be a direct child of the  HYPERLINK \l "_The_metadata:error_Element" metadata:error element. The annotation element MAY have a  HYPERLINK \l "_Attribute_target_1" target attribute value of "code", "message", or "innererror". If the target attribute is not specified, then the annotation is applied to the error itself. The annotation elements MUST follow the other child elements of the error element. Error Reponse In the case of an error being generated in response to a request specifying an Accept header of application/xml or application/atom+xml, or that does not specify an Accept header, the service MUST respond with an error formatted as XML. When formatting error responses as XML, services SHOULD include a Content-Type response header with the value "application/xml". Element metadata:error Errors formatted as XML MUST have a root metadata:error element. The metadata:error element MUST have at least two child elements:  HYPERLINK \l "metadataCode" metadata:code and  HYPERLINK \l "metadataMessage" metadata:message. In addition, errors may be annotated using custom  HYPERLINK \l "_Instance_Annotations" annotations. Example  SEQ Example \* ARABIC 47: <error xmlns="http://docs.oasis-open.org/odata/ns/metadata"> <code>501</code> <message>Unsupported functionality</message> <target>query</target> <details> <detail> <code>301</code> <message>$search query option not supported</message> <target>$search</target> </detail> </details> </error> Element metadata:code The metadata:error element MUST contain one metadata:code element specifying a service-defined string. This value MAY be used to provide a more specific substatus to the returned HTTP response code. Element metadata:message The metadata:error element MUST contain a metadata:message element specifying a human readable, language-dependent message describing the error. The Content-Language header MUST contain the language code from  REF rfc5646 \h [RFC5646] corresponding to the language in which the value for message is written. Element metadata:target The metadata:error element MAY contain a metadata:target element to specify the target of the error (for example, the name of the property in error). Element metadata:details The metadata:error element MAY contain a metadata:details element containing one or more metadata:detail elements specifying detail about the error. Element metadata:detail The metadata:detail element specifies information about an individual error detail. Element metadata:code The metadata:detail element MUST contain one metadata:code element specifying a service-defined string. This value MAY be used to provide a more specific substatus to the returned HTTP response code. Element metadata:message The metadata:detail element MUST contain a metadata:message element specifying a human readable, language-dependent message describing the error. Element metadata:target The metadata:detail element MAY contain a metadata:target element to specify the target of the error. Element metadata:innererror The metadata:error element MAY contain a metadata:innererror element containing service specific debugging information that might assist a service implementer in determining the cause of an error. The metadata:innererror element SHOULD only be used in development environments in order to guard against potential security concerns around information disclosure. Extensibility Implementations MAY add custom content anywhere allowed by  REF RFC4287 \h \* MERGEFORMAT [RFC4287], Section 6, �Extending Atom�, and  REF RFC5023 \h [RFC5023], Section 6.2 �Document Extensibility�. However, custom elements and attributes MUST NOT be defined in the  HYPERLINK \l "ODataDataNamespace" OData Data Namespace nor the  HYPERLINK \l "ODataMetadataNamespace" OData Metadata Namespace, and SHOULD not be required to be understood by the receiving party in order to correctly interpret the rest of the payload as the receiving party MUST ignore unknown foreign markup according to  REF RFC4287 \h \* MERGEFORMAT [RFC4287]. Security Considerations This specification raises no security issues. This section is provided as a service to the application developers, information providers, and users of OData version 4.0 giving some references to starting points for securing OData services as specified. OData is a REST-full multi-format service that depends on other services and thus inherits both sides of the coin, security enhancements and concerns alike from the latter. For ATOM-relevant security implications please cf. the relevant sections of  REF RFC4287 \h [RFC4287] (8. Security Considerations),  REF RFC5023 \h [RFC5023] (15. Security Considerations) and for the deleted-entry element: see  REF RFC6721 \h [RFC6721] (7. Security Considerations) as starting points. Conformance Conforming clients MUST be prepared to consume a service that uses any or all of the constructs defined in this specification. The exception to this are the constructs defined in  HYPERLINK \l "_Delta_Response_1" Delta Response, which are only required for clients that request changes In order to be a conforming consumer of the OData ATOM format, a client or service: MUST be prepared to receive all data types (section  REF _Ref356829481 \r \h 7.1) defined in this specification (client) exposed by the service (service) MUST be prepared to receive custom  HYPERLINK \l "_Instance_Annotations" annotations (section  REF _Ref356829540 \r \h 18) MUST be prepared to receive additional constructs not defined in this version of the specification (section  REF _Ref356829591 \r \h 20) In addition, in order to conform to the OData Atom format, a service: MUST comply with one of the conformance levels defined in  REF ODataProtocol \h [OData-Protocol] MUST support the application/atom+xml, application/xml and application/atomsvc+xml media types in the  HYPERLINK \l "_Requesting_the_Atom" Accept header (section  REF _Ref356829001 \r \h \* MERGEFORMAT 3) MUST include the  HYPERLINK \l "nextLink" next link in feeds containing partial results (section  REF _Ref356829114 \r \h 12.4) MUST return  HYPERLINK \l "_Service_Document" service documents as Atom service documents (section  REF _Ref356829145 \r \h 5) MUST return XML responses in well formed XML according to this OData Atom specification MUST return well-formed Atom payloads with the exceptions for the next link and the delta link (section  REF _Ref359854072 \r \h 12.4) MUST support entity instances with external metadata (section  REF _Ref356921242 \r \h \* MERGEFORMAT 6.1.2) MUST support properties with externally defined data types (section  REF _Ref356921259 \r \h \* MERGEFORMAT 11.1.1.3) MUST NOT violate any other aspects of this OData Atom specification SHOULD support the $format system query option (section  REF _Ref356829366 \r \h 3) Acknowledgments The contributions of the OASIS OData Technical Committee members, enumerated in  REF ODataProtocol \h [OData-Protocol], are gratefully acknowledged. Revision History RevisionDateEditorChanges MadeWorking Draft 012012-08-22Michael PizzoTranslated Contribution to OASIS format/templateCommittee Specification Draft 012013-04-26Martin Zurmuehl Ralf Handl Michael PizzoExpanded error information Added enumerations Fleshed out descriptions and examples and addressed numerous editorial and technical issues processed through the TC Added Conformance sectionCommittee Specification Draft 022013-07-01Martin Zurmuehl Ralf Handl Michael PizzoImproved metadata:type Improved entity references Simplified delta responses GML for Geo types Improved description of primitive value representation Improved examples, aligned with JSON format specification Aligned terms across specificationsCommittee Specification 012013-07-30Martin Zurmuehl Ralf Handl Michael PizzoNon-Material Changes     odata-atom-format-v4.0-cs01 14 August 2013 Standards Track Work Product Copyright � OASIS Open 2013. All Rights Reserved. Page  PAGE 1 of  NUMPAGES 54  MACROBUTTON NoMacro [document identifier]   MACROBUTTON NoMacro [specification date]  Copyright � OASIS Open 2004.All Rights Reserved. Page  PAGE 5 of  NUMPAGES 54 �������������������������������������������������������������������� ��:��;��D��E��G��H��I��J��W��]��b��c��i��k��l��x�����������3 ��4 ��5 ��D ��E ��F ��G ��S ��� ��� ��� �� �� �� �� ���������������������������������~q�������k� h�s��0J��h�7�h1D��0J�B*�ph����h�7�0J�B*�ph����h�Y&�0J�B*�ph����h���h�Q��0J��h�Q��h�Q��0J�� h�Q��0J��j����h�Q��0J�Uh1D���h]Q���h7;��h�.��h�)��CJ�aJ��hW�CJ�aJ��h�n(��h�+W��hf C��hW��h�)���h�?���h�#���h�W���hI���j����hI��U�*����� ��;��J��]��k��F �� ��� ��� ��� ��� ��� ��� ��Y����������?��G��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdA����gdA����gd ����gd�z����gdC"���gd7;���gd�b����gd�s����gd1D����gd1D����gd�)����gd ����gd ���)�gd ��� �� ��x ��} ��~ ��� ��� ��� ��� ��� ��� ��� ��� ��3 ��: ��R ��Y ��] ��_ ��` ��� ��� ��� ��� ��� ��� ��� �� �� ��8 ��? ��D ��F ��G ��� ��� ��� ��� ��� ��� ��� �� �� �� �� �� ��� ��� ��� ��� ��� ��� ��� ��������������������Ʈ������������ƮƘ��������Ʈƒ��Ԉ��������j����h�z��0J�U hC"�0J��h�`��hC"�0J��h�`��hC"�0J�B*�ph����h���h�hV�0J��h�hV�h�hV�0J�� h�hV�0J��j����h�hV�0J�Uh]Q���h7;�� h�b��0J��h���h�Q��0J��j����h�Q��0J�Uh�Q��h�Q��0J�� h�Q��0J�4� ��� ��� ��� ��� ��� ��G��H��I��Y��Z��f������������������������q��s��t��u�����������������������=��>��?��G��W��X��������������������������������������|q�j��������������� hM��hA���h�Pj�hA��B*ph����j����hA��0J�Uh=oE�hA��0J���j/ ��hA��UhA���j����hA��UhCL���j ��h�z��0J�U�j���h�z��0J�Uh�Pj�h�z��0J�B*�ph����h;�R�h�z��0J��j����h�z��0J�U�j���h�z��0J�Uh�Pj�h�z��0J�� h�z��0J�'������������������������������������������������ �� �� ��(��)��,��-��T��U��V��_��`��a��j��{��|�������������������������������������Ҽ��α����Ν�ٗΌ�΁�tf��������j����hA��0J�UmHsHhu��hA��0J�mHsH��j� ��hA��Uhu��hA��mHsH� hA��0J���j� ��hA��Uh�M��hA��0J���j> ��hA��U h�M��hA����j� ��hA��UhA��� hM��hA���j����hA��0J�UhM��hA��0J��j����hA��U�j� ��hA��U�'G�����a��j�����w�������U��������������'����������������������2�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������=�gd-[����gd;~T�� =� �8���^��gd:���=�gd:����gd:����gd� ���=�gd�w�� =� &� F����^��gd�V���gd7;���gdA����gdA��������������������������)��*��+��>��?��B��C��j��k��l��u��v��w�����������������������������������������������������������쯥����쯥������}ђ��r�}�c_������h� ���h*H0�hA��B*mHph����sH�j���hA��UhA��0J�mHsH��j.��hA��UhA��mHsH��j���hA��Uj����hA��0J�U hA��0J���j���hA��UhA���h� �hA��0J�mHsH�j����hA��0J�UmHsHhu��hA��0J�mHsH�j����hA��U�jI��hA��U�$�����A��E��T��U��a��b��n���������������������������!��@��]��k��m��n����������������������������� ����%��&��'��I��[��\��h������������������������ÿ�����������������������y������������������������h�~��h:��0J�� h:��0J��j����h:��0J�Uh{9��h:��6� h�V�h:���h�~��h:��6� h|ML�h:���h:���h� ��� h�w��h�w���h�w���j����h�w��Uh���h�w��0J��h�w��h�w��0J�� h�w��0J��j����h�w��0J�Uh�w���hG :�� h�V�h�V��h�V�+����������������+��=��>��������������������2��D��E������������������������� ��6��7��8��:��@��F��G��H��T��~����������������������������������������ͳ���۬��ӧ����Ӕ��������w�������������������h�7:�h:��^J�mHsH�h���h* i�0J�� h* i�h* i��j����h* i�U hKpl�h:���h* i�� h:��6� h{9��h:����j���h:��0J�U�js��h:��0J�U h:��0J��h{9��h:��6�h:���h� A�h:��0J��j����h:��0J�U�jl��h:��0J�U�+������ ����.��0��1��3��9��?��@��A��M��X��r��}�������������������������������������� ��<��_��`��a�����������������������ķ���ˤ�ˈ�y�yq�y�fq]q��������h+ d�h:��0J���j���h:��Uj����h:��U h�B��h:���h�Ll�h:��6�ht��h:��^J�mHsH�h���h* i�0J�^J�mHsH�h���h* i�0J��h* i�^J�mHsH�h* i�h* i�^J�mHsH� h* i�h* i��j����h* i�Uh:��� hKpl�h:���h* i��ht��h:��6�B*]�aJ�ph����ht��h:��B*aJ�ph�����#���������������0��1��2��3��m��n��o��������������x��z�����������(��L���������������������8��9��E��W��o��p��r����������������������������v����m�m������������������������������h@��hhz~�0J��h�n�hhz~�0J���j.��hhz~�0J�U hhz~�0J��j����hhz~�0J�U h�n�hhz~��hhz~�� h@y_�h�,�� h�,�5�h�,��h�}����jc��h�Ll�h-[��U^J�h�Ll�h-[��0J�^J���j���h�Ll�h-[��U^J�h�Ll�h-[��^J��j����h�Ll�h-[��U^J�h;~T�%2��������������������!��)!��{!���!���"���"���"���"���#��!'���'���(���*��v,���0���2���2���2�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdl����gd.���?�gd ����gdhz~��>�gdhz~��>�gd ����gd ���=�gd-[���r��s��t�������������� �� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��!��!��!��!��{!���!���!���!���!���!���!���!���!���!���!���!���!��"��J"��O"��Q"��R"���"���"�������ž��贫�������ғ����~�~�~�~�u�u��l��������h���hhz~�0J��hhz~�hhz~�0J�� h�\*�hhz~��hYwB�hhz~�6� hhz~�0J-��h $��hhz~�B*ph�����j���hhz~�0J�Uh@��hhz~�0J�� hhz~�0J��hhz~�� h�i��hhz~��h@��hhz~�0J�B*�ph����h�1��hhz~�0J�B*ph����h+ d�hhz~�0J��j����hhz~�0J�U�j/��hhz~�0J�U�)�"���"���"���"���"���"���"���"���"���"���"���"���#���#���#���#���#���#���#���#���0���0���0���0���0���0���0���0���0���0���0��1��1��1��"2��#2��f2���������������������ɤ�ɜɘ����x���nh������������������������ h�u��0J��j����hu:��0J�Uh�*K�h.��0J���j���h�*K�Uh�*K��j����h�*K�Uh.���hm��h����hHYz��h1Y�� h1Y�0J���j���h�u��Uh�u���j����h�Y��U h.��h.���h�+W��hVU���h���h�Y���h�s���h�w���hs3~�� h�i��h�I�� h�\*�hhz~�� hs~V�0J�$f2��g2��h2���2���2���2���2���2���2���2���2���2���2���2���2���3��3��3��3��3��3��3��3��,3��-3��.3������������Ư������n�cTcBT���#�j����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u*�jt��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�h ���j����h ��Uh�w���h�}�� h.��>* h.��h.��� h�u��0J��j����hu:��0J�U�j{��h�u��0J�U�.3��/3��03��13��23��33��43��P3��Q3��R3��S3��b3��c3��d3��~3��3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3����ӿӱ���ӱ��u���ӿӱ��_ӱ��������������������������������������*�jh��hs6��h@l�0J�UmH�nH�u�#�j����h@l�UmH�nH�u�h@l�mH�nH�u�*�jn��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�j�����h@l�UmH�nH�u�hSm��mH�nH�u�2��23���3���3��?4���4���4��C5���5���5��Q6���6��7��y7���7��08���8���8��/9���9���9��X:���:��;��k;���;��(<���<���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���$ �� ���$ � ����$� ��3���3���3���3���3���3���3���3���3���3���3���3���4��4��4��4��94��:4��;4��<4��=4��>4��?4��@4��A4��]4��^4��_4��`4��a4��������������t�tb���������L�����*�j\ ��hs6��h@l�0J�UmH�nH�u�#�j����h@l�UmH�nH�u�h@l�mH�nH�u�*�jb��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j����h@l�UmH�nH�u�a4��b4��t4��u4��v4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4���4��5��5������ұæÓ�݊�t�����bæÓ�݊��������������������������������������#�j�!���h@l�UmH�nH�u*�jV!��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�j� ���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�5�� 5�� 5�� 5��!5��"5��<5��=5��>5��@5��A5��B5��C5��D5��E5��a5��b5��c5��d5���5���5���5���5���5���5���5���5���5���5���5���5����ɾ�������~��u�_�ɾ��M����~��#�j�#���h@l�UmH�nH�u*�jJ#��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�"���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�jP"��hs6��h@l�0J�UmH�nH�u�5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5���5��6��6��6��6��.6��/6��06��J6��K6��L6��N6��O6��P6����ҿ败������t����^�败�L�������#�j�%���h@l�UmH�nH�u*�j>%��hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�$���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�$j����hs6��h@l�0J�UmH�nH�u�*�jD$��hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�uh@l�mH�nH�u�P6��Q6��R6��S6��o6��p6��q6��r6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6��7��7��7������ʫ�ʠ���t�������^�ʠ��L����#�j�'���h@l�UmH�nH�u*�j2'��hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�j�&���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�*�j8&��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�7��7��7��7��7��7��7��77��87��97��:7��;7��<7��V7��W7��X7��r7��s7��t7��v7��w7��x7��y7��z7��{7���7���7���7���7���7���7���7���7���7���7����ӿӱ���ӱ����u���ӿӱ��_ӱ��������������������*�j&)��hs6��h@l�0J�UmH�nH�u�#�j�(���h@l�UmH�nH�u�h@l�mH�nH�u�*�j,(��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�j�����h@l�UmH�nH�u�hSm��mH�nH�u"�7���7���7���7���7���7���7���7���7���7���7���7���7��8�� 8��8��8��)8��*8��+8��-8��.8��/8��08��18��28��N8��O8��������������mb�bP������������������������������#�j�*���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j *��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�)���h@l�UmH�nH�u�O8��P8��Q8��a8��b8��c8��}8��~8��8���8���8���8���8���8���8���8���8���8���8���8���8���8���8���8���8���8���8���8���8���8���8����ɾ�������~��u�_�ɾ��M����~��#�j�,���h@l�UmH�nH�u*�j,��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�+���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j+��hs6��h@l�0J�UmH�nH�u�8���8���8���8���8���8���8�� 9�� 9��9��(9��)9��*9��,9��-9��.9��/9��09��19��M9��N9��O9��P9��\9��g9��h9��i9���9����ҿ�蠑��t�������^��L����������������#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j.��hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�j�-���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j-��hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�uh@l�mH�nH�u��9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9�� :�� :��������������mb�bP������������������������������#�j/���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j/��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�.���h@l�UmH�nH�u� :��:��:��:��5:��6:��7:��Q:��R:��S:��U:��V:��W:��X:��Y:��Z:��v:��w:��x:��y:���:���:���:���:���:����ɷ��������l��c�M�ɷ���������������������������������*�j�0��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�jy0���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�/��hs6��h@l�0J�UmH�nH�u�:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:�� ;�� ;��;��;��;��;��;��;��;��1;��2;��������������mb�bP������������������������������#�jm2���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�1��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�js1���h@l�UmH�nH�u�2;��3;��4;��D;��H;��I;��J;��d;��e;��f;��h;��i;��j;��k;��l;��m;���;���;���;���;���;���;���;���;���;����ɷ��������l��c�M�ɷ���������������������������������*�j�3��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�jg3���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�2��hs6��h@l�0J�UmH�nH�u�;���;���;���;���;���;���;���;���;���;���;���;���;���;��<��<��<��!<��"<��#<��%<��&<��'<��(<��)<��*<��F<��G<��������������mb�bP������������������������������#�j[5���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�4��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�ja4���h@l�UmH�nH�u�G<��H<��I<��m<��n<��o<���<���<���<���<���<���<���<���<���<���<���<���<���<���<���<���<���<���<����ɾ�������~��u�_��M��������������������������������������#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�6��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�jU6���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�5��hs6��h@l�0J�UmH�nH�u�<���<���<���<���<���<���<���<���<��=��=��=�� =��=��&=��'=��(=��B=��C=��D=��F=��G=��H=��I=��J=��K=��g=��h=��������������mb�bP������������������������������#�jI8���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�7��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�jO7���h@l�UmH�nH�u��<���<��I=���=��>��_>���>��?���?���?��9@���@���@��@A���A��B��eB���B��C��wC���C��'D���D���D��NE���E��F��qF��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����$� �� ���$ �� ���$ �h=��i=��j=��x=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���>����ɷ��������l��c�M�ɬ�������������������������������������*�j�9��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�jC9���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�8��hs6��h@l�0J�UmH�nH�u�>��>��>��>��>��>��>��>�� >��%>��&>��'>��(>��8>��<>��=>��>>��X>��Y>��Z>��\>��]>��^>��_>��`>��a>��}>��~>��������������mb�bP������������������������������#�j7;���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�:��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j=:���h@l�UmH�nH�u�~>��>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>��?����ɷ��������l��c�M�ɷ���������������������������������*�j�<��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j1<���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�;��hs6��h@l�0J�UmH�nH�u?��?��?��?��?��?��?��?��?��:?��;?��<?��=?��b?��c?��d?��~?��?���?���?���?���?���?���?���?���?���?���?���?���?��������������t�tb���������L�����*�j�>��hs6��h@l�0J�UmH�nH�u�#�j%>���h@l�UmH�nH�u�h@l�mH�nH�u�*�j�=��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j+=���h@l�UmH�nH�u��?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?�� @��@��@��@��2@��3@��4@��6@��7@��8@��9@��:@��;@��W@��X@�������Ӷӣ���x�b������PӶӣ���x��#�j@���h@l�UmH�nH�u*�j�?��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�j?���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u�X@��Y@��Z@��[@��\@��b@��c@��d@��~@��@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@����ɵɪ����~�׵��u�_��M����������������������������#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�A��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u�hSm��mH�nH�u�#�jA���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�@��hs6��h@l�0J�UmH�nH�u�@���@���@���@���@���@���@���@���@���@���@���@���A��A��A��A��A��9A��:A��;A��=A��>A��?A��@A��AA�������������o]R�R@����������#�jC���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�sHu*�j�B��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j B���h@l�UmH�nH�u�AA��BA��^A��_A��`A��aA��qA���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A��B�����ҿ񭢓���v��b����L�񭢓��������������*�j~D��hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�jD���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�C��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u�B��B�� B�� B�� B�� B��B��B��B��,B��-B��.B��/B��;B��BB��CB��DB��^B��_B��`B��bB��cB��dB��eB��fB�������������o]R�R@����������#�j�E���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�sHu*�jxE��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�D���h@l�UmH�nH�u�fB��gB���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B�����ҿ񭢓���v��b����L�����������������������������������*�jlG��hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�F���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�jrF��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u��B���B���B���B��C��C��C��C��C��C��C��C��C��9C��:C��;C��<C��HC��TC��UC��VC��pC��qC��rC������Ѵѡ��v`�N���<��#�j�H���h@l�UmH�nH�u#hs6��h@l�0J�OJ�QJ�mH�nH�u*�jfH��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�j�G���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�'hs6��h@l�0J�OJ�QJ�^J�mH�nH�u�rC��tC��uC��vC��wC��xC��yC���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C��D��D��D�� D����ӿӱ���ӱ����u���ӿӱ��_ӱ����������������������������*�jZJ��hs6��h@l�0J�UmH�nH�u�#�j�I���h@l�UmH�nH�u�h@l�mH�nH�u�*�j`I��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�j�����h@l�UmH�nH�u�hSm��mH�nH�u D��!D��"D��$D��%D��&D��'D��(D��)D��ED��FD��GD��HD��SD��TD��gD��hD��iD���D���D���D���D���D���D���D��������������o]R�R@���������#�j�K���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�^J�mH�nH�u*�jTK��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�J���h@l�UmH�nH�u��D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D�� E�� E�� E��E��E��+E��,E��-E��GE��������߮�����w��c����M�߮�������������*�jHM��hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�L���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�jNL��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�uGE��HE��IE��KE��LE��ME��NE��OE��PE��lE��mE��nE��oE��E���E���E���E���E���E���E���E���E���E���E���E���E���E���E��������������mb�bP������������������������������#�j�N���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�jBN��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�M���h@l�UmH�nH�u��E���E���E���E���E���E��F��F��F��F��F��F��F��F��F��7F��8F��9F��:F��NF��OF��PF��jF��kF��lF��nF��oF��pF��qF��rF��sF����ɾ�������~��u�_�ɾ��M����~��#�j�P���h@l�UmH�nH�u*�j6P��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�O���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j<O��hs6��h@l�0J�UmH�nH�usF���F���F���F���F���F���F���F���F���F���F���F���F���F���F���F���F��G��G��G��G��G��%G��&G��'G��AG����ҿ败������t����^��L��������������������������#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j*R��hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�Q���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�$j����hs6��h@l�0J�UmH�nH�u�*�j0Q��hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�uh@l�mH�nH�u�qF���F��HG���G�� H��fH���H��I��pI���I��/J���J���J��-K���K���K��5L���L���L��GM���M���M��LN���N��O��ZO���O�� P��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����$� �� ���$ �� ���$ �AG��BG��CG��EG��FG��GG��HG��IG��JG��fG��gG��hG��iG���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G��������������t�tb���������L�����*�jT��hs6��h@l�0J�UmH�nH�u�#�j�S���h@l�UmH�nH�u�h@l�mH�nH�u�*�j$S��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�R���h@l�UmH�nH�u��G���G���G���G��H��H��H�� H�� H�� H�� H��H��H��+H��,H��-H��.H��/H��0H��CH��DH��EH��_H��`H��aH��cH��dH��eH��fH��gH��hH���H�������Ӷӣ���x�b�������PӶӣ���x�#�j�U���h@l�UmH�nH�u*�jU��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�j�T���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u��H���H���H���H���H���H���H���H���H���H���H���H���H���H���H���H���H���H���H���H���H���H���H���H��I�����񽮽�����}��t�^��L�������������������������������#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j W��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�V���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�$j����hs6��h@l�0J�UmH�nH�u�*�jV��hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�u�I��I��I��I��I��I��I��I��I��6I��7I��8I��9I��MI��NI��OI��iI��jI��kI��mI��nI��oI��pI��qI��rI���I���I���I���I���I��������������t�tb���������L�����*�j�Y��hs6��h@l�0J�UmH�nH�u�#�j�X���h@l�UmH�nH�u�h@l�mH�nH�u�*�jX��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�W���h@l�UmH�nH�u��I���I���I���I���I���I���I���I���I���I���I���I���I���I���I���I���I�� J�� J��J��(J��)J��*J��,J��-J��.J��/J��0J��1J��MJ��NJ�������Ӷӣ���x�b�����PӶӣ���x�������#�jwZ���h@l�UmH�nH�u*�j�Y��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�j}Y���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u�NJ��OJ��PJ��_J��`J��aJ��{J��|J��}J��J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J����ɾ�������~��u�_�ɾ��M����~��#�jk\���h@l�UmH�nH�u*�j�[��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�jq[���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�Z��hs6��h@l�0J�UmH�nH�u�J���J���J���J���J���J���J�� K�� K�� K��&K��'K��(K��*K��+K��,K��-K��.K��/K��KK��LK��MK��NK��ZK��cK��dK��eK��K����ҿ�蠑��t�������^��L����������������#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�]��hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�je]���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�\��hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�uh@l�mH�nH�u�K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K���K��������������mb�bP������������������������������#�jY_���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�^��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j_^���h@l�UmH�nH�u��K���K���K��L��L��L��L��.L��/L��0L��2L��3L��4L��5L��6L��7L��SL��TL��UL��VL��fL��jL��kL��lL���L����ɷ��������l��c�M�ɷ���������������������������������*�j�`��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�jS`���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�_��hs6��h@l�0J�UmH�nH�u�L���L���L���L���L���L���L���L���L���L���L���L���L���L���L���L���L���L���L���L���L���L���L���L���L���L�� M�� M��������������mb�bP������������������������������#�jGb���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�a��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�jMa���h@l�UmH�nH�u� M��M��M��M��$M��%M��&M��@M��AM��BM��DM��EM��FM��GM��HM��IM��eM��fM��gM��hM��jM��kM��wM��xM��yM���M����ɷ��������l��c�M��lɬ���������������������������*�j�c��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�jAc���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�b��hs6��h@l�0J�UmH�nH�u�M���M���M���M���M���M���M���M���M���M���M���M���M���M���M���M���M���M���M���M���M���M���M���M���M���M��N��N��������������mb�bP������������������������������#�j5e���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�d��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j;d���h@l�UmH�nH�u�N��N��N��&N��)N��*N��+N��EN��FN��GN��IN��JN��KN��LN��MN��NN��jN��kN��lN��mN��~N���N���N���N���N����ɷ��������l��c�M�ɷ���������������������������������*�j�f��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j/f���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�e��hs6��h@l�0J�UmH�nH�u�N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���O��O��O��O��O�� O��!O��������������mb�bP������������������������������#�j#h���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�g��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j)g���h@l�UmH�nH�u�!O��"O��#O��4O��7O��8O��9O��SO��TO��UO��WO��XO��YO��ZO��[O��\O��xO��yO��zO��{O���O���O���O���O���O����ɷ��������l��c�M�ɷ���������������������������������*�j�i��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�ji���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j�h��hs6��h@l�0J�UmH�nH�u�O���O���O���O���O���O���O���O���O���O���O���O���O���O���O���O���O���O��P��P��P�� P�� P�� P�� P��P��P��+P��,P��-P����������������t�tb���������L���*�j�k��hs6��h@l�0J�UmH�nH�u�#�jk���h@l�UmH�nH�u�h@l�mH�nH�u�*�j�j��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�jj���h@l�UmH�nH�u�-P��.P��FP��GP��HP��bP��cP��dP��fP��gP��hP��iP��jP��kP���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P������ԳŨ���ߋ�u��c���QŨ���ߋ���#�jm���h@l�UmH�nH�u#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j�l��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j l���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u P��iP���P��.Q���Q���Q��FR���R��S��nS���S��'T��T���T��3U���U���U��DV���V���V��gW���W��X��oX���X��,Y���Y���Y��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����$� �� ���$ �� ���$ ��P���P���P���P�� Q�� Q�� Q��'Q��(Q��)Q��+Q��,Q��-Q��.Q��/Q��0Q��LQ��MQ��NQ��OQ��^Q��lQ��mQ��nQ���Q�����񽮽�����}��t�^��L�������������������������������#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j|n��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�m���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�$j����hs6��h@l�0J�UmH�nH�u�*�j�m��hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�u��Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q�� R�� R�� R����������������t�tb���������L���*�jpp��hs6��h@l�0J�UmH�nH�u�#�j�o���h@l�UmH�nH�u�h@l�mH�nH�u�*�jvo��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�n���h@l�UmH�nH�u� R�� R��R��#R��$R��%R��?R��@R��AR��CR��DR��ER��FR��GR��HR��dR��eR��fR��gR��xR���R���R���R���R���R���R���R���R���R���R���R���R�����³¡������y�c���³�Q���������#�j�q���h@l�UmH�nH�u*�jjq��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�p���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�R���R���R���R���R���R���R���R���R��S��S��S��S��S��S��S��S��S��4S��5S��6S��7S��DS��KS��LS��MS��gS����ҿ譢����v��b����L�譢��������������������*�j^s��hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�r���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�jdr��hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�uh@l�mH�nH�u�gS��hS��iS��kS��lS��mS��nS��oS��pS���S���S���S���S���S���S���S���S���S���S���S���S���S���S���S���S���S���S���S��������������mb�bP������������������������������#�j�t���h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�jXt��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�s���h@l�UmH�nH�u��S���S���S���S��T��T��T�� T��!T��"T��$T��%T��&T��'T��(T��)T��ET��FT��GT��HT��YT��\T��]T��^T��xT����ɷ��������l��c�M�ɷ���������������������������������*�jLv��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�u���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�jRu��hs6��h@l�0J�UmH�nH�uxT��yT��zT��|T��}T��~T��T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T����������������t�tb���������L���*�j@x��hs6��h@l�0J�UmH�nH�u�#�j�w���h@l�UmH�nH�u�h@l�mH�nH�u�*�jFw��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�v���h@l�UmH�nH�u��T���T��U��U��U��,U��-U��.U��0U��1U��2U��3U��4U��5U��QU��RU��SU��TU��eU��uU��vU��wU���U���U���U���U���U���U���U���U���U���U������ԳŨ���ߋ�u��c���QŨ���ߋ���#�j�y���h@l�UmH�nH�u#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j:y��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�x���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U�� V��V��V��V��V��V��!V��"V��#V��=V�����񴩚���}��i��`�J��i񩚩��������������*�j.{��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�z���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�'hs6��h@l�0J�OJ�QJ�^J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j4z��hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�u�=V��>V��?V��AV��BV��CV��DV��EV��FV��bV��cV��dV��eV��~V��V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V��������������t�tb���������L�����*�j"}��hs6��h@l�0J�UmH�nH�u�#�j�|���h@l�UmH�nH�u�h@l�mH�nH�u�*�j(|��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�{���h@l�UmH�nH�u��V���V���V���V���V���V���V���V���V���V���V���V��W��W��W��W��DW��EW��FW��`W��aW��bW��dW��eW��fW��gW��hW��iW���W���W���W��������涢����u�����c��涢����M*�j��hs6��h@l�0J�UmH�nH�u�#�j�~���h@l�UmH�nH�u*�j~��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�j�}���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W��X��X��X��X��X��X��X��X��X��8X��9X������ԳŨ���ߋ�u�����cŨ���ߋ����������������������������������������#�j�����h@l�UmH�nH�u*�j���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u9X��:X��;X��LX��MX��NX��hX��iX��jX��lX��mX��nX��oX��pX��qX���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X����ɾ�������~��u�_�ɾ��M����~��#�j�����h@l�UmH�nH�u*�j���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j ���hs6��h@l�0J�UmH�nH�u�X���X���X���X���X���X���X�� Y�� Y�� Y��%Y��&Y��'Y��)Y��*Y��+Y��,Y��-Y��.Y��JY��KY��LY��MY��ZY��kY��lY��mY���Y����ҿ�蠑��t�������^��L����������������#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�j{����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j����hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�uh@l�mH�nH�u��Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y�� Z�� Z��������������mb�bP������������������������������#�jo����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�ju����h@l�UmH�nH�u� Z�� Z�� Z��#Z��$Z��%Z��?Z��@Z��AZ��CZ��DZ��EZ��FZ��GZ��HZ��dZ��eZ��fZ��gZ��xZ��}Z��~Z��Z���Z����ɾ�������~��u�_��M��������������������������������������#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�ji����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j���hs6��h@l�0J�UmH�nH�u�Y��FZ���Z���Z��S[���[�� \��e\���\��]��|]���]��0^���^���^��M_���_��`��]`���`��a��_a���a��b��db���b��c���c���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���$ � ����$� �� ���$ ��Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z���Z��[��[��[����������������t�tb���������L���*�jڈ��hs6��h@l�0J�UmH�nH�u�#�j]����h@l�UmH�nH�u�h@l�mH�nH�u�*�j����hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�jc����h@l�UmH�nH�u�[��[��![��0[��1[��2[��L[��M[��N[��P[��Q[��R[��S[��T[��U[��q[��r[��s[��t[���[���[���[���[���[���[���[���[���[���[���[���[���[�����³¡������y�c���³�Q���������#�jQ����h@l�UmH�nH�u*�jԉ��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�jW����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�[���[���[���[���[���[���[���[���[��\��\��\��\�� \�� \�� \�� \�� \��)\��*\��+\��,\��=\��B\��C\��D\��^\����ҿ譢����v��b����L�譢��������������������*�jȋ��hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�jK����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�jΊ��hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�uh@l�mH�nH�u�^\��_\��`\��b\��c\��d\��e\��f\��g\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\����������������t�tb���������L���*�j����hs6��h@l�0J�UmH�nH�u�#�j?����h@l�UmH�nH�u�h@l�mH�nH�u�*�jŒ��hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�jE����h@l�UmH�nH�u��\���\���\���\���\���\���\��]��]��]��]��]��]��]��]��]��6]��7]��8]��9]��F]��Y]��Z]��[]��u]��v]��w]��y]��z]��{]��|]��}]����������������ߋ�u��c���Q���������#�j3����h@l�UmH�nH�u#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j����hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u�hSm��mH�nH�u�#�j9����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u}]��~]���]���]���]���]���]���]���]���]���]���]���]���]���]���]���]���]���]���]���]���]���]�� ^�� ^��^��^��)^�����ҿ񭢓���v��b����L�񭢓��������������*�j����hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j-����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j����hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u�)^��*^��+^��-^��.^��/^��0^��1^��2^��N^��O^��P^��Q^��b^��o^��p^��q^���^���^���^���^���^���^���^���^���^���^���^��������������mb�bP������������������������������#�j!����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j����hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j'����h@l�UmH�nH�u��^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^��_��_��_��_��*_��+_��,_��F_����ɷ��������l��c�M�ɬ�������������������������������������*�j����hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j����hs6��h@l�0J�UmH�nH�uF_��G_��H_��J_��K_��L_��M_��N_��O_��k_��l_��m_��n_���_���_���_���_���_���_���_���_���_���_���_���_���_���_���_���_���_��������������t�tb���������L�����*�j����hs6��h@l�0J�UmH�nH�u�#�j����h@l�UmH�nH�u�h@l�mH�nH�u�*�j����hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j����h@l�UmH�nH�u��_���_���_���_���_���_���_���`��`��`��`��`�� `��!`��"`��#`��:`��;`��<`��V`��W`��X`��Z`��[`��\`��]`��^`��_`��{`��|`��}`��������涢����u�����c��涢����M*�j����hs6��h@l�0J�UmH�nH�u�#�j����h@l�UmH�nH�u*�j����hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�j ����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u}`��~`���`���`���`���`���`���`���`���`���`���`���`���`���`���`���`���`���`���`���`��a�� a�� a�� a�� a��a��a��a��a��-a��.a������ԳŨ���ߋ�u�����cŨ���ߋ����������������������������������������#�j�����h@l�UmH�nH�u*�jz���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u.a��/a��0a��<a��=a��>a��Xa��Ya��Za��\a��]a��^a��_a��`a��aa��}a��~a��a���a���a���a���a���a���a���a���a���a���a���a���a���a����ɾ�������~��u�_�ɾ��M����~��#�j����h@l�UmH�nH�u*�jn���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�hs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�jt���hs6��h@l�0J�UmH�nH�u�a���a���a���a���a���a���a���a�� b�� b�� b��b��b��b��b��b��b��/b��0b��1b��2b��Ab��Bb��Cb��]b��^b��_b��ab��bb��cb����ҿ败������t����^�败�L�������#�jߜ���h@l�UmH�nH�u*�jb���hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�$j����hs6��h@l�0J�UmH�nH�u�*�jh���hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�uh@l�mH�nH�u�cb��db��eb��fb���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b��c��c��c������ʫ�ʠ���t�������^�ʠ��L����#�jӞ���h@l�UmH�nH�u*�jV���hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�#�jٝ���h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�*�j\���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�c��c��c��c��c�� c��!c��=c��>c��?c��@c��ac��bc��cc��}c��~c��c���c���c���c���c���c���c���c���c���c���c���c���c���c���c����ӿӱ���ӱ��u���ӿӱ��_ӱ��������������������������������������*�jJ���hs6��h@l�0J�UmH�nH�u�#�j͟���h@l�UmH�nH�u�h@l�mH�nH�u�*�jP���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�j�����h@l�UmH�nH�u�hSm��mH�nH�u�c���c���c���c���c���c���c���c���c���c���c���c���c���c���c��d��d��d��!d��"d��#d��%d��&d��'d��(d��)d��*d��Fd��Gd��Hd����������������t�tb���������L���*�j>���hs6��h@l�0J�UmH�nH�u�#�j�����h@l�UmH�nH�u�h@l�mH�nH�u�*�jD���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�jǠ���h@l�UmH�nH�u��c���c��(d���d���d��Fe���e��f��if���f��,g���g���g��Fh���h���h��Ui���i���i���i���i���i��/k��Ok�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdiU��� &� F�gdJg���@�gd ��� ����$� �� ���$ � ����$� �� ���$ �Hd��Id��Vd��dd��ed��fd���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d�����³¡������y�c���³�Q���������#�j�����h@l�UmH�nH�u*�j8���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�d��e��e��e��e��e��#e��$e��%e��?e��@e��Ae��Ce��De��Ee��Fe��Ge��He��de��ee��fe��ge��te���e���e���e���e����ҿ譢����v��b����L�譢��������������������*�j,���hs6��h@l�0J�UmH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j2���hs6��h@l�0J�UmH�nH�u�hs6��h@l�0J�mH�nH�uh@l�mH�nH�u��e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���f��f��f��f��f��f��f��f�� f��%f��&f��������������mb�bP������������������������������#�j�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j&���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�����h@l�UmH�nH�u�&f��'f��(f��7f��Ff��Gf��Hf��bf��cf��df��ff��gf��hf��if��jf��kf���f���f���f���f���f���f���f���f���f����ɷ��������l��c�M�ɷ���������������������������������*�j���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j ���hs6��h@l�0J�UmH�nH�u�f���f���f���f���f���f���f���f���f���f���f���f���f���f�� g�� g�� g��%g��&g��'g��)g��*g��+g��,g��-g��.g��Jg��Kg��������������mb�bP������������������������������#�j�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�u*�j���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�����h@l�UmH�nH�u�Kg��Lg��Mg��\g��kg��lg��mg���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g����ɷ��������l��c�M�ɷ���������������������������������*�j���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u�hSm��mH�nH�u�#�j�����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�#hs6��h@l�0J�OJ�QJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j���hs6��h@l�0J�UmH�nH�u�g���g���g���g���g���g���g���g���g��h��h��h��h��h��h��#h��$h��%h��?h��@h��Ah��Ch��Dh��Eh��Fh��Gh��Hh��dh��eh��fh����������������t�tb���������L���*�j����hs6��h@l�0J�UmH�nH�u�#�j����h@l�UmH�nH�u�h@l�mH�nH�u�*�j���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�uhs6��h@l�0J�mH�nH�u'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u��hSm��mH�nH�u�j�����h@l�UmH�nH�u#�j�����h@l�UmH�nH�u�fh��gh��ih��jh���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h���h��i��i����������������ߋ�u�������c������ߋ��������������������#�js����h@l�UmH�nH�u*�j����hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u�hSm��mH�nH�u�#�jy����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u#i��i��i��"i��#i��2i��3i��4i��Ni��Oi��Pi��Ri��Si��Ti��Ui��Vi��Wi��si��ti��ui��vi���i���i���i���i���i���i���i���i���i���i����ɵɪ����~�׵��u�_�ɵɪ��M�~�#�jg����h@l�UmH�nH�u*�j���hs6��h@l�0J�UmH�nH�u�h@l�mH�nH�u�hSm��mH�nH�u�#�jm����h@l�UmH�nH�uj�����h@l�UmH�nH�u�h@l�mH�nH�u�'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�uhs6��h@l�0J�mH�nH�u$j����hs6��h@l�0J�UmH�nH�u�*�j���hs6��h@l�0J�UmH�nH�u�i���i���i���i���i���i���i���i���i��ij��jj���j���j���j���j���j���j��/k��Ok��Qk��Rk��tk��uk��vk���k���k���k���k�������»´��›����€x�mx[G�x���&j����hiU��0J�CJ�OJ�QJ�U\�aJ��#heW��hiU��0J�CJ�OJ�QJ�\�aJ��ja���hiU��Uj����hiU��U heW��hiU��CJ�OJ�PJ��QJ�aJ��hSm��hSm��h�O���j���h�2:�hiU��Uj����h�2:�hiU��U h�2:�hiU��� h�.��hiU���hiU��� h�}�h�}��h�}��j����h ��U'h�J��h@l�CJ�OJ�QJ�aJ�mH�nH�u$j����hs6��h@l�0J�UmH�nH�uOk���k��l��Pl���l���l��Fm��zm���m��n��Tn���n���n��o��8o��p��p���p���q��:q��r���r�� s��ns���s��=t�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������(�gdiU��� & F��7���^�7`���gdJg�����gdiU��R� &� F �gdJg����k���k���k���k���k���k���k��l��l��:l��;l��<l��Nl��Ol��Rl��Sl��}l��~l��l���l���l���l���l���l���l���l���l���l���l���l���l��m��m��m��Cm��Dm��Em��Hm��Im��gm��hm��im������ƴ�����ו�����ו�����ƴ���t��ƴ���i���j����hiU��U�j����hiU��U�ju���hiU��U�j���hiU��U&j����hiU��0J�CJ�OJ�QJ�U\�aJ���jW���hiU��U#j����hiU��CJ�OJ�PJ��QJ�UaJ� heW��hiU��CJ�OJ�PJ��QJ�aJ��#heW��hiU��0J�CJ�OJ�QJ�\�aJ�j����hiU��U�j���hiU��UhiU��)im��wm��xm��ym��|m��}m���m���m���m���m���m���m���m���m���m���m���m���m���m���m���m���n��n��n��n��(n��)n��*n��Qn��Rn��Wn��Xn��wn��xn��yn��n���n��8o��o���o���o������¾����������¾����¾����¾~���w�j��������j����h�g��hiU��5�U� h�i�hiU����j����hiU��U�j���hiU��U&j����hiU��0J�CJ�OJ�QJ�U\�aJ���j����hiU��U�j ���hiU��UhiU���j����hiU��U#j����hiU��CJ�OJ�PJ��QJ�UaJ� heW��hiU��CJ�OJ�PJ��QJ�aJ��#heW��hiU��0J�CJ�OJ�QJ�\�aJ��(�o���o���o���o���o���o���o���o���o���o���o���o���o���o��p��p��p��p��#p��'p��(p��*p��+p��3p��4p��6p��7p��?p��@p��Bp��Cp��Hp��Ip��Kp��Lp��Up��Vp��Xp��Yp��_p��`p��bp��cp��mp��np��pp��qp��|p��}p��p���p���p�����������򪷞����ȃȃȃȃȃȃȃȃȃȃȃȃȃȃȃȃȃ��� hD�hiU���h�q�hiU��h�]��5�hSm��h�O�0J-��h�w7�hSm��h�O�0J-���j����hiU��5�U�j����hiU��5�U� hiU��h�]���hiU���h�w7�hSm��0J-��j����h�g��hiU��5�U��j���h�g��hiU��5�U� hiU��5�h�g��hiU��5��3�p���p���p���p���p���p���p���p���p���p���p���p��:q��@q��Gq��Rq���q���q���q���q���q���q���q���q���q���q��r��r��r��r��r��&r��'r��������������������������ǂxoe�\U������ h�w7�hiU���h�w7�hiU��0J-��h�7w�hiU��0J-�5�hz �hiU��0J-��j����hiU��0J�Uhz �hiU��0J���j}���hiU��Uht?E�hiU��0J-�5� ht?E�hiU���hiU��0J-�5�6�� hiU��0J-�5�hz �hiU��0J-�5� hiU��0J-��j����hiU��Uh�w7�hSm��0J-���j ���hiU��B*Uph�����j����hiU��B*Uph����� hD�hiU���hiU�� 'r��Mr��Nr��Pr��Rr��Tr��Vr��^r��_r��`r��lr��ur���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r��s�� s��s��s��s��s��2s��4s��5s��7s��?s��@s��As��Us��^s��ms��ns��us��}s��~s��s���s���s���s��������������������������������ȼ���������С�����hiU��h�O�6�h�w7�hiU��h�O�6� hiU��0J-��hiU��h�O�0J-��h�w7�hiU��h�O�0J-�� h#b7�hiU���h�=%�hiU��6� h ��hiU��� hiU��5�h ��hiU��5�h�w7�hiU��0J-�� hI��hiU��� h�Sy�hiU���hiU��� h�w7�hiU��� hiU��6�h�w7�hiU��6��2�s���s���s���s���s���s���s���s���s���s���s���s���s���s���s���s���s���s���s��t��t��$t��<t��=t��Gt��Kt��Lt��Mt��St��dt��et��gt��ot��pt��qt���t���t���t���t���t��������������ɿ�ݷ��ݰݩ�����������ld�h�F��hiU��5�% *h ��hiU��hc��0JI�B*�\�ph���� h�Sy�hiU��� h#b7�hiU���h#b7�hiU��6� h ��hiU��� hiU��5�h ��hiU��5� h�w7�hiU��� h4x�hiU���h�Mz�hiU��6�hiU��5�B*�ph�����h]r��hiU��5�B*�ph����� hI��hiU���hiU���h�Sy�hiU��h�O�� hiU��h�O��hiU��h�O�6� hiU��6��'=t���t���u���u���v��{w��>x��y���y��{z���z���z��{��X{���{���{��,|��b|��u|���}���~��z�������܁������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� &� F�gdJg����gdiU���;�gdiU���W�gdiU�����gdiU��� & F��7���^�7`���gdJg���(�gdiU����t���t���t���t���t���t���t���t���t���t���u�� u�� u��u��Ru��Su��Zu��qu��ru���u���u���u���u���u���u���u���u���u���u���u���u���u���u���u��v��v��v��v��v��$v��%v��(v��8v��;v��?v���������������Ǽ�Ǵé���ǐ��y�y�y�yÀr�r�r�r����� h�U��hiU��� h$nk�hiU��� hEt��hiU���hEt��hiU��0J-�� hiU��0J-��j����hiU��0J�Uh�w7�hiU��0J���jb���hiU��Uj����hiU��U hQr�hiU���hiU��� h�w7�hiU���h�w7�hiU��0J-�� hI��hiU��� hiU��6�h�nO�hiU��6� h�nO�hiU��� hiU��5�h�nO�hiU��5��,?v��@v��Cv��Gv��Iv��Uv��Wv��Xv���v���v���v���v���v���v���v���v���v���v���v���v�� w��w��w��w��!w��"w��Sw��Tw��Uw��xw��yw��zw��{w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w��x������������������������ȗ����������������������������������� h�1u�hiU���h�w7�hiU��0J-�� hiU��0J��hZW6�hiU��0J���jԺ��hiU��U hQr�hiU��� hEt��hiU���hEt��hiU��0J-��j����hiU��0J�Uh�)��hiU��0J���j���hiU��Uj����hiU��UhiU��� h�U��hiU��� h�w7�hiU��1x��x��x��;x��<x��=x��>x��Gx��Hx��ox��qx���x���x���x���x���x���x���x���x���x���x���x���x���x���y��y��y��y�� y�� y�� y��y��0y��`y��dy��sy��ty��vy��wy���y���y���y���y���y���y���y���y��������ƿϸϸ��ϸϸ�Ϧ����ϝ����ωωω��~�u�ϐ�hhc��hiU��0J���j����hiU��U h���hiU��� h�9��hiU��� hiU��0J-��h�9��hiU��0J-���jF���hiU��U hQr�hiU��� h�U��hiU��� h�w7�hiU���h�w7�hiU��0J-��hiU��� hiU��0J��j����hiU��0J�UhZW6�hiU��0J��j����hiU��U�j����hiU��U�.�y���y���y��"z��#z��Sz��Tz��Uz��wz��xz��yz��zz��{z���z���z��X{��_{��`{��a{��x{��y{��z{��{{��}{��~{��{���{���{��|��*|��,|��0|��6|��B|���|���|���|���|���|����������ſ�������㦘�����y�r�r���g��������������jm���hiU��U h�<��hiU��� h�BM�hiU���h�?�hiU��hA}���j����h�?�hiU��hA}��Uj����hiU��UmH�nH�u�hSm��mH�nH�u h�?�hiU���hz��hiU��0J�� hiU��0J��j����hiU��0J�Uh�c��hiU��0J���j����hiU��Uj����hiU��UhiU��� hiU��0J-��h�e��hiU��0J-�5��&�|���|���|��}��}��-}��.}��/}��8}��9}���}���}���}���}���}���}���}���}���}���}���}���}���}���}��S~��{~��}~���~���~���~���~���~���~���~���~���~���~���~���~���~���~���~���~�� ��������$��%���������������������������������뺭����������|��������j����h���hiU��UaJ�hSm��hSm��0J-�aJ���j1���h���hiU��UaJ� hiU��aJ��j����h���hiU��UaJ�h���hiU��aJ�� h�B��hiU����j����hiU��U�jO���hiU��U�j޾��hiU��UhiU���j����hiU��Uh�w7�hSm��0J-�0%��&��(��N��O��e�����������������������������������������E���F���G���K���L���M���N���O���S���T���t���u���v������������������������������������ĹȤ����Ă�m�������bȤ�������������j���hiU��U)h���hiU��0J�^J�aJ�fH�q� �����������j����hiU��U,j����hiU��0J�U^J�aJ�fH�q� �����������)h�;H�hiU��0J�^J�aJ�fH�q� �����������j���hiU��UhiU���j����hiU��U.h���hiU��B*^J�aJ�fH�ph����q� �����������h�2g�hiU��aJ�� hiU��aJ��h���hiU��aJ�%��������������������������������ŀ�������������������(���)���*���5���6���x���y���������쨏s���h�S��9����������2h���hiU��0JS�B*^J�aJ�fH�ph����q� �����������)hvJ �hiU��0J�^J�aJ�fH�q� �����������j/���hiU��U6hZ_v�hiU��B*OJ�QJ�^J�aJ�fH�ph����q� �����������(hiU��B*^J�aJ�fH�ph����q� �����������hiU���.h���hiU��B*^J�aJ�fH�ph����q� �����������,j����hiU��0J�U^J�aJ�fH�q� �����������)h���hiU��0J�^J�aJ�fH�q� ����������j����hiU��U�j����hiU��U�y���z�������ہ��܁��/���1���4���5���6���F���G���H���Q���R�������������������y���z�����������������������߃�����P���W���Y���]������������������������������������������ɩ�����썘����v��o��d��������j����hiU��U h�<b�hiU���hiU��OJ�QJ�^J��hr'�hiU��OJ�QJ�^J���j-���hiU��Uj����hiU��Uh���hiU��0J��h�w7�hSm��0J-���j����hiU��OJ�QJ�UhiU��OJ�QJ��j����hiU��OJ�QJ�UhZ_v�hiU��^J�� h�:C�hiU��� h~8�hiU���hiU��� h�=��hiU���h���hiU��aJ�&܁�����T���p������������������<���L����������{���������������������J���w�������F���o���H�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� & F��7���^�7`���gdJg���W�gdiU�����gdiU��� & F�gdJg����������������������� ������������������E���I�����������J���v���݇�������������҈��ӈ��Ո��������������������������4���5���6���=���D���E���F���G���H�����������������������������������~�vqv���j��� hiU��hSj^�� hSm��5�h ��hSm��5��j-���hiU��5�U� hiU��5�j����hiU��5�U�j����hiU��0J�Uh�~J�hiU��0J���j����hiU��U�j���hiU��U h�]��hiU��� h� �hiU���h�mz�hiU��0J�� h�&��hiU��� hiU��0J�� hZ_v�hiU���hiU���j����hiU��U hSm��0J-�)���������������P����������r�����������8����������E���n���Ԑ��$���{�������M���j���w���%���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������R� &� F �gdJg��� & F��7���^�7`���gdJg�����gdiU��� &� F�gdJg�������������'���;���b���f���m�����������΋��ԋ������������������A���G���T���U���w���x���y�����������ʌ��������������������-���.���O���^���l���s���w���}����������������������)�����������������������������������������������v�������h�3��hiU��OJ�QJ�^J��h�K��hiU��0J�� h�F��hiU���h�F��hiU��0J��j����hiU��0J�Uh�F��hiU��0J���j����hiU��Uj����hiU��UhKr��hiU��0J��h|aQ�hiU��0J��h���hiU��0J�� h [�hiU��� hiU��0J��h�$��hiU��0J��h���hiU��0J��hiU��-)���*���:���F���G���_���`���a���l���n���o���p�������������������K���R���v���z�����������������������ُ��ڏ��ۏ�������������������������������������r`���������������������������������������#j����hiU��0J�CJ�OJ�QJ�UaJ� hX@u�hiU��0J�CJ�OJ�QJ�aJ���j����hiU��U hX@u�hiU��CJ�OJ�PJ��QJ�aJ�� hX@u�hiU��CJ�OJ�PJ��QJ�aJ��hX@u�hiU��0J�CJ��h&-��hiU��0J��hct�hiU��0J�� hSm��5�h�nO�hSm��5��j-���hiU��Uj����hiU��UhiU���h���hiU��0J�� hiU��0J�������E���T���n���}���������������������������Ԑ��������������������!���"���$���8���{�����������������������Ǒ��ڑ��������������� ������*�����������ؽ�ةܡؖ��s���������ؽ��j�j������������������������h�K��hiU��0J��#j����hiU��0J�CJ�OJ�QJ�UaJ� hX@u�hiU��0J�CJ�OJ�QJ�aJ���j3���hiU��Uj����hiU��UhX@u�hiU��0J�CJ�aJ�� h2 ��hiU���h2 ��hiU��0J��hS2E�hiU��0J��h&-��hiU��0J��hiU��� hX@u�hiU��CJ�OJ�PJ��QJ�aJ��$hX@u�hiU��CJ�OJ�PJ��QJ�^J�aJ�%*���9���:���;���>���K�����������ʒ��ޒ��������5���A���Y���h���i���j�������������������������� ���#���$���H���I���J���Z���[���_���`����������������������μμ��μβΪΟ������t�k�Ϊ�`�����j����hiU��UhOp��hiU��0J���j)���hiU��U h�x��hiU��� hiU��0J��j����hiU��0J�UhH��hiU��0J���j����hiU��Uj����hiU��Uh2 ��hiU��h�o���h�4��hiU��0J��h���hiU��0J��hiU���hiU��^J�aJ��h� ��hiU��^J�aJ�� hct�hiU���h� ��hiU��aJ��h� ��hiU��0J�aJ�%������������������������”��Ô��ؔ��ٔ��ݔ��ޔ�����������$���%���'���)���*���P���Q���R���n���o���s���t��������������������������������������"���#���$���%���(���)���A���������������������������������x��q���������� h~8�hiU���h ^��hiU��0J���jw���hiU��U�j����hiU��Uh�l&�hiU��0J���jU���hiU��U h�l&�hiU��� htg��hiU���h�r�hiU��0J���j����hiU��UhH��hiU��0J���j=���hiU��Uj����hiU��UhiU���j����hiU��0J�Uh���hiU��0J�+A���B���C���D���T���U���V���^���_���`���a���t���|�������������������� �����������֘��������$���k���l���}��������������������������������������������X���d���l���m�������������������߭�����������������z�z�z�z�z�z�zs�������� h�?�hiU��� hN��hiU���h`;�hiU��0J��hkm��hiU��0J�� h~8�hiU��� hiU��0JE��h�>4�hiU��0JE��hiU���j����hiU��0J�UhEt��hSm��0J-�� hSm��0J-���ji���h�e��hiU��0J�Uh�e��hiU��0J��j����h�e��hiU��0J�Uj����hiU��U�j����hiU��U�,�����������l���}���d��������������<���g�������ߛ����� ���C���u�����������������3���h�����������ܝ�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`���gdiU����gdiU���;�gdiU��� &� F�gdJg�����gdiU�����������������������������������ʚ���������<���f���g���t���}�������������������֛��ܛ������������������� ���"���$���9���A���E���I���Z���`���u���y���������������������������������������ɜ��Ϝ���������������������������ҮҮҮҮҮң�ҮҮҮݮҗҮҗҮ�ݮҗ��ҮҗҮ�݇� hN��hiU���hiU��]�nHtHh�G��hiU��]�nHtHhu#7�hiU��nHtH�hiU��nHtH�hf��hiU��nHtH�!h�(��hiU��0J�B*�nHph����tHh�G��hiU��nHtH�hiU��� h�?�hiU���j����hiU��UmH�nH�u�hSm��mH�nH�u�5��������������������������������ܝ�����������������,���-���������������������������ʞ��Ҟ��ݞ��ޞ������������ ��������� ���$���%���B���C���D���Q���R���\���]���g���w���{�����������������������ȟ��ɟ�����������������������������������������ŷ������������������������������������hiU��OJ�QJ�^J��h�T��hiU��OJ�QJ�^J��h�k��hiU��OJ�QJ�^J�� hiU��0J��j����hiU��0J�OJ�QJ�UhN��hiU��0J�OJ�QJ���j����hiU��Uj����hiU��Uh���hiU��0J�� hN��hiU��� h�G��hiU���hiU��3����-���\���}���������������]���x���������� ������� ���#����������������-���P������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$gdiU���;�gdiU����$gdiU�����$$gdiU��� & F�gdJg�����gdiU��� & F��7���^�7`���gdJg����gdiU�����������������������7���9���Ơ��Ǡ��Ƞ��٠��ڠ��۠��ܠ������������ ���������/���0���F���H���d���u�������������������������������������������������������������������聈������w�jw�������������������j����hiU��5�U�j����hiU��5�U� h�hiU��� hiU��0J��h�w7�hSm��0J-���jy���h�g��hiU��5�U� hiU��5�h�g��hiU��5�j����h�g��hiU��5�U�h�b��hiU��0J-��j����hiU��0J�Uh�~J�hiU��0J���j����hiU��UhiU���j����hiU��U�jU���hiU��U�&������� ��� ��� ��� ��� ������"���#���4���8���H���[���\���m���~����������������������������������������������ۢ��ܢ�������������� ��� �����������������ϿϿϲ��������Ͽƿƿ��y�l^Ͽ����j����hiU��0J�OJ�QJ�UhN��hiU��0J�OJ�QJ���j����hiU��Uj����hiU��Uh�w7�hSm��0J-���jk���h�g��hiU��5�U� hiU��5�h�g��hiU��5�j����h�g��hiU��5�U� hN��hiU���h���hiU��0J��hiU��� hiU��h�yZ�� h�hiU���j����hiU��5�U�hSm��h�O�0J-��h�w7�hSm��h�O�0J-�$���W���X����������������������������������� ���!���"���+���4���5�����������������������ä��Ӥ��Ԥ��������-���.���/���9���:���;���@���M���f���k���p���֥���������������������������������������rl�e��� hN��hiU��� hiU��0J��h:2��hiU��OJ�QJ�^J��h�gC�hiU��OJ�QJ�^J�� hiU��5�j����hiU��5�U�h�K��hiU��5��j<���hiU��U�j����hiU��U�j���hiU��Uj����hiU��0J�OJ�QJ�UhiU��0J�OJ�QJ��h=:��hiU��0J�OJ�QJ���j]���hiU��Uj����hiU��UhiU��'�����������������5���8���E���c���e���i���k���l���}�������������������������������Ϧ��Ц�����������������������������������(���������������������������rd�]�V����� h�?�hiU��� hiU��h�gC��j����hiU��0J�OJ�QJ�UhN��hiU��0J�OJ�QJ���j"���hiU��Uj����hiU��Uh���hiU��0J��h�w7�hSm��0J-���j����h�g��hiU��5�U� hiU��5�h�g��hiU��5�j����h�g��hiU��5�U� h�E��hiU���h'}_�hiU��0J�� hiU��0J��h�X��hiU��6�hb"�hiU��0J�� h���hiU���hiU��!(���)���*���+���,���-���B���H���L���N���c���i���������������������������ѧ��է��=���J���O���\���Ѩ��ը��F���G���X���Y���Z���[���d���e���f��������ʾ��ʾʪդ՛՛ՒՉՉ�zme`e������������������ hSm��5�h]r��hSm��5��j����hiU��5�U� hiU��5�j����hiU��5�U�h�CQ�hiU��0J��h���hiU��0J��h���hiU��0J�� hiU��0J��hiU��h7$=�nHtH�hiU��]�nHtHh�K��hiU��]�nHtHh�K��hiU��nHtH�hiU��� h�?�hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��U�"��������3���K�������h���{�������������������F���^�����������������������0���?�������د��������Ա������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� & F��7���^�7`���gdJg�����gdiU��� & F�gdJg���f���g���h���p���z�������������������������������������������ԩ��թ��֩������������������������ ���)���f���g���t��������������������� ���������������������ݣ��{�{�{�{�t�k�^����j����h�g��hiU��5�U�h'}_�hiU��0J�� h�UC�hiU��� hN��hiU��� hiU��0J��h:2��hiU��OJ�QJ�^J��j����hiU��0J�OJ�QJ�UhN��hiU��0J�OJ�QJ���j����hiU��U hiU��5�j����hiU��5�U�h�K��hiU��5��j���hiU��Uj����hiU��Uh���hiU��0J��hiU��� h���hiU��� h�b��hiU��$������ ���!���"���.���/���4���L���k���l�����������������������������������Ϋ��������P���]���b���o����������^���_���p���q���r���s�����������Ⱥȯ�������ȋȂ�y�y�o�boZ�����������h]r��hSm��5��j����hiU��5�U�j����hiU��5�U�h�CQ�hiU��0J��h���hiU��0J��h���hiU��0J��j����hiU��0J�OJ�QJ�UhN��hiU��0J�OJ�QJ���js���hiU��Uj����hiU��U hiU��0J��hiU���h�w7�hSm��0J-��j����h�g��hiU��5�U��j����h�g��hiU��5�U� hiU��5�h�g��hiU��5��!s���|���}���~������������������������������������������׭��ح��٭���������������� ���������^���_���l���|�����������Ǯ��Ю��ٮ�������������������%��������������ŭ��䒌����������{���p�c����hN��hiU��0J�OJ�QJ���j����hiU��UhiU��OJ�QJ�^J�� h�UC�hiU��� hiU��0J��h:2��hiU��OJ�QJ�^J��j����hiU��0J�OJ�QJ�Uh���hiU��0J�OJ�QJ���ja���hiU��Uj����hiU��U hN��hiU���h���hiU��0J�� h���hiU���hiU���j����hiU��5�U�h]r��hSm��5� hSm��5��&%���&���:���>���C���L���U���n���r���ʯ��ׯ��د��߯���������������M���P���Q���b���c���d���e���n���o���p���v����������������������������� ������������"���+���,���D���I���N���X��������������ķ�������������ķķ��ć����݀�s���h:2��hiU��OJ�QJ�^J�� hN��hiU��� h���hiU��� hSm��5�h]r��hSm��5��jg���hiU��5�U� hiU��5�j����hiU��5�U�h'��hiU��OJ�QJ�^J�� h'��hiU���h���hiU��0J��h���hiU��0J��hiU��OJ�QJ�^J�� hiU��0J��hiU���j����hiU��0J�OJ�QJ�U�-X���\���f���o���������������ɱ��ұ��ӱ��ܱ�����$���=���\���]���z���{���|�������������������������������������������������3���4���>���B���G���`���y���}���������������� ���#���-���5���7���;���E���N�������������������������������������׿����ס��������������������������������������������j����hiU��UmH�nH�u�hSm��mH�nH�u h�?�hiU���j����hiU��0J�OJ�QJ�UhN��hiU��0J�OJ�QJ���j����hiU��Uj����hiU��U hiU��0J�� h�UC�hiU���hiU���h���hiU��0J�� hN��hiU��7������������������4���C���ڳ�����������������C���n�������������I�������ζ��۶�������� ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`���gdiU��� &� F�gdJg�����gdiU��� & F�gdJg����gdiU���$gdiU���;�gdiU����$gdiU���������������������&���'���>���?���@���A���B���J���m���n���s�������ĵ��ȵ��������������#���*���5���G���I���P���h�������������������������������d���m���������������������������콯�ͦ͞�͌͞�������������v�v�v͌�o��� h�hiU���h|2�hiU��nHtH�hu#7�hiU��nHtH� h�&��hiU���h�G��hiU��nHtH�hiU��nHtH�h45T�hiU��aJ��j����hiU��UmH�nH�u�hSm��mH�nH�u h�?�hiU���hiU���j����hiU��0J�OJ�QJ�Uh�_��hiU��0J�OJ�QJ��j����hiU��U�jU���hiU��U�+ ���.���:���|������(�������۸��E���h�����������������[�����������º��������F���y���»������$���_���v�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdiU������� ������5���9���Y���i�������ø��������2���F���m���x�����������׺�������������� ���������'���-���D���T���^���_���a���f���m���w���y���z�������л��������!���+���,���/���9���`���f�������ӽ�� ���#���-���f���������������ؾ��پ��ھ�����������������������������������������������������������������������j����hiU��Uj����hiU��UhiU��OJ�QJ�^J��h8x��hiU��OJ�QJ�^J�� h�_��hiU���h���hiU��0J�� h3\�hiU���hiU��nHtH� h�hiU��� h�&��hiU���h|2�hiU��nHtH�hiU��;�������,����������������5���n��������������� ��������������6���L������������������� ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;�gdiU���W�gdiU��� & F�gdJg�����$$gdiU����$gdiU��� & F��7���^�7`���gdJg�����gdiU���ھ����������������������������������������)���6�������������������������������������$���4���W���X���|���}���~����������������׼����������x����r���g�[�������������hiU��0J�OJ�QJ�^J���j����hiU��U hiU��0J��hSm��h�O�0J-��h�w7�hSm��h�O�0J-���jE���hiU��5�U� hiU��5�j����hiU��5�U�h�hiU��h�]���h���hiU��0J�� h�hiU���h�hiU��0J��hNE��hiU��mHsH�hiU��mHsH� h�_��hiU���hiU���j����hiU��U hSm��5�h ��hSm��5��!������������������������������������������ ���������2���;���B���]���^��������������������������������������&��������������������������ɿҸ�랔�����~�u��l�e[V�������� hiU��5�j����hiU��5�U� hiU��h�U���h���hiU��0J��h�~J�hiU��0J���j���hiU��U�j����hiU��UhiU��OJ�QJ�^J��h�S��hiU��OJ�QJ�^J��hh`L�hiU��OJ�QJ�^J�� h�S��hiU���j����hiU��0J�Uh.}e�hiU��0J�� hiU��0J���jK���hiU��Uj����hiU��UhiU���j����hiU��0J�OJ�QJ�U^J�� ���������������������������������������� ������+���,���B���D���`���q���~������������������������������������������������������������������� ������������������$���-���M���N���d���e������������ɹ���������������鴧������ɟ���͋�Ƀ�x��j���hiU��Uj����hiU��Uh���hiU��0J��hNE��hiU��mHsH�hiU��mHsH��j����hiU��5�U� hiU��5�hiU��OJ�QJ�^J�� hiU��0J��hiU��� h�hiU���hSm��h�O�0J-��h�w7�hSm��h�O�0J-��j����hiU��5�U��j���hiU��5�U/e���f���m���u���v���w���x���y���������������������������������������7���>���Y�������������������"���(���4���>���K���q���~���������������������������������D���H���������������������������޶ޭަ��ަޔޔލކ�ޔ�r�k h�?�hiU���h� 6�hiU��OJ�QJ�^J�� hiU��h�8�� h=�hiU��� h�&��hiU���h���hiU��0J��h�s��hiU��0J�� h�s��hiU���h�G��hiU��0J�� hiU��0J�� hSm��5�h]r��hSm��5��j����hiU��Uh�hiU��h0���hiU���hSm��h�O�0J-��h�w7�hSm��h�O�0J-��j����hiU��U�*����������������������������������������/���O���R���Y���������������������������������������������������������� ���-���0���7���}���~�������������������������������������������������գ�������o�fh�w7�hSm��0J-���j����h�g��hiU��5�U� hiU��5�h�g��hiU��5�j����h�g��hiU��5�U�hiU��OJ�QJ�^J�� hfX��hiU���h� 6�hiU��CJ�� h=�hiU��� h�&��hiU��� h�C��hiU���h���hiU��OJ�QJ�^J�� h�?�hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uhiU���j����hiU��U�( ���[�����������9���~���������������������� ���s������)������� ��������������b������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ &� F�gdJg��R� &� F �gdJg��� & F��7���^�7`���gdJg�����gdiU���;�gdiU����gdiU���$gdiU�����������������I���V�������������������������"���%���3���7��������������������������� ���#���$���H���I���J���T���U��������������(���)���-���9���B���\���]���m���n�����������������ɶɶɶɶɶɶ�������y�y�r���������������� hiU��hSj^�� hdL��hiU��� hiU��h�1��j����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���jm���hiU��Uj����hiU��U$hG��hiU��CJ�OJ�PJ��QJ�^J��aJ��hG��hiU��0J��h^G��hiU��OJ�QJ�^J�� h�i��hiU���h���hiU��0J��hiU���j����h�g��hiU��5�U*��������������������������������������������������������r���s���������������������������������������������������.���1�����������칯��͕ͅ�|��rm`rZr�Q�������������hkU��hiU��0J�� hSm��0J-���jo���hiU��5�U� hiU��5�j����hiU��5�U�h�w7�hSm��0J-���j����hiU��B*Uph�����j����hiU��B*Uph����� h�i��hiU��� hiU��0J��j����hiU��0J�UhzZ1�hiU��0J���j}���hiU��UhiU���j����hiU��0J�OJ�QJ�UhdL��hiU��0J�OJ�QJ��j����hiU��U�j����hiU��U�1���6���C���M���Q���W���\���b���j���k�������������������������������������U���V������������������������������������������������� ���������������"���.���/���F���N���S���`���s��������������������������������������������������������������������4���9���M���N���O�����������������������������������������������������������������������h�Ee�hiU��0JT�� hiU��0JT�� h�9�hiU��� h�Ee�hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��U h�?�hiU���hkU��hiU��0J��hiU��� hiU��0J�C�����������C��������������a�����������N����������q������� ���@���N���p�������������� ���)���s�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� & F��7���^�7`���gdJg�����gdiU����gdiU�������`���gdiU���O���T���a���b���{������������������������������������������������������� ������������������:���;���_���a���f���p���q���r���w������������������������������������������� ��� ��������� ���/���=���>���B���D���L���N���R���[���_���`���e���p���r��������������������������������(���������������������������������������������������������������������������h���hiU��0J��h�<p�hiU��^J��h�{"�hiU��0J��h�31�hiU��0JT��h�]�hiU��0JT�� h��hiU���h'>��hiU��0JT�� h�Ee�hiU��� hiU��0JT��hiU��F(���-���@���{�����������������������<���=���`���a���b���w���x���}�����������������������������������6���7���N���O���P���Q��������������������������������������������������������Ⱦ������ܦ����܏��z�����oܦ�������������������j����hiU��U h�i��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��0J�OJ�QJ�UhzZ1�hiU��0J�OJ�QJ���j_���hiU��Uj����hiU��0J�UhzZ1�hiU��0J���j����hiU��Uj����hiU��U hiU��0J��h�W�hiU��0J��h���hiU��0J��hiU��(����y���-���S�������G���m�����������h���������������)���A����������7���^���������������������X������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ & F��7���^�7`���gdJg���;���`��gdiU��� & F�gdJg����gdiU���;�gdiU�����gdiU���������������;���?���O���P���g���h���j���k������������������������������ ���������#���,���0���Y���Z�������������������������� �������������������������������ʼ�����䖍����yo�h�_����h:t�hiU��0J�� h�6��hiU���j����hiU��0J�Uh��hiU��0J���j����hiU��Uh�K$�hiU��0J�� hiU��0J�� h6��hiU���h�Y �hiU��0J��h���hiU��0J�� h�i��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��UhL(W�hiU��0J��hiU���j����hiU��0J�OJ�QJ�UhiU��0J�OJ�QJ�%����������������(���)���3���@�������������������������0���1���3���4���q���~��������������� ��� ���:���;���<���O���P����������������������������������������������������������������������������������������������������������ܟ�ܔ�����{����������j����hiU��0J�UhZF�hiU��0J�� hiU��0J���j����hiU��U hiU��h�S���j����hiU��0J�OJ�QJ�UhC%%�hiU��0J�OJ�QJ���j0���hiU��Uh���hiU��0J�� h�i��hiU���hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��U�0���'���(���?���@���B���C���v��������������������������������&���'���C���I���J���U���������������������������������������������������/���0���Y���Z���[���h���i��������������������������������������������������������x����������������������h�/��hiU��0J���j����hiU��U h�l&�hiU��� hN!��hiU��� hiU��0J��h���hiU��0J��j����hiU��0J�OJ�QJ�UhC%%�hiU��0J�OJ�QJ���jN���hiU��U h�i��hiU��� h��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��UhiU��+X����������������������� ���-���S���������������������������F���������������<������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� & F�gdJg���$gdiU���;�gdiU�����gdiU��� & F��7���^�7`���gdJg����gdiU�����������/���7���?���@���O���P���z���{���}���������������������������������������������1���2���3���4���=���>���C���D���F���H���L���X���v���������������������������������������ۼ�󩠚���ۉ�����y�������p��������������������hSm��mH�nH�u hbi��hiU���hZF�hiU��0J�� hiU��0J���j����hiU��U hiU��0J��h���hiU��0J��h�e��hiU��0J��j����hiU��0J�Uh�~J�hiU��0J���j���hiU��U�j|���hiU��Uj����hiU��U h�/�hiU���h�p6�hiU��0J��hiU���h�/�hiU��0J�(������������������������������;���<���=���J���K�������������������������#���$���3���4���^���_���a�����������������������������������������������������������z�qg�aX���h���hiU��0J�� hiU��0J��j����hiU��0J�Uh�~J�hiU��0J���jK���hiU��U�j����hiU��U h�/�hiU���h�p6�hiU��0J��h�/�hiU��0J��h�/��hiU��0J��j����hiU��0J�OJ�QJ�UhC%%�hiU��0J�OJ�QJ���j#���hiU��Uj����hiU��U h�l&�hiU��� h�i��hiU���hiU���j����hiU��UmH�nH�u"��������0�������������������8���O���}���������������#���E���o���������������X���h�������:���E������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ & F��7���^�7`���gdJg��� &� F�gdJg����gdiU���$gdiU���;�gdiU��� & F�gdJg�����gdiU��������������������,���-���.���0���2���6���B���w����������������������������������������������������������h���u����������������������������������������������������Ͽ��϶ϯ��������������r�k�d� h�v�hiU��� h�i��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��0J�OJ�QJ�Uh?'�hiU��0J�OJ�QJ���j_���hiU��U h�D�hiU���h�D�hiU��0J��h���hiU��0J�� hbi��hiU��� hiU��0J��j����hiU��0J�Uh�V3�hiU��0J���j����hiU��UhiU���j����hiU��U�'��������������������������������N���R���C���D���t���u���v��������������������������������������������������������������������������"���[���\���f���i���o���r���������������������뵧���������������z���s��������������������� hY��hiU��� hiU��0J�� h� �hiU���hY��hiU��0J�� h{�hiU���h�hiU��0J�� h�i��hiU���j����hiU��0J�OJ�QJ�Uh���hiU��0J�OJ�QJ���j����hiU��U h�&��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��Uh���hiU��0J��hiU��*E�������������������������������\���k��������������|����������.���Q�������M��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$gdiU���;�gdiU���W�gdiU��� & F�gdJg��� & F�gdJg�����gdiU����gdiU�������������������{���|�������������������������������� ������ ���!���)���+���,������(���,���-���C���D���E���M���N���O�������������������������������������������������������K����������������䱼�����䐼������伤{�t�������� h�&��hiU���j����hiU��UmH�nH�u� h�?�hSm����j���hiU��Uh]"��hiU��0J��hSm��mH�nH�uhSm����j����hiU��Uj����hiU��Uh���hiU��0J�� h�G�hiU���h�hiU��0J�� h�i��hiU���hiU���h���hiU��0J�� hiU��0J��h���hiU��0J�-�������U���w���������������������������U�����������������������������F���k���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� & F�gdJg���;�gdiU��� & F��7���^�7`���gdJg�����gdiU��� & F�gdJg����gdiU���$gdiU���K���L���k���l��������������������������������������������������d���m���t�������������������������������������������y���z�����������������������������������������������������������~�������������������������������ί����Ύ������|�u�u� h�G�hiU���h�hiU��0J��hSm��h�O�0J-��h�w7�hSm��h�O�0J-���j����hiU��Uj����hiU��0J�Uh�~J�hiU��0J���j���hiU��U�j����hiU��Uj����hiU��Uh�A�hiU��0J�� h�i��hiU��� h�R�hiU���hiU���h���hiU��0J�� hiU��0J�.���*���3���;���<���~��������������������������������������� ������������������������������������� ��� ��������������� ���'���-���2���j���k���u���x���}�������������������������������w���������������������������������������������y������h���hiU��0J�� h: n�hiU��� hiU��0J�� hjA�hiU��� h� ��hiU���hY��hiU��0J��h�hiU��0J�� h�i��hiU��� h�&��hiU��� hiU��hb'���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��Uh� ��hiU��0J�� h�u��hiU���h���hiU��0J��hiU��/����k���y�����������1�����������<��K��������������@������������=�e������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$gdiU���;�gdiU��� & F��7���^�7`���gdJg��W�$gdiU����$gdiU��� & F�gdJg�����gdiU���w���z�����������������������������������������������;��<��F��J��K��O��S��n��}��~����������������������������������� �����������)�*�M�N�O�^�_�r��������?������������������������������������������󪵡��������������������� hh�hiU���j����hiU��0J�Uh�z��hiU��0J���j(���hiU��Uj����hiU��Uh�z��hiU��0J�� h� ��hiU���h� ��hiU��0J�� hiU��0J�� h|��hiU���h�hiU��0J�� h: n�hiU���hiU���h���hiU��0J�6?�@�����1�2�U�V�W�`�a�c�l����������������/�0�T�U�V�`�a�i�j�p�q���������������������������ͽ����������������ͽ�������|r�����������������������j����hiU��0J�UhE;g�hiU��0J���jT���hiU��U�j����hiU��U�j6���hiU��U h~8�hiU���hG ?�hiU��0J�� h���hiU���j����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���j����hiU��Uj����hiU��Uh���hiU��0J��hiU��� h�i��hiU��)�������������� ��f�g�����������������������(�)�+�,���������0 �2 �5 �Y �Z �g �k �� �� �� �� �� �R �V �� �� �����[������������Ŵ��������������~������~����������h0 ��hiU��nHtH�hiU��nHtH� h�hiU���h \~�hiU��0J��j����hiU��0J�UhBp0�hiU��0J�� hiU��0J���j����hiU��Uj����hiU��UhBp0�hiU��0J�� h�i��hiU��� h�&��hiU���hiU���j����hiU��UmH�nH�u�hSm��mH�nH�u�1e�x�z������������������������ �C �Y �g �s �� �� �� �� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`���gdiU�� �$���`���gdiU���;�gdiU�����gdiU��� & F��7���^�7`���gdJg����gdiU���$gdiU���� � �( �7 �P �Z �� �� � � �/ �= �� �� �� � �E �g �y �� �� �� �� �� �+ �c �� �� ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �$���`���gdiU�������`���gdiU���� �� � ��?�T�e�o�}�����������6�C�L�[��������R��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;�gdiU�����gdiU����$gdiU��� & F��7���^�7`���gdJg�������`���gdiU�� �$���`���gdiU���[�|������������A�E�a�b�����������������$�'�3�C�D�g�h�i�r�s�����������������������������������������������������䨘����䨘�����u��������������������h�a�hiU��0J�OJ�QJ���j���hiU��U�j����hiU��Uj����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���j���hiU��U hqU�hiU���j����hiU��0J�Uh~U�hiU��0J���j~���hiU��Uj����hiU��Uh~U�hiU��0J��hiU��� h�EU�hiU��*���� � �#�$�&�'�f�j�&�/����������/�7�8�O�P�R�S�T�r�{��������5�6�8�9�:�X�a�t�x����� � �����$�)�n�����������������������ή����������ή����휏������������������ hiU��0J��h�i�hiU��0J�OJ�QJ��hY��hiU��0J��h~�hiU��0J�� h�?�hiU���h,@�hiU��0J��h���hiU��0J�� h�&��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��UhiU���j����hiU��0J�OJ�QJ�U�4R�]������� ���0���/�|�����b�������d�r�&�&������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ & F�gdJg���;�gdiU�����gdiU��� & F��7���^�7`���gdJg��� &� F�gdJg����gdiU���$gdiU���n�q�v�y���������*�-�?�@�Y�Z�[�d�e���������p�s�������������������O�X�Y�]�^�b�f�q�����������������������!��������������ӻ����������������۟����۟���������������������������� h���hiU��� h�i��hiU��� hP=��hiU��� hiU��h/y���j����hiU��0J�OJ�QJ�Uhv 6�hiU��0J�OJ�QJ���j����hiU��Uj����hiU��U hiU��0J��h���hiU��0J��h���hiU��0J��hiU���h�hiU��0J�4����O�^���������?�@�M����� �8�>���������'�0�B�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� & F��7���^�7`���gdJg�������`���gdiU���;�gdiU��� &� F�gdJg�����gdiU��� & F�gdJg���!�)�o�p�������������������������������������>�?�@�M�����������������������������������������ﲩ������﹏����{��tm���d�hSm��mH�nH�u h�?�hiU��� h�o�hiU���h�w7�hSm��0J-���j����hiU��UhiU��0J�OJ�QJ�� h���hiU���h���hiU��0J��h�hiU��0J�� hiU��h/y��� h�i��hiU��� hP=��hiU���hSm��h�O�0J-��h�w7�hSm��h�O�0J-���j���hiU��Uj����hiU��UhiU���h�rf�hiU��OJ�QJ�^J�'��������0�8�A�B�D�P�`�i�y�|������������������=�>�H�K�O�P�S�^������������������������������� � �4 �5 �= �I �N �\ �a �m �� �� �� �� �� �������������������ü��ü�����������ɵ���������ɵ��������������j����hiU��U h�%@�hiU���h�$��hiU��0J�� h�i��hiU��� h-#�hiU��� hiU��0J�� hdL��hiU���h���hiU��0J�� h�|��hiU���hiU��� h�o�hiU��� h�?�hiU���j����hiU��UmH�nH�u=B�>�L�����5 �J �A!�O!��!�"�v"��"��"�r#��#��#��#�<$�x$��$�%�9%�m%��%�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdiU���;�gdiU��� &� F�gdJg��� & F��7���^�7`���gdJg��� & F�gdJg�����gdiU���� �� �� �� �� �+!�7!�@!�A!�K!�N!�S!�_!�w!�z!��!��!�"�"� "�"�."�2"��"��"��"��"�#�#�F#�G#�]#�^#�_#�f#�n#�o#�p#��#��#��#��#��#�������ͽʹ������͕ͮͥͥ͞͞��͊�~u~��n��������� h�?�hiU���hSm��h�O�0J-��h�w7�hSm��h�O�0J-���j����hiU��Uh;:�hiU��0J�� hek��hiU���hM"�hiU��0J�� hiU��0J��h�hiU��0J�� h�i��hiU���h���hiU��0J��hiU���j����hiU��0J�OJ�QJ�UhdL��hiU��0J�OJ�QJ��j����hiU��U�j����hiU��U�*�#��#��#��#��#��#�<$�D$�E$�\$�]$�_$�`$�a$�l$�p$��$��$�9%�A%�B%�Y%�Z%�\%�]%�^%��%�&�>&�B&��&��&�'�'�@'�N'��'��'��'��'��'��'��'��'��'�(�(�(�&(�;(������������������������������ݾݵݬݣ�������ݝ݅������������������hiU��OJ�QJ�^J�� h��hiU��� hM'�hiU��� hiU��0J��h�N�hiU��0J��h%��hiU��0J��hPN�hiU��0J�� hzf�hiU���h7br�hiU��0J��j����hiU��U h�&��hiU���hiU��� h�?�hiU���j����hiU��UmH�nH�u�hSm��mH�nH�u�1�%��%�-&�i&��&��&��&��&��&�'��'�(��(�@)�a)�C*��*��*�p+��+��+�Y,�u,��,�-������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;�gdiU��� & F��7���^�7`���gdJg��� & F�gdJg�����gdiU��� & F�gdJg����gdiU���;(�C(�K(�f(�g(��(��(��(��(��(�)�)�+)�,)�-)�4)�<)�=)�>)�?)�J)�`)�e)�s)��)��)��)��)��)��)�A*�B*�C*�j*�k*��*��*��*��*��*��*��*��*��*��*��������ɿ���ݨ��ݚ���協������ݨ��ݍ�{���������������������� h���hiU����j���hiU��U h�hiU��� hiU��0J�� hiU��5�hSm��h�O�0J-��h�w7�hSm��h�O�0J-���j����hiU��Uj����hiU��0J�Uh�~J�hiU��0J���j���hiU��Uj����hiU��UhiU���hiU��OJ�QJ�^J��h�k��hiU��OJ�QJ�^J�,�*��*��*��*��*��*��*�+� +�+�y+�z+��+��+��+��+�,�$,�),�9,�M,�g,�n,��,��,��,��,��,��,��,��,�u-�y-�!.�).�*.�A.�B.�D.�E.�F.��.��.�/�0/��0��0�1���������������������ݽݶ�ݮ���ݐݶ�ݮ���ݐ݉݀������������������hPN�hiU��0J�� h:P~�hiU��� h�&��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��U h�?�hiU��� hiU��h�d���h���hiU��0J��h�I�hiU��0J�� h�0��hiU���hiU��� h���hiU���hRC\�hiU��0J�� hiU��0J��h�N�hiU��0J�/-�-��-��-��-�.�!.�d.��.��.�2/�W/�Y/�n/��/��/��/��/�0�H0�`0�|0��0��0��0��0��1������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdiU��� & F�gdJg�������`���gdiU���;�gdiU����gdiU���1�#1�A1�Q1�R1��1��1��1��1��1��1��1��1��1�2�!2�*2�.2�p2��2��2��2��2��2��2��2��2��2��2��2�3�3��3��3��3��3��3��3��3��3��3�����������������������󚥑���|�pgp���hSm��h�O�0J-��h�w7�hSm��h�O�0J-���j���hiU��Uj����hiU��0J�Uh�~J�hiU��0J���j����hiU��Uj����hiU��Uh�k��hiU��OJ�QJ�^J��hiU��OJ�QJ�^J��h�N�hiU��0J��h���hiU��0J�� hiU��0J�� h{[��hiU��� h�uu�hiU���h�e��hiU��0J��hiU���h%��hiU��0J�(�1�f2��2�T3��3��3��4�5�5��5��6��6�=7�O7�08�K8�49��9��9�`:��:��:�";�9;�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� & F�gdJg��� & F��7���^�7`���gdJg��� &� F�gdJg����$gdiU��� & F�gdJg�����gdiU����3��3��3��3��3��3��3��3� 4� 4�P4�\4��4��4��4��4��4��4��4��4��4��4��5�5�5� 5� 5�5�5�5�5�)5�25�65��5��5��5��5��5��5��5�}6��6��6��6��6�7�7�'7������������������������������������׏������������������ h�i��hiU���haA��hiU��0J��hSm����j���hiU��UhRC\�hiU��0J��h�N�hiU��0J�� h���hiU���hSm��h�O�0J-��h�w7�hSm��h�O�0J-���j����hiU��Uj����hiU��U h�hiU���hiU��OJ�QJ�^J�� hiU��0J��hiU��� hiU��5��0'7�(7�)7�27�37�;7�=7�E7�N7�O7��7��7��7��7��7��7��7��7��7��7��7�8�8�8�%8�&8�'8�.8�/8�08�:8�J8�O8�X8�m8�u8�}8��8��8��8��8�������̼�ż��̱�����̦������̊̀�s����h�����j/���hiU��Uh�k��hiU��OJ�QJ�^J��hiU��OJ�QJ�^J�� hiU��0J�� h�v�hiU���hq�hiU��0J�OJ�QJ�^J���j����hiU��U�j���hiU��Uh���hiU��0J�� h�i��hiU���hiU���j����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J��j����hiU��U�j����hiU��U�(�8��8��8��8�a9�b9�x9�y9�z9��9��9��9��9��9��9��9��9��9��9��9��9� :�:�(:�,:�3:�4:�^:�_:�`:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:�*;��������������೺����������������������{��������hL ��hiU��0J�� h�x��hiU���h�x��hiU��0J�� h�i��hiU����j;���hiU��Uh�1��hiU��OJ�QJ�^J�� h�hiU��� hiU��0J��hSm��h�O�0J-��h�w7�hSm��h�O�0J-���j����hiU��UhiU���j����hiU��0J�Uh�~J�hiU��0J��j����hiU��U�/*;�8;�9;�=;�F;�O;�R;�];�^;�e;�k;��;��;��;��;��;��;��;��;��;��;��;��;�4<�8<�C<�D<�]<�^<�_<�k<�l<�q<�t<�|<�}<��<��<��<��<��<��<��<��<��<��<��<��<�=�=������������������������������������ް��󛒌������������������h�:�hiU��aJ�� hiU��aJ��h45T�hiU��aJ�� h�i��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�u h�?�hiU���j����hiU��0J�Uh: n�hiU��0J���j����hiU��Uj����hiU��U hiU��0J�� h: n�hiU���hiU���h���hiU��0J�19;�t<��<��<�K=�q=��=��=��=��=�]>��>�w?��?�BA�QA��A��B��B��B�C��C�aD��D��D�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdiU��� & F�gdJg��� & F��7���^�7`���gdJg�������`���gdiU���;�gdiU�����gdiU���=�=�=�=�==�G=�H=�J=�w=�y=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=��=�>�>�>� >�!>�->�.>�8>�@>�A>�E>�K>�Z>�a>�j>��>��>��������������������������ڷ«�ڔڌ��ڀ�s�kh�]��hiU��6�h���hiU��OJ�QJ�^J�� hbf��hiU��� hiU��6�h�:�hiU��6� hiU��hbf���j����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���j+���hiU��Uj����hiU��Uh���hiU��0J�� h: n�hiU���hiU��� hiU��aJ��h45T�hiU��aJ��h�G��hiU��nHtH�hiU��nHtH*�>��>��>�&?�0?�>@�G@�M@�W@�y@�z@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@�#A�$A�4A�5A�6A�?A�@A�AA�BA�LA�OA�QA�rA��������������Ĵ����ۚ�ē�������x��q�k�d� hiU��h<*<�� hiU��0J�� h�i��hiU���h�w7�hSm��0J-���j����hiU��U hI}v�hiU��� h�v�hiU���hq�hiU��0J�OJ�QJ�^J���j;���hiU��Uj����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���j����hiU��Uj����hiU��Uhm��hiU��6�h�]��hiU��6�h���hiU��0J��hiU��'rA�{A��A��A��A��A��A��A��A��A� B�B�B�B�$B�6B�:B��B��B��B��B��B��B��B��B��B��B��B�C�*C�.C��C��C��C��C��C��C��D�D�D�D�aD�iD�jD��D��D��D��D��D��D��������������������ฯ���������������}�����ฯ���� hiU��0J��h�]��hiU��0J�� h�]��hiU��� hS2}�hiU��� hJQ��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��U h�?�hiU���h�k��hiU��0J�� hQO��hiU���h���hiU��0J��hiU���hiU��h<*<�0J�� hiU��h<*<��h���hiU��h<*<�0J�1�D�E�|E��E� F��F�)G��G��G�7H�bH��H�*I�dI�tI��I��I� J�AK��K��K�[L�jL�M�O������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ & F�gdJg��� & F��7���^�7`���gdJg���;�gdiU��� &� F�gdJg�����gdiU����gdiU����D�E�&E�*E��E��E�&F�'F�=F�>F�?F�FF�NF�OF�PF�kF�lF��F��F��F��F��F��F��F��F�G�G�G�G�G�6G�7G�>G�EG�FG�GG�sG�uG��G�����������ƽ������ݩ�����ݏ���{r{r{i{ahiU��nHtH�h�:�hiU��aJ��h45T�hiU��aJ�� hiU��aJ��j����hiU��UmH�nH�u�hSm��mH�nH�u h�?�hiU���j����hiU��0J�Uh�0y�hiU��0J���j����hiU��UhSm��h�O�0J-��h�w7�hSm��h�O�0J-���j9���hiU��Uj����hiU��U h,3��hiU���h���hiU��0J��hiU��� hS2}�hiU��&�G��G��G��G��G��G��G��G��G��G�H�H�H�H�H�6H�7H�aH�hH�oH�vH�wH�xH��H��H��H��H��H��H��H��H��H��H�dI�sI�tI�|I��I��I��I��I��I� J�J�J�ZJ���������������ث�ܢܢܙ����������ܢؒ؅{�u�{������ hiU��0J��hiU��OJ�QJ�^J��hq�hiU��OJ�QJ�^J�� hq�hiU���h�:�hiU��aJ��h45T�hiU��aJ�� h�i��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��U h�?�hiU���hiU��� hiU��aJ��h !O�hiU��nHtH�hiU��nHtH�h�G��hiU��nHtH-ZJ�bJ�jJ��J��J��J��J��J��J��J�nK�oK��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K�L�L�L�L� L�ZL�[L��L��L��L��������ɿ���ݨ��ݘ����������~n�g�`���� h�\��hiU��� hq�hiU���j����hiU��0J�OJ�QJ�U^J�h�u�hiU��0J�OJ�QJ�^J���j3�hiU��U hh.T�hiU���hSm��h�O�0J-��h�w7�hSm��h�O�0J-���j���hiU��Uj����hiU��0J�Uh�~J�hiU��0J���j'��hiU��Uj����hiU��UhiU���hiU��OJ�QJ�^J��h�k��hiU��OJ�QJ�^J�%�L��L��L��L��L��L��L��L��L�3M�4M�\M�]M�_M��M��M��M��M��M��M��M��M��M��M��M��M��M��M� N�N�N�N�N�N�N�DN�EN�FN�MN�NN�dN�eN��N���������������������������x������m�����������jy�hiU��U�j��hiU��Uj����hiU��0J�Uh�Mg�hiU��0J���jK�hiU��Uj����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���j��hiU��U�j3�hiU��UhSm��h�O�0J-��h�w7�hSm��h�O�0J-���j��hiU��UhiU���j����hiU��U�*�N��N��N��N��N��N��N��N��N��N��N��N�yO�zO��O��O��O��O��O��O��O��O�P�P�MP�NP�OP�XP�_P�`P�aP�qP�|P��P��P��������������ն�ի쟏��Մ�u��kdkd��������������������������� hb'��hiU���hiU��OJ�QJ�^J��hb'��hiU��0J�OJ�QJ�^J���j�hiU��Uj����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���j��hiU��U�j�hiU��Uh�Mg�hiU��0J���j��hiU��UhiU���j����hiU��0J�Uh�x�hiU��0J��j����hiU��U�j�hiU��U�"O��O��P��Q�hR�HS��S��S�T�CT�xT��T��T��T�?U�jU��U��U�'V�QV�vV��V��V��V��V�W�ZW�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdiU��� ;�$ &� F ���]��gdJg���;�gdiU�����gdiU����P��P��P��P��P��P�EQ�FQ�_Q�`Q�aQ�jQ�kQ��Q��Q��Q��Q��Q��Q��Q��R��R��R��R��R��R��R��R��R��R��R��R��R�FS����������м�����м�����xjc\�U�� h�`��hiU��� h�c��hiU��� hiU��h�6���j����hiU��0J�OJ�QJ�Uh�6��hiU��0J�OJ�QJ���j��hiU��Uh�6��hiU��h�6��OJ�QJ�^J���j0�hiU��U hiU��h�c���j����hiU��0J�Uh�-��hiU��0J���j��hiU��Uj����hiU��Uh�!��hiU��OJ�QJ�^J��hiU���hiU��OJ�QJ�^J��hb'��hiU��OJ�QJ�^J�!FS�GS�HS�PS�QS�hS�iS�kS�lS�mS��S��S��S�T�T�$T�CT�wT�xT��T��T��T��T��T��T��T��T��T��T��T��U�U�U�U�*U�+U�0U�3U�>U�EU�iU�pU�yU�zU��U��U��U��U��U��U��U��U��U��U��U��V�����������ȿȿȿȿȿ��������������������������������������h�G��hiU��nHtH�hiU��nHtH�h>k�hiU��aJ�� h,Z �hiU��� hiU��aJ��h45T�hiU��aJ��h�,x�hiU��CJ�� h�,x�hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��U h�?�hiU���hiU��� hiU��h�h��7�V� V�V�'V�)V�5V�6V�7V�9V�:V�<V�=V�?V�@V�BV�QV�xV��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V�W�W�ZW�\W�~W��W��W��W��W��W��W��W��W��W�X� X�X�X�2X�5X�CX�FX�HX�IX�LX�SX�`X�bX�cX�dX�oX�qX�zX�|X�}X�~X��X��X��X��X��X��X��X��X��X���������������������������������������������������������������������������������������hiU��h[��aJ��h45T�hiU��h[��aJ��hz~�hiU��aJ�� hiU��aJ��h45T�hiU��aJ�SZW�W��W��W�X�CX�`X�oX�zX��X��X��Y�Y�KY�\Y��Y��Y��Y� Z�BZ�pZ��Z��Z��Z� [�+[�o[��[��[��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$gdiU����gdiU����X��X��X��X��X��X��Y�Y�Y�Y�-Y�9Y�KY�MY�NY�OY�VY�[Y�\Y�]Y�aY�hY�iY�pY�rY��Y��Y��Y��Y��Y��Y��Y��Y��Y��Y��Y�Z�Z� Z�Z�Z�Z�Z�Z�Z�%Z�'Z�1Z�7Z�?Z�BZ�CZ�PZ�\Z�pZ�qZ��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z� [� [�[�8[�G[�c[�o[�p[��[��[���������������������������������������������������������������������������������������hz~�hiU��aJ��hiU��h[��aJ��h45T�hiU��h[��aJ��h45T�hiU��aJ�� hiU��aJ�S�[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[�\�\�\�\�\�#\�&\�-\�6\�8\�;\�H\�K\�]\�_\�b\�x\�{\��\��\��\��\��\��\��\��\��\��\��\��\��\��\��\��\��\��\�]�]�*]�+]�,]�/]�0]�<]�I]�S]�Z]�a]�b]�j]�l]������������������������������ƼƼƵ�����������������������������������h45T�hiU��h m��aJ�� h m��hiU���hiU��aJ�mH sH �hqOd�hiU��aJ�mH sH �h m��hiU��aJ��h�qC�hiU��aJ��h45T�hiU��h�qC�aJ�� hiU��aJ��h45T�hiU��aJ�B�[��[�\�-\�T\��\��\��\��\��\��\�,]�^]�]��]��]��]�-^�5^�J^��^�9_�O`��`�a�vb��b������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdiU��� & F��7���^�7`���gdJg����gdiU���l]�m]�o]�p]�r]�t]�u]�v]�x]�y]�{]��]��]��]��]��]��]��]��]��]��]��]��]�^�^�^�^�4^�I^�J^��^��^��^��^��^��^��^��^��^�&_�'_�(_�6_�7_�9_�k`�l`��`����������������������������������η���ݜΓ���������������������������� hiU��0J��j����hiU��0J�Uh�}0�hiU��0J���j� �hiU��Uj����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���j@ �hiU��Uj����hiU��U h"�hiU���hiU��� h�]��hiU���hiU��h m��aJ�� hiU��aJ��h45T�hiU��aJ�/�`��`��`��`��`�ka�la��a��a��a��a��a��a��a��a��a��a��a��a��a�b�b��b��b��b��b��b��b�c�c�"c�#c�Mc�Nc�Oc���������컯���Ք쯟ՍՆ��rhr���]��������������j �hiU��UhiU��OJ�QJ�^J��h�u�hiU��OJ�QJ�^J�� h"�hiU��� he@/�hiU��� hiU��h�^����j� �hiU��Uj����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J��hq�hiU��0J�OJ�QJ�^J���j� �hiU��UhiU���j����hiU��0J�Uh�}0�hiU��0J��j����hiU��U�jf �hiU��U�"�b��b��c�Dd�Sd�>e�Me��f��f��g��g��g�@h��h�Fi�Wi�j�j��j��j�Kk�Xk�wk��k�l�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� & F��7���^�7`���gdJg��� & F�gdJg�����gdiU��� & F�gdJg���Oc�gc�hc�wc�xc�yc��c��c��c��c��c��c��c��c��c��c��c��c�Nd�Qd�`d�ad�bd�zd�{d�|d��d��d��d��d��d��d��d��d��d��d��d��d�e�������������青�������Ā�����u�f����������h�u�hiU��0J�OJ�QJ�^J���j� �hiU��U h�gd�hiU����j �hiU��Uh~b�hiU��OJ�QJ��h�L�hiU��OJ�QJ�^J��h~b�hiU��OJ�QJ�^J��h�u�hiU��OJ�QJ�^J��j����hiU��5�U��j� �hiU��Uj����hiU��Uh���hiU��5�hiU���j����hiU��0J�Uh�bW�hiU��0J�&e�e�He�Le�Ze�[e�\e�te�ue�ve�e��e��e��e��e��f��f��f��f�g�g�@g�Gg�ug�|g��g��g��g��g��g��g��g�(h�)h�1h����������ֹ���������u�na��������������������hiU��h[��OJ�QJ�^J�� hiU��hSj^��h�u�hiU��h[��� hiU��h[��� h�L�hiU���hiU��hiU��^J��huF�hiU��OJ�QJ�^J�� hiU��h�^���hiU��OJ�QJ�^J�� hiU��5�j����hiU��5�U��j�hiU��Uj����hiU��Uh���hiU��5�h�gd�hiU��OJ�QJ�^J��hiU���j����hiU��0J�OJ�QJ�U^J��"1h�2h�6h�`h�mh��h��h��h��h��h��h��h��h��h�Pi�Vi�[i�ai��i��i��i��i��i��i��i�j�j�#j�%j�/j�wj�}j��j��j��j��j��j�������ߵ�����ߛߛߓ߈�yiߛ�\�ߵߛߛ�h�u�hiU��OJ�QJ�^J��j����hiU��0J�OJ�QJ�U^J�h�u�hiU��0J�OJ�QJ�^J���jx�hiU��Uj����hiU��UhiU��OJ�QJ�^J�� hnm��hiU���hiU��hiU��^J��hnm��hiU��OJ�QJ�^J��how7�hiU��OJ�QJ�^J��how7�hiU��h[��OJ�QJ�^J��hiU���hiU��h[��OJ�QJ�^J��h�u�hiU��h[��OJ�QJ�^J�$�j��j� k� k� k�k�k�k�`k�uk�vk�wk��k��k��k��k��k��k��k�l�l� l�!l�2l�9l�l��l������ɼ��󤗇��w�w�p�c�P��������������������������$hnm��hiU��CJ�OJ�PJ��QJ�^J��aJ��hWf�hiU��OJ�QJ�^J�� hWf�hiU���how7�hiU��h[��OJ�QJ�^J��h�u�hiU��h[��OJ�QJ�^J��hiU��h[��OJ�QJ�^J�� hiU��hSj^�� h"�hiU���h�$d�hiU��h[���hiU��hnm��0J�OJ�QJ��j����hiU��0J�OJ�QJ�U^J�h�u�hiU��0J�OJ�QJ�^J���j��hiU��UhiU���j����hiU��U��l��l��l��l��l��l��l��l��l�%m�&m�'m�4m�5m�6m�Nm�Tm�Ym�em�fm��m��m��m��m��m��m�n�n�������ھƳ�������n��^Q^ƾ�F��j �hiU��UhiU��h[��OJ�QJ�^J��hWf�hiU��h[��OJ�QJ�^J��$h C�hiU��CJ�OJ�PJ��QJ�^J�aJ��$h� ��hiU��CJ�OJ�PJ��QJ�^J��aJ��j����hiU��0J�CJ�OJ�QJ�Uh� ��hiU��0J�CJ�OJ�QJ���j~�hiU��Uj����hiU��UhiU���hiU��CJ�OJ�PJ��QJ�^J��aJ��$hnm��hiU��CJ�OJ�PJ��QJ�^J��aJ��$hnm��hiU��CJ�OJ�PJ��QJ�^J�aJ�l��l�hm�}n�o�o��o��o�np��p�q�(q�vq�Jr��r��r��r��r��r�s�=s�Bs�Hs�Vs��s��s�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdiU���;�gdiU��� &� F�gdJg��� & F�gdJg�����gdiU��R� &� F �gdJg���n�n�n�n� n�.n�4n�9n�En��n��n��n��n��n��n��n��n�o�o�o�!o�Lo�Mo�no�oo�po�wo�xo��o��o��o��o�Ap�Gp�xp�~p��p��p��p��p��p��p��p��p���������δ������������Ι��z����δ�������o������j�hiU��Uj����hiU��0J�OJ�QJ�U^J�h�u�hiU��0J�OJ�QJ�^J���j��hiU��U hg��hiU���hiU��hiU��^J��hnm��hiU��OJ�QJ�^J��h�5��hiU��OJ�QJ�^J��hiU���hiU��OJ�QJ�^J��j����hiU��0J�OJ�QJ�Uh/{��hiU��0J�OJ�QJ��j����hiU��U�+�p��p�q�q�Pq�Qq�gq�hq��q��q��q��q��q��q��q��q�Jr�Rr�Sr�jr�kr�mr�nr�or�Vs�^s�_s�vs�ws�ys�zs�{s�gt�ht�qt��t��t��t��t��t��t��t��t��t��t��t��t��t��t��u�u����������������뿷뷮��뿷뷮��������ƒ�뒷뇷�����������������j��hiU��U h=��hiU��� h�1P�hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��U h�?�hiU���h���hiU��0J�� hiU��h�Z�� h�Z�hiU��� hiU��h�<c�� h;g��hiU���hiU���j����hiU��0J�OJ�QJ�U^J��2�s��s��s��s�1t�Pt�Ut�[t�it��t��u��u�7v��w� x�x�Jx��x��x��x��x�9y�z�,z��z�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$gdiU���;�gdiU��� & F�gdJg�����gdiU��� & F��7���^�7`���gdJg����gdiU���u� u� u�u�u�4u�5u�6u�@u�Au�eu�qu�uu�yu��u��u��u��u��u��u��u�3v�4v��v��v��v��v��v��v��v��v��v��w��w��w��w��w��w��w��w��w��w�����������������ѽѽѴ��ѩ՜�ѽх���z�q�������������������h�w7�hSm��0J-���j7�hiU��Uh�i��hiU��0J��j����hiU��0J�OJ�QJ�Uho��hiU��0J�OJ�QJ���j��hiU��Uh9 d�hiU��0J��h���hiU��0J���j)�hiU��UhiU���j����hiU��U h=��hiU���j����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J�)�w��w��w�x�x�x�x� x� x�,x�1x�Gx�Hx��x��x��x��x�&z�+z�/z�0z�5z�@z�Sz��z�({�){�D{�E{�{{�|{��{��{��{��{��{��{�!|�)|�*|�A|�B|�D|�E|�F|�}�$}�%}�<}�=}�?}�@}�A}�!~�0~�7~��������������������������������������������������������� hiU��h�?��� h�?��hiU��� hiU��h�<c�� h�Z�hiU��� h=��hiU���h���hiU��0J�� h�_��hiU��� hiU��hD��� h�1P�hiU��� hiU��h�?\��j����hiU��UmH�nH�u�hSm��mH�nH�uhiU���j����hiU��U h�?�hiU��7�z�{�S{�!|�a|�n|�t|��|��|��|�}�}�}�}�Y}�e}�k}�~}��}��}�~�~� ~�~�1~�Q������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ & F��7���^�7`���gdJg����gdiU���;�gdiU�����gdiU��� &� F�gdJg���7~�<~�?~�O~�Q~�`~�n~�w~��~��~��~��~��~��~��~��~��~��~��~��~��~��~� ��&�*�.�4�5�N�O�Q�[�c�h�p�������������!��z��b��g��h��l��q��|�����������������ͽ�����ͽ����������������������������h���hiU��h�s�0J�� hiU��h�s�� hiU��0J��h�&�hiU��0J��h]��hiU��h�?��� h=��hiU����j3�hiU��Uj����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���j��hiU��Uj����hiU��Uh���hiU��0J��hiU��� h]��hiU��2Q�d�����{��X��h��2��D��$��$�����������Є����#��9��F��R��l�����������Ѕ�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdiU���;�gdiU��� &� F�gdJg�����gdiU��� & F�gdJg������2�����������������͂�΂�݂������������w��{������������������������������������$��%��U��V��~�������������������������������������������������������v�m������������������h���hiU��0J���jG�hiU��U hiU��h���� h���hiU��� hiU��h�qL��j����hiU��UmH�nH�u�hSm��mH�nH�u h�?�hiU���hp1�hiU��0J��hyl��hiU��0J��h T��hiU��0J��j����hiU��0J�Uh���hiU��0J���j��hiU��Uj����hiU��UhiU��� h]��hiU��(��&��n�����*�����������������������Œ�;�����������������ǐ�Ӑ�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$gdiU���;�gdiU��� & F�gdJg��� & F��7���^�7`���gdJg�����gdiU��� &� F�gdJg���������������������������͆�Ά�φ�߆����������������������9��:��;��C��D��F��G��j��k��l����������������������������������Ç�ć��������������ϰ����Ϝ�����ϑ�����}������r�����j��hiU��U�jO�hiU��Uh�a��hiU��0J���j��hiU��U�jS�hiU��Uh�WA�hiU��0J���j��hiU��Uh |x�hiU��0J���jI�hiU��UhiU���j����hiU��0J�U hiU��0J��h���hiU��0J��j����hiU��U�j��hiU��U�,ć�Ň�ˇ�̇�·�χ�������������������������'��(��-��.��M��N��O��T��U��n��v�������������و�������������'��(��;��F��d��t����������������������������������������������௦���������������௠ு����� h�-2�hiU��� hUu��hiU��� hiU��0J���j��hiU��U hiU��0J��h���hiU��0J�� h���hiU����j+�hiU��U�j��hiU��Uh�\��hiU��0J���j5�hiU��UhiU���j����hiU��0J�Uh���hiU��0J��j����hiU��U�2���ɉ�ډ�������Y��Z����������������������������������������������� ���������������������������������*��+��,��?��@��X��a��e���������������������������Ƿ��������Ƿ�������������~�Ƿ������������j�hiU��Uh�N�hiU��0J��hiU��OJ�QJ�^J���j��hiU��UhRC\�hiU��0J�� h���hiU���j����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���j9�hiU��Uj����hiU��Uh�]�hiU��0J�� hiU��0J�� h�X8�hiU���hiU��1���Œ�������.��?��L�����ƍ���������H��I��k��l��m��|��}�����������������������������������������������������������������������5��6��Z��[��\��������������������ù�����ù������ù������ù����������j>�hiU��U hiU��0J���j��hiU��U hiU��hL6V���j,�hiU��U�j��hiU��Uj����hiU��0J�U hiU��0J���j"�hiU��Uj����hiU��U h�i��hiU���h���hiU��0J��h�I�hiU��0J��hiU��� h���hiU��2\��i��j�����������������Ð�Đ�Ő�ǐ�͐�ѐ�Ӑ�Ր������������������������:��<��B��M��h��s��u��y�����������,��<�������������'��(��A��B���������̾�䵯����������������䵯�������Ոx���j����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���j��hiU��U h^J��hiU���hiU��hu,��0J�� hiU��0J��h6h��hiU��0J��j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��U h�?�hiU���hiU���j����hiU��0J�OJ�QJ�UhiU��0J�OJ�QJ�/��6��u��������ّ�#��,��=�������Ô�˔��������.��m��������ٕ� ��0��U��n��w��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;�gdiU�����gdiU��� & F�gdJg����gdiU���$gdiU���B��o��p��q������������������������������0��1��U��V��W��d��e��������������������������Ô�˔�͔�۔�ܔ��������������������2��4��:��E�������������������鯡����鑃��ztztztztztztztz���� hiU��0J��h6h��hiU��0J��j����hiU��UmH�nH�u�hSm��mH�nH�u h�?�hiU���j����hiU��0J�OJ�QJ�UhiU��0J�OJ�QJ���j�!�hiU��U�j!�hiU��U hFmH�hiU���j����hiU��0J�Uh�UK�hiU��0J��j����hiU��U�jj �hiU��UhiU��-E��`��k��m��q��������������������ߕ���&��'��K��L��X��Y��b��c��w�����������1��2��_��`��a��������З�ї��������������<��D��E��\��]��_��`��a�����Ș�����������������������������������ޮ����ސ���{�� h�%��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�u h�?�hiU���j����hiU��0J�OJ�QJ�UhiU��0J�OJ�QJ���j�"�hiU��Uj����hiU��0J�U hiU��0J���j)"�hiU��Uj����hiU��U h^J��hiU��� hiU��0J��hiU���h6h��hiU��0J�0������<��c��k�����ʘ���"��B��|��Ǚ������#��/��I��x�������p�����������,��4���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$�gdiU���$gdiU����$�$gdiU���;�gdiU�����gdiU���Ș�4��O��������������������������œ�ڜ�ۜ�ܜ������������� ������ ��!��;��<��=��E��F��H��I��l��m��n�����������������������������������ŝ������������������������������Ͼ����Ͼ���������������������������j�%�hiU��Uh�a��hiU��0J���jI%�hiU��U�j�$�hiU��Uh�WA�hiU��0J���jO$�hiU��U hiU��0J���j�#�hiU��Uj����hiU��0J�Uh���hiU��0J���jM#�hiU��Uj����hiU��U h� ��hiU���hiU��/4��O������������c��t������������m�����^��q��V��q��r��x�����������%��=����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� &� F�gdJg��� & F�gdJg�����gdiU��� & F��7���^�7`���gdJg���ŝ�Ɲ�ǝ�͝�Ν�ӝ�ԝ���������������d��e������������������������������������4��5��6��@��A��d��f��h��i��s��t��Π�Ϡ������������������>��?��d���������������տ�մ쨘Ց��Ն쨘ՑՑՑ���{쨘Ց������j�(�hiU��U�jC(�hiU��U h� ��hiU���j����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J���j�'�hiU��U�j5'�hiU��U�j�&�hiU��UhiU���j����hiU��0J�Uh���hiU��0J��j����hiU��U�jE&�hiU��U�0d��e��f��r��s��������ӡ�ԡ�ա�����m��n����������������������������������_��`��������������������������������������������������쵧���ؒ�����؇�xo����d���j,�hiU��UhL6V�hiU��0J��hL6V�hiU��0J�OJ�QJ�^J���j�+�hiU��U�j�+�hiU��UhiU��0J�OJ�QJ��j����hiU��0J�OJ�QJ�UhdL��hiU��0J�OJ�QJ���jy*�hiU��U�j�)�hiU��UhiU���j����hiU��0J�U hiU��0J��j����hiU��U�j])�hiU��U�'���ݤ�ޤ�ߤ�h��i��j��k��l��ܥ�ݥ�������� �� ��K��Q��T��̦�ͦ���������� �� ������:��;��<��K��L������ �� �������� ��!�����������������䭤���茳����t����i�t�����j�/�hiU��Uh/{��hiU��0J�OJ�QJ���j/�hiU��Uh�\��hiU��0J�OJ�QJ���j{.�hiU��UhN�hiU��0J�� hiU��0J��j����hiU��0J�OJ�QJ�Uh�{L�hiU��0J�OJ�QJ���j�-�hiU��U�j�,�hiU��UhiU���j����hiU��Uj����hiU��0J�U hiU��0J�)!��P��Q��R��g��h�����������������������������������������������(��)��U��V��W��e��f�����������������������������齳����降�}���r�}���g�X��hL6V�hiU��0J�OJ�QJ�^J���j�2�hiU��U�j�1�hiU��Uj����hiU��0J�OJ�QJ�U^J�hiU��0J�OJ�QJ�^J��h7Z�hiU��0J�OJ�QJ�^J���jR1�hiU��Uj����hiU��0J�U hiU��0J���j�0�hiU��Uj����hiU��0J�OJ�QJ�Uh/{��hiU��0J�OJ�QJ��j����hiU��U�j40�hiU��UhiU��"���������ө�ԩ�թ�٩�ݩ���������������'��*��>��������#��-��;��f��t��������������ެ�߬�������������������&��'��[��\��������������������������������������������鯺���鉺����~�x�� hiU��0J���j4�hiU��U�j�3�hiU��Uj����hiU��0J�OJ�QJ�Uh%k�hiU��0J�OJ�QJ���j3�hiU��Uj����hiU��Uh���hiU��0J��hiU��OJ�QJ�^J��h�8��hiU��OJ�QJ�^J�� hiU��hSj^��hiU���j����hiU��0J�UhL6V�hiU��0J�/=��)����������� ��8��Q��]��j��������ܮ�����������ޯ����0��I��߱������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� & F�gdJg��� & F��7���^�7`���gdJg����gdiU���$gdiU���;�gdiU�����gdiU������������������������������ǭ�˭���������)��?��B��C��P��ޯ������������ ��"��2��V��j��������������ɰ�ʰ�ڰ�۰�ܰ���������/��0��8��A��G��M��V��[��d��r��{�����ޱ�߱���������������ƿ��ƿ����ƿƿ���������훕�����Ə�Ə��Ə���� hiU��0J�� hSm��0J-��h�9��hSm��0J-���j�4�hiU��Uh>j�hiU��0J�� h�-��hiU��� h%k�hiU���h���hiU��0J�� h�&��hiU���j����hiU��UmH�nH�u�hSm��mH�nH�uj����hiU��U h�?�hiU���hiU��8߱�������������� ������#��,��3��<��S��\��b��c�����������������������IJ��������������� ��&��<��?��@��M��۳��������������� ��0��T��h�����������������������������������ʴ�Ӵ�ٴ�������"��(��6��M��`�����������������Զ�׶�ض������������������������������������������������������������������������������������������������j����h�w7�hiU��U h�w7�hiU��� h���hiU��� h%k�hiU��� hiU��0J��h���hiU��0J��hiU��O��������۳������������$����������)��A��o����&��2��T��������&������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������R� & F �d����P����gdJg��R� &� F �d����P����gdJg��������gdiU��� &� F�gdJg��� & F��7���^�7`���gdJg��� & F�gdJg�����gdiU����������������!��'��(��8��9��:��C��D��j��������ӷ�Է�շ����������������5��6�������������� ��������&��'��(��)����������8��9��I���������ҿ������Ҵʫ���Җʫ�֏���z������s�s��� h�Y��hiU����j 7�h�w7�hiU��U h�w7�hiU��� hr��hiU����jz6�hiU��Uj����hiU��0J�Uh���hiU��0J���j�5�hiU��U�j�5�hiU��Uj����hiU��UhiU��� h���hiU���h�w7�hSm��0J-��j����h�w7�hiU��U�j5�h�w7�hiU��U�-I��J��K��T��U��V��s��t��u�����������������ӻ�׻�ػ������������&��2�������������� �� ������������ҽ�ܽ�ݽ������������������������ص߮��ߣ욐߮�yky��������������������j����hiU��CJ�OJ�QJ�UhiU��CJ�OJ�QJ��hb#�hiU��CJ�OJ�QJ��j����hiU��0J�Uh�$��hiU��0J���j�8�hiU��U h�c��hiU��� h y��hiU��� hSm��0J-���j\8�hiU��U�j�7�hiU��U h�Y��hiU���hiU���h�w7�hSm��0J-��j����hiU��U�jz7�hiU��U�&��������������������$��%��j��k�����������������������þ�ľ�ž�Ǿ�Ⱦ�ɾ�ʾ�,��6��7��P��Q��R��T������̿������������o���̀b���Q�����!�j�:�hiU��CJ�OJ�QJ�Uh t��hiU��CJ�OJ�QJ��!�j\:�hiU��CJ�OJ�QJ�Uh�(��hiU��CJ�OJ�QJ���j�9�hiU��UhiU���j����hiU��UhiU��CJ�OJ�QJ�aJ��h�(��hiU��CJ�OJ�QJ�aJ��hb#�hiU��CJ�OJ�QJ��hiU��CJ�OJ�QJ��hSm��CJ�OJ�QJ��j����hiU��CJ�OJ�QJ�U!�jR9�hiU��CJ�OJ�QJ�U�&��G��ʾ�W����������`�����?�����<��������S��c����� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ��$$If���a$gdJg���,�gdiU�� R� &� F �d������gdJg��R� &� F �d����P��P�gdJg��R� &� F �gdJg�����gdiU��R� &� F �d����P����gdJg��R� & F �d����P����gdJg���T��U��V��W��׿�ؿ������������������������'��)��8��9��<��=��T��U��g��h��i���������������������������������η���֡�������������w΍k�������������������������������������������j����hiU��0J�CJ�U�j�;�hiU��Uh`&:�hiU��0J�CJ��h���hiU��0J�CJ��h���hiU��CJ��h���hiU��CJ�OJ�QJ��hSm��h�O�0J-��h�w7�hSm��h�O�0J-���jV;�hiU��Uj����hiU��UhiU���h t��hiU��CJ�OJ�QJ��hiU��CJ�OJ�QJ��j����hiU��CJ�OJ�QJ�U�"����������������������������������������������3��=��>��W��X��Y��]��^��_��`����ѻ�쥘��}r��b��b�Ob�bј������������������������%�jN=�hiU��CJ�OJ�QJ�UaJ�j����hiU��CJ�OJ�QJ�UaJ��j�<�hiU��UhiU���j����hiU��Uh�(��hiU��CJ�OJ�QJ�aJ��h���hiU��CJ�OJ�QJ��hiU��CJ�OJ�QJ��hSm��CJ�OJ�QJ�aJ��+�j^<�h���hiU��CJ�OJ�QJ�UaJ�hiU��CJ�OJ�QJ�aJ��h���hiU��CJ�OJ�QJ�aJ��%j����h���hiU��CJ�OJ�QJ�UaJ��`��l��m����������������������������������������������&��,��0��1��>��?��x�������������������������Ϳ񳣳�����wm`m`mw�m���M%�j�>�hiU��CJ�OJ�QJ�UaJ�ht ��hiU��CJ�OJ�QJ��hiU��CJ�OJ�QJ��h���hiU��CJ�OJ�QJ��hSm��CJ�OJ�QJ�aJ��%�jP>�hiU��CJ�OJ�QJ�UaJ�j����hiU��CJ�OJ�QJ�UaJ�hiU��CJ�OJ�QJ�aJ��j����hiU��CJ�OJ�QJ�Uh�(��hiU��CJ�OJ�QJ���j�=�hiU��UhiU���j����hiU��Uh���hiU��CJ�OJ�QJ�aJ��������������������� ��"��2��3��4��9��:�����������������������������������������������������ʽ�����������p����c�c�c�T�������������������h���hiU��CJ�OJ�QJ�aJ��ht ��hiU��CJ�OJ�QJ��'�j�?�h< �hiU��CJ�OJ�QJ�UhSm��CJ�OJ�QJ��'�jJ?�h< �hiU��CJ�OJ�QJ�UhiU��CJ�OJ�QJ��!j����h< �hiU��CJ�OJ�QJ�Uh< �hiU��CJ�OJ�QJ��h�Jn�hiU��CJ�OJ�QJ��hiU��CJ�OJ�QJ�aJ��hSm��CJ�OJ�QJ�aJ��j����hiU��CJ�OJ�QJ�UaJ������)��3��4��M��N��O��P��Q��R��S��c��g��u������������������������������������������������ֳƧ�֚�����|tpetYPYt��J���� hiU��^J��hSm��h�O�0J-��h�w7�hSm��h�O�0J-���j�@�hiU��UhiU���j����hiU��U h�hiU���hm��hiU��^J�� hm��hiU��� h�X�hiU���h���hiU��CJ�OJ�QJ��hSm��CJ�OJ�QJ�aJ��%�jD@�hiU��CJ�OJ�QJ�UaJ�j����hiU��CJ�OJ�QJ�UaJ�hiU��CJ�OJ�QJ�aJ��h���hiU��CJ�OJ�QJ�aJ��hU�hiU��CJ�OJ�QJ�^J���� ��/��0��O��P��Q��R��Z��[��c��d��l��m��u��x��������������������������������������������������������������������������ǿǿ��������xkx\xkxkxhs~V�0J+�CJ�aJ�mH�nH�uh dQ�h;��0J+�CJ�aJ��!j����h dQ�h;��0J+�CJ�UaJ�h dQ�h;��CJ�aJ��h.��h;��CJ�aJ��h�(�h;��CJ�aJ��h;��CJ�^J�aJ��h,��h;��CJ�aJ��h;��CJ�aJ��h>:��CJ�aJ��h;���h�!���j����h�!��U hJ7N�hJ7N�� h�)1�hiU��� h2��hiU���h2��hiU��5�hiU��$��"��/��0��A��L��Z�������������������������������I������������������������������������������������������������������������������������������kd>A�$$If����l���������������\����� ��$�������������������������������������������������������L���������������� t����0���������������������������������������6�����������������������������������������������������������������������4����4�� l�a�l�ytJg�� ��$If���gdJg�� ��$$If���a$gdJg��������������������������������^������������U������������U������������U������������U������������U������������U������������U������������U������������������������� ��$If���gdJg�����kd�A�$$If����l���������������\����� ��$�������������������������������������������������������L���������������� t����0���������������������������������������6�����������������������������������������������������������������������4����4�� l�a�l�ytJg��� ������������������������ ��&���������������U�����������������������������������������������������������������������������������������������������������������������kd�B�$$If����l���������������\����� ��$�������������������������������������������������������L���������������� t����0���������������������������������������6�����������������������������������������������������������������������4����4�� l�a�l�ytJg�� ��$If���gdJg��� &��A��S������������������ �������������������������������������������������������������������U�������������������������������������������������������������������kd*C�$$If����l���������������\����� ��$�������������������������������������������������������L���������������� t����0���������������������������������������6�����������������������������������������������������������������������4����4�� l�a�l�ytJg�� ��$If���gdJg��� ��+��9��N��O��P��Q��S��T�����������������������������������������U������������P������������K������������F������������F���������������gd �����gdJ7N����gdiU�����kd�C�$$If����l���������������\����� ��$�������������������������������������������������������L���������������� t����0���������������������������������������6�����������������������������������������������������������������������4����4�� l�a�l�ytJg�� ��$If���gdJg���T��U��V��W��X��Y��Z��\��]��^��_��`��a��b��c��e��f��g��h��i��j��k��l��n��o��p��q��r��s����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gd ���s��t��u��v��w��x���������t���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gdJ7N�� *� ��!�#gd�v�� *� ��!�$������gd,��*� � ��!H�$������gd�V�*� � ��!H�$���gd�V�������gd ��� ������������D��E��G��H��r��s��~��������������������������������������������������������������ļļļı�������w�����h���d]��������������������������� hJ7N�hJ7N��h�!���hSm��0J+�CJ�aJ�mH�nH�uh;��0J+�CJ�aJ�mH�nH�u!j����h�v�h;��0J+�CJ�UaJ�h�v�h;��0J+�CJ�aJ��h�v�h;��CJ�^J�aJ��h�v�h;��CJ�aJ��h;��CJ�aJ��j����h;��CJ�UaJ�h;���h,��h;��CJ�aJ��!j����h dQ�h;��0J+�CJ�UaJ�hs~V�0J+�CJ�aJ�mH�nH�u�9�0&P�1�h:pE=���/ ��=!��"��#��$��%������� ��6�&P�1�h:pJg����/ ��=!��"��#��$��%������� ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������D�d�J����������������0�!����������������������������������H���� ������� ��C� �$���A���� ����������o�a�s�i�s�������������b��L���� �@K@�2�r����l��(�����D�������n� ���� �@K@�2�r����l��PNG  ��� IHDR�����J����z�����PLTE���:�o�[+����~X��ք���=X*���bKGD��H��� cmPPJCmp0712���Om�����IDATh���o�:���9 Q��g�R��V\�(���3QA��_�=�|�I���I�;��ǟ'c7IFm��Fm���ž���~�Ow��������OF��6ؘƭOKc��;�Vh<魴��W�4{5�x���iz�ۆ^:��`�fe��fd�$����[���Co����URk�炳�m��fVf���G>ȟ�Vgʇ��{d8uh�%M 42>�xQ����g�jy����F���}X���0A����g���-�>����E8i�#�B�8i�O�}��8���iqj���!�(����YI��Ա�����A�ѹ��q荢�N������v��Q�e."��p�K���x3���8V��Qǡ����oD�.!_�<Z�K���r�J���y�p(��kh�(\s�㵴� ��8I������LPn^d ���H�d�q��&W��…�8m��g&X�MMkā5�8�ǥ�y��8����t�N�0c��� ��qV�W�9�q#��k%�m96)B��xQqh�+�$_ˣ�c�g�L�f�k��9��W �2\TW}�nL9������&l�a����/�N?�E�YPPL�jN+��83kY:� �����"������샻&�H��c1e�"ύ�� ��s���{������0�����XA�@��,!z�M&��/�g���-p71�@�S�ԕ���ᄐ� eǠTŰ���j�孛A�K�������:�g�p��.�/��$�yc1�S��v<�ޢ'�s��������~Q���N��})�g����'a]�8l�"el_��� �8v�k����B]#��K2�pع� >S���7 �_]B*���qI�c�d�i gE�[{1� ���2��t�*�@�f8�2��r��C*�����IDAT���L�['<��O��x�9�†�?H���SxA< ��6A�^����=��2�EIbK �̒���n�f1�E�"�+L�F�85�-��;(��[���~Ì=(8���C�?�֋3(�����u��p�v؊M4�i��0����9�e8sRQu��݁8�^�,���=���w>�T<'7 ��^����C�c��qz8x?8A�� �@,'���������wwC� g�`E*+3�.�YD=���D�k��(�V1Ι�q� M�hߏ��P+��8 ������u����pg�G8�M�� C����#m�G�X-�-���i�wF�w�& � �У�rC���=�!`P ۣ1;��ꇌ�hVl���j[�Q�ң���<o ����2>q�Ұ����t�o1�L������C�1� h\&yK4ۙ[ӗ��#��y��P�3�.�c�5_>��4ѯ��Xf�k�2�^��]�!KwU2�h��6��d��J���-������IEND�B`���D�������������������������������������������������������������������y��������K� ���������y��������K� ����h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�.�d�o�c�����D�������������������������������������������������������������������y��������K� ���������y��������K� ����h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�.�h�t�m�l�����D�������������������������������������������������������������������y��������K� ���������y��������K� ����h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�.�p�d�f�������D�������������������������������������������������������������������y��������K� ���������y��������K� X���h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�c�o�m�m�i�t�t�e�e�s�/�o�d�a�t�a�/�������D�������������������������������������������������������������������y��������K� ���������y��������K� <���m�a�i�l�t�o�:�b�a�r�b�a�r�a�.�h�a�r�t�e�l�@�s�a�p�.�c�o�m�������D�������������������������������������������������������������������y��������K� ���������y��������K� (���h�t�t�p�:�/�/�w�w�w�.�s�a�p�.�c�o�m�/�������D�������������������������������������������������������������������y��������K� ���������y��������K� F���m�a�i�l�t�o�:�R�a�m�.�J�e�y�a�r�a�m�a�n�@�m�i�c�r�o�s�o�f�t�.�c�o�m�������D�������������������������������������������������������������������y��������K� ���������y��������K� 4���h�t�t�p�:�/�/�w�w�w�.�m�i�c�r�o�s�o�f�t�.�c�o�m�/�������D�������������������������������������������������������������������y��������K� ���������y��������K� >���m�a�i�l�t�o�:�m�a�r�t�i�n�.�z�u�r�m�u�e�h�l�@�s�a�p�.�c�o�m�������D�������������������������������������������������������������������y��������K� ���������y��������K� (���h�t�t�p�:�/�/�w�w�w�.�s�a�p�.�c�o�m�/�������D�������������������������������������������������������������������y��������K� ���������y��������K� 6���m�a�i�l�t�o�:�m�i�k�e�p�@�m�i�c�r�o�s�o�f�t�.�c�o�m�������D�������������������������������������������������������������������y��������K� ���������y��������K� 4���h�t�t�p�:�/�/�w�w�w�.�m�i�c�r�o�s�o�f�t�.�c�o�m�/�������D�������������������������������������������������������������������y��������K� ���������y��������K� 4���m�a�i�l�t�o�:�r�a�l�f�.�h�a�n�d�l�@�s�a�p�.�c�o�m�������D�������������������������������������������������������������������y��������K� ���������y��������K� (���h�t�t�p�:�/�/�w�w�w�.�s�a�p�.�c�o�m�/�����D�������������������������������������������������������������������y��������K� ���������y��������K� ����h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�/�v�4�.�0�/�o�d�a�t�a�-�v�4�.�0�-�p�a�r�t�1�-�p�r�o�t�o�c�o�l�.�h�t�m�l�����D�������������������������������������������������������������������y��������K� ���������y��������K� ����h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�/�v�4�.�0�/�o�d�a�t�a�-�v�4�.�0�-�p�a�r�t�2�-�u�r�l�-�c�o�n�v�e�n�t�i�o�n�s�.�h�t�m�l�������D�������������������������������������������������������������������y��������K� ���������y��������K� ����h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�/�v�4�.�0�/�o�d�a�t�a�-�v�4�.�0�-�p�a�r�t�3�-�c�s�d�l�.�h�t�m�l�����D�������������������������������������������������������������������y��������K� ���������y��������K� ����h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�j�s�o�n�-�f�o�r�m�a�t�/�v�4�.�0�/�o�d�a�t�a�-�j�s�o�n�-�f�o�r�m�a�t�-�v�4�.�0�.�h�t�m�l�������D�������������������������������������������������������������������y��������K� ���������y��������K� R���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�n�s�/�d�a�t�a�������D�������������������������������������������������������������������y��������K� ���������y��������K� Z���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�n�s�/�m�e�t�a�d�a�t�a�����D�������������������������������������������������������������������y��������K� ���������y��������K� ����h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�c�o�m�m�i�t�t�e�e�s�/�c�o�m�m�e�n�t�s�/�i�n�d�e�x�.�p�h�p�?�w�g�_�a�b�b�r�e�v�=�o�d�a�t�a�������D�������������������������������������������������������������������y��������K� ���������y��������K� X���h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�c�o�m�m�i�t�t�e�e�s�/�o�d�a�t�a�/�������D�������������������������������������������������������������������y��������K� ���������y��������K� f���h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�c�o�m�m�i�t�t�e�e�s�/�o�d�a�t�a�/�i�p�r�.�p�h�p�������D�������������������������������������������������������������������y��������K� ���������y��������K� |���h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�p�o�l�i�c�i�e�s�-�g�u�i�d�e�l�i�n�e�s�/�i�p�r���yX��;H�,�]ą'c������������D�������������������������������������������������������������������y��������K� ���������y��������K� N���h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/���yX��;H�,�]ą'c������������D�������������������������������������������������������������������y��������K� ���������y��������K� ����h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�p�o�l�i�c�i�e�s�-�g�u�i�d�e�l�i�n�e�s�/�t�r�a�d�e�m�a�r�k���yX��;H�,�]ą'c��������}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�1�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�1�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�1�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�1�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�1�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�1�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�1�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�1�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�2�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�3�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�4�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�5�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�6�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�7�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�8�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�5�9�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�0�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�1�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�2�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�3�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�4�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�8���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�5�9���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�0���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�1���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�2���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�3���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�4���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�5���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�6���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�7���}���D������������������������������������������������������������������y��������K� ���������_�T�o�c�3�6�5�4�6�4�6�6�7���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l�������D������������������������������������������������������������������y��������K� ���������_�S�e�r�v�i�c�e�_�D�o�c�u�m�e�n�t���q���D������������������������������������������������������������������y��������K� ���������_�E�n�t�i�t�y�������D������������������������������������������������������������������y��������K� ���������_�R�e�s�o�u�r�c�e�_�R�e�f�e�r�e�n�c�e�������D������������������������������������������������������������������y��������K� ���������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s�_�1�������D������������������������������������������������������������������y��������K� ���������_�S�i�n�g�l�e�_�S�c�a�l�a�r�_�V�a�l�u�e�������D������������������������������������������������������������������y��������K� ���������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�S�c�a�l�a�r���}���D������������������������������������������������������������������y��������K� ���������_�M�e�d�i�a�_�E�n�t�i�t�y�������D������������������������������������������������������������������y��������K� ���������_�D�e�l�t�a�_�R�e�s�p�o�n�s�e�_�1�������D������������������������������������������������������������������y��������K� ���������_�N�a�v�i�g�a�t�i�o�n�_�L�i�n�k�_�1�������D������������������������������������������������������������������y��������K� ���������_�A�s�s�o�c�i�a�t�i�o�n�_�L�i�n�k������D������������������������������������������������������������������y��������K� ���������_�E�r�r�o�r�_�R�e�p�o�n�s�e���u���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�C�S�D�L���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���q���D������������������������������������������������������������������y��������K� ���������r�f�c�2�1�1�9�������D�������������������������������������������������������������������y��������K� ���������y��������K� t���h�t�t�p�:�/�/�p�o�r�t�a�l�.�o�p�e�n�g�e�o�s�p�a�t�i�a�l�.�o�r�g�/�f�i�l�e�s�/�?�a�r�t�i�f�a�c�t�_�i�d�=�2�0�5�0�9�������D�������������������������������������������������������������������y��������K� ���������y��������K� H���h�t�t�p�:�/�/�w�w�w�.�i�e�t�f�.�o�r�g�/�r�f�c�/�r�f�c�2�1�1�9�.�t�x�t�������D�������������������������������������������������������������������y��������K� ���������y��������K� H���h�t�t�p�:�/�/�w�w�w�.�i�e�t�f�.�o�r�g�/�r�f�c�/�r�f�c�3�9�8�6�.�t�x�t�������D�������������������������������������������������������������������y��������K� ���������y��������K� H���h�t�t�p�:�/�/�w�w�w�.�i�e�t�f�.�o�r�g�/�r�f�c�/�r�f�c�3�9�8�7�.�t�x�t�������D�������������������������������������������������������������������y��������K� ���������y��������K� H���h�t�t�p�:�/�/�w�w�w�.�i�e�t�f�.�o�r�g�/�r�f�c�/�r�f�c�4�2�8�7�.�t�x�t�������D�������������������������������������������������������������������y��������K� ���������y��������K� H���h�t�t�p�:�/�/�w�w�w�.�i�e�t�f�.�o�r�g�/�r�f�c�/�r�f�c�5�0�2�3�.�t�x�t�������D�������������������������������������������������������������������y��������K� ���������y��������K� F���h�t�t�p�:�/�/�t�o�o�l�s�.�i�e�t�f�.�o�r�g�/�h�t�m�l�/�r�f�c�5�6�4�6�������D�������������������������������������������������������������������y��������K� ���������y��������K� F���h�t�t�p�:�/�/�t�o�o�l�s�.�i�e�t�f�.�o�r�g�/�h�t�m�l�/�r�f�c�6�7�2�1���q���D������������������������������������������������������������������y��������K� ���������R�F�C�4�2�8�7���q���D������������������������������������������������������������������y��������K� ���������R�F�C�5�0�2�3���q���D������������������������������������������������������������������y��������K� ���������R�F�C�4�2�8�7���q���D������������������������������������������������������������������y��������K� ���������R�F�C�5�0�2�3���q���D������������������������������������������������������������������y��������K� ���������R�F�C�4�2�8�7���q���D������������������������������������������������������������������y��������K� ���������R�F�C�5�0�2�3���y���D������������������������������������������������������������������y��������K� ������ ���_�O�D�a�t�a�_�D�a�t�a�������D������������������������������������������������������������������y��������K� ���������_�O�D�a�t�a�_�D�a�t�a�_�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�������D������������������������������������������������������������������y��������K� ���������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�_�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������_�I�n�s�t�a�n�c�e�_�A�n�n�o�t�a�t�i�o�n�s���q���D������������������������������������������������������������������y��������K� ���������R�F�C�4�2�8�7���q���D������������������������������������������������������������������y��������K� ���������R�F�C�5�0�2�3���q���D������������������������������������������������������������������y��������K� ���������R�F�C�6�7�2�1�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���{���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�M�e�t�a�X�M�L�������D������������������������������������������������������������������y��������K� ���������_�S�e�r�v�i�c�e�_�D�o�c�u�m�e�n�t�������D������������������������������������������������������������������y��������K� ���������V�o�c�C�a�p�a�b�i�l�i�t�i�e�s�������D������������������������������������������������������������������y��������K� ���������_�S�e�r�v�i�c�e�_�D�o�c�u�m�e�n�t�������D������������������������������������������������������������������y��������K� ���������_�S�e�r�v�i�c�e�_�D�o�c�u�m�e�n�t���q���D������������������������������������������������������������������y��������K� ���������_�E�n�t�i�t�y�������D������������������������������������������������������������������y��������K� ���������_�R�e�s�o�u�r�c�e�_�R�e�f�e�r�e�n�c�e�������D������������������������������������������������������������������y��������K� ���������_�S�i�n�g�l�e�_�S�c�a�l�a�r�_�V�a�l�u�e�������D������������������������������������������������������������������y��������K� ���������_�S�i�n�g�l�e�_�S�c�a�l�a�r�_�V�a�l�u�e�������D������������������������������������������������������������������y��������K� ���������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�S�c�a�l�a�r�������D������������������������������������������������������������������y��������K� ���������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�S�c�a�l�a�r�������D������������������������������������������������������������������y��������K� ���������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s�_�1�������D������������������������������������������������������������������y��������K� ���������_�D�e�l�t�a�_�R�e�s�p�o�n�s�e���q���D������������������������������������������������������������������y��������K� ���������R�F�C�3�9�8�6���q���D������������������������������������������������������������������y��������K� ���������R�F�C�3�9�8�6���{���D������������������������������������������������������������������y��������K� ������ ���a�p�p�W�o�r�k�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�_�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���u���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�C�S�D�L���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���u���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�C�S�D�L���}���D������������������������������������������������������������������y��������K� ���������a�p�p�C�o�l�l�e�c�t�i�o�n�������D������������������������������������������������������������������y��������K� ������"���_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�f�u�n�c�t�i�o�n�-�i�m�p�o�r�t�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�e�n�t�i�t�y�������D������������������������������������������������������������������y��������K� ������#���_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�s�e�r�v�i�c�e�-�d�o�c�u�m�e�n�t���q���D������������������������������������������������������������������y��������K� ���������R�F�C�5�0�2�3���u���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�C�S�D�L���{���D������������������������������������������������������������������y��������K� ������ ���a�p�p�W�o�r�k�s�p�a�c�e���s���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�U�R�L���q���D������������������������������������������������������������������y��������K� ���������R�F�C�5�0�2�3���}���D������������������������������������������������������������������y��������K� ���������a�p�p�C�o�l�l�e�c�t�i�o�n���u���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�C�S�D�L���{���D������������������������������������������������������������������y��������K� ������ ���a�p�p�W�o�r�k�s�p�a�c�e���s���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�U�R�L�������D������������������������������������������������������������������y��������K� ���������_�F�u�n�c�t�i�o�n�_�I�m�p�o�r�t�s�_�a�s���{���D������������������������������������������������������������������y��������K� ������ ���a�p�p�W�o�r�k�s�p�a�c�e���s���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�U�R�L���{���D������������������������������������������������������������������y��������K� ������ ���a�p�p�W�o�r�k�s�p�a�c�e���u���D������������������������������������������������������������������y��������K� ������ ���a�t�o�m�E�n�t�r�y���{���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�V�o�c�A�t�o�m���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������D������������������������������������������������������������������y��������K� ���������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�m�e�t�a�d�a�t�a�_�1�������D������������������������������������������������������������������y��������K� ���������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�_�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���s���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�U�R�L���u���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�C�S�D�L�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������D������������������������������������������������������������������y��������K� ���������m�e�t�a�d�a�t�a�P�r�o�p�e�r�t�i�e�s���}���D������������������������������������������������������������������y��������K� ���������_�M�e�d�i�a�_�E�n�t�i�t�y���u���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�A�B�N�F���i���D������������������������������������������������������������������y��������K� ���������G�M�L�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�D�a�t�a�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�t�y�p�e�������D������������������������������������������������������������������y��������K� ���������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�n�u�l�l�������D������������������������������������������������������������������y��������K� ������%���_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�m�e�t�a�d�a�t�a�_�c�o�n�t�e�x�t�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�d�a�t�a�:�[�P�r�o�p�e�r�t�y�N�a�m�e�]�������D������������������������������������������������������������������y��������K� ���������_�P�r�i�m�i�t�i�v�e�_�V�a�l�u�e�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�d�a�t�a�:�[�P�r�o�p�e�r�t�y�N�a�m�e�]�������D������������������������������������������������������������������y��������K� ���������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�t�y�p�e�������D������������������������������������������������������������������y��������K� ���������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�_�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������_�P�r�i�m�i�t�i�v�e�_�V�a�l�u�e�������D������������������������������������������������������������������y��������K� ���������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�t�y�p�e�������D������������������������������������������������������������������y��������K� ���������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�_�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������_�C�o�m�p�l�e�x�_�P�r�o�p�e�r�t�y�������D������������������������������������������������������������������y��������K� ���������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�t�y�p�e�������D������������������������������������������������������������������y��������K� ������ ���_�E�x�p�a�n�d�e�d�_�N�a�v�i�g�a�t�i�o�n�_�P�r�o�p�e�r�t�y�_�1���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�7�1�7�1�6�9�6���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�7�1�7�3�5�1�4�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l�������D������������������������������������������������������������������y��������K� ���������_�N�a�v�i�g�a�t�i�o�n�_�L�i�n�k�_�1�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d�������D������������������������������������������������������������������y��������K� ���������_�R�e�p�r�e�s�e�n�t�i�n�g�_�a�n�_�E�n�t�i�t�y�_�1�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������D������������������������������������������������������������������y��������K� ���������_�R�e�s�o�u�r�c�e�_�R�e�f�e�r�e�n�c�e�������D������������������������������������������������������������������y��������K� ������ ���_�E�x�p�a�n�d�e�d�_�N�a�v�i�g�a�t�i�o�n�_�P�r�o�p�e�r�t�y�_�1�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�r�e�f���s���D������������������������������������������������������������������y��������K� ������ ���a�t�o�m�L�i�n�k���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���q���D������������������������������������������������������������������y��������K� ���������R�F�C�5�0�2�3�������D������������������������������������������������������������������y��������K� ���������m�e�t�a�d�a�t�a�P�r�o�p�e�r�t�i�e�s���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�9�5�8�0�4�6�1�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������D������������������������������������������������������������������y��������K� ���������_�E�n�t�i�t�y�_�R�e�f�e�r�e�n�c�e�s�_�a�s�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���s���D������������������������������������������������������������������y��������K� ������ ���n�e�x�t�L�i�n�k�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������D������������������������������������������������������������������y��������K� ���������_�E�n�t�i�t�y�_�R�e�f�e�r�e�n�c�e�s�_�a�s���q���D������������������������������������������������������������������y��������K� ���������R�F�C�4�2�8�7���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l���q���D������������������������������������������������������������������y��������K� ���������_�E�n�t�i�t�y�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l�������D������������������������������������������������������������������y��������K� ���������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d�������D������������������������������������������������������������������y��������K� ���������_�C�h�a�n�g�e�d�/�A�d�d�e�d�_�E�n�t�i�t�i�e�s�_�a�s�������D������������������������������������������������������������������y��������K� ���������_�C�h�a�n�g�e�d�/�A�d�d�e�d�_�E�n�t�i�t�i�e�s�_�a�s�������D������������������������������������������������������������������y��������K� ���������_�D�e�l�e�t�e�d�_�e�n�t�i�t�i�e�s�_�a�s�_�1���y���D������������������������������������������������������������������y��������K� ������ ���_�A�d�d�e�d�_�L�i�n�k�������D������������������������������������������������������������������y��������K� ���������_�D�e�l�e�t�e�d�_�L�i�n�k�s�_�a�s�������D������������������������������������������������������������������y��������K� ���������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d�������D������������������������������������������������������������������y��������K� ���������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�m�e�t�a�d�a�t�a�_�1���s���D������������������������������������������������������������������y��������K� ������ ���n�e�x�t�L�i�n�k������D������������������������������������������������������������������y��������K� ���������_�D�e�l�t�a�_�L�i�n�k�_�a�s�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�c�o�u�n�t�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������D������������������������������������������������������������������y��������K� ���������_�E�x�p�a�n�d�e�d�_�N�a�v�i�g�a�t�i�o�n�_�P�r�o�p�e�r�t�y�������D������������������������������������������������������������������y��������K� ���������_�N�a�v�i�g�a�t�i�o�n�_�L�i�n�k�������D������������������������������������������������������������������y��������K� ���������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�m�e�t�a�d�a�t�a�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������D������������������������������������������������������������������y��������K� ���������_�A�t�o�m�_�T�o�m�b�s�t�o�n�e�_�N�a�m�e�s�p�a�c�e���q���D������������������������������������������������������������������y��������K� ���������R�F�C�6�7�2�1���q���D������������������������������������������������������������������y��������K� ���������R�F�C�6�7�2�1�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d���q���D������������������������������������������������������������������y��������K� ���������R�F�C�6�7�2�1�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�l�i�n�k�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�l�i�n�k�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������D������������������������������������������������������������������y��������K� ���������_�A�t�t�r�i�b�u�t�e�_�t�a�r�g�e�t���u���D������������������������������������������������������������������y��������K� ������ ���O�D�a�t�a�A�B�N�F�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������D������������������������������������������������������������������y��������K� ���������_�S�i�n�g�l�e�_�S�c�a�l�a�r�_�V�a�l�u�e�������D������������������������������������������������������������������y��������K� ���������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s���q���D������������������������������������������������������������������y��������K� ���������_�E�n�t�i�t�y�������D������������������������������������������������������������������y��������K� ���������_�E�n�t�i�t�y�_�R�e�f�e�r�e�n�c�e�������D������������������������������������������������������������������y��������K� ���������_�C�o�m�p�l�e�x�_�P�r�o�p�e�r�t�y���u���D������������������������������������������������������������������y��������K� ������ ���_�P�r�o�p�e�r�t�y�������D������������������������������������������������������������������y��������K� ���������N�a�v�i�g�a�t�i�o�n�P�r�o�p�e�r�t�y���u���D������������������������������������������������������������������y��������K� ������ ���_�F�u�n�c�t�i�o�n���q���D������������������������������������������������������������������y��������K� ���������_�A�c�t�i�o�n���y���D������������������������������������������������������������������y��������K� ������ ���_�A�d�d�e�d�_�L�i�n�k���}���D������������������������������������������������������������������y��������K� ���������_�D�e�l�e�t�e�d�_�L�i�n�k������D������������������������������������������������������������������y��������K� ���������_�E�r�r�o�r�s�_�a�s�_�X�M�L�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ������!���_�T�h�e�_�m�e�t�a�d�a�t�a�:�A�n�n�o�t�a�t�i�o�n�_�E�l�e�m�e�n�t�������D������������������������������������������������������������������y��������K� ������!���_�T�h�e�_�m�e�t�a�d�a�t�a�:�A�n�n�o�t�a�t�i�o�n�_�E�l�e�m�e�n�t�������D������������������������������������������������������������������y��������K� ������!���_�T�h�e�_�m�e�t�a�d�a�t�a�:�A�n�n�o�t�a�t�i�o�n�_�E�l�e�m�e�n�t�������D������������������������������������������������������������������y��������K� ���������_�P�r�i�m�i�t�i�v�e�_�V�a�l�u�e�s�������D������������������������������������������������������������������y��������K� ���������_�C�o�l�l�e�c�t�i�o�n�_�V�a�l�u�e�������D������������������������������������������������������������������y��������K� ���������_�S�t�r�u�c�t�u�r�e�_�A�n�n�o�t�a�t�i�o�n�s�������D������������������������������������������������������������������y��������K� ���������_�P�r�i�m�i�t�i�v�e�_�V�a�l�u�e�������D������������������������������������������������������������������y��������K� ���������_�T�h�e�_�t�y�p�e�_�a�t�t�r�i�b�u�t�e�������D������������������������������������������������������������������y��������K� ������!���_�T�h�e�_�m�e�t�a�d�a�t�a�:�A�n�n�o�t�a�t�i�o�n�_�E�l�e�m�e�n�t�������D������������������������������������������������������������������y��������K� ���������_�P�r�i�m�i�t�i�v�e�_�a�n�d�_�E�n�u�m�e�r�a�t�i�o�n�_�1�������D������������������������������������������������������������������y��������K� ���������_�C�o�m�p�l�e�x�_�C�o�l�l�e�c�t�i�o�n�_�P�r�o�p�e�r�t�y�������D������������������������������������������������������������������y��������K� ���������_�T�h�e�_�t�y�p�e�_�a�t�t�r�i�b�u�t�e�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�d�a�t�a�:�[�P�r�o�p�e�r�t�y�N�a�m�e�]�������D������������������������������������������������������������������y��������K� ���������_�T�h�e�_�t�y�p�e�_�a�t�t�r�i�b�u�t�e�������D������������������������������������������������������������������y��������K� ���������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s���q���D������������������������������������������������������������������y��������K� ���������_�E�n�t�i�t�y�������D������������������������������������������������������������������y��������K� ���������_�C�o�m�p�l�e�x�_�P�r�o�p�e�r�t�y���u���D������������������������������������������������������������������y��������K� ������ ���_�P�r�o�p�e�r�t�y�������D������������������������������������������������������������������y��������K� ���������N�a�v�i�g�a�t�i�o�n�P�r�o�p�e�r�t�y���u���D������������������������������������������������������������������y��������K� ������ ���_�F�u�n�c�t�i�o�n���q���D������������������������������������������������������������������y��������K� ���������_�A�c�t�i�o�n������D������������������������������������������������������������������y��������K� ���������_�E�r�r�o�r�s�_�a�s�_�X�M�L�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�r�e�f�_�1�������D������������������������������������������������������������������y��������K� ���������_�S�i�n�g�l�e�_�S�c�a�l�a�r�_�V�a�l�u�e�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�v�a�l�u�e�������D������������������������������������������������������������������y��������K� ���������m�e�t�a�d�a�t�a�P�r�o�p�e�r�t�i�e�s�������D������������������������������������������������������������������y��������K� ���������_�C�o�m�p�l�e�x�_�P�r�o�p�e�r�t�y�������D������������������������������������������������������������������y��������K� ���������_�A�t�t�r�i�b�u�t�e�_�t�a�r�g�e�t�_�1�������D������������������������������������������������������������������y��������K� ���������_�I�n�d�i�v�i�d�u�a�l�_�P�r�o�p�e�r�t�y���[��D������������������������������������������������������������������y��������K� ��� ������y��������K� ����f�i�l�e�:�/�/�/�C�:�/�U�s�e�r�s�/�d�0�3�7�4�2�7�/�D�o�w�n�l�o�a�d�s�/�I�n�s�t�a�n�c�e�%�2�0�A�n�n�o�t�a�t�i�o�n�s�%�2�0�i�n�%�2�0�A�t�o�m�%�2�0�(�1�)�.�d�o�c�x���"���z�1�7�4�a�b�0�b�8�1�8�f�f�4�c�6�a�9�1�3�1�a�a�6�2�3�3�1�e�8�1�3�3�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�a�t�o�m�:�l�i�n�k�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�f�u�n�c�t�i�o�n�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�a�c�t�i�o�n�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�l�i�n�k�������D������������������������������������������������������������������y��������K� ���������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�d�e�l�e�t�e�d�-�l�i�n�k������D������������������������������������������������������������������y��������K� ���������_�E�r�r�o�r�s�_�a�s�_�X�M�L�������D������������������������������������������������������������������y��������K� ������!���_�T�h�e�_�m�e�t�a�d�a�t�a�:�A�n�n�o�t�a�t�i�o�n�_�E�l�e�m�e�n�t�������D������������������������������������������������������������������y��������K� ���������_�T�h�e�_�m�e�t�a�d�a�t�a�:�e�r�r�o�r�_�E�l�e�m�e�n�t�������D������������������������������������������������������������������y��������K� ���������_�A�t�t�r�i�b�u�t�e�_�t�a�r�g�e�t�_�1���{���D������������������������������������������������������������������y��������K� ������ ���m�e�t�a�d�a�t�a�C�o�d�e�������D������������������������������������������������������������������y��������K� ���������m�e�t�a�d�a�t�a�M�e�s�s�a�g�e�������D������������������������������������������������������������������y��������K� ���������_�I�n�s�t�a�n�c�e�_�A�n�n�o�t�a�t�i�o�n�s���q���D������������������������������������������������������������������y��������K� ���������r�f�c�5�6�4�6���q���D������������������������������������������������������������������y��������K� ���������R�F�C�4�2�8�7���q���D������������������������������������������������������������������y��������K� ���������R�F�C�5�0�2�3�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�D�a�t�a�N�a�m�e�s�p�a�c�e�������D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���q���D������������������������������������������������������������������y��������K� ���������R�F�C�4�2�8�7���q���D������������������������������������������������������������������y��������K� ���������R�F�C�4�2�8�7���q���D������������������������������������������������������������������y��������K� ���������R�F�C�5�0�2�3���q���D������������������������������������������������������������������y��������K� ���������R�F�C�6�7�2�1�������D������������������������������������������������������������������y��������K� ���������_�D�e�l�t�a�_�R�e�s�p�o�n�s�e�_�1���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�6�8�2�9�4�8�1�������D������������������������������������������������������������������y��������K� ���������_�I�n�s�t�a�n�c�e�_�A�n�n�o�t�a�t�i�o�n�s���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�6�8�2�9�5�4�0���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�6�8�2�9�5�9�1���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l�������D������������������������������������������������������������������y��������K� ���������_�R�e�q�u�e�s�t�i�n�g�_�t�h�e�_�A�t�o�m���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�6�8�2�9�0�0�1���s���D������������������������������������������������������������������y��������K� ������ ���n�e�x�t�L�i�n�k���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�6�8�2�9�1�1�4�������D������������������������������������������������������������������y��������K� ���������_�S�e�r�v�i�c�e�_�D�o�c�u�m�e�n�t���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�6�8�2�9�1�4�5���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�9�8�5�4�0�7�2���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�6�9�2�1�2�4�2���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�6�9�2�1�2�5�9���}���D������������������������������������������������������������������y��������K� ���������_�R�e�f�3�5�6�8�2�9�3�6�6���}���D������������������������������������������������������������������y��������K� ���������O�D�a�t�a�P�r�o�t�o�c�o�l�����$$If����l�!v�h#v��#v�#v�#vL:V ��l� t����0���������������������������������������65���5��5��5�La�l�ytJg����$$If����l�!v�h#v��#v�#v�#vL:V ��l� t����0���������������������������������������65���5��5��5�La�l�ytJg����$$If����l�!v�h#v��#v�#v�#vL:V ��l� t����0���������������������������������������65���5��5��5�La�l�ytJg����$$If����l�!v�h#v��#v�#v�#vL:V ��l� t����0���������������������������������������65���5��5��5�La�l�ytJg����$$If����l�!v�h#v��#v�#v�#vL:V ��l� t����0���������������������������������������65���5��5��5�La�l�ytJg����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������^X��� �����������������������������������������������������������������������������p��p��p��p��p��p��p��p��p����������0�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������8������h�������������������������0��������������0����������������������������������0��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������2���������������������� ��0�����P��`��p�������������������������2��(�������� ��0��@��P��`��0��(���������������������� ��0��@��P��`��p������������������������� ��0��@��P��`��p������������������������� ��0��@��P��`��p������������������������� ��0��@��P��`��p������������������������� ��0��@��P��`��p��������8��X���������V��~�����_HmH nH sH tH ����L��`���L� �� �����N�o�r�m�a�l��� ����P��P��OJ�QJ�_HaJ�mH sH tH x�@��x� ��]A���� �H�e�a�d�i�n�g� �1���+��$$ &� F����x�$d@&�N��������5�B* CJ$�KH �\�^J�aJ$�ph;�o��d�@��d� ������� �H�e�a�d�i�n�g� �2�,�H�2���$��$� & F����$d����@&N����������CJ�\�]�aJ�J�@!��J� �������� �H�e�a�d�i�n�g� �3�,�H�3��� �� & F�@& �CJ�\�aJ��J�@1��J� �������� �H�e�a�d�i�n�g� �4�,�H�4��� �� & F�@& �CJ�\�aJ��B�@A��B� �������� �H�e�a�d�i�n�g� �5��� �� & F�@& �\�]�aJ�D�@Q��D� �������� �H�e�a�d�i�n�g� �6��� �� & F�@& �CJ�\�aJ��8�@a��8� �������� �H�e�a�d�i�n�g� �7��� �� & F�@&��>�@q��>� �������� �H�e�a�d�i�n�g� �8��� �� & F�@&�6�]�8� ����8� �������� �H�e�a�d�i�n�g� �9��� � � & F�@&��D�A`����D� ���������D�e�f�a�u�l�t� �P�a�r�a�g�r�a�p�h� �F�o�n�t�����V�i@����V� �������� �T�a�b�l�e� �N�o�r�m�a�l��� �:V ����4����4�� l�a���� ���(�k ����(��������0�N�o� �L�i�s�t���� �����`�>@���`� ��]A�����T�i�t�l�e�����������$dN��������5�B* CJ0�KH�\�^J�aJ0�ph;�o��>�J@��>� ��]A�����S�u�b�t�i�t�l�e������B* CJ$�aJ$�ph;�o��V��O�"V� ���]A�����T�i�t�l�e� �p�a�g�e� �i�n�f�o��� ��$��������5�B* aJ�ph;�o�p��Op� ���E=����T�i�t�l�e� �p�a�g�e� �i�n�f�o� �d�e�s�c�r�i�p�t�i�o�n�����$����P�^��m$ �5�B*�ph����2��O!22� ���U���� �C�o�n�t�r�i�b�u�t�o�r�������@��!B@� ��������� �L�e�g�a�l� �n�o�t�i�c�e�����������^�����0��o��Q0� ����������D�a�t�a�t�y�p�e����OJ�QJ�6�U`��a6� ������0 �H�y�p�e�r�l�i�n�k��� �>*�B*ph����.�@��.� �������p�T�O�C� �1��� ���<��<���6�@��6� �������p�T�O�C� �2���������<��<�^�����6�@��6� �������p�T�O�C� �3��������<��<�^����~��O��~� ���������C�o�d�e���P��$����������$d�&d�-D�M� ����������N������P������]��^�� �CJ�OJ�QJ�N��O!��N� ���]A�����A�p�p�e�n�d�i�x�H�e�a�d�i�n�g�2��� �� & F�� �B* ph;�o��F�V`���F� ����������F�o�l�l�o�w�e�d�H�y�p�e�r�l�i�n�k��� �>*B* ph����2��o���2� ����������E�l�e�m�e�n�t��� �CJ�OJ�QJ�6��o���6� ��������� �A�t�t�r�i�b�u�t�e��� �CJ�OJ�QJ�&��O��&� ���������K�e�y�w�o�r�d�����R�^@�R� �������0 �N�o�r�m�a�l� �(�W�e�b�)���� ��d��d�[$\$�OJ�PJ�QJ�^J�.�X`��.� ���������E�m�p�h�a�s�i�s����6�]�N�g`��!N� ����������H�T�M�L� �T�y�p�e�w�r�i�t�e�r����CJ�OJ�PJ�QJ�^J�aJ���e@�2�� ����������H�T�M�L� �P�r�e�f�o�r�m�a�t�t�e�d���?�#� �2��(� P�x �4 �#\'�*�.2�5@9������������������������OJ�PJ�QJ�^J�aJ�4�O���4� ��������� �N�o�t�e� �H�e�a�d�i�n�g����$���<����<� ����������N�o�t�e����%������x��x�]��^����J��O�rJ� ����������D�e�f�i�n�i�t�i�o�n� �t�e�r�m��� �&��@ ]�@ �5�PJ��@��O�b@� ��������� �D�e�f�i�n�i�t�i�o�n����'����x�^���PJ�F��O��F� ��������R�e�f����(��p����(��(�^�p`��� �B*\�ph����4�@��4� ����������H�e�a�d�e�r��� �)� ����!���4� @��4� �:��������F�o�o�t�e�r��� �*� ����!���.�)@���.� ��������� �P�a�g�e� �N�u�m�b�e�r�����d��O��d� ���J7N����A�p�p�e�n�d�i�x�H�e�a�d�i�n�g�1����,� &� F��d��d�[$\$��B* KH$�aJ$�ph;�o��,��o���,� ����������R�e�f� �t�e�r�m����5��.�(����.� ��������� �L�i�n�e� �N�u�m�b�e�r�����6����6� �������p�T�O�C� �7����/�������x�^����^��O�^� ����������E�x�a�m�p�l�e���5�0�$d����&d����-D�M� ����������N���������P������������6��o��6� ��������� �C�O�D�E� �t�e�m�p��� �CJ�OJ�QJ�F��O�"F� ��������� �C�o�d�e� �s�m�a�l�l����2�-D�M� ������������CJ�:��O2:� ��������� �E�x�a�m�p�l�e� �s�m�a�l�l����3��CJ�:�0��B:� ��������� �L�i�s�t� �B�u�l�l�e�t��� �4� &� F����2�@��2� �������p�T�O�C� �4��� �5���^���CJ�,��o��a,� ����������V�a�r�i�a�b�l�e����6��.��Q�.� �������p�T�O�C� �5��� �7���^����2�@��2� �������p�T�O�C� �6��� �8���^���CJ�>����>� ��iU���� �H�e�a�d�i�n�g� �1� �W�P��� �9�$� &� F���:��o���:� �*�iU���� �F�o�o�t�e�r� �C�h�a�r��� �OJ�QJ�aJ�@�"@��@� ���������C�a�p�t�i�o�n��� �;��x��x��6�CJ�\�aJ�>�6���>� ��������� �L�i�s�t� �B�u�l�l�e�t� �2��� �<� &� F����<��O!�<� ���|ML��� �R�e�l�a�t�e�d� �W�o�r�k��� �=� &� F����0��O!�0� ����i�����A�b�s�t�r�a�c�t����>�m$����<��O<� ���]A�����N�o�t�i�c�e�s����?�$� �B* aJ$�ph;�o��:��O�:� ����w���� �T�e�x�t� �B�o�d�y��� �@�$����^������r�����r� �� ���� �T�a�b�l�e� �G�r�i�d���7�:VA��0������������������������������������� �A��P��P���N��O1��N� ���]A�����A�p�p�e�n�d�i�x�H�e�a�d�i�n�g�3��� �B� & F�� �B* ph;�o��X��@�2X� �D�iU���� �B�a�l�l�o�o�n� �T�e�x�t��� �C��������CJ�OJ�QJ�aJ�mH��sH��tH��V��o��AV� �C�iU�����B�a�l�l�o�o�n� �T�e�x�t� �C�h�a�r����CJ�OJ�QJ�aJ�mH��sH��tH��B�b`��QB� ��iU��0 �H�T�M�L� �C�o�d�e����CJ�OJ�PJ��QJ�^J�aJ�*�W`��a*� ��iU��`�S�t�r�o�n�g����5�\�L�@��L� ��iU��p�T�O�C� �8����G��d�����d�^��CJ�OJ�QJ�aJ�L�@��L� ��iU��p�T�O�C� �9����H���d�����d�^���CJ�OJ�QJ�aJ�B�'`���B� ���iU�����C�o�m�m�e�n�t� �R�e�f�e�r�e�n�c�e����CJ�aJ�8�@��8� �K�iU��0 �C�o�m�m�e�n�t� �T�e�x�t����J��aJ�B��o���B� �J�iU��0�C�o�m�m�e�n�t� �T�e�x�t� �C�h�a�r����OJ�QJ�@�j@��@� �M�iU�����C�o�m�m�e�n�t� �S�u�b�j�e�c�t����L��5�\�N��o���N� �L�iU�����C�o�m�m�e�n�t� �S�u�b�j�e�c�t� �C�h�a�r����5�OJ�QJ�\�n��`���n����iU��0�C�o�l�o�r�f�u�l� �S�h�a�d�i�n�g� �-� �A�c�c�e�n�t� �1����N��OJ�QJ�_HaJ�mH sH tH ���O���� ���iU�����B�u�l�l�e�t�e�d� �L�i�s�t� �1�,�b�l�1���)�O� &� F� �������������^�`�����CJ�KH�OJ�PJ �QJ�aJ�J���J� ���iU�����B�u�l�l�e�t�e�d� �L�i�s�t� �2�,�b�l�2��� �P��$^�$��.��o��.� ���iU�����B�o�l�d�,�b��� �5�\�aJ�~��@�"~� ��iU�� �C�o�l�o�r�f�u�l� �L�i�s�t� �-� �A�c�c�e�n�t� �1����R���d�������^��m$��CJ�OJ�PJ�QJ�^J�aJ�B��o��1B� ���iU�����a�p�p�l�e�-�c�o�n�v�e�r�t�e�d�-�s�p�a�c�e�����$��o��A$� ���iU�����s�t�r�i�n�g�����R��`��RR� ��iU��� �M�e�d�i�u�m� �G�r�i�d� �2����U��OJ�QJ�_HaJ�mH sH tH B��o��aB� �W�iU���� �V�e�r�b�a�t�i�m� �C�h�a�r����OJ�QJ�^J�aJ�R��O�rR� �V�iU���� �S�o�u�r�c�e� �C�o�d�e����W����x��x�4$�^��� �OJ�QJ�^J�PK�����!�������������[Content_Types].xml���N�0E�H���-J��@%�ǎǢ|�ș$�ز�U��L�TB� l,�3��;�r��Ø��J��B+$�G]��7O٭V��<a������(7��I��R�{�pgL�=��r����8�5v&����uQ�뉑8��C����X=����$␴�?6N�JC�������F�B.ʹ'�.�+���Y�T���^e5�5�� � �ð �_�g -�;�����Yl�ݎ��|6^�N��`�?���[�����PK�����!��֧�����6�� ���_rels/.rels���j�0 ���}Q��%v/��C/�}��(h"���O� ������=������ ����C?�h�v=��Ʌ��%[xp��{۵_�Pѣ<�1�H�0���O�R�Bd���JE�4b$��q_����6L��R�7`�������0̞O��,�En7�Li�b��/�S���e��е���������PK�����!�ky������������theme/theme/themeManager.xml �M � @�}�w��7c�(Eb�ˮ���C�AǠҟ����7��՛K Y,� �e�.���|,���H�,l����xɴ��I�sQ}#Ր���� ֵ+�!�,�^�$j=�GW���)�E�+& 8������PK�����!�0�C)���������theme/theme/theme1.xml�YOo�6��w toc'vu�ر�-M�n�i���P�@�I}��úa��m�a[�إ�4�:lЯ�GR��X^�6؊�>$��������� !)O�^�r�C$�y@�����/�yH*��񄴽)�޵��߻��UDb�`}"�qۋ�Jח���X^�)I`n�E���p)���li�V[]�1M<������O�P��6r�=���z�gb�Ig��u��S�eb���O������R�D۫����qu �g��Z����o~ٺlAp�lx�pT0���+[}`j�����zA���V�2�F���i�@�q�v�֬5\|��ʜ̭N��le�X�ds���jcs����7����f���� ��W���+�Ն�7����`���g� Ș��J���j|��h(�K��D-����� dX��iJ�؇(��x$(� �:��;�˹!� I_�T��S 1�������?E��?������?ZBΪm���U/������?�~����xY����'���y5�g&΋/����ɋ�>���G�M�Ge���D�����3Vq%'#q�����$�8��K�����)f�w9:ĵ�� x}r�x����w���r�:\TZaG�*�y8I�j�bR��c|XŻ�ǿ�I u3KG�nD1�NIB�s��� ��R��u���K>V�.EL+M2�#'�f��i ~�V� �vl�{u8��z��H� �*���:�(W�☕ ~��J��T�e\O*�tHG��HY���}KN��P�*ݾ˦���TѼ�9/#��A7�qZ��$*c?���qU��n��w�N��%��O��i�4 =3��N���)cbJ u�V�4����(Tn��� 7��_?���m-ٛ�{U����B�w�<w���_���$�#��[Ի���8{���(�/�$Ϫ0h݋�F۴��®{L�)#7�i�%�=A�:s�$�),��Qg20pp��f \}DU4�p M{��DB��%J��â������+{�l�C���]��=��5 2F��hsF+��Y��\Ɉ�n�ì��:3���E�[��6�9��� �`��&45Z!��*��5k8�`Fmw��-� �"�d>�z���n���ʜ"Z ��x��J�Z��p;���� ���{/�<�P;��,)''K�Q�k5���q���pN��8�K�Gb�e��� �S��d�̛�\17 �p�a�>��SR!��� 3���K4'+�r�zQ TT��I����Ivt]K�c⫲�K#�v�5+�|��D������~��O@%\w���_�nN[�L��9K����q��g�V�h��n R!�y+��U�n�;�*&�/H�r��T�� �>��>\ �t��=.Tġ ���S; Z�~�!������P��9gi���C�ڧ!�# B��,��;�X=ۻ,I�2UW�V�9$l�k���=A��j���;�{�A�P79�|s*Y�����;�̠�[�MC�ۿ�hf��]o��{oY=1k�yV���V����5E8�Vk+֜���\8���0X4D)�!!��?*|f�v� u����"�x��A�@T_������q��6�4)kڬu�V�7� �t �'��%;���i�9s�9�x���,��ڎ-45x�d���8?�ǘ�d�/Y|t�� &LIL�J`�& �-G�t�/������PK�����!� ѐ�������'���theme/theme/_rels/themeManager.xml.rels��M �0���wooӺ�&݈Э���5 6?$Q�� �,.�a��i����c2�1h�:�q��m��@RN��;d�`��o7�g�K(M&$R(.1�r'J��ЊT���8��V�"��AȻ�H�u}��|�$�b{���P����8�g/]�QAsم(����#��L�[����������PK-������!���������������������������[Content_Types].xmlPK-������!��֧�����6�� �������������0��_rels/.relsPK-������!�ky������������������������theme/theme/themeManager.xmlPK-������!�0�C)����������������������theme/theme/theme1.xmlPK-������!� ѐ�������'�������������� ��theme/theme/_rels/themeManager.xml.relsPK������]��� ����<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <a:clrMap xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" bg1="lt1" tx1="dk1" bg2="lt2" tx2="dk2" accent1="accent1" accent2="accent2" accent3="accent3" accent4="accent4" accent5="accent5" accent6="accent6" hlink="hlink" folHlink="folHlink"/>�����a������� ��������; ����������� ������������$���$���'���'���'�����������z��z��z��z��z��z��z��}����� ��� ��������������������r���"��f2��.3���3��a4��5���5��P6��7���7��O8���8���9�� :���:��2;���;��G<���<��h=���>��~>��?���?��X@���@��AA��B��fB���B��rC�� D���D��GE���E��sF��AG���G���H��I���I��NJ���J��K���K���L�� M���M��N���N��!O���O��-P���P���Q�� R���R��gS���S��xT���T���U��=V���V���W��9X���X���Y�� Z���Z��[���[��^\���\��}]��)^���^��F_���_��}`��.a���a��cb��c���c��Hd���d���e��&f���f��Kg���g��fh��i���i���k��im���o���p��'r���s���t��?v��x���y���|��%������y�����������)������*�������A������������������������(���f������s���%���X����������ھ����������e���������������1���O���(����������������������������������K������w���?���[���n�!���� ��#�;(��*�1��3�'7��8�*;�=��>�rA��D��G�ZJ��L��N��P�FS��V��X��[�l]��`�Oc�e�1h��j��l�n��p�u��w�7~�������ć�������\��B��E��Ș�ŝ�d�����!��������߱����I�����T�����`���������������������������������������������������������������������������������������������������������������������������� �� �� �� �� ������������������������������������ ��!��"��#��$��%��&��'��(��)��+��,��-��.��/��0��1��2��3��4��5��6��7��8��9��:��<��=��>��?��@��A��B��C��D��E��F��G��H��I��J��K��M��N��O��P��Q��R��S��T��U��V��X��Y��Z��[��\��]��_��`��a��b��c��d��e��f��h��j��k��l��m��n��o��q��r��t��u��v��w��x��z��{��|��}��~����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������G��2���2���<��qF�� P���Y���c��Ok��=t��܁��������������������� ������� �����������X�������E�����������e�� �� �R���B��%�-��1�9;��D�O�ZW��[��b�l��s��z�Q��������4��=�����&����������&�� ��T��s�������������������������*��;��L��W��^��g��i��p��s��y����������������������������������������������������������������������������������������������������������������������������������k�������3��F���������}��������_��������F�������������������G��Y���������t����������=��W�������������������� ��( ��, ��U ��_ ��{ ��� ��� ��� ��� ��� ��� ��* ��> ��B ��k ��u ��� ��� ��� ��� ��� ��� ��a ��� ��� �� ��m ��� ��[ ��� �����=��������D��������G��������@�����������`����������0��2��n�������������8��s����������������Q���������������(���(��)��"*��g*���*���*���*���*��+��+��-+��/+��0+��2+��R+��c+��+���+���+���+���+���+���+���+���+���+���+��,��:,��<,��=,��?,��_,��u,���,���,���,���,���,���,���,���,���,���,�� -��!-��=-��@-��A-��C-��c-���-���-���-���-���-���-���-���-���-���-���-��.��/.��K.��N.��O.��Q.��q.���.���.���.���.���.���.���.��/��/��/��/��9/��W/��s/��v/��w/��y/���/���/���/���/���/���/���/��0��*0��-0��.0��00��P0��b0��~0���0���0���0���0���0���0���0���0���0���0�� 1��)1��,1��-1��/1��O1��h1���1���1���1���1���1���1���1���1���1���1��2��62��R2��U2��V2��X2��x2���2���2���2���2���2���2���2�� 3��3��3��3��33��I3��e3��h3��i3��k3���3���3���3���3���3���3���3��4��"4��%4��&4��(4��H4��n4���4���4���4���4���4���4���4���4���4���4��5��'5��C5��F5��G5��I5��i5���5���5���5���5���5���5���5��6��6��6��6��'6��=6��Y6��\6��]6��_6��6���6���6���6���6���6���6���6��7��7��7��7��<7��c7��7���7���7���7���7���7���7���7���7���7���7��8��38��68��78��98��Y8��c8��8���8���8���8���8���8���8���8���8���8���8��9��:9��=9��>9��@9��`9���9���9���9���9���9���9���9��:�� :�� :��:��.:��C:��_:��b:��c:��e:���:���:���:���:���:���:���:���:��;��;��;��;��;;��U;��q;��t;��u;��w;���;���;���;���;���;���;���;��<��!<��$<��%<��'<��G<��h<���<���<���<���<���<���<���<���<���<���<�� =��,=��H=��K=��L=��N=��n=���=���=���=���=���=���=���=��>��>��>��>��9>��O>��k>��n>��o>��q>���>���>���>���>���>���>��?��&?��B?��E?��F?��H?��h?���?���?���?���?���?���?���?��@�� @�� @�� @��-@��D@��`@��c@��d@��f@���@���@���@���@���@���@���@���@��A��A��A��A��8A��NA��jA��mA��nA��pA���A���A���A���A���A���A���A�� B��)B��,B��-B��/B��OB��`B��|B��B���B���B���B���B���B���B���B���B���B�� C��'C��*C��+C��-C��MC��dC���C���C���C���C���C���C���C���C���C���C���C��D��/D��2D��3D��5D��UD��kD���D���D���D���D���D���D���D���D���D���D��E��%E��AE��DE��EE��GE��gE��xE���E���E���E���E���E���E���E���E���E���E��F��*F��FF��IF��JF��LF��lF���F���F���F���F���F���F���F���F���F���G��G��"G��8G��TG��WG��XG��ZG��zG���G���G���G���G���G���G���G��H�� H�� H�� H��-H��GH��cH��fH��gH��iH���H���H���H���H���H���H���H�� I��(I��+I��,I��.I��NI��mI���I���I���I���I���I���I���I���I���I���I�� J��$J��@J��CJ��DJ��FJ��fJ���J���J���J���J���J���J���J��K��K��K��K��6K��LK��hK��kK��lK��nK���K���K���K���K���K���K���K��L��!L��$L��%L��'L��GL��]L��yL��|L��}L��L���L���L���L���L���L���L���L��M��-M��0M��1M��3M��SM��vM���M���M���M���M���M���M���M���M���M���M��N��"N��>N��AN��BN��DN��dN��N���N���N���N���N���N���N���N���N���N���N��O��EO��aO��dO��eO��gO���O���O���O���O���O���O���O���O��P��P��P��P��:P��MP��iP��lP��mP��oP���P���P���P���P���P���P���P�� Q��&Q��)Q��*Q��,Q��LQ��lQ���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q�� R��$R��@R��CR��DR��FR��fR��~R���R���R���R���R���R���R���R���R���R���R��S��1S��MS��PS��QS��SS��sS���S���S���S���S���S���S���S��T��T�� T�� T��+T��CT��_T��bT��cT��eT���T���T���T���T���T���T���T���T��U��U��U��U��8U��ZU��vU��yU��zU��|U���U���U���U���U���U���U���U��V��*V��-V��.V��0V��PV��pV���V���V���V���V���V���V���V���V���V���V��W��+W��GW��JW��KW��MW��mW���W���W���W���W���W���W���W���W���W���X��X��"X��;X��WX��ZX��[X��]X��}X���X���X���X���X���X���X���X�� Y�� Y�� Y��Y��/Y��=Y��YY��\Y��]Y��_Y��Y���Y���Y���Y���Y���Y���Y���Y�� Z��Z��Z��Z��1Z��BZ��^Z��aZ��bZ��dZ���Z���Z���Z���Z���Z���Z���Z���Z��[��[��[��[��?[��b[��~[���[���[���[���[���[���[���[���[���[���[��\��"\��%\��&\��(\��H\��e\���\���\���\���\���\���\���\���\���\���\��]��$]��@]��C]��D]��F]��f]���]���]���]���]���]���]���]��^��^��^��^��'^��G^��c^��f^��g^��i^���^���^���^���^���^���^���^�� _��&_��)_��*_��,_��L_��l_���_���_���_���_���_���_���_���_���_���_��`��$`��@`��C`��D`��F`��f`���`���`���`���`���`���`���`���`���`���`���`��a��3a��Oa��Ra��Sa��Ua��ua���a���a���a���a���a��ib���b���b��Qc��uc���c���c���c���c��d��;d��Nd��Rd��~d���d���d���d���d���d��e��De��He��he��xe��|e���e���e���e���e���f��f��)f��Qf��Wf��xf��f���g���g���g���g���g��h���h���h���h���i���i��j��qm���m���m��Wn���n���n��!o��To��xo���o��p��;p���p���p���p��vq���q���q��"r��Tr��wr��`s��xs��zs��{s��|s���t���t���t��u��.u��8u���u���u���u���u���u���u���v���v���v���v��w��$w���w��x��x��x��x��Fx��Kx��Nx��Sx��ux��x���x���x���x���x���x��y��)y��5y��5z��Gz��Qz��y{���{���{���|���|���|������Ӏ��Ԁ���������������5���E���T���x�������F���`���o�������ڇ�����������!�������������#���I���Z���_���������������Œ��،��݌�����$���)���Q���n���s�����������������"���(���B���C���U���_���`���l�����������$���C���Q���ȗ�������������7���8���ǘ��ۘ������������ ���[����������ۚ������ ���W���������������!���4�����������Ӝ�����.���9���k�����������Ϟ������������(���*���F���Y���e�������������������ա����� ���!���.���k�����������^���q���}�����������ץ���������%���P���c���o���\���{����������������������������&���>���@�������ٶ��������������W���}�������ø����������]���������������̹��͹����������ĺ��ݻ���������M���e���v���Լ��������������������������������������������#���I���T���m�����������������������r�����������������������j�����������<���a���w���������������6���N���P���������������O���g���j���Y��������������������������0���3��� ���;���O���������������������������'���?���B����������&���������������/���Z���h���O���{���|������������������2���C������������������<���J���3���_���`����������������������,�����������������������������������C���u���������� ���+���,���D���N�������������������������������������y�����������������������)���N���^���1���V���`����������/���U���`���i���p�����������������������f�������������(��+��a�����C �h �r �� �� �� �� �� �� � �# �& �7 �O �R ��5�8�?�Z�d�o�����������������������F�^�o�������D�\�_�A�Y�\�f �� �� �!�,!�=!�j"��"��"��$��$��$�)&�A&�D&��*��*�+��+��+��+��,��,��-��-��-��-�/�(/�2/��/��/��/��/�0�%0��0��0��0�a1�y1��1��2��2��2�C4�^4�k4�|4��4��4��5�6� 6�y8��8��8��8��8��8�#9�59�?9��:��:��:�i<��<��<�&>�>>�O>�k>��>��>��>�?�?��?�@�@��B��B��B�nC��C��C��C�D�D��D��D��D�3E�]E�^E��E��E��E��E��E��E��E�F�F�F�EF�MF�dF��F��F��F��F��F�yG��G��G��G��G��G�H�NH�_H�EI�`I�jI��I��I��I��J��J��J�PK�hK�kK��V��V��V��V�'W�6W�kX��X��X�kY��Y��Y��Y��Y��Y�"[�N[�g[�x[��[��[�a\�{\��\��\��\�]�[]�u]�]��a��a��a��b� c�c��d�&e�4e��e�f�f�Lg�og�wg��h��h��h�Rj�jj�mj�^k�vk�yk��l��m� m�m�5m�@m��n��n��n��o��o��o��o�p�p�)t�At�Dt�$u�<u�?u��v��v��v��v��v��v��z��z��z��|��|��|�U~�~��~��~��~��~��~��~��~��~����:�C�F�k������������������������'��-��N��T������'��Y������������������+��?��H��l��|��������������������������5��[��i��������È������'��A��p�������������0��V��d�����������1��`�����Џ������D��\��_��������������۔��������� ��<��E��H��m�����������������ƕ�͕�ӕ�������d�������������������5��@��Θ������>��e��r�����ԙ���m��������������_��������������ݜ�ޜ�i��k��ܝ��� ��̞���� ����;��K���� ���� ��Q��g�������������������(��V��e��������������ߤ��������&��[�����������������ɨ�ۨ���׮������'��9��C�����ԯ�������5�������&��8��J��T��t��������׳������� ����ܵ�������j�����������Ķ�Ƕ�6��Q��T��׷������h�����������Ӹ�ո�������=��X��]��l��������ǹ��������º�Ǻ���3��9�����������3��N��P�����˼�ܼ����X��X��X��X��X��X��X��X��X��Xt���X���X���X���X���X���X���X���X���X����X���X��X��X��X��X��X��X��X��X��X��X��X��X��X��X��X��X�� �X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%�����X��%����̕�����X���X���X���X���X���X���X���X���X���X���X���������������X���X���X���X���X���X���X���X��� �����������������������������X���X��̕X���X��̕X���������������X��X��̕�����X�������X���X���X���X���X���X���X���X���X���X���X������� ����X���X�X��̕�������������X���X���X���X���X�������X��� ��������X���X�������X�������X���X�������X��� ����X��� ������������X���X���X�X��̕����������������� ���� ��������X���X���X����������� ����X���X��� ����X��� ����X��� ���� ����X���X��� ���� ����X��� ����X���X�X��̕�X��� ����X���X�X��̕�X���X��� ���� ����X����������� ����X�X��̕����� ����X���X���X�X��̕�X��� ����X��� ����X���X���X���X��� ���� ���� ����X����������� ����X������� ���� ���� ����X����������� ���� ����X���������������X���X���X���X�����������X��� ����X���X���X������� ���� ��������X��� ���� ����X�������X�������X��X��̕�X���X���X���X���X���X�X��̕�X���X���X���X��� ����X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X��� ���� ����X���X���X������� ���� ���� ����X���X���X��� ����X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X��� ����X���X���X���X��� ����X���X��� ����X���X���X���X���X���X���X���X���X�X��̕�X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X���X��� ����������������X���X�������������������X�������X���������������X�������X�������X���������������������������������������������������������������!��[��b��d��i��t��w��}��!������3�3�!���������@������ ��������������������������@����������������������H��� �������������0�����(���� ��������������������� ����������������������������0�����(���� ��������������������� ������������B���� ���������S� ����������������� ���?�������������s�� �_�H�l�t�2�3�9�3�1�8�7�2�9� �_�H�l�t�2�3�4�3�0�8�9�0�4� �_�H�l�t�2�2�8�9�5�2�5�7�7� �_�T�o�c�2�3�0�4�3�3�0�4�2� �_�T�o�c�3�5�6�5�7�7�7�3�9� �_�T�o�c�3�5�6�9�0�9�9�5�3� �_�T�o�c�3�5�7�1�6�8�1�7�1� �_�T�o�c�3�5�9�1�4�7�0�7�5� �_�T�o�c�3�5�9�4�1�6�6�6�3� �_�T�o�c�3�5�9�8�6�2�3�0�5� �_�T�o�c�3�5�9�8�3�6�7�5�0� �_�T�o�c�3�6�2�9�6�4�7�2�3� �_�T�o�c�3�6�5�4�6�4�5�1�6� �_�T�o�c�2�3�0�4�3�3�0�4�3� �_�T�o�c�3�5�6�5�7�7�7�4�0� �_�T�o�c�3�5�6�9�0�9�9�5�4� �_�T�o�c�3�5�7�1�6�8�1�7�2� �_�T�o�c�3�5�9�1�4�7�0�7�6� �_�T�o�c�3�5�9�4�1�6�6�6�4� �_�T�o�c�3�5�9�8�6�2�3�0�6� �_�T�o�c�3�5�9�8�3�6�7�5�1� �_�T�o�c�3�6�2�9�6�4�7�2�4� �_�T�o�c�3�6�5�4�6�4�5�1�7� �_�T�o�c�2�3�0�4�3�3�0�4�4� �_�T�o�c�3�5�6�5�7�7�7�4�1� �_�T�o�c�3�5�6�9�0�9�9�5�5� �_�T�o�c�3�5�7�1�6�8�1�7�3� �_�T�o�c�3�5�9�1�4�7�0�7�7� �_�T�o�c�3�5�9�4�1�6�6�6�5� �_�T�o�c�3�5�9�8�6�2�3�0�7� �_�T�o�c�3�5�9�8�3�6�7�5�2� �_�T�o�c�3�6�2�9�6�4�7�2�5� �_�T�o�c�3�6�5�4�6�4�5�1�8��G�M�L� �O�D�a�t�a�A�B�N�F� �O�D�a�t�a�C�S�D�L� �O�D�a�t�a�M�e�t�a�X�M�L� �O�D�a�t�a�P�r�o�t�o�c�o�l��O�D�a�t�a�U�R�L� �O�D�a�t�a�V�o�c�A�t�o�m��V�o�c�C�a�p�a�b�i�l�i�t�i�e�s��R�F�C�2�1�1�9��R�F�C�3�9�8�6��R�F�C�3�9�8�7��R�F�C�4�2�8�7��R�F�C�5�0�2�3��R�F�C�5�6�4�6��R�F�C�6�7�2�1� �_�T�o�c�3�5�6�9�0�9�5�2�6� �_�T�o�c�3�5�7�0�0�6�6�6�2� �_�T�o�c�3�5�7�1�6�8�1�7�4� �_�T�o�c�3�5�9�1�4�7�0�7�8� �_�T�o�c�3�5�9�4�1�6�6�6�6� �_�T�o�c�3�5�9�8�6�2�3�0�8� �_�T�o�c�3�5�9�8�3�6�7�5�3� �_�T�o�c�3�6�2�9�6�4�7�2�6� �_�T�o�c�2�3�0�4�3�3�0�4�5� �_�T�o�c�3�5�6�5�7�7�7�4�2� �_�T�o�c�3�5�6�9�0�9�9�5�6� �_�T�o�c�3�6�5�4�6�4�5�1�9� �_�T�o�c�3�5�7�1�6�8�1�7�5� �_�T�o�c�3�5�9�1�4�7�0�7�9� �_�T�o�c�3�5�9�4�1�6�6�6�7� �_�T�o�c�3�5�9�8�6�2�3�0�9� �_�T�o�c�3�5�9�8�3�6�7�5�4� �_�T�o�c�3�6�2�9�6�4�7�2�7� �_�T�o�c�3�6�5�4�6�4�5�2�0� �_�T�o�c�2�3�0�4�3�3�0�4�6� �_�T�o�c�3�5�6�5�7�7�7�4�3� �_�T�o�c�3�5�6�9�0�9�9�5�7� �_�T�o�c�3�5�7�1�6�8�1�7�6� �_�T�o�c�3�5�9�1�4�7�0�8�0� �_�T�o�c�3�5�9�4�1�6�6�6�8� �_�T�o�c�3�5�9�8�6�2�3�1�0� �_�T�o�c�3�5�9�8�3�6�7�5�5� �_�T�o�c�3�6�2�9�6�4�7�2�8� �_�T�o�c�3�6�5�4�6�4�5�2�1� �A�t�o�m�N�a�m�e�s�p�a�c�e� �_�T�o�c�2�3�0�4�3�3�0�4�7� �_�T�o�c�3�5�6�5�7�7�7�4�4� �_�T�o�c�3�5�6�9�0�9�9�5�8� �_�T�o�c�3�5�7�1�6�8�1�7�7� �_�T�o�c�3�5�9�1�4�7�0�8�1� �_�T�o�c�3�5�9�4�1�6�6�6�9� �_�T�o�c�3�5�9�8�6�2�3�1�1� �_�T�o�c�3�5�9�8�3�6�7�5�6� �_�T�o�c�3�6�2�9�6�4�7�2�9� �_�T�o�c�3�6�5�4�6�4�5�2�2� �_�T�o�c�2�3�0�4�3�3�0�4�8� �_�T�o�c�3�5�6�5�7�7�7�4�5� �_�T�o�c�3�5�6�9�0�9�9�5�9� �_�T�o�c�3�5�7�1�6�8�1�7�8� �_�T�o�c�3�5�9�1�4�7�0�8�2� �_�T�o�c�3�5�9�4�1�6�6�7�0� �_�T�o�c�3�5�9�8�6�2�3�1�2� �_�T�o�c�3�5�9�8�3�6�7�5�7� �_�T�o�c�3�6�2�9�6�4�7�3�0��A�t�o�m�P�u�b�l�i�s�h�i�n�g�P�r�o�t�o�c�o�l�N�a�m�e�s�p�a�c�e� �_�T�o�c�3�6�5�4�6�4�5�2�3��_�A�t�o�m�_�T�o�m�b�s�t�o�n�e�_�N�a�m�e�s�p�a�c�e� �_�T�o�c�2�3�0�4�3�3�0�4�9� �_�T�o�c�3�5�6�5�7�7�7�4�6� �_�T�o�c�3�5�6�9�0�9�9�6�0� �_�T�o�c�3�5�7�1�6�8�1�7�9� �_�T�o�c�3�5�9�1�4�7�0�8�3� �_�T�o�c�3�5�9�4�1�6�6�7�1� �_�T�o�c�3�5�9�8�6�2�3�1�3� �_�T�o�c�3�5�9�8�3�6�7�5�8� �_�T�o�c�3�6�2�9�6�4�7�3�1� �_�T�o�c�3�6�5�4�6�4�5�2�4��_�O�D�a�t�a�_�D�a�t�a�_�N�a�m�e�s�p�a�c�e� �_�O�D�a�t�a�_�D�a�t�a� �_�T�o�c�2�3�0�4�3�3�0�5�0� �_�T�o�c�3�5�6�5�7�7�7�4�7� �_�T�o�c�3�5�6�9�0�9�9�6�1� �_�T�o�c�3�5�7�1�6�8�1�8�0� �_�T�o�c�3�5�9�1�4�7�0�8�4� �_�T�o�c�3�5�9�4�1�6�6�7�2� �_�T�o�c�3�5�9�8�6�2�3�1�4� �_�T�o�c�3�5�9�8�3�6�7�5�9� �_�T�o�c�3�6�2�9�6�4�7�3�2��O�D�a�t�a�D�a�t�a�N�a�m�e�s�p�a�c�e� �_�T�o�c�3�6�5�4�6�4�5�2�5��_�O�D�a�t�a�_�M�e�t�a�d�a�t�a� �_�T�o�c�2�3�0�4�3�3�0�5�1� �_�T�o�c�3�5�6�5�7�7�7�4�8� �_�T�o�c�3�5�6�9�0�9�9�6�2� �_�T�o�c�3�5�7�1�6�8�1�8�1� �_�T�o�c�3�5�9�1�4�7�0�8�5� �_�T�o�c�3�5�9�4�1�6�6�7�3� �_�T�o�c�3�5�9�8�6�2�3�1�5� �_�T�o�c�3�5�9�8�3�6�7�6�0� �_�T�o�c�3�6�2�9�6�4�7�3�3��O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e� �_�T�o�c�3�6�5�4�6�4�5�2�6� �_�T�o�c�2�3�0�4�3�3�0�5�2� �_�T�o�c�3�5�6�5�7�7�7�4�9� �_�T�o�c�3�5�6�9�0�9�9�6�3� �_�T�o�c�3�5�7�1�6�8�1�8�2� �_�T�o�c�3�5�9�1�4�7�0�8�6� �_�T�o�c�3�5�9�4�1�6�6�7�4� �_�T�o�c�3�5�9�8�6�2�3�1�6� �_�T�o�c�3�5�9�8�3�6�7�6�1� �_�T�o�c�3�6�2�9�6�4�7�3�4��i�n�f�o�r�m�a�t�i�v�e�-�x�s�d�-�f�o�r�-�c�s�d�l�c�s�d�l�1�8� �_�T�o�c�3�6�5�4�6�4�5�2�7��_�R�e�q�u�e�s�t�i�n�g�_�t�h�e�_�A�t�o�m� �_�T�o�c�2�3�0�4�3�3�0�5�3� �_�T�o�c�3�5�6�5�7�7�7�5�0� �_�R�e�f�3�5�6�8�2�9�0�0�1� �_�R�e�f�3�5�6�8�2�9�3�6�6� �_�T�o�c�3�5�6�9�0�9�9�6�4� �_�T�o�c�3�5�7�1�6�8�1�8�3� �_�T�o�c�3�5�9�1�4�7�0�8�7� �_�T�o�c�3�5�9�4�1�6�6�7�5� �_�T�o�c�3�5�9�8�6�2�3�1�7� �_�T�o�c�3�5�9�8�3�6�7�6�2� �_�T�o�c�3�6�2�9�6�4�7�3�5� �_�T�o�c�3�6�5�4�6�4�5�2�8� �_�T�o�c�2�3�0�4�3�3�0�5�4� �_�T�o�c�3�5�6�5�7�7�7�5�1� �_�T�o�c�3�5�6�9�0�9�9�6�5� �_�T�o�c�3�5�7�1�6�8�1�8�4� �_�T�o�c�3�5�9�1�4�7�0�8�8� �_�T�o�c�3�5�9�4�1�6�6�7�6� �_�T�o�c�3�5�9�8�6�2�3�1�8� �_�T�o�c�3�5�9�8�3�6�7�6�3� �_�T�o�c�3�6�2�9�6�4�7�3�6� �_�T�o�c�3�6�5�4�6�4�5�2�9� �_�T�o�c�2�3�0�4�3�3�0�5�5� �_�T�o�c�3�5�6�5�7�7�7�5�2� �_�T�o�c�3�5�6�9�0�9�9�6�6� �_�T�o�c�3�5�7�1�6�8�1�8�5� �_�T�o�c�3�5�9�1�4�7�0�8�9� �_�T�o�c�3�5�9�4�1�6�6�7�7� �_�T�o�c�3�5�9�8�6�2�3�1�9� �_�T�o�c�3�5�9�8�3�6�7�6�4� �_�T�o�c�3�6�2�9�6�4�7�3�7� �_�T�o�c�3�6�5�4�6�4�5�3�0� �_�T�o�c�2�3�0�4�3�3�0�5�6� �_�T�o�c�3�5�6�5�7�7�7�5�3� �_�T�o�c�3�5�6�9�0�9�9�6�7� �_�T�o�c�3�5�7�1�6�8�1�8�6� �_�T�o�c�3�5�9�1�4�7�0�9�0� �_�T�o�c�3�5�9�4�1�6�6�7�8� �_�T�o�c�3�5�9�8�6�2�3�2�0� �_�T�o�c�3�5�9�8�3�6�7�6�5� �_�T�o�c�3�6�2�9�6�4�7�3�8� �_�T�o�c�3�6�5�4�6�4�5�3�1� �_�T�o�c�2�3�0�4�3�3�0�5�7� �_�T�o�c�3�5�6�5�7�7�7�5�4� �_�T�o�c�3�5�6�9�0�9�9�6�8� �_�T�o�c�3�5�7�1�6�8�1�8�7� �_�T�o�c�3�5�9�1�4�7�0�9�1� �_�T�o�c�3�5�9�4�1�6�6�7�9� �_�T�o�c�3�5�9�8�6�2�3�2�1� �_�T�o�c�3�5�9�8�3�6�7�6�6� �_�T�o�c�3�6�2�9�6�4�7�3�9� �_�T�o�c�3�6�5�4�6�4�5�3�2��_�S�e�r�v�i�c�e�_�D�o�c�u�m�e�n�t� �_�T�o�c�2�3�0�4�3�3�0�5�8� �_�T�o�c�3�5�6�5�7�7�7�5�5� �_�R�e�f�3�5�6�8�2�9�1�4�5� �_�T�o�c�3�5�6�9�0�9�9�6�9� �_�T�o�c�3�5�7�1�6�8�1�8�8� �_�T�o�c�3�5�9�1�4�7�0�9�2� �_�T�o�c�3�5�9�4�1�6�6�8�0� �_�T�o�c�3�5�9�8�6�2�3�2�2� �_�T�o�c�3�5�9�8�3�6�7�6�7� �_�T�o�c�3�6�2�9�6�4�7�4�0� �_�T�o�c�3�6�5�4�6�4�5�3�3� �_�T�o�c�2�3�0�4�3�3�0�5�9� �_�T�o�c�3�5�6�5�7�7�7�5�6� �_�T�o�c�3�5�6�9�0�9�9�7�0� �_�T�o�c�3�5�7�1�6�8�1�8�9� �_�T�o�c�3�5�9�1�4�7�0�9�3� �_�T�o�c�3�5�9�4�1�6�6�8�1� �_�T�o�c�3�5�9�8�6�2�3�2�3� �_�T�o�c�3�5�9�8�3�6�7�6�8� �_�T�o�c�3�6�2�9�6�4�7�4�1� �_�T�o�c�3�6�5�4�6�4�5�3�4� �_�T�o�c�3�5�9�4�1�6�6�8�2� �_�T�o�c�3�5�9�8�6�2�3�2�4� �_�T�o�c�3�5�9�8�3�6�7�6�9� �_�T�o�c�3�6�2�9�6�4�7�4�2� �_�T�o�c�2�3�0�4�3�3�0�6�0� �_�T�o�c�3�5�6�5�7�7�7�5�7� �_�T�o�c�3�5�6�9�0�9�9�7�1� �_�T�o�c�3�5�7�1�6�8�1�9�0� �_�T�o�c�3�5�9�1�4�7�0�9�4� �_�T�o�c�3�6�5�4�6�4�5�3�5� �_�T�o�c�3�5�9�4�1�6�6�8�3� �_�T�o�c�3�5�9�8�6�2�3�2�5� �_�T�o�c�3�5�9�8�3�6�7�7�0� �_�T�o�c�3�6�2�9�6�4�7�4�3� �_�T�o�c�3�6�5�4�6�4�5�3�6� �_�T�o�c�3�5�9�4�1�6�6�8�4� �_�T�o�c�3�5�9�8�6�2�3�2�6� �_�T�o�c�3�5�9�8�3�6�7�7�1� �_�T�o�c�3�6�2�9�6�4�7�4�4� �_�T�o�c�3�6�5�4�6�4�5�3�7� �a�p�p�W�o�r�k�s�p�a�c�e��_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�n�a�m�e� �_�T�o�c�3�5�9�4�1�6�4�9�6� �_�T�o�c�3�5�9�4�1�6�6�8�5� �_�T�o�c�3�5�9�4�1�6�4�9�7� �_�T�o�c�3�5�9�4�1�6�6�8�6� �_�T�o�c�3�5�9�4�1�6�4�9�8� �_�T�o�c�3�5�9�4�1�6�6�8�7� �_�T�o�c�3�5�9�4�1�6�4�9�9� �_�T�o�c�3�5�9�4�1�6�6�8�8� �_�T�o�c�3�5�9�4�1�6�5�0�0� �_�T�o�c�3�5�9�4�1�6�6�8�9� �_�T�o�c�3�5�9�4�1�6�5�0�1� �_�T�o�c�3�5�9�4�1�6�6�9�0� �_�T�o�c�3�5�9�4�1�6�5�0�2� �_�T�o�c�3�5�9�4�1�6�6�9�1� �_�T�o�c�3�5�9�4�1�6�5�0�3� �_�T�o�c�3�5�9�4�1�6�6�9�2� �_�T�o�c�3�5�9�4�1�6�5�0�4� �_�T�o�c�3�5�9�4�1�6�6�9�3� �_�T�o�c�3�5�9�3�1�0�2�4�6� �_�T�o�c�3�5�9�3�4�0�9�4�5� �_�T�o�c�3�5�9�3�1�0�2�4�7� �_�T�o�c�3�5�9�3�4�0�9�4�6� �_�T�o�c�3�5�9�3�1�0�2�4�8� �_�T�o�c�3�5�9�3�4�0�9�4�7� �_�T�o�c�3�5�9�3�1�0�2�4�9� �_�T�o�c�3�5�9�3�4�0�9�4�8� �_�T�o�c�3�5�9�3�1�0�2�5�0� �_�T�o�c�3�5�9�3�4�0�9�4�9� �_�T�o�c�3�5�9�3�1�0�2�5�1� �_�T�o�c�3�5�9�3�4�0�9�5�0� �_�T�o�c�3�5�9�3�1�0�2�5�2� �_�T�o�c�3�5�9�3�4�0�9�5�1� �_�T�o�c�3�5�9�3�1�0�2�5�3� �_�T�o�c�3�5�9�3�4�0�9�5�2� �_�T�o�c�3�5�9�3�1�0�2�5�4� �_�T�o�c�3�5�9�3�4�0�9�5�3� �_�T�o�c�2�3�0�4�3�3�0�6�5� �_�T�o�c�3�5�6�5�7�7�7�6�2� �_�T�o�c�3�5�6�9�0�9�9�7�6� �_�T�o�c�3�5�7�1�6�8�1�9�5� �_�T�o�c�3�5�9�1�4�7�0�9�9� �_�T�o�c�3�5�9�4�1�6�6�9�5� �_�T�o�c�3�5�9�8�6�2�3�2�7� �_�T�o�c�3�5�9�8�3�6�7�7�2� �_�T�o�c�3�6�2�9�6�4�7�4�5� �_�T�o�c�3�6�5�4�6�4�5�3�8� �a�p�p�C�o�l�l�e�c�t�i�o�n� �_�T�o�c�2�3�0�4�3�3�0�6�6� �_�T�o�c�3�5�6�5�7�7�7�6�3� �_�T�o�c�3�5�6�9�0�9�9�7�7� �_�T�o�c�3�5�7�1�6�8�1�9�6� �_�T�o�c�3�5�9�1�4�7�1�0�0� �_�T�o�c�3�5�9�4�1�6�6�9�6� �_�T�o�c�3�5�9�8�6�2�3�2�8� �_�T�o�c�3�5�9�8�3�6�7�7�3� �_�T�o�c�3�6�2�9�6�4�7�4�6� �_�T�o�c�3�6�5�4�6�4�5�3�9� �_�T�o�c�2�3�0�4�3�3�0�6�7� �_�T�o�c�3�5�6�5�7�7�7�6�4� �_�T�o�c�3�5�6�9�0�9�9�7�8� �_�T�o�c�3�5�7�1�6�8�1�9�7� �_�T�o�c�3�5�9�1�4�7�1�0�1� �_�T�o�c�3�5�9�4�1�6�6�9�7� �_�T�o�c�3�5�9�8�6�2�3�2�9� �_�T�o�c�3�5�9�8�3�6�7�7�4� �_�T�o�c�3�6�2�9�6�4�7�4�7� �_�T�o�c�3�6�5�4�6�4�5�4�0� �_�T�o�c�2�3�0�4�3�3�0�6�8� �_�T�o�c�3�5�6�5�7�7�7�6�5� �_�T�o�c�3�5�6�9�0�9�9�7�9� �_�T�o�c�3�5�7�1�6�8�1�9�8� �_�T�o�c�3�5�9�1�4�7�1�0�2� �_�T�o�c�3�5�9�4�1�6�6�9�8� �_�T�o�c�3�5�9�8�6�2�3�3�0� �_�T�o�c�3�5�9�8�3�6�7�7�5� �_�T�o�c�3�6�2�9�6�4�7�4�8� �_�T�o�c�3�6�5�4�6�4�5�4�1��_�F�u�n�c�t�i�o�n�_�I�m�p�o�r�t�s�_�a�s�!�_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�f�u�n�c�t�i�o�n�-�i�m�p�o�r�t� �_�T�o�c�2�3�0�4�3�3�0�6�9� �_�T�o�c�3�5�6�5�7�7�7�6�6� �_�T�o�c�3�5�6�9�0�9�9�8�0� �_�T�o�c�3�5�7�1�6�8�1�9�9� �_�T�o�c�3�5�9�1�4�7�1�0�3� �_�T�o�c�3�5�9�4�1�6�6�9�9� �_�T�o�c�3�5�9�8�6�2�3�3�1� �_�T�o�c�3�5�9�8�3�6�7�7�6� �_�T�o�c�3�6�2�9�6�4�7�4�9� �_�T�o�c�3�6�5�4�6�4�5�4�2� �_�T�o�c�2�3�0�4�3�3�0�7�0� �_�T�o�c�3�5�6�5�7�7�7�6�7� �_�T�o�c�3�5�6�9�0�9�9�8�1� �_�T�o�c�3�5�7�1�6�8�2�0�0� �_�T�o�c�3�5�9�1�4�7�1�0�4� �_�T�o�c�3�5�9�4�1�6�7�0�0� �_�T�o�c�3�5�9�8�6�2�3�3�2� �_�T�o�c�3�5�9�8�3�6�7�7�7� �_�T�o�c�3�6�2�9�6�4�7�5�0� �_�T�o�c�3�6�5�4�6�4�5�4�3� �_�T�o�c�2�3�0�4�3�3�0�7�1� �_�T�o�c�3�5�6�5�7�7�7�6�8� �_�T�o�c�3�5�6�9�0�9�9�8�2� �_�T�o�c�3�5�7�1�6�8�2�0�1� �_�T�o�c�3�5�9�1�4�7�1�0�5� �_�T�o�c�3�5�9�4�1�6�7�0�1� �_�T�o�c�3�5�9�8�6�2�3�3�3� �_�T�o�c�3�5�9�8�3�6�7�7�8� �_�T�o�c�3�6�2�9�6�4�7�5�1� �_�T�o�c�3�6�5�4�6�4�5�4�4� �_�T�o�c�2�3�0�4�3�3�0�7�2� �_�T�o�c�3�5�6�5�7�7�7�6�9� �_�T�o�c�3�5�6�9�0�9�9�8�3� �_�T�o�c�3�5�7�1�6�8�2�0�2� �_�T�o�c�3�5�9�1�4�7�1�0�6� �_�T�o�c�3�5�9�4�1�6�7�0�2� �_�T�o�c�3�5�9�8�6�2�3�3�4� �_�T�o�c�3�5�9�8�3�6�7�7�9� �_�T�o�c�3�6�2�9�6�4�7�5�2� �_�T�o�c�3�6�5�4�6�4�5�4�5��_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�e�n�t�i�t�y� �_�T�o�c�2�3�0�4�3�3�0�7�3� �_�T�o�c�3�5�6�5�7�7�7�7�0� �_�T�o�c�3�5�6�9�0�9�9�8�4� �_�T�o�c�3�5�7�1�6�8�2�0�3� �_�T�o�c�3�5�9�1�4�7�1�0�7� �_�T�o�c�3�5�9�4�1�6�7�0�3� �_�T�o�c�3�5�9�8�6�2�3�3�5� �_�T�o�c�3�5�9�8�3�6�7�8�0� �_�T�o�c�3�6�2�9�6�4�7�5�3� �_�T�o�c�3�6�5�4�6�4�5�4�6� �_�T�o�c�2�3�0�4�3�3�0�7�4� �_�T�o�c�3�5�6�5�7�7�7�7�1� �_�T�o�c�3�5�6�9�0�9�9�8�5� �_�T�o�c�3�5�7�1�6�8�2�0�4� �_�T�o�c�3�5�9�1�4�7�1�0�8� �_�T�o�c�3�5�9�4�1�6�7�0�4� �_�T�o�c�3�5�9�8�6�2�3�3�6� �_�T�o�c�3�5�9�8�3�6�7�8�1� �_�T�o�c�3�6�2�9�6�4�7�5�4� �_�T�o�c�3�6�5�4�6�4�5�4�7� �_�T�o�c�2�3�0�4�3�3�0�7�5� �_�T�o�c�3�5�6�5�7�7�7�7�2� �_�T�o�c�3�5�6�9�0�9�9�8�6� �_�T�o�c�3�5�7�1�6�8�2�0�5� �_�T�o�c�3�5�9�1�4�7�1�0�9� �_�T�o�c�3�5�9�4�1�6�7�0�5� �_�T�o�c�3�5�9�8�6�2�3�3�7� �_�T�o�c�3�5�9�8�3�6�7�8�2� �_�T�o�c�3�6�2�9�6�4�7�5�5� �_�T�o�c�3�6�5�4�6�4�5�4�8� �_�T�o�c�2�3�0�4�3�3�0�7�6� �_�T�o�c�3�5�6�5�7�7�7�7�3� �_�T�o�c�3�5�6�9�0�9�9�8�7� �_�T�o�c�3�5�7�1�6�8�2�0�6� �_�T�o�c�3�5�9�1�4�7�1�1�0� �_�T�o�c�3�5�9�4�1�6�7�0�6� �_�T�o�c�3�5�9�8�6�2�3�3�8� �_�T�o�c�3�5�9�8�3�6�7�8�3� �_�T�o�c�3�6�2�9�6�4�7�5�6� �_�T�o�c�3�6�5�4�6�4�5�4�9�"�_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�s�e�r�v�i�c�e�-�d�o�c�u�m�e�n�t� �_�T�o�c�2�3�0�4�3�3�0�7�7� �_�T�o�c�3�5�6�5�7�7�7�7�4� �_�T�o�c�3�5�6�9�0�9�9�8�8� �_�T�o�c�3�5�7�1�6�8�2�0�7� �_�T�o�c�3�5�9�1�4�7�1�1�1� �_�T�o�c�3�5�9�4�1�6�7�0�7� �_�T�o�c�3�5�9�8�6�2�3�3�9� �_�T�o�c�3�5�9�8�3�6�7�8�4� �_�T�o�c�3�6�2�9�6�4�7�5�7� �_�T�o�c�3�6�5�4�6�4�5�5�0� �_�T�o�c�2�3�0�4�3�3�0�7�8� �_�T�o�c�3�5�6�5�7�7�7�7�5� �_�T�o�c�3�5�6�9�0�9�9�8�9� �_�T�o�c�3�5�7�1�6�8�2�0�8� �_�T�o�c�3�5�9�1�4�7�1�1�2� �_�T�o�c�3�5�9�4�1�6�7�0�8� �_�T�o�c�3�5�9�8�6�2�3�4�0� �_�T�o�c�3�5�9�8�3�6�7�8�5� �_�T�o�c�3�6�2�9�6�4�7�5�8� �_�T�o�c�3�6�5�4�6�4�5�5�1� �_�T�o�c�2�3�0�4�3�3�0�7�9� �_�T�o�c�3�5�6�5�7�7�7�7�6� �_�T�o�c�3�5�6�9�0�9�9�9�0� �_�T�o�c�3�5�7�1�6�8�2�0�9� �_�T�o�c�3�5�9�1�4�7�1�1�3� �_�T�o�c�3�5�9�4�1�6�7�0�9� �_�T�o�c�3�5�9�8�6�2�3�4�1� �_�T�o�c�3�5�9�8�3�6�7�8�6� �_�T�o�c�3�6�2�9�6�4�7�5�9� �_�T�o�c�3�6�5�4�6�4�5�5�2��_�E�n�t�i�t�y� �_�T�o�c�2�3�0�4�3�3�0�8�0� �_�T�o�c�3�5�6�5�7�7�7�7�7� �_�T�o�c�3�5�6�9�0�9�9�9�1� �_�T�o�c�3�5�7�1�6�8�2�1�0� �_�T�o�c�3�5�9�1�4�7�1�1�4� �_�T�o�c�3�5�9�4�1�6�7�1�0� �_�T�o�c�3�5�9�8�6�2�3�4�2� �_�T�o�c�3�5�9�8�3�6�7�8�7� �_�T�o�c�3�6�2�9�6�4�7�6�0� �_�T�o�c�3�6�5�4�6�4�5�5�3� �_�R�e�f�3�5�7�1�7�3�5�1�4��_�T�h�e�_�a�t�o�m�:�e�n�t�r�y�_�E�l�e�m�e�n�t��_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y� �_�T�o�c�3�5�9�8�6�7�9�8�1� �_�T�o�c�3�5�9�8�3�6�7�8�8� �_�T�o�c�3�5�9�8�6�9�4�8�4� �_�T�o�c�3�5�9�8�7�0�2�9�9� �_�T�o�c�3�5�9�8�7�1�0�4�6� �_�T�o�c�3�5�9�8�7�1�3�4�3� �a�t�o�m�E�n�t�r�y� �_�T�o�c�2�3�0�4�3�3�0�8�1� �_�T�o�c�3�5�6�5�7�7�7�7�8� �_�T�o�c�3�5�6�9�0�9�9�9�2� �_�T�o�c�3�5�7�1�6�8�2�1�1� �_�T�o�c�3�5�9�1�4�7�1�1�5� �_�T�o�c�3�5�9�4�1�6�7�1�1� �_�T�o�c�3�5�9�8�6�2�3�4�3� �_�T�o�c�3�5�9�8�3�6�7�8�9� �_�T�o�c�3�6�2�9�6�4�7�6�1� �_�T�o�c�3�6�5�4�6�4�5�5�4� �_�T�o�c�2�3�0�4�3�3�0�8�2� �_�T�o�c�3�5�6�5�7�7�7�7�9� �_�T�o�c�3�5�6�9�0�9�9�9�3� �_�T�o�c�3�5�7�1�6�8�2�1�2� �_�T�o�c�3�5�9�1�4�7�1�1�6� �_�T�o�c�3�5�9�4�1�6�7�1�2� �_�T�o�c�3�5�9�8�6�2�3�4�4� �_�T�o�c�3�5�9�8�3�6�7�9�0� �_�T�o�c�3�6�2�9�6�4�7�6�2� �_�T�o�c�3�6�5�4�6�4�5�5�5��_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�m�e�t�a�d�a�t�a�$�_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�m�e�t�a�d�a�t�a�_�c�o�n�t�e�x�t� �_�T�o�c�2�3�0�4�3�3�0�8�3� �_�T�o�c�3�5�6�5�7�7�7�8�0� �_�T�o�c�3�5�6�9�0�9�9�9�4� �_�R�e�f�3�5�6�9�2�1�2�4�2� �_�T�o�c�3�5�7�1�6�8�2�1�3� �_�T�o�c�3�5�9�1�4�7�1�1�7� �_�T�o�c�3�5�9�4�1�6�7�1�3� �_�T�o�c�3�5�9�8�6�2�3�4�5� �_�T�o�c�3�5�9�8�3�6�7�9�1� �_�T�o�c�3�6�2�9�6�4�7�6�3� �_�T�o�c�3�6�5�4�6�4�5�5�6� �_�T�o�c�2�3�0�4�3�3�0�8�4� �_�T�o�c�3�5�6�5�7�7�7�8�1� �_�T�o�c�3�5�6�9�0�9�9�9�5� �_�T�o�c�3�5�7�1�6�8�2�1�4� �_�T�o�c�3�5�9�1�4�7�1�1�8� �_�T�o�c�3�5�9�4�1�6�7�1�4� �_�T�o�c�3�5�9�8�6�2�3�4�6� �_�T�o�c�3�5�9�8�3�6�7�9�2� �_�T�o�c�3�6�2�9�6�4�7�6�4� �_�T�o�c�3�6�5�4�6�4�5�5�7��_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d� �_�T�o�c�2�3�0�4�3�3�0�8�5� �_�T�o�c�3�5�6�5�7�7�7�8�2� �_�T�o�c�3�5�6�9�0�9�9�9�6� �_�T�o�c�3�5�7�1�6�8�2�1�5� �_�T�o�c�3�5�9�1�4�7�1�1�9� �_�T�o�c�3�5�9�4�1�6�7�1�5� �_�T�o�c�3�5�9�8�6�2�3�4�7� �_�T�o�c�3�5�9�8�3�6�7�9�3� �_�T�o�c�3�6�2�9�6�4�7�6�5� �_�T�o�c�3�6�5�4�6�4�5�5�8� �_�T�o�c�2�3�0�4�3�3�0�8�6� �_�T�o�c�3�5�6�5�7�7�7�8�3� �_�T�o�c�3�5�6�9�0�9�9�9�7� �_�T�o�c�3�5�7�1�6�8�2�1�6� �_�T�o�c�3�5�9�1�4�7�1�2�0� �_�T�o�c�3�5�9�4�1�6�7�1�6� �_�T�o�c�3�5�9�8�6�2�3�4�8� �_�T�o�c�3�5�9�8�3�6�7�9�4� �_�T�o�c�3�6�2�9�6�4�7�6�6� �_�T�o�c�3�6�5�4�6�4�5�5�9��_�R�e�p�r�e�s�e�n�t�i�n�g�_�a�n�_�E�n�t�i�t�y� �_�T�o�c�2�3�0�4�3�3�0�8�7� �_�T�o�c�3�5�6�5�7�7�7�8�4� �_�T�o�c�3�5�6�9�0�9�9�9�8� �_�T�o�c�3�5�7�1�6�8�2�1�7� �_�T�o�c�3�5�9�1�4�7�1�2�1� �_�T�o�c�3�5�9�4�1�6�7�1�7� �_�T�o�c�3�5�9�8�6�2�3�4�9� �_�T�o�c�3�5�9�8�3�6�7�9�5� �_�T�o�c�3�6�2�9�6�4�7�6�7� �_�T�o�c�3�6�5�4�6�4�5�6�0� �_�T�o�c�3�5�6�5�7�7�7�8�5� �_�T�o�c�3�5�6�5�7�9�3�5�8� �_�T�o�c�3�5�6�9�0�9�9�9�9� �_�T�o�c�2�3�0�4�3�3�0�8�8� �_�T�o�c�3�5�6�5�7�7�7�8�6� �_�T�o�c�3�5�6�9�1�0�0�0�0� �_�T�o�c�3�5�7�1�6�8�2�1�8� �_�T�o�c�3�5�9�1�4�7�1�2�2� �_�T�o�c�3�5�9�4�1�6�7�1�8� �_�T�o�c�3�5�9�8�6�2�3�5�0� �_�T�o�c�3�5�9�8�3�6�7�9�6� �_�T�o�c�3�6�2�9�6�4�7�6�8� �_�T�o�c�3�6�5�4�6�4�5�6�1� �_�P�r�o�p�e�r�t�y� �_�T�o�c�2�3�0�4�3�3�0�8�9� �_�T�o�c�3�5�6�5�7�7�7�8�7� �_�T�o�c�3�5�6�9�1�0�0�0�1� �_�T�o�c�3�5�7�1�6�8�2�1�9� �_�T�o�c�3�5�9�1�4�7�1�2�3� �_�T�o�c�3�5�9�4�1�6�7�1�9� �_�T�o�c�3�5�9�8�6�2�3�5�1� �_�T�o�c�3�5�9�8�3�6�7�9�7� �_�T�o�c�3�6�2�9�6�4�7�6�9� �_�T�o�c�3�6�5�4�6�4�5�6�2��_�P�r�i�m�i�t�i�v�e�_�V�a�l�u�e� �_�T�o�c�2�3�0�4�3�3�0�9�0� �_�T�o�c�3�5�6�5�7�7�7�8�8� �_�R�e�f�3�5�6�8�2�9�4�8�1� �_�T�o�c�3�5�6�9�1�0�0�0�2� �_�T�o�c�3�5�7�1�6�8�2�2�0� �_�T�o�c�3�5�9�1�4�7�1�2�4� �_�T�o�c�3�5�9�4�1�6�7�2�0� �_�T�o�c�3�5�9�8�6�2�3�5�2� �_�T�o�c�3�5�9�8�3�6�7�9�8� �_�T�o�c�3�6�2�9�6�4�7�7�0� �_�T�o�c�3�6�5�4�6�4�5�6�3��_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�p�r�o�p�e�r�t�i�e�s� �_�T�o�c�2�3�0�4�3�3�0�9�1� �_�T�o�c�3�5�6�5�7�7�7�8�9� �_�T�o�c�3�5�6�9�1�0�0�0�3� �_�T�o�c�3�5�7�1�6�8�2�2�1� �_�T�o�c�3�5�9�1�4�7�1�2�5� �_�T�o�c�3�5�9�4�1�6�7�2�1� �_�T�o�c�3�5�9�8�6�2�3�5�3� �_�T�o�c�3�5�9�8�3�6�7�9�9� �_�T�o�c�3�6�2�9�6�4�7�7�1� �_�T�o�c�3�6�5�4�6�4�5�6�4��m�e�t�a�d�a�t�a�P�r�o�p�e�r�t�i�e�s��_�E�l�e�m�e�n�t�_�d�a�t�a�:�[�P�r�o�p�e�r�t�y�N�a�m�e�]� �_�T�o�c�2�3�0�4�3�3�0�9�2� �_�T�o�c�3�5�6�5�7�7�7�9�0� �_�T�o�c�3�5�6�9�1�0�0�0�4� �_�T�o�c�3�5�7�1�6�8�2�2�2� �_�T�o�c�3�5�9�1�4�7�1�2�6� �_�T�o�c�3�5�9�4�1�6�7�2�2� �_�T�o�c�3�5�9�8�6�2�3�5�4� �_�T�o�c�3�5�9�8�3�6�8�0�0� �_�T�o�c�3�6�2�9�6�4�7�7�2� �_�T�o�c�3�6�5�4�6�4�5�6�5��_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�t�y�p�e� �_�T�o�c�2�3�0�4�3�3�0�9�3� �_�T�o�c�3�5�6�5�7�7�7�9�1� �_�T�o�c�3�5�6�9�1�0�0�0�5� �_�T�o�c�3�5�7�1�6�8�2�2�3� �_�T�o�c�3�5�9�1�4�7�1�2�7� �_�T�o�c�3�5�9�4�1�6�7�2�3� �_�R�e�f�3�5�9�5�8�0�4�6�1� �_�T�o�c�3�5�9�8�6�2�3�5�5� �_�T�o�c�3�5�9�8�3�6�8�0�1� �_�T�o�c�3�6�2�9�6�4�7�7�3� �_�T�o�c�3�6�5�4�6�4�5�6�6��_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�n�u�l�l� �_�T�o�c�2�3�0�4�3�3�0�9�4� �_�T�o�c�3�5�6�5�7�7�7�9�2� �_�T�o�c�3�5�6�9�1�0�0�0�6� �_�T�o�c�3�5�7�1�6�8�2�2�4� �_�T�o�c�3�5�9�1�4�7�1�2�8� �_�T�o�c�3�5�9�4�1�6�7�2�4� �_�T�o�c�3�5�9�8�6�2�3�5�6� �_�T�o�c�3�5�9�8�3�6�8�0�2� �_�T�o�c�3�6�2�9�6�4�7�7�4� �_�T�o�c�3�6�5�4�6�4�5�6�7��_�P�r�i�m�i�t�i�v�e�_�a�n�d�_�E�n�u�m�e�r�a�t�i�o�n�_�2� �_�T�o�c�2�3�0�4�3�3�0�9�5� �_�T�o�c�3�5�6�5�7�7�7�9�3� �_�T�o�c�3�5�6�9�1�0�0�0�7� �_�T�o�c�3�5�7�1�6�8�2�2�5� �_�T�o�c�3�5�9�1�4�7�1�2�9� �_�T�o�c�3�5�9�4�1�6�7�2�5� �_�T�o�c�3�5�9�8�6�2�3�5�7� �_�T�o�c�3�5�9�8�3�6�8�0�3� �_�T�o�c�3�6�2�9�6�4�7�7�5� �_�T�o�c�3�6�5�4�6�4�5�6�8��_�C�o�m�p�l�e�x�_�P�r�o�p�e�r�t�y� �_�T�o�c�2�3�0�4�3�3�0�9�6� �_�T�o�c�3�5�6�5�7�7�7�9�4� �_�T�o�c�3�5�6�9�1�0�0�0�8� �_�T�o�c�3�5�7�1�6�8�2�2�6� �_�T�o�c�3�5�9�1�4�7�1�3�0� �_�T�o�c�3�5�9�4�1�6�7�2�6� �_�T�o�c�3�5�9�8�6�2�3�5�8� �_�T�o�c�3�5�9�8�3�6�8�0�4� �_�T�o�c�3�6�2�9�6�4�7�7�6� �_�T�o�c�3�6�5�4�6�4�5�6�9��_�P�r�i�m�i�t�i�v�e�_�a�n�d�_�E�n�u�m�e�r�a�t�i�o�n�_�1� �_�T�o�c�2�3�0�4�3�3�0�9�7� �_�T�o�c�3�5�6�5�7�7�7�9�5� �_�T�o�c�3�5�6�9�1�0�0�0�9� �_�T�o�c�3�5�7�1�6�8�2�2�9� �_�T�o�c�3�5�9�1�4�7�1�3�3� �_�T�o�c�3�5�9�4�1�6�7�2�7� �_�T�o�c�3�5�9�8�6�2�3�5�9� �_�T�o�c�3�5�9�8�3�6�8�0�5� �_�T�o�c�3�6�2�9�6�4�7�7�7� �_�T�o�c�3�6�5�4�6�4�5�7�0� �_�T�o�c�3�5�9�5�1�1�8�4�4� �_�T�o�c�3�5�7�1�6�8�2�3�0� �_�T�o�c�3�5�9�1�4�7�1�3�4� �_�T�o�c�3�5�9�4�1�6�7�2�8� �_�T�o�c�3�5�9�8�6�2�3�6�0� �_�T�o�c�3�5�9�8�3�6�8�0�6� �_�T�o�c�3�6�2�9�6�4�7�7�8� �_�T�o�c�3�6�5�4�6�4�5�7�1��_�C�o�m�p�l�e�x�_�C�o�l�l�e�c�t�i�o�n�_�P�r�o�p�e�r�t�y� �_�T�o�c�2�3�0�4�3�3�0�9�8� �_�T�o�c�3�5�6�5�7�7�7�9�6� �_�T�o�c�3�5�6�9�1�0�0�1�0� �_�T�o�c�3�5�7�1�6�8�2�3�1� �_�T�o�c�3�5�9�1�4�7�1�3�5� �_�T�o�c�3�5�9�4�1�6�7�2�9� �_�T�o�c�3�5�9�8�6�2�3�6�1� �_�T�o�c�3�5�9�8�3�6�8�0�7� �_�T�o�c�3�6�2�9�6�4�7�7�9� �_�T�o�c�3�6�5�4�6�4�5�7�2� �_�T�o�c�3�5�7�1�6�8�2�3�2� �_�T�o�c�3�5�9�1�4�7�1�3�6� �_�T�o�c�3�5�9�4�1�6�7�3�0� �_�T�o�c�3�5�9�8�6�2�3�6�2� �_�T�o�c�3�5�9�8�3�6�8�0�8� �_�T�o�c�3�6�2�9�6�4�7�8�0� �_�T�o�c�3�6�5�4�6�4�5�7�3� �_�T�o�c�3�5�7�1�6�8�2�3�3� �_�T�o�c�3�5�9�1�4�7�1�3�7� �_�T�o�c�3�5�9�4�1�6�7�3�1� �_�T�o�c�3�5�9�8�6�2�3�6�3� �_�T�o�c�3�5�9�8�3�6�8�0�9� �_�T�o�c�3�6�2�9�6�4�7�8�1� �_�T�o�c�2�3�0�4�3�3�0�9�9� �_�T�o�c�3�5�6�5�7�7�7�9�7� �_�T�o�c�3�5�6�9�1�0�0�1�1� �_�T�o�c�3�5�7�1�6�8�2�3�4� �_�T�o�c�3�5�9�1�4�7�1�3�8� �_�T�o�c�3�5�9�4�1�6�7�3�2� �_�T�o�c�3�5�9�8�6�2�3�6�4� �_�T�o�c�3�5�9�8�3�6�8�1�0� �_�T�o�c�3�6�2�9�6�4�7�8�2� �_�T�o�c�3�6�5�4�6�4�5�7�4��_�N�a�v�i�g�a�t�i�o�n�_�P�r�o�p�e�r�t�y��N�a�v�i�g�a�t�i�o�n�P�r�o�p�e�r�t�y��_�N�a�v�i�g�a�t�i�o�n�_�L�i�n�k�_�1��_�N�a�v�i�g�a�t�i�o�n�_�L�i�n�k� �_�T�o�c�2�3�0�4�3�3�1�0�0� �_�T�o�c�3�5�6�5�7�7�7�9�8� �_�T�o�c�3�5�6�9�1�0�0�1�2� �_�T�o�c�3�5�7�1�6�8�2�3�5� �_�T�o�c�3�5�9�1�4�7�1�3�9� �_�T�o�c�3�5�9�4�1�6�7�3�3� �_�T�o�c�3�5�9�8�6�2�3�6�5� �_�T�o�c�3�5�9�8�3�6�8�1�1� �_�T�o�c�3�6�2�9�6�4�7�8�3� �_�T�o�c�3�6�5�4�6�4�5�7�5� �_�R�e�f�3�5�7�1�7�1�6�9�6��_�E�l�e�m�e�n�t�_�a�t�o�m�:�l�i�n�k� �_�T�o�c�2�3�0�4�3�3�1�0�1� �_�T�o�c�3�5�6�5�7�7�7�9�9� �_�T�o�c�3�5�6�9�1�0�0�1�3� �_�T�o�c�3�5�7�1�6�8�2�3�6� �_�T�o�c�3�5�9�1�4�7�1�4�0� �_�T�o�c�3�5�9�4�1�6�7�3�4� �_�T�o�c�3�5�9�8�6�2�3�6�6� �_�T�o�c�3�5�9�8�3�6�8�1�2� �_�T�o�c�3�6�2�9�6�4�7�8�4� �_�T�o�c�3�6�5�4�6�4�5�7�6� �_�T�o�c�2�3�0�4�3�3�1�0�2� �_�T�o�c�3�5�6�5�7�7�8�0�0� �_�T�o�c�3�5�6�9�1�0�0�1�4� �_�T�o�c�3�5�7�1�6�8�2�3�7� �_�T�o�c�3�5�9�1�4�7�1�4�1� �_�T�o�c�3�5�9�4�1�6�7�3�5� �_�T�o�c�3�5�9�8�6�2�3�6�7� �_�T�o�c�3�5�9�8�3�6�8�1�3� �_�T�o�c�3�6�2�9�6�4�7�8�5� �_�T�o�c�2�3�0�4�3�3�1�0�3� �_�T�o�c�3�5�6�5�7�7�8�0�1� �_�T�o�c�3�5�6�9�1�0�0�1�5� �_�T�o�c�3�5�7�1�6�8�2�3�8� �_�T�o�c�3�5�9�1�4�7�1�4�2� �_�T�o�c�3�5�9�4�1�6�7�3�6� �_�T�o�c�3�5�9�8�6�2�3�6�8� �_�T�o�c�3�5�9�8�3�6�8�1�4� �_�T�o�c�3�6�2�9�6�4�7�8�6� �_�T�o�c�2�3�0�4�3�3�1�0�4� �_�T�o�c�3�5�6�5�7�7�8�0�2� �_�T�o�c�3�5�6�9�1�0�0�1�6� �_�T�o�c�3�5�7�1�6�8�2�3�9� �_�T�o�c�3�5�9�1�4�7�1�4�3� �_�T�o�c�3�5�9�4�1�6�7�3�7� �_�T�o�c�3�5�9�8�6�2�3�6�9� �_�T�o�c�3�5�9�8�3�6�8�1�5� �_�T�o�c�3�6�2�9�6�4�7�8�7� �_�T�o�c�2�3�0�4�3�3�1�0�5� �_�T�o�c�3�5�6�5�7�7�8�0�3� �_�T�o�c�3�5�6�9�1�0�0�1�7� �_�T�o�c�3�5�7�1�6�8�2�4�0� �_�T�o�c�3�5�9�1�4�7�1�4�4� �_�T�o�c�3�5�9�4�1�6�7�3�8� �_�T�o�c�3�5�9�8�6�2�3�7�0� �_�T�o�c�3�5�9�8�3�6�8�1�6� �_�T�o�c�3�6�2�9�6�4�7�8�8� �_�T�o�c�2�3�0�4�3�3�1�0�6� �_�T�o�c�3�5�6�5�7�7�8�0�4� �_�T�o�c�3�5�6�9�1�0�0�1�8� �_�T�o�c�3�5�7�1�6�8�2�4�1� �_�T�o�c�3�5�9�1�4�7�1�4�5� �_�T�o�c�3�5�9�4�1�6�7�3�9� �_�T�o�c�3�5�9�8�6�2�3�7�1� �_�T�o�c�3�5�9�8�3�6�8�1�7� �_�T�o�c�3�6�2�9�6�4�7�8�9��_�A�s�s�o�c�i�a�t�i�o�n�_�L�i�n�k� �_�T�o�c�2�3�0�4�3�3�1�0�7� �_�T�o�c�3�5�6�5�7�7�8�0�5� �_�T�o�c�3�5�6�9�1�0�0�1�9� �_�T�o�c�3�5�7�1�6�8�2�4�2� �_�T�o�c�3�5�9�1�4�7�1�4�6� �_�T�o�c�3�5�9�4�1�6�7�4�0� �_�T�o�c�3�5�9�8�6�2�3�7�2� �_�T�o�c�3�5�9�8�3�6�8�1�8� �_�T�o�c�3�6�2�9�6�4�7�9�0� �_�T�o�c�3�6�5�4�6�4�5�7�7� �_�T�o�c�2�3�0�4�3�3�1�0�8� �_�T�o�c�3�5�6�5�7�7�8�0�6� �_�T�o�c�3�5�6�9�1�0�0�2�0� �_�T�o�c�3�5�7�1�6�8�2�4�3� �_�T�o�c�3�5�9�1�4�7�1�4�7� �_�T�o�c�3�5�9�4�1�6�7�4�1� �_�T�o�c�3�5�9�8�6�2�3�7�3� �_�T�o�c�3�5�9�8�3�6�8�1�9� �_�T�o�c�3�6�2�9�6�4�7�9�1� �_�T�o�c�3�6�5�4�6�4�5�7�8� �_�T�o�c�2�3�0�4�3�3�1�0�9� �_�T�o�c�3�5�6�5�7�7�8�0�7� �_�T�o�c�3�5�6�9�1�0�0�2�1� �_�T�o�c�3�5�7�1�6�8�2�4�4� �_�T�o�c�3�5�9�1�4�7�1�4�8� �_�T�o�c�3�5�9�4�1�6�7�4�2� �_�T�o�c�3�5�9�8�6�2�3�7�4� �_�T�o�c�3�5�9�8�3�6�8�2�0� �_�T�o�c�3�6�2�9�6�4�7�9�2� �_�T�o�c�2�3�0�4�3�3�1�1�0� �_�T�o�c�3�5�6�5�7�7�8�0�8� �_�T�o�c�3�5�6�9�1�0�0�2�2� �_�T�o�c�3�5�7�1�6�8�2�4�5� �_�T�o�c�3�5�9�1�4�7�1�4�9� �_�T�o�c�3�5�9�4�1�6�7�4�3� �_�T�o�c�3�5�9�8�6�2�3�7�5� �_�T�o�c�3�5�9�8�3�6�8�2�1� �_�T�o�c�3�6�2�9�6�4�7�9�3� �_�T�o�c�2�3�0�4�3�3�1�1�1� �_�T�o�c�3�5�6�5�7�7�8�0�9� �_�T�o�c�3�5�6�9�1�0�0�2�3� �_�T�o�c�3�5�7�1�6�8�2�4�6� �_�T�o�c�3�5�9�1�4�7�1�5�0� �_�T�o�c�3�5�9�4�1�6�7�4�4� �_�T�o�c�3�5�9�8�6�2�3�7�6� �_�T�o�c�3�5�9�8�3�6�8�2�2� �_�T�o�c�3�6�2�9�6�4�7�9�4� �_�T�o�c�2�3�0�4�3�3�1�1�2� �_�T�o�c�3�5�6�5�7�7�8�1�0� �_�T�o�c�3�5�6�9�1�0�0�2�4� �_�T�o�c�3�5�7�1�6�8�2�4�7� �_�T�o�c�3�5�9�1�4�7�1�5�1� �_�T�o�c�3�5�9�4�1�6�7�4�5� �_�T�o�c�3�5�9�8�6�2�3�7�7� �_�T�o�c�3�5�9�8�3�6�8�2�3� �_�T�o�c�3�6�2�9�6�4�7�9�5��_�E�x�p�a�n�d�e�d�_�N�a�v�i�g�a�t�i�o�n�_�P�r�o�p�e�r�t�y�_�1��_�E�x�p�a�n�d�e�d�_�N�a�v�i�g�a�t�i�o�n�_�P�r�o�p�e�r�t�y� �_�T�o�c�2�3�0�4�3�3�1�1�3� �_�T�o�c�3�5�6�5�7�7�8�1�1� �_�T�o�c�3�5�6�9�1�0�0�2�5� �_�T�o�c�3�5�7�1�6�8�2�4�8� �_�T�o�c�3�5�9�1�4�7�1�5�2� �_�T�o�c�3�5�9�4�1�6�7�4�6� �_�T�o�c�3�5�9�8�6�2�3�7�8� �_�T�o�c�3�5�9�8�3�6�8�2�4� �_�T�o�c�3�6�2�9�6�4�7�9�6� �_�T�o�c�3�6�5�4�6�4�5�7�9� �_�T�o�c�2�3�0�4�3�3�1�1�4� �_�T�o�c�3�5�6�5�7�7�8�1�2� �_�T�o�c�3�5�6�9�1�0�0�2�6� �_�T�o�c�3�5�7�1�6�8�2�4�9� �_�T�o�c�3�5�9�1�4�7�1�5�3� �_�T�o�c�3�5�9�4�1�6�7�4�7� �_�T�o�c�3�5�9�8�6�2�3�7�9� �_�T�o�c�3�5�9�8�3�6�8�2�5� �_�T�o�c�3�6�2�9�6�4�7�9�7� �_�T�o�c�3�6�5�4�6�4�5�8�0� �_�T�o�c�2�3�0�4�3�3�1�1�5� �_�T�o�c�3�5�6�5�7�7�8�1�3� �_�T�o�c�3�5�6�9�1�0�0�2�7� �_�T�o�c�3�5�7�1�6�8�2�5�0� �_�T�o�c�3�5�9�1�4�7�1�5�4� �_�T�o�c�3�5�9�4�1�6�7�4�8� �_�T�o�c�3�5�9�8�6�2�3�8�0� �_�T�o�c�3�5�9�8�3�6�8�2�6� �_�T�o�c�3�6�2�9�6�4�7�9�8� �_�T�o�c�3�6�5�4�6�4�5�8�1��_�S�t�r�e�a�m�_�P�r�o�p�e�r�t�y� �_�T�o�c�2�3�0�4�3�3�1�1�6� �_�T�o�c�3�5�6�5�7�7�8�1�4� �_�T�o�c�3�5�6�9�1�0�0�2�8� �_�T�o�c�3�5�7�1�6�8�2�5�1� �_�T�o�c�3�5�9�1�4�7�1�5�5� �_�T�o�c�3�5�9�4�1�6�7�4�9� �_�T�o�c�3�5�9�8�6�2�3�8�1� �_�T�o�c�3�5�9�8�3�6�8�2�7� �_�T�o�c�3�6�2�9�6�4�7�9�9� �_�T�o�c�3�6�5�4�6�4�5�8�2� �_�T�o�c�2�3�0�4�3�3�1�1�7� �_�T�o�c�3�5�6�5�7�7�8�1�5� �_�T�o�c�3�5�6�9�1�0�0�2�9� �_�T�o�c�3�5�7�1�6�8�2�5�2� �_�T�o�c�3�5�9�1�4�7�1�5�6� �_�T�o�c�3�5�9�4�1�6�7�5�0� �_�T�o�c�3�5�9�8�6�2�3�8�2� �_�T�o�c�3�5�9�8�3�6�8�2�8� �_�T�o�c�3�6�2�9�6�4�8�0�0� �_�T�o�c�3�6�5�4�6�4�5�8�3��a�t�o�m�L�i�n�k� �_�T�o�c�2�3�0�4�3�3�1�1�8� �_�T�o�c�3�5�6�5�7�7�8�1�6� �_�T�o�c�3�5�6�9�1�0�0�3�0� �_�T�o�c�3�5�7�1�6�8�2�5�3� �_�T�o�c�3�5�9�1�4�7�1�5�7� �_�T�o�c�3�5�9�4�1�6�7�5�1� �_�T�o�c�3�5�9�8�6�2�3�8�3� �_�T�o�c�3�5�9�8�3�6�8�2�9� �_�T�o�c�3�6�2�9�6�4�8�0�1� �_�T�o�c�3�6�5�4�6�4�5�8�4� �_�T�o�c�2�3�0�4�3�3�1�1�9� �_�T�o�c�3�5�6�5�7�7�8�1�7� �_�T�o�c�3�5�6�9�1�0�0�3�1� �_�T�o�c�3�5�7�1�6�8�2�5�4� �_�T�o�c�3�5�9�1�4�7�1�5�8� �_�T�o�c�3�5�9�4�1�6�7�5�2� �_�T�o�c�3�5�9�8�6�2�3�8�4� �_�T�o�c�3�5�9�8�3�6�8�3�0� �_�T�o�c�3�6�2�9�6�4�8�0�2� �_�T�o�c�3�6�5�4�6�4�5�8�5� �_�T�o�c�2�3�0�4�3�3�1�2�0� �_�T�o�c�3�5�6�5�7�7�8�1�8� �_�T�o�c�3�5�6�9�1�0�0�3�2� �_�T�o�c�3�5�7�1�6�8�2�5�5� �_�T�o�c�3�5�9�1�4�7�1�5�9� �_�T�o�c�3�5�9�4�1�6�7�5�3� �_�T�o�c�3�5�9�8�6�2�3�8�5� �_�T�o�c�3�5�9�8�3�6�8�3�1� �_�T�o�c�3�6�2�9�6�4�8�0�3� �_�T�o�c�3�6�5�4�6�4�5�8�6� �_�T�o�c�2�3�0�4�3�3�1�2�1� �_�T�o�c�3�5�6�5�7�7�8�1�9� �_�T�o�c�3�5�6�9�1�0�0�3�3� �_�T�o�c�3�5�7�1�6�8�2�5�6� �_�T�o�c�3�5�9�1�4�7�1�6�0� �_�T�o�c�3�5�9�4�1�6�7�5�4� �_�T�o�c�3�5�9�8�6�2�3�8�6� �_�T�o�c�3�5�9�8�3�6�8�3�2� �_�T�o�c�3�6�2�9�6�4�8�0�4� �_�T�o�c�3�6�5�4�6�4�5�8�7� �_�T�o�c�2�3�0�4�3�3�1�2�2� �_�T�o�c�3�5�6�5�7�7�8�2�0� �_�T�o�c�3�5�6�9�1�0�0�3�4� �_�T�o�c�3�5�7�1�6�8�2�5�7� �_�T�o�c�3�5�9�1�4�7�1�6�1� �_�T�o�c�3�5�9�4�1�6�7�5�5� �_�T�o�c�3�5�9�8�6�2�3�8�7� �_�T�o�c�3�5�9�8�3�6�8�3�3� �_�T�o�c�3�6�2�9�6�4�8�0�5� �_�T�o�c�3�6�5�4�6�4�5�8�8� �_�M�e�d�i�a�_�E�n�t�i�t�y� �_�T�o�c�2�3�0�4�3�3�1�2�3� �_�T�o�c�3�5�6�5�7�7�8�2�1� �_�T�o�c�3�5�6�9�1�0�0�3�5� �_�T�o�c�3�5�7�1�6�8�2�5�8� �_�T�o�c�3�5�9�1�4�7�1�6�2� �_�T�o�c�3�5�9�4�1�6�7�5�6� �_�T�o�c�3�5�9�8�6�2�3�8�8� �_�T�o�c�3�5�9�8�3�6�8�3�4� �_�T�o�c�3�6�2�9�6�4�8�0�6� �_�T�o�c�3�6�5�4�6�4�5�8�9� �_�T�o�c�2�3�0�4�3�3�1�2�4� �_�T�o�c�3�5�6�5�7�7�8�2�2� �_�T�o�c�3�5�6�9�1�0�0�3�6� �_�T�o�c�3�5�7�1�6�8�2�5�9� �_�T�o�c�3�5�9�1�4�7�1�6�3� �_�T�o�c�3�5�9�4�1�6�7�5�7� �_�T�o�c�3�5�9�8�6�2�3�8�9� �_�T�o�c�3�5�9�8�3�6�8�3�5� �_�T�o�c�3�6�2�9�6�4�8�0�7� �_�T�o�c�3�6�5�4�6�4�5�9�0� �_�T�o�c�2�3�0�4�3�3�1�2�5� �_�T�o�c�3�5�6�5�7�7�8�2�3� �_�T�o�c�3�5�6�9�1�0�0�3�7� �_�T�o�c�3�5�7�1�6�8�2�6�0� �_�T�o�c�3�5�9�1�4�7�1�6�4� �_�T�o�c�3�5�9�4�1�6�7�5�8� �_�T�o�c�3�5�9�8�6�2�3�9�0� �_�T�o�c�3�5�9�8�3�6�8�3�6� �_�T�o�c�3�6�2�9�6�4�8�0�8� �_�T�o�c�3�6�5�4�6�4�5�9�1� �_�T�o�c�2�3�0�4�3�3�1�2�6� �_�T�o�c�3�5�6�5�7�7�8�2�4� �_�T�o�c�3�5�6�9�1�0�0�3�8� �_�T�o�c�3�5�7�1�6�8�2�6�1� �_�T�o�c�3�5�9�1�4�7�1�6�5� �_�T�o�c�3�5�9�4�1�6�7�5�9� �_�T�o�c�3�5�9�8�6�2�3�9�1� �_�T�o�c�3�5�9�8�3�6�8�3�7� �_�T�o�c�3�6�2�9�6�4�8�0�9� �_�T�o�c�3�6�5�4�6�4�5�9�2� �_�T�o�c�2�3�0�4�3�3�1�2�7� �_�T�o�c�3�5�6�5�7�7�8�2�5� �_�T�o�c�3�5�6�9�1�0�0�3�9� �_�T�o�c�3�5�7�1�6�8�2�6�2� �_�T�o�c�3�5�9�1�4�7�1�6�6� �_�T�o�c�3�5�9�4�1�6�7�6�0� �_�T�o�c�3�5�9�8�6�2�3�9�2� �_�T�o�c�3�5�9�8�3�6�8�3�8� �_�T�o�c�3�6�2�9�6�4�8�1�0� �_�T�o�c�3�6�5�4�6�4�5�9�3� �_�T�o�c�2�3�0�4�3�3�1�2�8� �_�T�o�c�3�5�6�5�7�7�8�2�6� �_�T�o�c�3�5�6�9�1�0�0�4�0� �_�T�o�c�3�5�7�1�6�8�2�6�3� �_�T�o�c�3�5�9�1�4�7�1�6�7� �_�T�o�c�3�5�9�4�1�6�7�6�1� �_�T�o�c�3�5�9�8�6�2�3�9�3� �_�T�o�c�3�5�9�8�3�6�8�3�9� �_�T�o�c�3�6�2�9�6�4�8�1�1� �_�T�o�c�3�6�5�4�6�4�5�9�4� �_�T�o�c�2�3�0�4�3�3�1�2�9� �_�T�o�c�3�5�6�5�7�7�8�2�7� �_�T�o�c�3�5�6�9�1�0�0�4�1� �_�T�o�c�3�5�7�1�6�8�2�6�4� �_�T�o�c�3�5�9�1�4�7�1�6�8� �_�T�o�c�3�5�9�4�1�6�7�6�2� �_�T�o�c�3�5�9�8�6�2�3�9�4� �_�T�o�c�3�5�9�8�3�6�8�4�0� �_�T�o�c�3�6�2�9�6�4�8�1�2� �_�T�o�c�3�6�5�4�6�4�5�9�5��_�I�n�d�i�v�i�d�u�a�l�_�P�r�o�p�e�r�t�y� �_�T�o�c�2�3�0�4�3�3�1�3�0� �_�T�o�c�3�5�6�5�7�7�8�2�8� �_�T�o�c�3�5�6�9�1�0�0�4�2� �_�T�o�c�3�5�7�1�6�8�2�6�5� �_�T�o�c�3�5�9�1�4�7�1�6�9� �_�T�o�c�3�5�9�4�1�6�7�6�3� �_�T�o�c�3�5�9�8�6�2�3�9�5� �_�T�o�c�3�5�9�8�3�6�8�4�1� �_�T�o�c�3�6�2�9�6�4�8�1�3� �_�T�o�c�3�6�5�4�6�4�5�9�6� �_�T�o�c�3�5�8�1�1�6�5�0�3� �_�T�o�c�3�5�8�1�1�6�6�8�5��_�S�i�n�g�l�e�_�S�c�a�l�a�r�_�V�a�l�u�e� �_�T�o�c�2�3�0�4�3�3�1�3�1� �_�T�o�c�3�5�6�5�7�7�8�2�9� �_�T�o�c�3�5�6�9�1�0�0�4�3� �_�T�o�c�3�5�7�1�6�8�2�6�6� �_�T�o�c�3�5�9�1�4�7�1�7�0� �_�T�o�c�3�5�9�4�1�6�7�6�4� �_�T�o�c�3�5�9�8�6�2�3�9�6� �_�T�o�c�3�5�9�8�3�6�8�4�2� �_�T�o�c�3�6�2�9�6�4�8�1�4� �_�T�o�c�3�6�5�4�6�4�5�9�7��_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�v�a�l�u�e� �_�T�o�c�2�3�0�4�3�3�1�3�2� �_�T�o�c�3�5�6�5�7�7�8�3�0� �_�T�o�c�3�5�6�9�1�0�0�4�4� �_�T�o�c�3�5�7�1�6�8�2�6�7� �_�T�o�c�3�5�9�1�4�7�1�7�1� �_�T�o�c�3�5�9�4�1�6�7�6�5� �_�T�o�c�3�5�9�8�6�2�3�9�7� �_�T�o�c�3�5�9�8�3�6�8�4�3� �_�T�o�c�3�6�2�9�6�4�8�1�5� �_�T�o�c�3�6�5�4�6�4�5�9�8� �_�T�o�c�2�3�0�4�3�3�1�3�3� �_�T�o�c�3�5�6�5�7�7�8�3�1� �_�T�o�c�3�5�6�9�1�0�0�4�5� �_�T�o�c�3�5�7�1�6�8�2�6�8� �_�T�o�c�3�5�9�1�4�7�1�7�2� �_�T�o�c�3�5�9�4�1�6�7�6�6� �_�T�o�c�3�5�9�8�6�2�3�9�8� �_�T�o�c�3�5�9�8�3�6�8�4�4� �_�T�o�c�3�6�2�9�6�4�8�1�6� �_�T�o�c�2�3�0�4�3�3�1�3�4� �_�T�o�c�3�5�6�5�7�7�8�3�2� �_�T�o�c�3�5�6�9�1�0�0�4�6� �_�T�o�c�3�5�7�1�6�8�2�6�9� �_�T�o�c�3�5�9�1�4�7�1�7�3� �_�T�o�c�3�5�9�4�1�6�7�6�7� �_�T�o�c�3�5�9�8�6�2�3�9�9� �_�T�o�c�3�5�9�8�3�6�8�4�5� �_�T�o�c�3�6�2�9�6�4�8�1�7� �_�T�o�c�2�3�0�4�3�3�1�3�5� �_�T�o�c�3�5�6�5�7�7�8�3�3� �_�T�o�c�3�5�6�9�1�0�0�4�7� �_�R�e�f�3�5�6�9�2�1�2�5�9� �_�T�o�c�3�5�7�1�6�8�2�7�0� �_�T�o�c�3�5�9�1�4�7�1�7�4� �_�T�o�c�3�5�9�4�1�6�7�6�8� �_�T�o�c�3�5�9�8�6�2�4�0�0� �_�T�o�c�3�5�9�8�3�6�8�4�6� �_�T�o�c�3�6�2�9�6�4�8�1�8� �_�T�o�c�2�3�0�4�3�3�1�3�6� �_�T�o�c�3�5�6�5�7�7�8�3�4� �_�T�o�c�3�5�6�9�1�0�0�4�8� �_�T�o�c�3�5�7�1�6�8�2�7�1� �_�T�o�c�3�5�9�1�4�7�1�7�5� �_�T�o�c�3�5�9�4�1�6�7�6�9� �_�T�o�c�3�5�9�8�6�2�4�0�1� �_�T�o�c�3�5�9�8�3�6�8�4�7� �_�T�o�c�3�6�2�9�6�4�8�1�9��_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�S�c�a�l�a�r� �_�T�o�c�2�3�0�4�3�3�1�3�7� �_�T�o�c�3�5�6�5�7�7�8�3�5� �_�T�o�c�3�5�6�9�1�0�0�4�9� �_�T�o�c�3�5�7�1�6�8�2�7�2� �_�T�o�c�3�5�9�1�4�7�1�7�6� �_�T�o�c�3�5�9�4�1�6�7�7�0� �_�T�o�c�3�5�9�8�6�2�4�0�2� �_�T�o�c�3�5�9�8�3�6�8�4�8� �_�T�o�c�3�6�2�9�6�4�8�2�0� �_�T�o�c�3�6�5�4�6�4�5�9�9� �_�T�o�c�2�3�0�4�3�3�1�3�8� �_�T�o�c�3�5�6�5�7�7�8�3�6� �_�T�o�c�3�5�6�9�1�0�0�5�0� �_�T�o�c�3�5�7�1�6�8�2�7�3� �_�T�o�c�3�5�9�1�4�7�1�7�7� �_�T�o�c�3�5�9�4�1�6�7�7�1� �_�T�o�c�3�5�9�8�6�2�4�0�3� �_�T�o�c�3�5�9�8�3�6�8�4�9� �_�T�o�c�3�6�2�9�6�4�8�2�1� �_�T�o�c�3�6�5�4�6�4�6�0�0� �_�T�o�c�3�5�9�1�4�7�1�7�8� �_�T�o�c�3�5�9�4�1�6�7�7�2� �_�T�o�c�3�5�9�8�6�2�4�0�4� �_�T�o�c�3�5�9�8�3�6�8�5�0� �_�T�o�c�3�6�2�9�6�4�8�2�2� �_�T�o�c�2�3�0�4�3�3�1�3�9� �_�T�o�c�3�5�6�5�7�7�8�3�7� �_�T�o�c�3�5�6�9�1�0�0�5�1� �_�T�o�c�3�5�7�1�6�8�2�7�4� �_�T�o�c�3�5�9�1�4�7�1�7�9� �_�T�o�c�3�5�9�4�1�6�7�7�3� �_�T�o�c�3�5�9�8�6�2�4�0�5� �_�T�o�c�3�5�9�8�3�6�8�5�1� �_�T�o�c�3�6�2�9�6�4�8�2�3� �_�T�o�c�3�5�9�1�4�7�1�8�0� �_�T�o�c�3�5�9�4�1�6�7�7�4� �_�T�o�c�3�5�9�8�6�2�4�0�6� �_�T�o�c�3�5�9�8�3�6�8�5�2� �_�T�o�c�3�6�2�9�6�4�8�2�4��_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s�_�1��_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s� �_�T�o�c�2�3�0�4�3�3�1�4�0� �_�T�o�c�3�5�6�5�7�7�8�3�8� �_�T�o�c�3�5�6�9�1�0�0�5�2� �_�T�o�c�3�5�7�1�6�8�2�7�5� �_�T�o�c�3�5�9�1�4�7�1�8�1� �_�T�o�c�3�5�9�4�1�6�7�7�5� �_�T�o�c�3�5�9�8�6�2�4�0�7� �_�T�o�c�3�5�9�8�3�6�8�5�3� �_�T�o�c�3�6�2�9�6�4�8�2�5� �_�T�o�c�3�6�5�4�6�4�6�0�1��_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d� �_�T�o�c�2�3�0�4�3�3�1�4�1� �_�T�o�c�3�5�6�5�7�7�8�3�9� �_�T�o�c�3�5�6�9�1�0�0�5�3� �_�T�o�c�3�5�7�1�6�8�2�7�6� �_�T�o�c�3�5�9�1�4�7�1�8�2� �_�T�o�c�3�5�9�4�1�6�7�7�6� �_�T�o�c�3�5�9�8�6�2�4�0�8� �_�T�o�c�3�5�9�8�3�6�8�5�4� �_�T�o�c�3�6�2�9�6�4�8�2�6� �_�T�o�c�3�6�5�4�6�4�6�0�2��_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�m�e�t�a�d�a�t�a�_�1� �_�T�o�c�2�3�0�4�3�3�1�4�2� �_�T�o�c�3�5�6�5�7�7�8�4�0� �_�T�o�c�3�5�6�9�1�0�0�5�4� �_�T�o�c�3�5�7�1�6�8�2�7�7� �_�T�o�c�3�5�9�1�4�7�1�8�3� �_�T�o�c�3�5�9�4�1�6�7�7�7� �_�T�o�c�3�5�9�8�6�2�4�0�9� �_�T�o�c�3�5�9�8�3�6�8�5�5� �_�T�o�c�3�6�2�9�6�4�8�2�7� �_�T�o�c�3�6�5�4�6�4�6�0�3� �_�T�o�c�2�3�0�4�3�3�1�4�3� �_�T�o�c�3�5�6�5�7�7�8�4�1� �_�T�o�c�3�5�6�9�1�0�0�5�5� �_�T�o�c�3�5�7�1�6�8�2�7�8� �_�T�o�c�3�5�9�1�4�7�1�8�4� �_�T�o�c�3�5�9�4�1�6�7�7�8� �_�T�o�c�3�5�9�8�6�2�4�1�0� �_�T�o�c�3�5�9�8�3�6�8�5�6� �_�T�o�c�3�6�2�9�6�4�8�2�8� �_�T�o�c�3�6�5�4�6�4�6�0�4� �_�T�o�c�2�3�0�4�3�3�1�4�4� �_�T�o�c�3�5�6�5�7�7�8�4�2� �_�T�o�c�3�5�6�9�1�0�0�5�6� �_�T�o�c�3�5�7�1�6�8�2�7�9� �_�T�o�c�3�5�9�1�4�7�1�8�5� �_�T�o�c�3�5�9�4�1�6�7�7�9� �_�T�o�c�3�5�9�8�6�2�4�1�1� �_�T�o�c�3�5�9�8�3�6�8�5�7� �_�T�o�c�3�6�2�9�6�4�8�2�9� �_�T�o�c�3�6�5�4�6�4�6�0�5� �_�C�o�u�n�t�_�a�s�_�a��_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�c�o�u�n�t� �_�T�o�c�3�5�6�9�1�0�0�5�7� �_�T�o�c�2�3�0�4�3�3�1�4�5� �_�T�o�c�3�5�6�5�7�7�8�4�4� �_�T�o�c�3�5�6�9�1�0�0�5�8� �_�T�o�c�3�5�7�1�6�8�2�8�0� �_�T�o�c�3�5�9�1�4�7�1�8�6� �_�T�o�c�3�5�9�4�1�6�7�8�0� �_�T�o�c�3�5�9�8�6�2�4�1�2� �_�T�o�c�3�5�9�8�3�6�8�5�8� �_�T�o�c�3�6�2�9�6�4�8�3�0� �_�T�o�c�3�6�5�4�6�4�6�0�6� �_�T�o�c�2�3�0�4�3�3�1�4�6� �_�T�o�c�3�5�6�5�7�7�8�4�5� �_�R�e�f�3�5�6�8�2�9�1�1�4� �_�T�o�c�3�5�6�9�1�0�0�5�9� �_�T�o�c�3�5�7�1�6�8�2�8�1� �_�T�o�c�3�5�9�1�4�7�1�8�7� �_�T�o�c�3�5�9�4�1�6�7�8�1� �_�R�e�f�3�5�9�8�5�4�0�6�4� �_�R�e�f�3�5�9�8�5�4�0�7�2� �_�T�o�c�3�5�9�8�6�2�4�1�3� �_�T�o�c�3�5�9�8�3�6�8�5�9� �_�T�o�c�3�6�2�9�6�4�8�3�1� �_�T�o�c�3�6�5�4�6�4�6�0�7� �_�T�o�c�3�5�6�9�1�0�0�6�0� �_�T�o�c�2�3�0�4�3�3�1�4�7� �_�T�o�c�3�5�6�5�7�7�8�4�6� �_�T�o�c�3�5�6�9�1�0�0�6�1� �_�T�o�c�3�5�7�1�6�8�2�8�2��A�d�d�i�t�i�o�n�a�l�R�e�s�u�l�t�s�A�s�A�n�A�t�o�m�L�i�n�k� �_�T�o�c�3�5�8�1�1�6�5�2�2� �_�T�o�c�3�5�8�1�1�6�7�0�4� �_�T�o�c�3�5�9�1�4�7�1�8�8� �_�T�o�c�3�5�9�4�1�6�7�8�2� �_�T�o�c�3�5�9�8�6�2�4�1�4� �_�T�o�c�3�5�9�8�3�6�8�6�0� �_�T�o�c�3�6�2�9�6�4�8�3�2� �_�T�o�c�3�6�5�4�6�4�6�0�8��n�e�x�t�L�i�n�k��_�D�e�l�t�a�_�L�i�n�k�_�a�s��_�R�e�s�o�u�r�c�e�_�R�e�f�e�r�e�n�c�e��_�E�n�t�i�t�y�_�R�e�f�e�r�e�n�c�e� �_�T�o�c�2�3�0�4�3�3�1�4�8� �_�T�o�c�3�5�6�5�7�7�8�4�7� �_�T�o�c�3�5�6�9�1�0�0�6�2� �_�T�o�c�3�5�7�1�6�8�2�8�3� �_�T�o�c�3�5�9�1�4�7�1�8�9� �_�T�o�c�3�5�9�4�1�6�7�8�3� �_�T�o�c�3�5�9�8�6�2�4�1�5� �_�T�o�c�3�5�9�8�3�6�8�6�1� �_�T�o�c�3�6�2�9�6�4�8�3�3� �_�T�o�c�3�6�5�4�6�4�6�0�9� �_�T�o�c�3�5�7�5�2�7�5�6�2� �_�T�o�c�3�5�7�5�2�7�5�6�3� �_�T�o�c�3�5�7�5�2�7�5�6�4��_�E�n�t�i�t�y�_�R�e�f�e�r�e�n�c�e�s�_�a�s��_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�r�e�f� �_�T�o�c�2�3�0�4�3�3�1�4�9� �_�T�o�c�3�5�6�5�7�7�8�4�8� �_�T�o�c�3�5�6�9�1�0�0�6�3� �_�T�o�c�3�5�7�1�6�8�2�8�4��_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�r�e�f�_�1� �_�T�o�c�3�5�9�1�4�7�1�9�0� �_�T�o�c�3�5�9�4�1�6�7�8�4� �_�T�o�c�3�5�9�8�6�2�4�1�6� �_�T�o�c�3�5�9�8�3�6�8�6�2� �_�T�o�c�3�6�2�9�6�4�8�3�4� �_�T�o�c�3�6�5�4�6�4�6�1�0� �_�T�o�c�3�5�9�1�4�7�1�9�1� �_�T�o�c�3�5�9�4�1�6�7�8�5� �_�T�o�c�3�5�9�8�6�2�4�1�7� �_�T�o�c�3�5�9�8�3�6�8�6�3� �_�T�o�c�3�6�2�9�6�4�8�3�5� �_�T�o�c�2�3�0�4�3�3�1�5�0� �_�T�o�c�3�5�6�5�7�7�8�4�9� �_�T�o�c�3�5�6�9�1�0�0�6�4� �_�T�o�c�3�5�7�1�6�8�2�8�5� �_�T�o�c�3�6�5�4�6�4�6�1�1� �_�T�o�c�3�5�9�1�4�7�1�9�2� �_�T�o�c�3�5�9�4�1�6�7�8�6� �_�T�o�c�3�5�9�8�6�2�4�1�8� �_�T�o�c�3�5�9�8�3�6�8�6�4� �_�T�o�c�3�6�2�9�6�4�8�3�6� �_�T�o�c�3�6�5�4�6�4�6�1�2��_�D�e�l�t�a�_�R�e�s�p�o�n�s�e�_�1��_�D�e�l�t�a�_�R�e�s�p�o�n�s�e� �_�T�o�c�2�3�0�4�3�3�1�5�1� �_�T�o�c�3�5�6�5�7�7�8�5�0� �_�T�o�c�3�5�6�9�1�0�0�6�5� �_�T�o�c�3�5�7�1�6�8�2�8�6� �_�T�o�c�3�5�9�1�4�7�1�9�3� �_�T�o�c�3�5�9�4�1�6�7�8�7� �_�T�o�c�3�5�9�8�6�2�4�1�9� �_�T�o�c�3�5�9�8�3�6�8�6�5� �_�T�o�c�3�6�2�9�6�4�8�3�7� �_�T�o�c�3�6�5�4�6�4�6�1�3��_�C�h�a�n�g�e�d�/�A�d�d�e�d�_�E�n�t�i�t�i�e�s�_�a�s� �_�T�o�c�2�3�0�4�3�3�1�5�2� �_�T�o�c�3�5�6�5�7�7�8�5�1� �_�T�o�c�3�5�6�9�1�0�0�6�6� �_�T�o�c�3�5�7�1�6�8�2�8�7� �_�T�o�c�3�5�9�1�4�7�1�9�4� �_�T�o�c�3�5�9�4�1�6�7�8�8� �_�T�o�c�3�5�9�8�6�2�4�2�0� �_�T�o�c�3�5�9�8�3�6�8�6�6� �_�T�o�c�3�6�2�9�6�4�8�3�8� �_�T�o�c�3�6�5�4�6�4�6�1�4��_�D�e�l�e�t�e�d�_�e�n�t�i�t�i�e�s�_�a�s�_�1� �_�T�o�c�2�3�0�4�3�3�1�5�3� �_�T�o�c�3�5�6�5�7�7�8�5�2� �_�T�o�c�3�5�6�9�1�0�0�6�7� �_�T�o�c�3�5�7�1�6�8�2�8�8� �_�T�o�c�3�5�9�1�4�7�1�9�5� �_�T�o�c�3�5�9�4�1�6�7�8�9� �_�T�o�c�3�5�9�8�6�2�4�2�1� �_�T�o�c�3�5�9�8�3�6�8�6�7� �_�T�o�c�3�6�2�9�6�4�8�3�9� �_�T�o�c�3�6�5�4�6�4�6�1�5� �_�T�o�c�2�3�0�4�3�3�1�5�4� �_�T�o�c�3�5�6�5�7�7�8�5�3� �_�T�o�c�3�5�6�9�1�0�0�6�8� �_�T�o�c�3�5�7�1�6�8�2�8�9� �_�T�o�c�3�5�9�1�4�7�1�9�6� �_�T�o�c�3�5�9�4�1�6�7�9�0� �_�T�o�c�3�5�9�8�6�2�4�2�2� �_�T�o�c�3�5�9�8�3�6�8�6�8� �_�T�o�c�3�6�2�9�6�4�8�4�0� �_�T�o�c�3�6�5�4�6�4�6�1�6� �_�T�o�c�2�3�0�4�3�3�1�5�5� �_�T�o�c�3�5�6�5�7�7�8�5�4� �_�T�o�c�3�5�6�9�1�0�0�6�9� �_�T�o�c�3�5�7�1�6�8�2�9�0� �_�T�o�c�3�5�9�1�4�7�1�9�7� �_�T�o�c�3�5�9�4�1�6�7�9�1� �_�T�o�c�3�5�9�8�6�2�4�2�3� �_�T�o�c�3�5�9�8�3�6�8�6�9� �_�T�o�c�3�6�2�9�6�4�8�4�1� �_�T�o�c�2�3�0�4�3�3�1�5�6� �_�T�o�c�3�5�6�5�7�7�8�5�5� �_�T�o�c�3�5�6�9�1�0�0�7�0� �_�T�o�c�3�5�7�1�6�8�2�9�1� �_�T�o�c�3�5�9�1�4�7�1�9�8� �_�T�o�c�3�5�9�4�1�6�7�9�2� �_�T�o�c�3�5�9�8�6�2�4�2�4� �_�T�o�c�3�5�9�8�3�6�8�7�0� �_�T�o�c�3�6�2�9�6�4�8�4�2� �_�T�o�c�2�3�0�4�3�3�1�5�7� �_�T�o�c�3�5�6�5�7�7�8�5�6� �_�T�o�c�3�5�6�9�1�0�0�7�1� �_�T�o�c�3�5�7�1�6�8�2�9�2� �_�T�o�c�3�5�9�1�4�7�1�9�9� �_�T�o�c�3�5�9�4�1�6�7�9�3� �_�T�o�c�3�5�9�8�6�2�4�2�5� �_�T�o�c�3�5�9�8�3�6�8�7�1� �_�T�o�c�3�6�2�9�6�4�8�4�3� �_�A�d�d�e�d�_�L�i�n�k� �_�T�o�c�2�3�0�4�3�3�1�5�8� �_�T�o�c�3�5�6�5�7�7�8�5�7� �_�T�o�c�3�5�6�9�1�0�0�7�2� �_�T�o�c�3�5�7�1�6�8�2�9�3� �_�T�o�c�3�5�9�1�4�7�2�0�0� �_�T�o�c�3�5�9�4�1�6�7�9�4� �_�T�o�c�3�5�9�8�6�2�4�2�6� �_�T�o�c�3�5�9�8�3�6�8�7�2� �_�T�o�c�3�6�2�9�6�4�8�4�4� �_�T�o�c�3�6�5�4�6�4�6�1�7��_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�l�i�n�k� �_�T�o�c�2�3�0�4�3�3�1�5�9� �_�T�o�c�3�5�6�5�7�7�8�5�8� �_�T�o�c�3�5�6�9�1�0�0�7�3� �_�T�o�c�3�5�7�1�6�8�2�9�4� �_�T�o�c�3�5�9�1�4�7�2�0�1� �_�T�o�c�3�5�9�4�1�6�7�9�5� �_�T�o�c�3�5�9�8�6�2�4�2�7� �_�T�o�c�3�5�9�8�3�6�8�7�3� �_�T�o�c�3�6�2�9�6�4�8�4�5� �_�T�o�c�3�6�5�4�6�4�6�1�8� �_�T�o�c�2�3�0�4�3�3�1�6�0� �_�T�o�c�3�5�6�5�7�7�8�5�9� �_�T�o�c�3�5�6�9�1�0�0�7�4� �_�T�o�c�3�5�7�1�6�8�2�9�5� �_�T�o�c�3�5�9�1�4�7�2�0�2� �_�T�o�c�3�5�9�4�1�6�7�9�6� �_�T�o�c�3�5�9�8�6�2�4�2�8� �_�T�o�c�3�5�9�8�3�6�8�7�4� �_�T�o�c�3�6�2�9�6�4�8�4�6� �_�T�o�c�2�3�0�4�3�3�1�6�1� �_�T�o�c�3�5�6�5�7�7�8�6�0� �_�T�o�c�3�5�6�9�1�0�0�7�5� �_�T�o�c�3�5�7�1�6�8�2�9�6� �_�T�o�c�3�5�9�1�4�7�2�0�3� �_�T�o�c�3�5�9�4�1�6�7�9�7� �_�T�o�c�3�5�9�8�6�2�4�2�9� �_�T�o�c�3�5�9�8�3�6�8�7�5� �_�T�o�c�3�6�2�9�6�4�8�4�7� �_�T�o�c�2�3�0�4�3�3�1�6�2� �_�T�o�c�3�5�6�5�7�7�8�6�1� �_�T�o�c�3�5�6�9�1�0�0�7�6� �_�T�o�c�3�5�7�1�6�8�2�9�7� �_�T�o�c�3�5�9�1�4�7�2�0�4� �_�T�o�c�3�5�9�4�1�6�7�9�8� �_�T�o�c�3�5�9�8�6�2�4�3�0� �_�T�o�c�3�5�9�8�3�6�8�7�6� �_�T�o�c�3�6�2�9�6�4�8�4�8��_�D�e�l�e�t�e�d�_�L�i�n�k�s�_�a�s� �_�T�o�c�3�5�6�9�1�0�0�7�7� �_�T�o�c�3�5�6�9�1�0�0�7�8� �_�D�e�l�e�t�e�d�_�L�i�n�k� �_�T�o�c�2�3�0�4�3�3�1�6�3� �_�T�o�c�3�5�6�5�7�7�8�6�4� �_�T�o�c�3�5�6�9�1�0�0�7�9� �_�T�o�c�3�5�7�1�6�8�2�9�8� �_�T�o�c�3�5�9�1�4�7�2�0�5� �_�T�o�c�3�5�9�4�1�6�7�9�9� �_�T�o�c�3�5�9�8�6�2�4�3�1� �_�T�o�c�3�5�9�8�3�6�8�7�7� �_�T�o�c�3�6�2�9�6�4�8�4�9� �_�T�o�c�3�6�5�4�6�4�6�1�9��_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�d�e�l�e�t�e�d�-�l�i�n�k� �_�T�o�c�2�3�0�4�3�3�1�6�4� �_�T�o�c�3�5�6�5�7�7�8�6�5� �_�T�o�c�3�5�6�9�1�0�0�8�0� �_�T�o�c�3�5�7�1�6�8�2�9�9� �_�T�o�c�3�5�9�1�4�7�2�0�6� �_�T�o�c�3�5�9�4�1�6�8�0�0� �_�T�o�c�3�5�9�8�6�2�4�3�2� �_�T�o�c�3�5�9�8�3�6�8�7�8� �_�T�o�c�3�6�2�9�6�4�8�5�0� �_�T�o�c�3�6�5�4�6�4�6�2�0� �_�T�o�c�2�3�0�4�3�3�1�6�5� �_�T�o�c�3�5�6�5�7�7�8�6�6� �_�T�o�c�3�5�6�9�1�0�0�8�1� �_�T�o�c�3�5�7�1�6�8�3�0�0� �_�T�o�c�3�5�9�1�4�7�2�0�7� �_�T�o�c�3�5�9�4�1�6�8�0�1� �_�T�o�c�3�5�9�8�6�2�4�3�3� �_�T�o�c�3�5�9�8�3�6�8�7�9� �_�T�o�c�3�6�2�9�6�4�8�5�1� �_�T�o�c�2�3�0�4�3�3�1�6�6� �_�T�o�c�3�5�6�5�7�7�8�6�7� �_�T�o�c�3�5�6�9�1�0�0�8�2� �_�T�o�c�3�5�7�1�6�8�3�0�1� �_�T�o�c�3�5�9�1�4�7�2�0�8� �_�T�o�c�3�5�9�4�1�6�8�0�2� �_�T�o�c�3�5�9�8�6�2�4�3�4� �_�T�o�c�3�5�9�8�3�6�8�8�0� �_�T�o�c�3�6�2�9�6�4�8�5�2� �_�T�o�c�2�3�0�4�3�3�1�6�7� �_�T�o�c�3�5�6�5�7�7�8�6�8� �_�T�o�c�3�5�6�9�1�0�0�8�3� �_�T�o�c�3�5�7�1�6�8�3�0�2� �_�T�o�c�3�5�9�1�4�7�2�0�9� �_�T�o�c�3�5�9�4�1�6�8�0�3� �_�T�o�c�3�5�9�8�6�2�4�3�5� �_�T�o�c�3�5�9�8�3�6�8�8�1� �_�T�o�c�3�6�2�9�6�4�8�5�3� �_�F�u�n�c�t�i�o�n�s� �_�F�u�n�c�t�i�o�n� �_�T�o�c�2�3�0�4�3�3�1�6�8� �_�T�o�c�3�5�6�5�7�7�8�6�9� �_�T�o�c�3�5�6�9�1�0�0�8�4� �_�T�o�c�3�5�7�1�6�8�3�0�3� �_�T�o�c�3�5�9�1�4�7�2�1�0� �_�T�o�c�3�5�9�4�1�6�8�0�4� �_�T�o�c�3�5�9�8�6�2�4�3�6� �_�T�o�c�3�5�9�8�3�6�8�8�2� �_�T�o�c�3�6�2�9�6�4�8�5�4� �_�T�o�c�3�6�5�4�6�4�6�2�1��_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�f�u�n�c�t�i�o�n� �_�T�o�c�2�3�0�4�3�3�1�6�9� �_�T�o�c�3�5�6�5�7�7�8�7�0� �_�T�o�c�3�5�6�9�1�0�0�8�5� �_�T�o�c�3�5�7�1�6�8�3�0�4� �_�T�o�c�3�5�9�1�4�7�2�1�1� �_�T�o�c�3�5�9�4�1�6�8�0�5� �_�T�o�c�3�5�9�8�6�2�4�3�7� �_�T�o�c�3�5�9�8�3�6�8�8�3� �_�T�o�c�3�6�2�9�6�4�8�5�5� �_�T�o�c�3�6�5�4�6�4�6�2�2� �_�T�o�c�2�3�0�4�3�3�1�7�0� �_�T�o�c�3�5�6�5�7�7�8�7�1� �_�T�o�c�3�5�6�9�1�0�0�8�6� �_�T�o�c�3�5�7�1�6�8�3�0�5� �_�T�o�c�3�5�9�1�4�7�2�1�2� �_�T�o�c�3�5�9�4�1�6�8�0�6� �_�T�o�c�3�5�9�8�6�2�4�3�8� �_�T�o�c�3�5�9�8�3�6�8�8�4� �_�T�o�c�3�6�2�9�6�4�8�5�6� �_�T�o�c�3�6�5�4�6�4�6�2�3��_�A�t�t�r�i�b�u�t�e�_�t�a�r�g�e�t� �_�T�o�c�2�3�0�4�3�3�1�7�1� �_�T�o�c�3�5�6�5�7�7�8�7�2� �_�T�o�c�3�5�6�9�1�0�0�8�7� �_�T�o�c�3�5�7�1�6�8�3�0�6� �_�T�o�c�3�5�9�1�4�7�2�1�3� �_�T�o�c�3�5�9�4�1�6�8�0�7� �_�T�o�c�3�5�9�8�6�2�4�3�9� �_�T�o�c�3�5�9�8�3�6�8�8�5� �_�T�o�c�3�6�2�9�6�4�8�5�7� �_�T�o�c�3�6�5�4�6�4�6�2�4� �_�T�o�c�2�3�0�4�3�3�1�7�2� �_�T�o�c�3�5�6�5�7�7�8�7�3� �_�T�o�c�3�5�6�9�1�0�0�8�8� �_�T�o�c�3�5�7�1�6�8�3�0�7� �_�T�o�c�3�5�9�1�4�7�2�1�4� �_�T�o�c�3�5�9�4�1�6�8�0�8� �_�T�o�c�3�5�9�8�6�2�4�4�0� �_�T�o�c�3�5�9�8�3�6�8�8�6� �_�T�o�c�3�6�2�9�6�4�8�5�8� �_�T�o�c�3�6�5�4�6�4�6�2�5��_�A�c�t�i�o�n� �_�T�o�c�2�3�0�4�3�3�1�7�3� �_�T�o�c�3�5�6�5�7�7�8�7�4� �_�T�o�c�3�5�6�9�1�0�0�8�9� �_�T�o�c�3�5�7�1�6�8�3�0�8� �_�T�o�c�3�5�9�1�4�7�2�1�5� �_�T�o�c�3�5�9�4�1�6�8�0�9� �_�T�o�c�3�5�9�8�6�2�4�4�1� �_�T�o�c�3�5�9�8�3�6�8�8�7� �_�T�o�c�3�6�2�9�6�4�8�5�9� �_�T�o�c�3�6�5�4�6�4�6�2�6��_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�a�c�t�i�o�n� �_�T�o�c�2�3�0�4�3�3�1�7�4� �_�T�o�c�3�5�6�5�7�7�8�7�5� �_�T�o�c�3�5�6�9�1�0�0�9�0� �_�T�o�c�3�5�7�1�6�8�3�0�9� �_�T�o�c�3�5�9�1�4�7�2�1�6� �_�T�o�c�3�5�9�4�1�6�8�1�0� �_�T�o�c�3�5�9�8�6�2�4�4�2� �_�T�o�c�3�5�9�8�3�6�8�8�8� �_�T�o�c�3�6�2�9�6�4�8�6�0� �_�T�o�c�3�6�5�4�6�4�6�2�7� �_�T�o�c�2�3�0�4�3�3�1�7�5� �_�T�o�c�3�5�6�5�7�7�8�7�6� �_�T�o�c�3�5�6�9�1�0�0�9�1� �_�T�o�c�3�5�7�1�6�8�3�1�0� �_�T�o�c�3�5�9�1�4�7�2�1�7� �_�T�o�c�3�5�9�4�1�6�8�1�1� �_�T�o�c�3�5�9�8�6�2�4�4�3� �_�T�o�c�3�5�9�8�3�6�8�8�9� �_�T�o�c�3�6�2�9�6�4�8�6�1� �_�T�o�c�3�6�5�4�6�4�6�2�8� �_�T�o�c�3�5�9�4�1�6�6�2�3� �_�T�o�c�3�5�9�4�1�6�8�1�2� �_�T�o�c�3�5�9�3�1�0�3�7�5� �_�T�o�c�3�5�9�3�4�1�0�7�4� �_�T�o�c�3�5�9�4�4�1�0�0�2� �_�T�o�c�3�5�9�5�1�1�9�2�9� �_�T�o�c�2�3�0�4�3�3�1�7�6� �_�T�o�c�3�5�6�5�7�7�8�7�7� �_�T�o�c�3�5�6�9�1�0�0�9�2� �_�T�o�c�3�5�7�1�6�8�3�1�1� �_�T�o�c�3�5�9�1�4�7�2�1�8� �_�T�o�c�3�5�9�8�6�2�4�4�4� �_�T�o�c�3�5�9�8�3�6�8�9�0� �_�T�o�c�3�6�2�9�6�4�8�6�2� �_�T�o�c�3�6�5�4�6�4�6�2�9� �_�T�o�c�2�3�0�4�3�3�1�7�7� �_�T�o�c�3�5�6�5�7�7�8�7�8� �_�T�o�c�3�5�6�9�1�0�0�9�3� �_�T�o�c�3�5�7�1�6�8�3�1�2� �_�T�o�c�3�5�9�1�4�7�2�1�9� �_�T�o�c�3�5�9�4�1�6�8�1�4� �_�T�o�c�3�5�9�8�6�2�4�4�5� �_�T�o�c�3�5�9�8�3�6�8�9�1� �_�T�o�c�3�6�2�9�6�4�8�6�3� �_�T�o�c�3�6�5�4�6�4�6�3�0� �_�T�o�c�2�3�0�4�3�3�1�7�8� �_�T�o�c�3�5�6�5�7�7�8�7�9� �_�T�o�c�3�5�6�9�1�0�0�9�4� �_�T�o�c�3�5�7�1�6�8�3�1�3� �_�T�o�c�3�5�9�1�4�7�2�2�0� �_�T�o�c�3�5�9�4�1�6�8�1�5� �_�T�o�c�3�5�9�8�6�2�4�4�6� �_�T�o�c�3�5�9�8�3�6�8�9�2� �_�T�o�c�3�6�2�9�6�4�8�6�4� �_�T�o�c�3�6�5�4�6�4�6�3�1��_�I�n�s�t�a�n�c�e�_�A�n�n�o�t�a�t�i�o�n�s� �_�T�o�c�2�3�0�4�3�3�1�7�9� �_�T�o�c�3�5�6�5�7�7�8�8�0� �_�R�e�f�3�5�6�8�2�9�5�4�0� �_�T�o�c�3�5�6�9�1�0�0�9�5� �_�T�o�c�3�5�7�1�6�8�3�1�4� �_�T�o�c�3�5�9�1�4�7�2�2�1� �_�T�o�c�3�5�9�4�1�6�8�1�6� �_�T�o�c�3�5�9�8�6�2�4�4�7� �_�T�o�c�3�5�9�8�3�6�8�9�3� �_�T�o�c�3�6�2�9�6�4�8�6�5� �_�T�o�c�3�6�5�4�6�4�6�3�2� �_�T�h�e�_�m�e�t�a�d�a�t�a�:�A�n�n�o�t�a�t�i�o�n�_�E�l�e�m�e�n�t� �_�T�o�c�2�3�0�4�3�3�1�8�0� �_�T�o�c�3�5�6�5�7�7�8�8�1� �_�T�o�c�3�5�6�9�1�0�0�9�6� �_�T�o�c�3�5�7�1�6�8�3�1�5� �_�T�o�c�3�5�9�1�4�7�2�2�2� �_�T�o�c�3�5�9�4�1�6�8�1�7� �_�T�o�c�3�5�9�8�6�2�4�4�8� �_�T�o�c�3�5�9�8�3�6�8�9�4� �_�T�o�c�3�6�2�9�6�4�8�6�6� �_�T�o�c�3�6�5�4�6�4�6�3�3��_�A�t�t�r�i�b�u�t�e�_�t�a�r�g�e�t�_�1� �_�T�o�c�2�3�0�4�3�3�1�8�1� �_�T�o�c�3�5�6�5�7�7�8�8�2� �_�T�o�c�3�5�6�9�1�0�0�9�7� �_�T�o�c�3�5�7�1�6�8�3�1�6� �_�T�o�c�3�5�9�1�4�7�2�2�3� �_�T�o�c�3�5�9�4�1�6�8�1�8� �_�T�o�c�3�5�9�8�6�2�4�4�9� �_�T�o�c�3�5�9�8�3�6�8�9�5� �_�T�o�c�3�6�2�9�6�4�8�6�7� �_�T�o�c�3�6�5�4�6�4�6�3�4� �_�T�o�c�2�3�0�4�3�3�1�8�2� �_�T�o�c�3�5�6�5�7�7�8�8�3� �_�T�o�c�3�5�6�9�1�0�0�9�8� �_�T�o�c�3�5�7�1�6�8�3�1�7� �_�T�o�c�3�5�9�1�4�7�2�2�4� �_�T�o�c�3�5�9�4�1�6�8�1�9� �_�T�o�c�3�5�9�8�6�2�4�5�0� �_�T�o�c�3�5�9�8�3�6�8�9�6� �_�T�o�c�3�6�2�9�6�4�8�6�8� �_�T�o�c�3�6�5�4�6�4�6�3�5��_�T�h�e�_�t�y�p�e�_�a�t�t�r�i�b�u�t�e� �_�T�o�c�2�3�0�4�3�3�1�8�3� �_�T�o�c�3�5�6�5�7�7�8�8�4� �_�T�o�c�3�5�6�9�1�0�0�9�9� �_�T�o�c�3�5�7�1�6�8�3�1�8� �_�T�o�c�3�5�9�1�4�7�2�2�5� �_�T�o�c�3�5�9�4�1�6�8�2�0� �_�T�o�c�3�5�9�8�6�2�4�5�1� �_�T�o�c�3�5�9�8�3�6�8�9�7� �_�T�o�c�3�6�2�9�6�4�8�6�9� �_�T�o�c�3�6�5�4�6�4�6�3�6� �_�T�o�c�2�3�0�4�3�3�1�8�4� �_�T�o�c�3�5�6�5�7�7�8�8�5� �_�T�o�c�3�5�6�9�1�0�1�0�0� �_�T�o�c�3�5�7�1�6�8�3�1�9� �_�T�o�c�3�5�9�1�4�7�2�2�6� �_�T�o�c�3�5�9�4�1�6�8�2�1� �_�T�o�c�3�5�9�8�6�2�4�5�2� �_�T�o�c�3�5�9�8�3�6�8�9�8� �_�T�o�c�3�6�2�9�6�4�8�7�0� �_�T�o�c�3�6�5�4�6�4�6�3�7� �_�T�o�c�2�3�0�4�3�3�1�8�5� �_�T�o�c�3�5�6�5�7�7�8�8�6� �_�T�o�c�3�5�6�9�1�0�1�0�1� �_�T�o�c�3�5�7�1�6�8�3�2�0� �_�T�o�c�3�5�9�1�4�7�2�2�7� �_�T�o�c�3�5�9�4�1�6�8�2�2� �_�T�o�c�3�5�9�8�6�2�4�5�3� �_�T�o�c�3�5�9�8�3�6�8�9�9� �_�T�o�c�3�6�2�9�6�4�8�7�1� �_�T�o�c�3�6�5�4�6�4�6�3�8��_�P�r�i�m�i�t�i�v�e�_�V�a�l�u�e�s� �_�T�o�c�2�3�0�4�3�3�1�8�6� �_�T�o�c�3�5�6�5�7�7�8�8�7� �_�T�o�c�3�5�6�9�1�0�1�0�2� �_�T�o�c�3�5�7�1�6�8�3�2�1� �_�T�o�c�3�5�9�1�4�7�2�2�8� �_�T�o�c�3�5�9�4�1�6�8�2�3� �_�T�o�c�3�5�9�8�6�2�4�5�4� �_�T�o�c�3�5�9�8�3�6�9�0�0� �_�T�o�c�3�6�2�9�6�4�8�7�2� �_�T�o�c�3�6�5�4�6�4�6�3�9��_�C�o�l�l�e�c�t�i�o�n�_�V�a�l�u�e�s�_�1��_�C�o�l�l�e�c�t�i�o�n�_�V�a�l�u�e� �_�T�o�c�2�3�0�4�3�3�1�8�7� �_�T�o�c�3�5�6�5�7�7�8�8�8� �_�T�o�c�3�5�6�9�1�0�1�0�3� �_�T�o�c�3�5�7�1�6�8�3�2�2� �_�T�o�c�3�5�9�1�4�7�2�2�9� �_�T�o�c�3�5�9�4�1�6�8�2�4� �_�T�o�c�3�5�9�8�6�2�4�5�5� �_�T�o�c�3�5�9�8�3�6�9�0�1� �_�T�o�c�3�6�2�9�6�4�8�7�3� �_�T�o�c�3�6�5�4�6�4�6�4�0��_�S�t�r�u�c�t�u�r�e�_�A�n�n�o�t�a�t�i�o�n�s� �_�T�o�c�2�3�0�4�3�3�1�8�8� �_�T�o�c�3�5�6�5�7�7�8�8�9� �_�T�o�c�3�5�6�9�1�0�1�0�4� �_�T�o�c�3�5�7�1�6�8�3�2�3� �_�T�o�c�3�5�9�1�4�7�2�3�0� �_�T�o�c�3�5�9�4�1�6�8�2�5� �_�T�o�c�3�5�9�8�6�2�4�5�6� �_�T�o�c�3�5�9�8�3�6�9�0�2� �_�T�o�c�3�6�2�9�6�4�8�7�4� �_�T�o�c�3�6�5�4�6�4�6�4�1��_�I�n�s�t�a�n�c�e�_�A�n�n�o�t�a�t�i�o�n�_�T�a�r�g�e�t�s� �_�T�o�c�2�3�0�4�3�3�1�8�9� �_�T�o�c�3�5�6�5�7�7�8�9�0� �_�T�o�c�3�5�6�9�1�0�1�0�5� �_�T�o�c�3�5�7�1�6�8�3�2�4� �_�T�o�c�3�5�9�1�4�7�2�3�1� �_�T�o�c�3�5�9�4�1�6�8�2�6� �_�T�o�c�3�5�9�8�6�2�4�5�7� �_�T�o�c�3�5�9�8�3�6�9�0�3� �_�T�o�c�3�6�2�9�6�4�8�7�5� �_�T�o�c�3�6�5�4�6�4�6�4�2��_�A�n�n�o�t�a�t�i�n�g�_�a�_�f�e�e�d� �_�T�o�c�2�3�0�4�3�3�1�9�0� �_�T�o�c�3�5�6�5�7�7�8�9�1� �_�T�o�c�3�5�6�9�1�0�1�0�6� �_�T�o�c�3�5�7�1�6�8�3�2�5� �_�T�o�c�3�5�9�1�4�7�2�3�2� �_�T�o�c�3�5�9�4�1�6�8�2�7� �_�T�o�c�3�5�9�8�6�2�4�5�8� �_�T�o�c�3�5�9�8�3�6�9�0�4� �_�T�o�c�3�6�2�9�6�4�8�7�6� �_�T�o�c�3�6�5�4�6�4�6�4�3��_�A�n�n�o�t�a�t�i�n�g�_�a�n�_�e�n�t�r�y� �_�T�o�c�2�3�0�4�3�3�1�9�1� �_�T�o�c�3�5�6�5�7�7�8�9�2� �_�T�o�c�3�5�6�9�1�0�1�0�7� �_�T�o�c�3�5�7�1�6�8�3�2�6� �_�T�o�c�3�5�9�1�4�7�2�3�3� �_�T�o�c�3�5�9�4�1�6�8�2�8� �_�T�o�c�3�5�9�8�6�2�4�5�9� �_�T�o�c�3�5�9�8�3�6�9�0�5� �_�T�o�c�3�6�2�9�6�4�8�7�7� �_�T�o�c�3�6�5�4�6�4�6�4�4� �_�T�o�c�3�5�9�4�1�6�8�2�9� �_�T�o�c�3�5�9�8�6�2�4�6�0� �_�T�o�c�3�5�9�8�3�6�9�0�6� �_�T�o�c�3�6�2�9�6�4�8�7�8� �_�T�o�c�2�3�0�4�3�3�1�9�2� �_�T�o�c�3�5�6�5�7�7�8�9�3� �_�T�o�c�3�5�6�9�1�0�1�0�8� �_�T�o�c�3�5�7�1�6�8�3�2�7� �_�T�o�c�3�5�9�1�4�7�2�3�4� �_�T�o�c�3�6�5�4�6�4�6�4�5� �_�T�o�c�3�5�9�4�1�6�8�3�0� �_�T�o�c�3�5�9�8�6�2�4�6�1� �_�T�o�c�3�5�9�8�3�6�9�0�7� �_�T�o�c�3�6�2�9�6�4�8�7�9� �_�T�o�c�3�6�5�4�6�4�6�4�6� �_�T�o�c�2�3�0�4�3�3�1�9�3� �_�T�o�c�3�5�6�5�7�7�8�9�4� �_�T�o�c�3�5�6�9�1�0�1�0�9� �_�T�o�c�3�5�7�1�6�8�3�2�8� �_�T�o�c�3�5�9�1�4�7�2�3�5� �_�T�o�c�3�5�9�4�1�6�8�3�1� �_�T�o�c�3�5�9�8�6�2�4�6�2� �_�T�o�c�3�5�9�8�3�6�9�0�8� �_�T�o�c�3�6�2�9�6�4�8�8�0� �_�T�o�c�3�6�5�4�6�4�6�4�7� �_�T�o�c�2�3�0�4�3�3�1�9�4� �_�T�o�c�3�5�6�5�7�7�8�9�5� �_�T�o�c�3�5�6�9�1�0�1�1�0� �_�T�o�c�3�5�7�1�6�8�3�2�9� �_�T�o�c�3�5�9�1�4�7�2�3�6� �_�T�o�c�3�5�9�4�1�6�8�3�2� �_�T�o�c�3�5�9�8�6�2�4�6�3� �_�T�o�c�3�5�9�8�3�6�9�0�9� �_�T�o�c�3�6�2�9�6�4�8�8�1� �_�T�o�c�3�6�5�4�6�4�6�4�8��_�A�n�n�o�t�a�t�i�n�g�_�a�_�f�u�n�c�t�i�o�n� �_�T�o�c�2�3�0�4�3�3�1�9�5� �_�T�o�c�3�5�6�5�7�7�8�9�6� �_�T�o�c�3�5�6�9�1�0�1�1�1� �_�T�o�c�3�5�7�1�6�8�3�3�0� �_�T�o�c�3�5�9�1�4�7�2�3�7� �_�T�o�c�3�5�9�4�1�6�8�3�3� �_�T�o�c�3�5�9�8�6�2�4�6�4� �_�T�o�c�3�5�9�8�3�6�9�1�0� �_�T�o�c�3�6�2�9�6�4�8�8�2� �_�T�o�c�3�6�5�4�6�4�6�4�9��_�E�r�r�o�r� �_�T�o�c�3�5�9�4�1�6�8�3�4� �_�T�o�c�3�5�9�8�6�2�4�6�5� �_�T�o�c�3�5�9�8�3�6�9�1�1� �_�T�o�c�3�6�2�9�6�4�8�8�3� �_�T�o�c�2�3�0�4�3�3�1�9�6� �_�T�o�c�3�5�6�5�7�7�8�9�7� �_�T�o�c�3�5�6�9�1�0�1�1�2� �_�T�o�c�3�5�7�1�6�8�3�3�1� �_�T�o�c�3�5�9�1�4�7�2�3�8� �_�T�o�c�3�6�5�4�6�4�6�5�0� �_�T�o�c�3�5�9�4�1�6�8�3�5� �_�T�o�c�3�5�9�8�6�2�4�6�6� �_�T�o�c�3�5�9�8�3�6�9�1�2� �_�T�o�c�3�6�2�9�6�4�8�8�4� �_�T�o�c�3�6�5�4�6�4�6�5�1��_�E�r�r�o�r�s�_�a�s�_�X�M�L��_�E�r�r�o�r�_�R�e�p�o�n�s�e� �_�T�o�c�2�3�0�4�3�3�1�9�7� �_�T�o�c�3�5�6�5�7�7�8�9�8� �_�T�o�c�3�5�6�9�1�0�1�1�3� �_�T�o�c�3�5�7�1�6�8�3�3�2� �_�T�o�c�3�5�9�1�4�7�2�3�9� �_�T�o�c�3�5�9�4�1�6�8�3�6� �_�T�o�c�3�5�9�8�6�2�4�6�7� �_�T�o�c�3�5�9�8�3�6�9�1�3� �_�T�o�c�3�6�2�9�6�4�8�8�5� �_�T�o�c�3�6�5�4�6�4�6�5�2��_�T�h�e�_�m�e�t�a�d�a�t�a�:�e�r�r�o�r�_�E�l�e�m�e�n�t� �_�T�o�c�2�3�0�4�3�3�1�9�8� �_�T�o�c�3�5�6�5�7�7�8�9�9� �_�T�o�c�3�5�6�9�1�0�1�1�4� �_�T�o�c�3�5�7�1�6�8�3�3�3� �_�T�o�c�3�5�9�1�4�7�2�4�0� �_�T�o�c�3�5�9�4�1�6�8�3�7� �_�T�o�c�3�5�9�8�6�2�4�6�8� �_�T�o�c�3�5�9�8�3�6�9�1�4� �_�T�o�c�3�6�2�9�6�4�8�8�6� �_�T�o�c�3�6�5�4�6�4�6�5�3��_�T�h�e�_�m�e�t�a�d�a�t�a�:�c�o�d�e�_�E�l�e�m�e�n�t� �_�T�o�c�2�3�0�4�3�3�1�9�9� �_�T�o�c�3�5�6�5�7�7�9�0�0� �_�T�o�c�3�5�6�9�1�0�1�1�5� �_�T�o�c�3�5�7�1�6�8�3�3�4� �_�T�o�c�3�5�9�1�4�7�2�4�1� �_�T�o�c�3�5�9�4�1�6�8�3�8� �_�T�o�c�3�5�9�8�6�2�4�6�9� �_�T�o�c�3�5�9�8�3�6�9�1�5� �_�T�o�c�3�6�2�9�6�4�8�8�7� �_�T�o�c�3�6�5�4�6�4�6�5�4� �m�e�t�a�d�a�t�a�C�o�d�e��_�T�h�e�_�m�e�t�a�d�a�t�a�:�m�e�s�s�a�g�e�_�E�l�e�m�e�n�t� �_�T�o�c�2�3�0�4�3�3�2�0�0� �_�T�o�c�3�5�6�5�7�7�9�0�1� �_�T�o�c�3�5�6�9�1�0�1�1�6� �_�T�o�c�3�5�7�1�6�8�3�3�5� �_�T�o�c�3�5�9�1�4�7�2�4�2� �_�T�o�c�3�5�9�4�1�6�8�3�9� �_�T�o�c�3�5�9�8�6�2�4�7�0� �_�T�o�c�3�5�9�8�3�6�9�1�6� �_�T�o�c�3�6�2�9�6�4�8�8�8� �_�T�o�c�3�6�5�4�6�4�6�5�5��m�e�t�a�d�a�t�a�M�e�s�s�a�g�e� �_�T�o�c�2�3�0�4�3�3�2�0�1� �_�T�o�c�3�5�6�5�7�7�9�0�2� �_�T�o�c�3�5�6�9�1�0�1�1�7� �_�T�o�c�3�5�7�1�6�8�3�3�6� �_�T�o�c�3�5�9�1�4�7�2�4�3� �_�T�o�c�3�5�9�4�1�6�8�4�0� �_�T�o�c�3�5�9�8�6�2�4�7�1� �_�T�o�c�3�5�9�8�3�6�9�1�7� �_�T�o�c�3�6�2�9�6�4�8�8�9� �_�T�o�c�3�6�5�4�6�4�6�5�6� �_�T�o�c�2�3�0�4�3�3�2�0�2� �_�T�o�c�3�5�6�5�7�7�9�0�3� �_�T�o�c�3�5�6�9�1�0�1�1�8� �_�T�o�c�3�5�7�1�6�8�3�3�7� �_�T�o�c�3�5�9�1�4�7�2�4�4� �_�T�o�c�3�5�9�4�1�6�8�4�1� �_�T�o�c�3�5�9�8�6�2�4�7�2� �_�T�o�c�3�5�9�8�3�6�9�1�8� �_�T�o�c�3�6�2�9�6�4�8�9�0� �_�T�o�c�3�6�5�4�6�4�6�5�7� �_�T�o�c�2�3�0�4�3�3�2�0�3� �_�T�o�c�3�5�6�5�7�7�9�0�4� �_�T�o�c�3�5�6�9�1�0�1�1�9� �_�T�o�c�3�5�7�1�6�8�3�3�8� �_�T�o�c�3�5�9�1�4�7�2�4�5� �_�T�o�c�3�5�9�4�1�6�8�4�2� �_�T�o�c�3�5�9�8�6�2�4�7�3� �_�T�o�c�3�5�9�8�3�6�9�1�9� �_�T�o�c�3�6�2�9�6�4�8�9�1� �_�T�o�c�3�6�5�4�6�4�6�5�8� �_�T�o�c�2�3�0�4�3�3�2�0�4� �_�T�o�c�3�5�6�5�7�7�9�0�5� �_�T�o�c�3�5�6�9�1�0�1�2�0� �_�T�o�c�3�5�7�1�6�8�3�3�9� �_�T�o�c�3�5�9�1�4�7�2�4�6� �_�T�o�c�3�5�9�4�1�6�8�4�3� �_�T�o�c�3�5�9�8�6�2�4�7�4� �_�T�o�c�3�5�9�8�3�6�9�2�0� �_�T�o�c�3�6�2�9�6�4�8�9�2� �_�T�o�c�3�6�5�4�6�4�6�5�9� �_�T�o�c�2�3�0�4�3�3�2�0�5� �_�T�o�c�3�5�6�5�7�7�9�0�6� �_�T�o�c�3�5�6�9�1�0�1�2�1� �_�T�o�c�3�5�7�1�6�8�3�4�0� �_�T�o�c�3�5�9�1�4�7�2�4�7� �_�T�o�c�3�5�9�4�1�6�8�4�4� �_�T�o�c�3�5�9�8�6�2�4�7�5� �_�T�o�c�3�5�9�8�3�6�9�2�1� �_�T�o�c�3�6�2�9�6�4�8�9�3� �_�T�o�c�3�6�5�4�6�4�6�6�0� �_�T�o�c�2�3�0�4�3�3�2�0�6� �_�T�o�c�3�5�6�5�7�7�9�0�7� �_�T�o�c�3�5�6�9�1�0�1�2�2� �_�T�o�c�3�5�7�1�6�8�3�4�1� �_�T�o�c�3�5�9�1�4�7�2�4�8� �_�T�o�c�3�5�9�4�1�6�8�4�5� �_�T�o�c�3�5�9�8�6�2�4�7�6� �_�T�o�c�3�5�9�8�3�6�9�2�2� �_�T�o�c�3�6�2�9�6�4�8�9�4� �_�T�o�c�3�6�5�4�6�4�6�6�1� �_�T�o�c�2�3�0�4�3�3�2�0�7� �_�T�o�c�3�5�6�5�7�7�9�0�8� �_�T�o�c�3�5�6�9�1�0�1�2�3� �_�T�o�c�3�5�7�1�6�8�3�4�2� �_�T�o�c�3�5�9�1�4�7�2�4�9� �_�T�o�c�3�5�9�4�1�6�8�4�6� �_�T�o�c�3�5�9�8�6�2�4�7�7� �_�T�o�c�3�5�9�8�3�6�9�2�3� �_�T�o�c�3�6�2�9�6�4�8�9�5� �_�T�o�c�3�6�5�4�6�4�6�6�2� �_�T�o�c�2�3�0�4�3�3�2�0�8� �_�T�o�c�3�5�6�5�7�7�9�0�9� �_�R�e�f�3�5�6�8�2�9�5�9�1� �_�T�o�c�3�5�6�9�1�0�1�2�4� �_�T�o�c�3�5�7�1�6�8�3�4�3� �_�T�o�c�3�5�9�1�4�7�2�5�0� �_�T�o�c�3�5�9�4�1�6�8�4�7� �_�T�o�c�3�5�9�8�6�2�4�7�8� �_�T�o�c�3�5�9�8�3�6�9�2�4� �_�T�o�c�3�6�2�9�6�4�8�9�6� �_�T�o�c�3�6�5�4�6�4�6�6�3� �_�T�o�c�2�3�0�4�3�3�2�0�9� �_�T�o�c�3�5�6�5�7�7�9�1�0� �_�T�o�c�3�5�6�9�1�0�1�2�5� �_�T�o�c�3�5�7�1�6�8�3�4�4� �_�T�o�c�3�5�9�1�4�7�2�5�1� �_�T�o�c�3�5�9�4�1�6�8�4�8� �_�T�o�c�3�5�9�8�6�2�4�7�9� �_�T�o�c�3�5�9�8�3�6�9�2�5� �_�T�o�c�3�6�2�9�6�4�8�9�7� �_�T�o�c�3�6�5�4�6�4�6�6�4� �_�T�o�c�2�3�0�4�3�3�2�1�0� �_�T�o�c�3�5�6�5�7�7�9�1�1� �_�T�o�c�3�5�6�9�1�0�1�2�6� �_�T�o�c�3�5�7�1�6�8�3�4�5� �_�T�o�c�3�5�9�1�4�7�2�5�2� �_�T�o�c�3�5�9�4�1�6�8�4�9� �_�T�o�c�3�5�9�8�6�2�4�8�0� �_�T�o�c�3�5�9�8�3�6�9�2�6� �_�T�o�c�3�6�2�9�6�4�8�9�8� �_�T�o�c�3�6�5�4�6�4�6�6�5� �_�T�o�c�2�3�0�4�3�3�2�1�1� �_�T�o�c�3�5�6�5�7�7�9�1�2� �_�T�o�c�3�5�6�9�1�0�1�2�7� �_�T�o�c�3�5�7�1�6�8�3�4�6� �_�T�o�c�3�5�9�1�4�7�2�5�3� �_�T�o�c�3�5�9�4�1�6�8�5�0� �_�T�o�c�3�5�9�8�6�2�4�8�1� �_�T�o�c�3�5�9�8�3�6�9�2�7� �_�T�o�c�3�6�2�9�6�4�8�9�9� �_�T�o�c�3�6�5�4�6�4�6�6�6� �_�T�o�c�2�3�0�4�3�3�2�1�2� �_�T�o�c�3�5�6�5�7�7�9�1�3� �_�T�o�c�3�5�6�9�1�0�1�2�8� �_�T�o�c�3�5�7�1�6�8�3�4�7� �_�T�o�c�3�5�9�1�4�7�2�5�4� �_�T�o�c�3�5�9�4�1�6�8�5�1� �_�T�o�c�3�5�9�8�6�2�4�8�2� �_�T�o�c�3�5�9�8�3�6�9�2�8� �_�T�o�c�3�6�2�9�6�4�9�0�0� �_�T�o�c�3�6�5�4�6�4�6�6�7�z��w ��q���a���a���a���a���a���a���a���a���a���a��h��h��h��h��h��h��h��h��h��h���h���h���h���h���h���h���h���h���h���h��:i��j���j�� k��nk���k��=l���l���m���m���n��{o��>p��q���q��{r��{r��{r��{r��{r��{r��{r��{r��{r��{r��{r��{r��bt��bt��bt��bt��bt��bt��bt��zy��zy��zy��zy��zy��zy��zy��zy��zy��zy���y���y���y���y���y���y���y���y���y���y���y���z���z���z���z���z���z���z���z���z���z���z��<|��<|��<|��<|��<|��<|��<|��<|��<|��<|��<|��{}��{}��{}��{}��{}��{}��{}��{}��{}��{}��{}��{}��{}���~���~���~���~���~���~���~���~���~���~���~���~��F���F���F���F���F���F���F���F���F���F���F�����������������������������������������������������������������������s���s���s���s���s���s�������������������������������������������j���j���j���j���j���j���j���j���j���j���������������������������������l���l���l���l���l���l���l���l���l���l���l���l�������������������������������������������]���]���]���]���]���]���]���]���]���]������������������ ��� ��� ��� ��� ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������3���3���3���3���3���3���3���3���3���3���h���h���h���h���h���h���h���h���h���h�������������������������������������������������������������������������������������������F���F���F���F���F���F���F���F���F���F���������������������������������������������������������������������������������������0���0���0���0���0���0���0���0���0���0�������������������������������������������������������������������������ԩ��ԩ��ԩ��ԩ��ԩ��ԩ��ԩ��ԩ��ԩ��ԩ��ԩ��4���4���4���4���4���4���4���4���4���4���ګ��ګ��ګ��ګ��ګ��ګ��ګ��ګ��ګ��ګ�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Ǻ��Ǻ��Ǻ��Ǻ��Ǻ��Ǻ��Ǻ��Ǻ��Ǻ��Ǻ�� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ���6���6���6���6���6���6���6���6���6���6���������������������������������������������������������������������������������������������������������������������������������� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ������s���s���s���s���s���s���s���s���s���s���s���������������������������������������������������)���)���)���)���)���)���)���)���)���)���)�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������X���X���X���X���X���X���X���X���X���X���X���X���������������������������������������������������\���\���\���\���\���\���\���\���\���|���|���|���|���|���|���|���|���|�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������k���k���k���k���k���k���k���k���k���������������������������������������<���<���<���<���<���<���<���<���<�������������������������������������������������������������������������������������������������������������������������������L�L�L�L�L�L�L�L�L�L� � � � � � � � � � � � � � � � � � � � � �& �d�d�d�d�d�d�d�d�d�d���������������������O�O�O�O�O�O�O�O�O�O�����������������������������������������@�@�@�@�@�@�@�@�@�@�@�0�0�0�0�0�0�0�0�0�0�>�>�>�>�>�>�>�>�>�>���������������������5�5�5�5�5�5�5�5�5�5�A�A�A�A�A�A�A�A�A�A���������������������v�v�v�v�v�v�v�v�v�v�v�r�r�r�r�r�r�r�r�r�r�r�r�r�����������������������������������������@!�@!�@!�@!�@!�@!�@!�@!�@!��"��"��"��"��"��"��"��"��"��"�p#�p#�p#�p#�p#�p#�p#�p#�p#�Y$�Y$�Y$�Y$�Y$�Y$�Y$�Y$�Y$�Y$�Y$��(��(��(��(��(��(��(��(��(��(�f*�f*�f*�f*�f*�f*�f*�f*�f*��+��+��+��+��+�-�-�-�-�-��.��.��.��.��.��.��.��.��.��.��.��.�=/�=/�=/�=/�=/�=/�=/�=/�=/�=/�=/�00�00�00�00�00�00�00�00�00�00�00��1��1��1��1��1��1��1��1��1��1��2��2��2��2��2��2��2��2��2��2�"3�"3�"3�"3�"3�"3�"3�"3�"3�"3�"3�"3�"3��5��5��5��5��5��5��5��5��5��5��5��5��5��7��7��7��7��7��7�B9�B9�B9�B9�B9�B9�B9�B9��9��;��=��=��=��=��=��=��=��=��=��=��=��=��?��?��?��?��?��?��?��?��?�tA�tA�tA�tA�tA�tA�tA��A��A��A��A��A��A��A��A��A��A��C��C��C��C��C��C�[D�[D�[D�[D�[D�[D�[D�[D�[D�[D�[D�[D�5V�5V�5V�5V�5V�5V�5V�5V�5V�5V�5V�vZ�vZ�vZ�vZ�vZ�vZ�vZ�vZ�vZ�vZ�vZ��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z�D\�D\�D\�D\�D\�D\�D\�D\�D\�>]�>]�>]�>]�>]�>]�>]�>]�>]��^��^��^��^��^��^��^��^��^��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_�Fa�Fa�Fa�Fa�Fa�Fa�Fa�Fa�Fa�b�b�b�b�b�b�b�b�b��b��b��b��b��b��b��b��b��b�Kc�Kc�Kc�Kc�Kc�Kc�Kc�Kc�Kc�Kc�Kc�Kc�Kc�Kc�Xc�Xc�Xc�Xc�Xc�Xc�Xc�Xc�Xc�Xc�Xc�g�g�g�g�g�g�g�g�g��g��g��g��g��g��g��g��g��g�nh�nh�nh�nh�nh�nh�nh�nh�nh�i�i�i�i�i�i�i�i�i�i�i�i�il�il�il�il�il�il�il�il�il�il�il��m��m��m��m��m��m��m��m��m��m��p��p��p��p��p��p��p��p��p��p��p�r�r�r�r�r�r�r�r�r�r��r��r��r��r��r��r��r��r��r��r��r�v�v�v�v�v�v�v�v�v�v�v�Qw�Qw�Qw�Qw�Qw�Qw�Qw�Qw�Qw�Qw�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�Xy�Xy�Xy�Xy�Xy�Xy�Xy�Xy�Xy�Xy�2z�2z�2z�2z�2z�2z�2z�2z�2z�2z�~�~�~�~�~�~�~�~�~�~�~�~�n��n��n��n��n��n��n��n��n��n��n�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#��,��,��,��,��,��,��,��,��,��,��,��w��w��w��w��w��w��w��w��w��w��w��4��4��4��4��4��4��4��4��4��4��4���������������������������������������������������������c��c��c��c��c��c��c��c��c��c��������������������������������m��m��m��m��m��m��m��m��m��m��^��^��^��^��^��^��^��^��^��^��^��V��V��V��V��V��V��V��V��V��V��V��r��r��r��r��r��������������������������������������%��%��%��%��%��%��%��%��%��%��%�������������������������������������ާ�ާ�ާ�ާ�ާ�ާ�ާ�ާ�ާ�ާ�ާ���0��0��0��0��0��0��0��0��0��0����������������������������������������������������������������������������������۫�۫�۫�۫�۫�۫�۫�۫�۫�۫������������������������������������������������������������������������������������)��)��)��)��)��)��)��)��)��)��&��&��&��&��&��&��&��&��&��&��S��S��S��S��S��S��S��S��S��S��������������������������������������@��@��@������������������ ��� ��� ��� ��� ��������������������������������������������������������� ���!���"���#���$���%���&���'���(���)���*���+���,���-���.���/���0���1���2���3���4���5���6���7���9���:���;���8���<���=���>���?���@���A���B���C���D���E���F���G���H���I���J���K���L���M���N���O���P���Q���R���S���T���U���V���W���X���Y���Z���[���\���]���^���_���`���b���a���c���d���e���f���g���h���i���j���k���l���m���n���o���p���q���r���s���t���u���v���w���x���z���y���{���|���}���~��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �� �� �� �� �������������������������������������� ��!��"��#��$��%��&��'��(��)��*��+��,��-��.��/��0��1��2��3��4��5��6��7��8��9��:��;��<��=��>��?��@��A��B��C��D��E��F��G��H��I��J��K��L��M��N��O��P��Q��R��S��T��U��V��W��X��Y��Z��[��\��]��^��_��`��a��b��c��d��e��f��g��h��i��j��k��l��m��n��o��p��q��r��s��t��u��v��w��x��y��z��{��|��}��~����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �� �� �� �� �������������������������������������� ��!��"��#��$��%��&��'��(��)��*��+��,��-��.��/��0��1��2��3��4��5��6��7��8��9��:��;��<��=��>��?��@��A��B��C��D��E��F��G��H��I��J��K��L��M��N��O��P��Q��R��S��T��U��V��W��X��Y��Z��[��\��]��^��_��`��a��b��c��d��e��f��g��h��i��j��k��l��m��n��o��p��q��r��s��t��u��v��w��x��y��z��{��|��}��~����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �� �� �� �� �������������������������������������� ��!��"��#��$��%��&��'��(��)��*��+��,��-��.��/��0��1��2��3��4��5��6��7��8��9��:��;��<��=��>��?��@��A��B��C��D��E��F��G��H��I��J��K��L��M��N��O��P��Q��R��S��T��U��V��W��X��Y��Z��[��\��]��^��_��`��a��b��c��d��e��f��g��h��i��j��k��l��m��n��o��p��q��r��s��t��u��v��w��x��y��z��{��|��}��~����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �� �� �� �� �������������������������������������� ��!��"��#��$��%��&��'��(��)��*��+��,��-��.��/��0��1��2��3��4��5��6��7��8��9��:��;��<��=��>��?��E��F��G��H��@��A��B��C��D��I��J��K��L��M��N��O��P��Q��R��S��T��U��V��W��X��Y��Z��[��\��]��^��_��`��a��b��c��d��e��f��g��h��i��j��k��l��m��n��o��p��q��r��s��t��u��v��w��x��y��z��{��|��}��~����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �� �� �� �� �������������������������������������� ��!��"��#��$��%��&��'��(��)��*��+��,��-��.��/��0��1��2��3��4��5��6��7��8��9��:��;��<��=��>��?��@��A��B��C��D��E��F��G��H��I��J��K��L��M��N��O��P��Q��R��S��T��U��V��W��X��Y��Z��[��\��]��^��_��`��a��b��c��d��e��f��g��h��i��j��k��l��m��n��o��p��q��r��s��t��u��v��w��x��y��z��{��|��}��~����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �� �� �� �� �������������������������������������� ��!��"��#��$��%��&��'��(��)��*��+��,��-��.��/��0��1��2��3��4��5��6��7��8��9��:��;��<��=��>��?��@��A��B��C��D��E��F��G��H��I��J��K��L��M��N��O��P��Q��R��S��T��U��V��W��X��Y��Z��[��\��]��^��_��`��a��b��c��d��e��f��g��h��i��j��k��l��m��n��o��p��q��r��s��t��u��v��w��x��y��z��{��|��}��~����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �� �� �� �� �������������������������������������� ��!��"��#��$��%��&��'��(��)��*��+��,��-��.��/��0��1��2��3��4��5��6��7��8��9��:��;��<��=��>��?��@��A��B��C��D��E��F��G��H��I��J��K��L��M��N��O��P��Q��R��S��T��U��V��W��X��Y��Z��[��\��]��^��_��`��a��b��c��d��e��f��g��h��i��j��k��l��m��n��o��p��q��r��{��x ��r���a���a���a���a���a���a���a���a���a���a��h��h��h��h��h��h��h��h��h��h���h���h���h���h���h���h���h���h���h���h��?i��&j���j��k��~k���k��Ll���l�� m���m���n���o��Gp�� q���q���r���r���r���r���r���r���r���r���r��tt��tt��tt��tt��tt��tt��tt��tt��tt��tt���y���y���y���y���y���y���y���y���y���y���y���y���y���y���y���y���y���y���y���y���y��{��{��{��{��{��{��{��{��{��{��{��<|��J|��J|��J|��J|��J|��J|��J|��J|��J|��J|��{}��{}���}���}���}���}���}���}���}���}���}���}���}���~���~���~���~���~���~���~���~���~���~���~���~��n���n���n���n���n���n���n���n���n���n���o���������������������������������������������������������������������������������������������������������������������������������������v���v���v���v���v���v���v���v���v���v���������������������������������l���|���|���|���|���|���|���|���|���|���|���|�������������������������������������������w���w���w���w���w��� ��� ��� ��� ��� ���"���"���"���"���"���"���"���"���"���"���"�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������J���J���J���J���J���J���J���J���J���J���z���z���z���z���z���z���z���z���z���z�������������������������������������������������������������������������������������������]���]���]���]���]���]���]���]���]���]���������������������������������������������������������������������������������������>���>���>���>���>���>���>���>���>���>���ק��ק��ק��ק��ק��ק��ק��ק��ק��ק��������������������������������ԩ������������������������������������������B���B���B���B���B���B���B���B���B���B�����������������������������������������������������������������������������A���������������������������+���+���+���+���+���+���+���+���+���+���+���������������������������������������-���-���-���-���-���4���4���4���4���4���4��������������������������������� ���������������������������������K���K���K���K���K���K���K���K���K���K��������������������������������������������������������(���(���(���(���(���(���(���(���(���(������� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ������������������������������������ ���(���(���(���(���(���(���(���(���(���(���(���s�������������������������������������������������������������������������������������������)���@���@���@���@���@���@���@���@���@���@�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������X���X���g���g���g���g���g���g���g���g���g���g��������������������������������������������������i���i���i���i���i���i���i���i���i��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������x���x���x���x���x���x���x���x���x���������������������������������������J���J���J���J���J���J���J���J���J�������������������������������������������������������������������������������������������������������������������������������Z�Z�Z�Z�Z�Z�Z�Z�Z�Z� � � � � � � � � � � �/ �/ �/ �/ �/ �/ �/ �/ �/ �/ �/ �q�q�q�q�q�q�q�q�q�q���������������������]�]�]�]�]�]�]�]�]�]�����������������������������������������@�L�L�L�L�L�L�L�L�L�L�A�A�A�A�A�A�A�A�A�A�K�K�K�K�K�K�K�K�K�K���������������������I�I�I�I�I�I�I�I�I�I�N�N�N�N�N�N�N�N�N�N�����������v���������������������r�r�r��������������������������������� � � � � � � � � �`!�`!�`!�`!�`!�`!�`!�`!�`!��"��"��"��"��"��"��"��"��"��"��#��#��#��#��#��#��#��#��#�Y$�t$�t$�t$�t$�t$�t$�t$�t$�t$�t$��(��(��(��(��(��(��(��(��(��(�y*��*��*��*��*��+��+��+��+��+�-�-�-�-�-�-�-�-�-��.��.��.��.��.��.��.��.��.��.��.��.�=/�N/�N/�N/�N/�N/�N/�N/�N/�N/�N/�00�C0�C0�C0�C0�C0�J0�J0�J0�J0�J0��1��1��1��1��1��1��1��1��1��1��2��2��2��2��2��2��2��2��2��2�"3�"3�"3�83�83�83�83�83�83�83�83�83�83��5��5��5��5��5��5��5��5��5��5��5��5��5��7�B9�B9�O9�O9�O9�O9�O9�O9�O9�O9�O9�O9�P9��9��;��=��=� >� >� >� >� >� >� >� >� >� >��?��?��?��?��?�tA��A��A��A��A��A��A��A��A��A��A�B� B� B� B� B� B��C��C��C��C��C��C��C��C��C��C�[D�[D�iD�iD�iD�iD�iD�iD�iD�iD�iD�iD�5V�IV�IV�IV�IV�IV�IV�IV�IV�IV�IV�vZ��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z�Q\�Q\�Q\�Q\�Q\�Q\�Q\�Q\�Q\�L]�L]�L]�L]�L]�L]�L]�L]�L]��^��^��^��^��^��^��^��^��^��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_��_�Va�Va�Va�Va�Va�Va�Va�Va�Va�b�b�b�b�b�b�b�b�b��b��b��b��b��b��b��b��b��b�Kc�Kc�Kc�Kc�Wc�Wc�Wc�Wc�Wc�Wc�Wc�Wc�Wc�Wc�Xc�uc�uc�uc�uc�uc�uc�uc�uc�uc�uc�g�g�g�g�g�g�g�g�g��g��g��g��g��g��g��g��g��g�~h�~h�~h�~h�~h�~h�~h�~h�~h�i�i�'i�'i�'i�'i�'i�'i�'i�'i�'i�'i�il��l��l��l��l��l��l��l��l��l��l��m��m��m��m��m��m��m��m��m��m��p��p��p��p��p��p��p��p��p��p��p�+r�+r�+r�+r�+r�+r�+r�+r�+r�+r��r�s�s�s�s�s�s�s�s�s�s�v�0v�0v�0v�0v�0v�0v�0v�0v�0v�0v�cw�cw�cw�cw�cw�cw�cw�cw�cw�cw�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�gy�gy�gy�gy�gy�gy�gy�gy�gy�gy�Cz�Cz�Cz�Cz�Cz�Cz�Cz�Cz�Cz�Cz�~�%~�%~�%~�%~�%~�%~�%~�%~�%~�%~�%~�n���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#��,��<��<��<��<��<��<��<��<��<��<��w��������������������������������4��N��N��N��N��N��N��N��N��N��N���������������������������������������������������������s��s��s��s��s������������������������������������������������������������������������^��p��p��p��p��p��p��p��p��p��p��V��p��p��p��p��p��w��w��w��w��w��w��w��w��w��w��������������������������������������%��;��;��;��;��;��;��;��;��;��;���������������������������ާ����������������������������������G��G��G��G��G��G��G��G��G��G������������������������������������������������������������������������������������������������������������������������������������"��"��"��"��"��"��"��"��"��"�����������������������������������@��@��@��@��@��@��@��@��@��@��1��1��1��1��1��1��1��1��1��1��b��b��b��b��b��b��b��b��b��b�� �� �� �� �� �� �� �� �� �� ���������������4��9��O��U��������j ��{ ��� ��� ��� ��� ��w ��� ��� ��� ��� �� ��� ��� ��' ��, ������������������ ��%������������������������������������V��[��������B��G���������a���a���b���b���b���b���b��c��2c��7c���g���g���g���g��@i��Gi��Si��Zi��j�� j��'j��,j���j���j���j���j�� k��k��k��k��ok��tk��k���k���k���k���k���k���k���k��>l��Kl��Ml��Rl���l���l���l���l�� m��m���m��n���n���n���n���n��ep��ip���r���r���u���u��Lv��Qv���w���w���y���y��*{��1{��b{��i{���{��|��{}���}���}���}��c~��h~���~���~������/��4��������`���e���7���D���q���v����������� ������G���L�������Ă��3���;����������ք��������:���b���n��������������������������0���8���֊��ފ����������������t���|������������ ���}�������ޑ�����+���8�������������������ʒ��Ԓ������ ���)���.���G���O���t���������������ד��ۓ���������������������%���3���4���8���J���T���i���s���{�����������������������������������Ô��ߔ���������������������#���%���0���:���D���\���f���n���������������������������������������•��ɕ��Е��ڕ����������������������4���>���P���Z���b���{���������������������������ޖ������������D���Q���g���w���{���������������ݘ��������� ���������0���F���_���c���͙��ҙ�������������"���#���(������������������������������� �����������"���4�������Ӝ��@���M���f���p����������������E���]��������������������������.���<���=���A���C���M���S���]���y�������������������������������џ��՟��=���J���O���\�������à��Ѡ��ՠ��#���(���[���`���p���z���֡��������������� ��������������������������#���(���4���L�����������������������Σ��������P���]���b���o���ؤ��ۤ���������;���@���s���x���������������ץ��������� ����������������������Ǧ��٦�����%���:���>���C���U���n���r���ʧ��ק��ߧ�����������"���%���e���j���v����������������������� ���������+���D���N���\���f���ܩ��������������$���=���|�����������Ӫ��Ԫ��ت��������� ���������2���>���B���G���`���y���}������������ ���#���-���;���E���������J���O���s�������������������­��߭���������������*���-���?���P���f�����������B���E���^���b�������������������ׯ�����������0���3���P���U���������������������������0���5���m���������������������������������������±��ͱ��ϱ��߱��������������� ���1���H���Y���b���l���z�������������������������������˲��ֲ��ײ��ܲ���������������������"���-���.���;���O���^���h���w�������������������������2���6���g���s���|�������������������!���+���/���9���`���e���ӵ��ݵ��ߵ���������������� ���#���-���J���O���f���p���r���~�������������������۶�������������������������)���6���׷��ܷ����� ���$���4���~�������������2���B������&�����������Ѻ����� ������,���B���[���_���ɻ��λ���������� ���������������$���g���l���������7���>���ѽ��ؽ��>���K���O���T���q���~���������&���+�����������*���-���J���O���k���|�������������� ���(���-���`���z�����������������I���V���|���������������������"���%���y���}�������������������������J���T���n���s�����������W���`��������������(���-���9�������������� �����������.���6���C���M���Q���\������������������������������������������������������������ ���2���A���D���U���V���c���e���j���r����������������������������������������������� ���������.���/���<���N���_���b���r��������������������������������������������������������4���L���O���a���b���o��������������������������������������� ������������+���-���1���a���o��������������������������������������� ��� ������ ���-���/���=���C���L���S���Z���g���n���t���}������������������������������(���-���@�������������������b���g�������������������T���_���`���m���y�����������������������n���y���z�������������������������� ���#���0�������������������'���3���@�������������������8���F���G���T���q���~�����������B���N������ ���������Y���e���f���s���v��������������������������%���I���U����������������������������������������������� ���������"���+���0���;���<���I���V���e���o���~�����������[���h�����������/���?�����������H���X���v�����������������������������(���8���?���O���k���{�����������=���J��������������#�����������2���B���w�����������������������������h���u����������������!���2���;���K���T���_���n���y����������������������������������������������������������������(���1���8���A���J���V���_���k���s�����������������������;���D���I���L���i���n�������������������v���������������������������������������������f���i���o���r���^���a����������������������(���N���\���]���j���x������������������������������������������ ���?���L���{���������������X���e��������������������������d���t�����������*���3����������������%���*���.���:���H���L���������������������� ��� ���������'���u���x���}�������w���z���������������������������������r����������������������W���`������������������������������������#���Q���^���}�������������������������������������������������������#�'�H�W����������������?�N�b�e���������������M�P�m�r���������R�e�����������;�?��������*�=�������������������!�4�A�E�" �) �7 �? �i �r �� �� �� �� �S �\ �a �d �� �� �� �� �� �� �& �/ �� �� �� �� �� � �} �� �� �� �c�l�o�r������������� ���n�q�v�y�*�-�p�s��������������������������`�g�F�I�h�l���������������������%�8�A�`�i�y�|�������H�K�P�S���������=�I�a�m�����+�7�K�N�S�_�w�z����� ������`�e����������-�y������������������ �-�n�|�}���������������������7�<�Y�^�s�x�������������������@�N��������� � � �& �; �K �� �� �.!�3!�J!�`!�e!�s!��!��!��!��!�V"�["��"��"��"��"��"��"�#�#�z#��#��#��#�$�)$�9$�F$�}$��$� %�%�e%�s%��%��%��%��%��%��%��%��%��%� &�&�&�e&�s&�t&��&��&��&�'�'�#'�('�4'�A'�D'�U'�\'�l'�z'�'��'��'��'��'��'��'��'��'��'� (�(�(��(��(��(��(��(��(��(��(��(��(�)�#)�A)�Q)��)��)��)�*�!*�.*�p*��*��*��*��*��*��*�+��+��+��+��+��+��+��+� ,�#,�',��,��,��,��,� -�-�)-�6-�}.��.��.��.�)/�2/�E/�N/��/��/��/��/�0�%0�:0�J0�O0�X0�m0�}0��0��0�{1��1��1��1��1��1��1��1�2� 2�s2�x2��2��2��2��2��2��2�*3�83�=3�F3�]3�k3��4��4��4��4�5�5�55�G5�N5�\5�a5�o5�z5��5��5��5��5��5��5��5��5��5�6� 6�86�A6�a6�j6��6��6��7��7��7�8�8�&8��8��8��8��8�L9�O9�S9�\9�r9�{9��9��9��9��9� :�:�:�:�6:�::��:��:��:��:��:��:�;� ;�*;�.;��;��;��;��;�<�<��<��<��<��<��<��<��<� =�&=�*=�@>�E>�*?�6?�7?�E?�b?�g?��?��?�=@�B@�h@�v@��@��@��@��@�-A�9A�|A��A��A��A��A� B�B�B�ZB�jB��B��B��C��C�D�D��D��D�OH�_H�rH�{H��H��H��H��H��J��J��K��K��K��K��L��L��L��L��L��L��M�M�+M�0M�EM�JM�pM�xM��M��M��M��M��M��M�TN�bN�fN�tN�"O�%O�>O�BO�nO�|O��O��O��O�P� P�P�$P�/P�1P�AP�KP�^P�}P��P��P��P��P��P�NQ�[Q�`Q�pQ�sQ��Q�R�%R�(R�7R��R��R��R��R�S�(S�[S�`S��S��S��S��S��S��S��S��S��S�T� T�T�T� T�"T�+T�7T�BT�GT�RT�^T�mT�wT��T��T��T��T��T��T��T��T�U� U�U��U��U��U��U��U��U��V��V��Y��Y��Y��Y��Z��Z��Z�[��[��[��\�]��]��]�n^�s^��^��^��^��^�_�_��_��_�)`�6`�``�m`��a��a� c�c�`c�uc��c��c��c�d�'e�4e��e��e�f�f�pg�wg��h��h��i��i��j��j��j��j��j��j� k�k�Jk�Tk��k��k��k��k��k��k�]l�fl�ql��l��l��l�m� m�6m�@m��n��n��o��o��o��o� p�p�+p�Bp��s��s�bt�lt�wt��t��t��t�u�u�Zu�cu�nu�}u��u��u�v�v�!v�0v�Qv�`v��v��v��v��v� w�w�z��|��|����Ĉ�������D��`����������������D��F��'��)��U��V��������������������ɶ�ʶ�V��W������׸�ظ�_��`������ɺ�ʺ�;��<��������R��S��ݼ�߼�P��Q��Y��Z��b��c��k��l��t��u����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j ��� ��w ��� ��������������������'j��Qj��k��3k��Ml��cl���l���l��Hp���p�� q��uq����������E���T���{�������Ê��Պ��w���|�����������G���K���t���}������������������������(���3���N���T���~�������������������Ô����������������>���D���v�������������������������������� ���8���>���j���r����������������������������������������o���w���~�����������������������"�����������C���M�����������������1���<���W���]�������������������E���J���W���\���t���z���١�������� �����������<���E�������ǣ��X���]���j���o�����������ǥ��Х�� ��������������Ϧ��٦��K���U���ҧ��ק�����������������������!���+���`���f���������,���4���ª��ʪ���������!���)���O���W����������������?���E��� ����������������#���P���Y�������������������������d���n���߯�����������������������������m���v��������������������������$���1���f���l�������������������ϲ��ֲ���������&���-���S���^���г��Գ����� ���2���6���k���s�����������������%���+���3���9���׵��ݵ�������� ������,���4�����������ٺ����������� ������!���$���;���>���ս��ؽ��B���K���u���~���Ծ��־��������e���i�������������������� �����������N���T��� ���(���1���9���������������������������������H���U�������������������!���.���f���r�������������������S���a�����������������v���������������������C���G���V���Z���w���}����������������������(���5���@��������������������������X���_�����������r���y�������������� ���+���0����������;���@�������������������<���F���y���~���@���B������ ���]���e�������������������������������4���;���Z���e�������������������7���?�����������P���X�������������������E���J��������������#�����������:���B�������������������p���u����������;���D���X���_����������������������������������,���1���N���V���{�����������������������?���D���������������������������~�������������������������������#���(���R���\���������������������� ���-���1���d���i�������������������`���e������������������l���t���.���3����������H���L���m���q������������������������������'�������������������z���������������������[���`����������������������#���?���C���g���l���}���������������������������������������������������H�Q�`�e�����������G�N���������� ���(�-���������� �R�[���������;�?�s�w���������2�=�������������)�4�m �r �W �\ �� �� �� �� �� �� �* �/ � � �� �� �� �� �g�l���������������t�|������n�x��������������%�<�A�d�i�A�I�e�m�����W�_���2�A����� �)�v�|�����������H�N����� � � �& �R!�[!�m!�s!��"��"� #�#��#��#��#��#�#$�)$�%�%�%�$%��%��%��%��%�&�&�m&�s&��&��&�4'�='�\'�e'��'��'��'��'��(��(��(��(��(��(�)�#)��)��)�)*�.*�x*��*��*��*��+��+��+��+�-�-�1-�6-��.��.�-/�2/�I/�N/��/��/�B0�J0�S0�X0��1��1��1��1��2��2��2��2�23�83�A3�F3�5�5�V5�\5�~5��5��5��5��5��5�6� 6�e6�j6��6��6�!8�&8�v9�{9� :�:��:��:��:��:��;��;��<��<��<��<�2?�6?��?��?��@��@��@��@�5A�9A��A��A��A��A�B� B�B�B�D�D�0E�3E�WH�_H��J��J��L��L��M��M�N�N�*N�2N�\N�bN�yN�~N��N��N��N��N��N�O�DO�NO��O��O�P�P�SP�^P��P��P��P��P��P��P�Q�Q�Q�$Q�VQ�[Q�`Q�iQ��Q��Q��Q��Q��Q��Q�R�%R�FR�IR��R��R��R��R��R��R��S��S��S��S��S��S�T�T�;T�BT��T��T��T��T��T��T��T��T�0U�3U�bU�fU��U��U��U��U��V��V��Y��Y��Z��Z��Z��Z��[��[�]�]��^��^��^��^�_�_��_��_�1`�6`�h`�m`��a��a�c�c�hc�pc��c��c��c��d�/e�4e��e��e�tg�wg��h��h��i��i��j��j��j��j��j��j��j��j�"k�'k�Nk�Tk��k��k��k��k��k��k��k��k�5l�:l�al�fl�yl��l��l��l�.n�4n��n��n�p�p� p�(p�Lp�Rp��p��p��s��s�bt�gt�t��t��t��t��t��t��t��t�u�u�Zu�_u�vu�}u��u��u��u��u��u��u�v�v�)v�0v�Yv�`v��w�x��z��z��|��|��|��|�W}�_}�q}�y}��}��}��}��}��}��}�~�~�~����������������������4��?�������������G��L�����ƅ�d��i��Ȉ�͈�ֈ�و�������� ��"��%��A��M����������������������'��_��d��Č�Ɍ�Ό�ь��������������9��E��{��������������������5��<��a��l�������d��i��n��q��Ґ�֐�������*��/��O��Z��������ґ�ؑ� ����&��-��4��=��T��_��������ƒ�ђ�����}��������������������-��2��:��@������ݙ����������� ���� ������������5��;��n��t�������������� ����;��B��T��[��b��h��q��v��������Ħ�ʦ�����#��)��������� ��@��G��U��[��������� �������������� ������&������������������������"��0��6��������Z��������%��Q��Y��Z��b��c��k��l��t��u��x����������������3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3����3��3��3��3��3����3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3�����������3�������k���4��F���������������������������������a ��� �� ��� ��G�����@������������������(��)��+��0+��c+���+���+���+��,��=,��u,���,���,���,��!-��A-���-���-���-���-��/.��O.���.���.���.��/��W/��w/���/���/��0��.0��b0���0���0���0�� 1��-1��h1���1���1���1��62��V2���2���2���2��3��I3��i3���3���3��4��&4��n4���4���4���4��'5��G5���5���5���5��6��=6��]6���6���6���6��7��c7���7���7���7��8��78��c8���8���8���8��9��>9���9���9���9�� :��C:��c:���:���:���:��;��U;��u;���;���;��<��%<��h<���<���<���<��,=��L=���=���=���=��>��O>��o>���>���>��&?��F?���?���?���?�� @��D@��d@���@���@���@��A��NA��nA���A���A�� B��-B��`B���B���B���B�� C��+C��dC���C���C���C��D��3D��kD���D���D���D��%E��EE��xE���E���E���E��*F��JF���F���F���F���G��8G��XG���G���G���G�� H��GH��gH���H���H�� I��,I��mI���I���I���I��$J��DJ���J���J���J��K��LK��lK���K���K��L��%L��]L��}L���L���L��M��1M��vM���M���M���M��"N��BN��N���N���N���N��EO��eO���O���O���O��P��MP��mP���P���P�� Q��*Q��lQ���Q���Q���Q��$R��DR��~R���R���R���R��1S��QS���S���S���S�� T��CT��cT���T���T���T��U��ZU��zU���U���U��V��.V��pV���V���V���V��+W��KW���W���W���W���X��;X��[X���X���X���X�� Y��=Y��]Y���Y���Y���Y��Z��BZ��bZ���Z���Z���Z��[��b[���[���[���[��\��&\��e\���\���\���\��$]��D]���]���]���]��^��G^��g^���^���^�� _��*_��l_���_���_���_��$`��D`���`���`���`���`��3a��Sa���a���a��ib���b���g���g���g��h���h���h��`s��{s���t���t��u��9u���u���u���u���u���v���v���v��%w��5z��Rz��y{���{���|���|�����F���F���p���C���`���l�������ǘ�������� ���[�������k����������+���F���f��� ���/���^���~���P���p�����������&���A��������������������ź��ݻ�����M���w���Լ������������������������������r���������������j�������6���Q���O���k��������������4�����������'���C�������������������������������������,���,���O����������y�������������������������,�� �' �7 �S ��9�o�����������F�p�����D�`�A�]�!�>!�j"��"��$��$�)&�E&��+��+��,�-��-��-�a1��1��2��2�|4��4�#9�@9��:��:�i<��<�&>�P>��>�?��?�@�nC��C��D��D�PK�lK�Rj�nj�^k�zk��o��o��o�p�)t�Et�$u�@u��|��|����Ĉ�������D��`��������ɨ���׮���'��D�����'��8��U��t�����׳����ܵ�������ȶ�6��U��׷������ָ�=��^��ǹ������Ⱥ���:��������3��Q�����ݼ�P��Q��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �����L����������������p<p�<����������������������JT�=4�����������_wn�������������Tb-NJb�����������\{5� ������������p=E�  O�������������������CRKV6�������������W�_�B��������� ���q d�&�,��B�����������f�e|>�����������BVJu�x�=�������������������������������� ������������^���`���OJ�QJ�o(������������������������� ���8������^�8`���OJ�QJ�o(�����������������������������������^�`���OJ�QJ�^J�o(��o����������������������� ���� �����p^�� `���OJ �QJ �o(�������������������������� ���� �����@ ^�� `���OJ �QJ �o(�������������������������� ���x�����^�x`���OJ�QJ�o(�����������������������������H������^�H`���OJ�QJ�^J�o(��o����������������������� ���������^�`���OJ �QJ �o(�������������������������� ����������^��`���OJ �QJ �o(������������������������������������^��`���QJ�o(�� ���������������������� ���h�����h^�h`���OJ�QJ�o(�������������������������� ��� ���^� `���OJ�QJ�o(���������������������������������^��`���OJ�QJ�^J�o(��o����������������������� �������^��`���OJ �QJ �o(�������������������������� ���| ���^�| `���OJ�QJ�o(�����������������������������L���^�L`���OJ�QJ�^J�o(��o����������������������� ������^�`���OJ �QJ �o(�������������������������� �������^��`���OJ�QJ�o(���������������������������������^��`���OJ�QJ�^J�o(��o����������������������� �������^��`���OJ �QJ �o(�������������������������� ���z���^�z`���OJ�QJ�o(�����������������������������J���^�J`���OJ�QJ�^J�o(��o����������������������� ��� ���^� `���OJ �QJ �o(�������������������������� ���� ���^�� `���OJ�QJ�o(���������������������������������^��`���OJ�QJ�^J�o(��o����������������������� �������^��`���OJ �QJ �o(�������������������������� ���Z���^�Z`���OJ�QJ�o(�����������������������������*���^�*`���OJ�QJ�^J�o(��o����������������������� �������^��`���OJ �QJ �o(������������������������������h���^�h`������.���������������������������P�^�`�P����.��.����������������������������^��`�����.��.��.��������������������������x�^��`�x����.��.��.��.������ ���������������������^��`��� ���.��.��.��.��.������ ����������������� �X�^�� `�X� ���.��.��.��.��.��.������ ���������������� ���^�� `������.��.��.��.��.��.��.������ ����������������8�^��`�8����.��.��.��.��.��.��.��.������ ���������������`�^��`�`����.��.��.��.��.��.��.��.��.����������������������� ���h���^�h`���OJ �QJ �o(������������������������������h���^�h`������.���������������������������P�^�`�P���.����������������������������^��`�����.��.��.��������������������������x�^��`�x����.��.��.��.������ ���������������������^��`��� ���.��.��.��.��.������ ����������������� �X�^�� `�X� ���.��.��.��.��.��.������ ���������������� ���^�� `������.��.��.��.��.��.��.������ ����������������8�^��`�8����.��.��.��.��.��.��.��.������ ���������������`�^��`�`����.��.��.��.��.��.��.��.��.���������������������������P����^��`�P�o(�������������������������@���^�@`���o(����.������������������������0�^��`�0�o(����.��.���������������������`���^�``���o(����.��.��.������ �����������������^��`��o(� ���.��.��.��.������ ���������������������^��`���o(� ���.��.��.��.��.������ ������������������^�`���o(� ���.��.��.��.��.��.������ ��������������`����^��`�`�o(����.��.��.��.��.��.��.������ �����������0�����0^�0`���o(����.��.��.��.��.��.��.��.������ ���������h������ ���h���^�h`���o(��h�����H�� �A�p�p�e�n�d�i�x� ���.��������������������� ��@���^�@`���o(��h�����H�����.��������������������� ����0�^��`�0�o(��h�����H�����.��.�������������������� ��`���^�``���o(��h�����H�����.��.��.������� ������������ �����^��`��o(��h�����H�� ���.��.��.��.������� ������������ ���������^��`���o(��h�����H�� ���.��.��.��.��.������� ����������� �������^�`���o(��h�����H�� ���.��.��.��.��.��.������� ���������� ����`����^��`�`�o(��h�����H�����.��.��.��.��.��.��.������� ��������� ��0�����0^�0`���o(��h�����H�����.��.��.��.��.��.��.��.�����������������������������P����^��`�P�o(���������������������������@�����@^�@`���o(����.��������������������������0����^��`�0�o(����.��.�����������������������`�����`^�``���o(����.��.��.������� ���������������������^��`��o(� ���.��.��.��.������� ���������������������^��`���o(� ���.��.��.��.��.������� ������������������^�`���o(� ���.��.��.��.��.��.������� ��������������`����^��`�`�o(����.��.��.��.��.��.��.������� �����������0�����0^�0`���o(����.��.��.��.��.��.��.��.���������������h���������8�����8^�8`���OJ�QJ�o(��h�����H�������������������h��������������^�`���OJ�QJ�^J�o(��h�����H���o���������������h���������� ������ ^�� `���OJ �QJ �o(��h�����H�������������������h���������� ������ ^�� `���OJ�QJ�o(��h�����H�������������������h���������x�����x^�x`���OJ�QJ�^J�o(��h�����H���o���������������h���������H�����H^�H`���OJ �QJ �o(��h�����H�������������������h��������������^�`���OJ�QJ�o(��h�����H�������������������h����������������^��`���OJ�QJ�^J�o(��h�����H���o���������������h����������������^��`���OJ �QJ �o(��h�����H����� �����f����������������������������W�_������������W�_����������������������������BVJu������������q d�������������p=E�������������_w������������\{5�������������CRK�������������Tb-��������������������������������������������������������������������������������� ����������������������������� ����������� � � � � � � � � �� � � � � � � � � ���������Z$�%������������������������������������t,�� � � � � � � � �V ���_Q0�����������V���d����o|TU]M�����������V���d�����C�U]M�����������V���d����Y9 �_Q0�����������V���d����U]M�����������`Q�U]M�����������V���d����c~9#������������h�)������������_Q0�����������X�;�_Q0�����������V���d����� n?������������C�����������':\DU]M�����������V���d�����f�D�_Q0�����������V���d����m NH�_Q0�����������V���d���� �I�_Q0�����������V���d�����;�SU]M�����������V���d���� '�]U]M�����������V���d�����z|^�����������[4{_�����������W�a�_Q0�����������V���d����U Ms�_Q0�����������V���d����ONsU]M�����������V���d�����1itU]M�����������V���d�����n�t������������ 2z�����������v�~�����������<����������������;��_��:k��(5�CL�$�A0�%9��I�� ��@��n�,�-n �� ��n �� ��(�W�m�/?�c��}��2��,�+x�l��4��F��K����Q�$<"�C"�s"#�W%��Y&��'�r'��n(��*)�{+�~&+��~+�h,�* 0�10��)1��x1� 14�`!6� l6��7�A?7�G :�7;�[;��<�� <��a<��=�E=�1g>�:.@�K*A��&B�/'B�?C�f C��/F��I��%I��NI��AJ�> K��*K�|ML�^M�J7N� 9O��[O��&Q�dIQ� dQ�� R��~R�cS��!T��}T�;~T�?MU��V��hV�s~V��+W��Y�1Y�;)Z�A^Z�J\��.]��`��G`��a�pSc��Rh�* i��j�C4j�JSj�I,k��1m��o�3o�q#o��p�cFp��Wp�|!q��2q��9q��eq��gq��r�r�<Ft�FTt�EEu��v��:v�k�w�z4w��x��$x��y�L y�dz�HYz��cz�]b|�s3~�hz~�@l����� ��g��)��.���F������w��a_��2k���/���3���[��e����1���h���5�� ���s���#��OF��?`��XD��1���J��������#��iU��/��>@��$R��^���D���(��%8���}������_������N���q����VU���w�����@���w���<��^��s:��Z �� /��� ��P��e��E��0F�����^���?��(q�����Z*���`��]A������l��Sm���i���s���8��� ��� ��Jg��� ��u������-���K��;�����X5�����&��>:��D���Q���.��]Q��-[��I��2���l���l��y���6��Yd������&���d�����&���(���^��rd��:���,���Y��5S���b��� ��J��:l��fB���|������<��z ��1D��J��6n�����������%\��k!���D���R���a���z��uT���'��<|���.��X ��]��o��)���!���^��gb��6���0���W��U���9���o���)��>Q���Q��Og��A���_��<z���B������2���7���;��dD���c������u���u��LF��,�� $��6��J8��u:��c5��(V��\������Q��S����������@������������������������������������������@��������U�n�k�n�o�w�n�������������������������������������������� ���G����*��Ax�� ��������������T�i�m�e�s� �N�e�w� �R�o�m�a�n���5�������������������������S�y�m�b�o�l���3.��� �*��Cx�� ��������������A�r�i�a�l���7.���������@��������������C�a�l�i�b�r�i���?=��� �*��Cx�� ��������������C�o�u�r�i�e�r� �N�e�w���7��������@���������������C�a�m�b�r�i�a���I.��� ��������?��������?�����A�r�i�a�l� �U�n�i�c�o�d�e� �M�S���5.��� �.��[`��)�������������T�a�h�o�m�a���7.��� ���[ �@��������������V�e�r�d�a�n�a���;���������(�������������S�i�m�S�u�n����[SO��;����������������������������������W�i�n�g�d�i�n�g�s���A�������$�B���������������C�a�m�b�r�i�a� �M�a�t�h���"��1�����h������������g������B��h}�6������-���B��h}�6�����-������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������24��������������l��l������I��$������������������������������������������������������������� 2�q������������������������������HX���� ��0���������������������������Y��������������������� �����!�������������������� ���������x���x������������������ ������������������B�C�:�\�o�\�t�c�a�d�m�i�n�\�t�e�m�p�l�a�t�e�s�s�\�r�c�c�\�S�t�a�n�d�a�r�d�s�T�r�a�c�k�F�r�o�n�t�M�a�t�t�e�r�-�k�i�m�-�f�e�b�3�.�d�o�t��O�D�a�t�a� �A�t�o�m� �F�o�r�m�a�t� �V�e�r�s�i�o�n� �4�.�0�������#�O�A�S�I�S� �O�p�e�n� �D�a�t�a� �P�r�o�t�o�c�o�l� �(�O�D�a�t�a�)� �T�C� �O�A�S�I�S� �E�d�i�t�o�r���������������������<������ ����� �� �� �� �� �� �� �� �� � � � � � � �������������������������������������������������������������������������Oh���+'��0������������������������������������������������ ���(�����4�� ���T�� ���`�� ���l�� ���x����������������������������������� ���OData Atom Format Version 4.0������$���OASIS Open Data Protocol (OData) TC��������The Open Data Protocol (OData) for representing and interacting with structured content is comprised of a set of specifications. This document extends the former by defining representations of OData requests and responses using an Atom format.����(���StandardsTrackFrontMatter-kim-feb3.dot��������OASIS Editor����������2���������Microsoft Office Word���@�����������@����$����@���������@������������6�������B�����h}����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������՜.���+,��D�����՜.���+,��H���� ������h������p������|������������������������ ���������������������������� ������� ��������������������������-������������l�������� ������� ������� ������� ���������������OData Atom Format Version 4.0� �����������Title�������ԕ�� �������X�������������������� �����1������E������������������������ ����������������_PID_LINKBASE���� ���_PID_HLINKS�������TC Name�������WP abbreviation���� ���TC Chair���� ���Editor #1���� ���Editor #2� ��� ���namespace�������A����������A��� ���6 ������ ������������������������������������_�S�e�r�v�i�c�e�_�D�o�c�u�m�e�n�t���������������������������������������� ���n�e�x�t�L�i�n�k��������-� ������������������������������������_�R�e�q�u�e�s�t�i�n�g�_�t�h�e�_�A�t�o�m��������.� ������������������������������������_�I�n�s�t�a�n�c�e�_�A�n�n�o�t�a�t�i�o�n�s�������+������������������������������������_�D�e�l�t�a�_�R�e�s�p�o�n�s�e�_�1������|�m������������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e��������x�t������������������������������������O�D�a�t�a�D�a�t�a�N�a�m�e�s�p�a�c�e��������.� ����w�������������������������������_�I�n�s�t�a�n�c�e�_�A�n�n�o�t�a�t�i�o�n�s������v�u����t�������������������������������m�e�t�a�d�a�t�a�M�e�s�s�a�g�e�����������q���������������������������� ���m�e�t�a�d�a�t�a�C�o�d�e��������b�P����n�������������������������������_�A�t�t�r�i�b�u�t�e�_�t�a�r�g�e�t�_�1������l�����k�������������������������������_�T�h�e�_�m�e�t�a�d�a�t�a�:�e�r�r�o�r�_�E�l�e�m�e�n�t������<�T����h����������������������������!���_�T�h�e�_�m�e�t�a�d�a�t�a�:�A�n�n�o�t�a�t�i�o�n�_�E�l�e�m�e�n�t��������b�]����e�������������������������������_�E�r�r�o�r�s�_�a�s�_�X�M�L��������q�h����b�������������������������������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�d�e�l�e�t�e�d�-�l�i�n�k��������i� ����_�������������������������������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�l�i�n�k���������F����\�������������������������������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�a�c�t�i�o�n��������x�3����Y�������������������������������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�f�u�n�c�t�i�o�n��������t�'����V�������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�l�i�n�k��������|�.����S������������������H���f�i�l�e�:�/�/�C�:�\�U�s�e�r�s�\�d�0�3�7�4�2�7�\�D�o�w�n�l�o�a�d�s�\�I�n�s�t�a�n�c�e� �A�n�n�o�t�a�t�i�o�n�s� �i�n� �A�t�o�m� �(�1�)�.�d�o�c�x������"���z�1�7�4�a�b�0�b�8�1�8�f�f�4�c�6�a�9�1�3�1�a�a�6�2�3�3�1�e�8�1�3�3������&�(����P�������������������������������_�I�n�d�i�v�i�d�u�a�l�_�P�r�o�p�e�r�t�y��������b�P����M�������������������������������_�A�t�t�r�i�b�u�t�e�_�t�a�r�g�e�t�_�1������ �����J�������������������������������_�C�o�m�p�l�e�x�_�P�r�o�p�e�r�t�y������b�n����G�������������������������������m�e�t�a�d�a�t�a�P�r�o�p�e�r�t�i�e�s��������q�6����D�������������������������������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�v�a�l�u�e������ �,����A�������������������������������_�S�i�n�g�l�e�_�S�c�a�l�a�r�_�V�a�l�u�e�������������>�������������������������������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�r�e�f�_�1������g�9����;�������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y������u�$����7�������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d��������u�$����5�������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d��������b�]����2�������������������������������_�E�r�r�o�r�s�_�a�s�_�X�M�L��������U�z����/�������������������������������_�A�c�t�i�o�n������ �����,���������������������������� ���_�F�u�n�c�t�i�o�n������j�g����)�������������������������������N�a�v�i�g�a�t�i�o�n�P�r�o�p�e�r�t�y��������/�����&���������������������������� ���_�P�r�o�p�e�r�t�y������ �����#�������������������������������_�C�o�m�p�l�e�x�_�P�r�o�p�e�r�t�y������X�e���� �������������������������������_�E�n�t�i�t�y������f�H�����������������������������������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s������}�Z�����������������������������������_�T�h�e�_�t�y�p�e�_�a�t�t�r�i�b�u�t�e������9�k�����������������������������������_�E�l�e�m�e�n�t�_�d�a�t�a�:�[�P�r�o�p�e�r�t�y�N�a�m�e�]��������}�Z�����������������������������������_�T�h�e�_�t�y�p�e�_�a�t�t�r�i�b�u�t�e�������=���� �������������������������������_�C�o�m�p�l�e�x�_�C�o�l�l�e�c�t�i�o�n�_�P�r�o�p�e�r�t�y���������[�����������������������������������_�P�r�i�m�i�t�i�v�e�_�a�n�d�_�E�n�u�m�e�r�a�t�i�o�n�_�1��������<�T��������������������������������!���_�T�h�e�_�m�e�t�a�d�a�t�a�:�A�n�n�o�t�a�t�i�o�n�_�E�l�e�m�e�n�t��������}�Z������������������������������������_�T�h�e�_�t�y�p�e�_�a�t�t�r�i�b�u�t�e������ �������������������������������������_�P�r�i�m�i�t�i�v�e�_�V�a�l�u�e��������`�a������������������������������������_�S�t�r�u�c�t�u�r�e�_�A�n�n�o�t�a�t�i�o�n�s��������"�:������������������������������������_�C�o�l�l�e�c�t�i�o�n�_�V�a�l�u�e������ �������������������������������������_�P�r�i�m�i�t�i�v�e�_�V�a�l�u�e�s������<�T���������������������������������!���_�T�h�e�_�m�e�t�a�d�a�t�a�:�A�n�n�o�t�a�t�i�o�n�_�E�l�e�m�e�n�t��������<�T���������������������������������!���_�T�h�e�_�m�e�t�a�d�a�t�a�:�A�n�n�o�t�a�t�i�o�n�_�E�l�e�m�e�n�t��������<�T���������������������������������!���_�T�h�e�_�m�e�t�a�d�a�t�a�:�A�n�n�o�t�a�t�i�o�n�_�E�l�e�m�e�n�t��������|�m������������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e��������b�]������������������������������������_�E�r�r�o�r�s�_�a�s�_�X�M�L�������� �������������������������������������_�D�e�l�e�t�e�d�_�L�i�n�k������h�c��������������������������������� ���_�A�d�d�e�d�_�L�i�n�k������U�z������������������������������������_�A�c�t�i�o�n������ ���������������������������������� ���_�F�u�n�c�t�i�o�n������j�g������������������������������������N�a�v�i�g�a�t�i�o�n�P�r�o�p�e�r�t�y��������/���������������������������������� ���_�P�r�o�p�e�r�t�y������ �������������������������������������_�C�o�m�p�l�e�x�_�P�r�o�p�e�r�t�y������)�<������������������������������������_�E�n�t�i�t�y�_�R�e�f�e�r�e�n�c�e������X�e������������������������������������_�E�n�t�i�t�y������f�H������������������������������������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s������ �,������������������������������������_�S�i�n�g�l�e�_�S�c�a�l�a�r�_�V�a�l�u�e��������g�9������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y������u�$������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d���������������������������������������������_�A�t�t�r�i�b�u�t�e�_�t�a�r�g�e�t������g�9������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y������u�$������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d���������A������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d���������A������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d��������i� ������������������������������������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�l�i�n�k��������i� ������������������������������������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�l�i�n�k���������A������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d���������A������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d��������&�b������������������������������������R�F�C�6�7�2�1�������A������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d��������&�b������������������������������������R�F�C�6�7�2�1������&�b������������������������������������R�F�C�6�7�2�1������7�����~�������������������������������_�A�t�o�m�_�T�o�m�b�s�t�o�n�e�_�N�a�m�e�s�p�a�c�e������g�9����{�������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������[����x�������������������������������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�m�e�t�a�d�a�t�a��������3�9����u�������������������������������_�N�a�v�i�g�a�t�i�o�n�_�L�i�n�k�������� �!����r�������������������������������_�E�x�p�a�n�d�e�d�_�N�a�v�i�g�a�t�i�o�n�_�P�r�o�p�e�r�t�y������g�9����o�������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y������}�#����i�������������������������������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�c�o�u�n�t������r�G����f�������������������������������_�D�e�l�t�a�_�L�i�n�k�_�a�s�������������c���������������������������� ���n�e�x�t�L�i�n�k��������B�j����`�������������������������������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�m�e�t�a�d�a�t�a�_�1��������u�$����\�������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d��������f�H����Z�������������������������������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s������8�����W�������������������������������_�D�e�l�e�t�e�d�_�L�i�n�k�s�_�a�s������h�c����T���������������������������� ���_�A�d�d�e�d�_�L�i�n�k������F�����Q�������������������������������_�D�e�l�e�t�e�d�_�e�n�t�i�t�i�e�s�_�a�s�_�1��������1�L����N�������������������������������_�C�h�a�n�g�e�d�/�A�d�d�e�d�_�E�n�t�i�t�i�e�s�_�a�s��������1�L����K�������������������������������_�C�h�a�n�g�e�d�/�A�d�d�e�d�_�E�n�t�i�t�i�e�s�_�a�s��������u�$����G�������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d��������f�H����E�������������������������������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s�������A����?�������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d��������|�m����9�������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e��������X�e����0�������������������������������_�E�n�t�i�t�y�������.����!�������������������������������_�E�n�t�i�t�y�_�R�e�f�e�r�e�n�c�e�s�_�a�s������g�9�����������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y������u�$�����������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d����������������������������������������� ���n�e�x�t�L�i�n�k��������|�m���� �������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���������.���� �������������������������������_�E�n�t�i�t�y�_�R�e�f�e�r�e�n�c�e�s�_�a�s������g�9�����������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y������u�$�����������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d��������|�m������������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e��������|�m������������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e��������b�n������������������������������������m�e�t�a�d�a�t�a�P�r�o�p�e�r�t�i�e�s�������� ���������������������������������� ���a�t�o�m�L�i�n�k���������G������������������������������������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�r�e�f������g�9������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y������u�$������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d���������A������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�i�d��������t�~��������������������������������� ���_�E�x�p�a�n�d�e�d�_�N�a�v�i�g�a�t�i�o�n�_�P�r�o�p�e�r�t�y�_�1������J�N������������������������������������_�R�e�s�o�u�r�c�e�_�R�e�f�e�r�e�n�c�e������g�9������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y�������������������������������������������_�R�e�p�r�e�s�e�n�t�i�n�g�_�a�n�_�E�n�t�i�t�y�_�1������u�$������������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�f�e�e�d��������l�������������������������������������_�N�a�v�i�g�a�t�i�o�n�_�L�i�n�k�_�1��������|�m������������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e��������|�m������������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e��������t�~��������������������������������� ���_�E�x�p�a�n�d�e�d�_�N�a�v�i�g�a�t�i�o�n�_�P�r�o�p�e�r�t�y�_�1�������C�����������������������������������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�t�y�p�e�������� �����|�������������������������������_�C�o�m�p�l�e�x�_�P�r�o�p�e�r�t�y������|�m����x�������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���������.����v�������������������������������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�_�N�a�m�e�s�p�a�c�e�������C����s�������������������������������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�t�y�p�e�������� �����m�������������������������������_�P�r�i�m�i�t�i�v�e�_�V�a�l�u�e��������|�m����i�������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���������.����g�������������������������������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�_�N�a�m�e�s�p�a�c�e�������C����d�������������������������������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�t�y�p�e��������9�k����^�������������������������������_�E�l�e�m�e�n�t�_�d�a�t�a�:�[�P�r�o�p�e�r�t�y�N�a�m�e�]�������� �����U�������������������������������_�P�r�i�m�i�t�i�v�e�_�V�a�l�u�e��������9�k����R�������������������������������_�E�l�e�m�e�n�t�_�d�a�t�a�:�[�P�r�o�p�e�r�t�y�N�a�m�e�]��������!�G����I����������������������������%���_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�m�e�t�a�d�a�t�a�_�c�o�n�t�e�x�t���������F����C�������������������������������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�n�u�l�l���������C����=�������������������������������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�t�y�p�e��������x�t����:�������������������������������O�D�a�t�a�D�a�t�a�N�a�m�e�s�p�a�c�e�������� � ����.�������������������������������_�M�e�d�i�a�_�E�n�t�i�t�y������b�n����+�������������������������������m�e�t�a�d�a�t�a�P�r�o�p�e�r�t�i�e�s��������g�9����(�������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y������|�m�����������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���������.���� �������������������������������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�_�N�a�m�e�s�p�a�c�e������B�j���� �������������������������������_�A�t�t�r�i�b�u�t�e�_�m�e�t�a�d�a�t�a�:�m�e�t�a�d�a�t�a�_�1��������g�9�����������������������������������_�E�l�e�m�e�n�t�_�a�t�o�m�:�e�n�t�r�y���������������������������������������� ���a�t�o�m�E�n�t�r�y���������������������������������������� ���a�p�p�W�o�r�k�s�p�a�c�e������������������������������������������ ���a�p�p�W�o�r�k�s�p�a�c�e��������7�������������������������������������_�F�u�n�c�t�i�o�n�_�I�m�p�o�r�t�s�_�a�s������������������������������������������ ���a�p�p�W�o�r�k�s�p�a�c�e���������������������������������������������a�p�p�C�o�l�l�e�c�t�i�o�n������!�a������������������������������������R�F�C�5�0�2�3���������������������������������������� ���a�p�p�W�o�r�k�s�p�a�c�e��������!�a������������������������������������R�F�C�5�0�2�3������b�t���������������������������������#���_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�s�e�r�v�i�c�e�-�d�o�c�u�m�e�n�t���������\������������������������������������_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�e�n�t�i�t�y��������W�X���������������������������������"���_�E�l�e�m�e�n�t�_�m�e�t�a�d�a�t�a�:�f�u�n�c�t�i�o�n�-�i�m�p�o�r�t�������������������������������������������a�p�p�C�o�l�l�e�c�t�i�o�n������|�m������������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e���������.������������������������������������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�_�N�a�m�e�s�p�a�c�e���������������������������������������� ���a�p�p�W�o�r�k�s�p�a�c�e��������(�m������������������������������������R�F�C�3�9�8�6������j�t������������������������������������_�D�e�l�t�a�_�R�e�s�p�o�n�s�e�������������������������������������������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s�_�1�������;������������������������������������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�S�c�a�l�a�r�������;������������������������������������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�S�c�a�l�a�r������ �,������������������������������������_�S�i�n�g�l�e�_�S�c�a�l�a�r�_�V�a�l�u�e�������� �,������������������������������������_�S�i�n�g�l�e�_�S�c�a�l�a�r�_�V�a�l�u�e��������J�N������������������������������������_�R�e�s�o�u�r�c�e�_�R�e�f�e�r�e�n�c�e������X�e������������������������������������_�E�n�t�i�t�y������� ������������������������������������_�S�e�r�v�i�c�e�_�D�o�c�u�m�e�n�t������� ������������������������������������_�S�e�r�v�i�c�e�_�D�o�c�u�m�e�n�t������� ������������������������������������_�S�e�r�v�i�c�e�_�D�o�c�u�m�e�n�t������|�m����|�������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e��������|�m����z�������������������������������O�D�a�t�a�M�e�t�a�d�a�t�a�N�a�m�e�s�p�a�c�e��������.� ����n�������������������������������_�I�n�s�t�a�n�c�e�_�A�n�n�o�t�a�t�i�o�n�s�������.����j�������������������������������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�_�N�a�m�e�s�p�a�c�e������u�f����f�������������������������������_�O�D�a�t�a�_�M�e�t�a�d�a�t�a�������7����b�������������������������������_�O�D�a�t�a�_�D�a�t�a�_�N�a�m�e�s�p�a�c�e������q�����^���������������������������� ���_�O�D�a�t�a�_�D�a�t�a������g�"����D������������������#���h�t�t�p�:�/�/�t�o�o�l�s�.�i�e�t�f�.�o�r�g�/�h�t�m�l�/�r�f�c�6�7�2�1������������������b�$����A������������������#���h�t�t�p�:�/�/�t�o�o�l�s�.�i�e�t�f�.�o�r�g�/�h�t�m�l�/�r�f�c�5�6�4�6������������������,�;����>������������������$���h�t�t�p�:�/�/�w�w�w�.�i�e�t�f�.�o�r�g�/�r�f�c�/�r�f�c�5�0�2�3�.�t�x�t����������������*�0����;������������������$���h�t�t�p�:�/�/�w�w�w�.�i�e�t�f�.�o�r�g�/�r�f�c�/�r�f�c�4�2�8�7�.�t�x�t����������������!�7����8������������������$���h�t�t�p�:�/�/�w�w�w�.�i�e�t�f�.�o�r�g�/�r�f�c�/�r�f�c�3�9�8�7�.�t�x�t���������������� �7����5������������������$���h�t�t�p�:�/�/�w�w�w�.�i�e�t�f�.�o�r�g�/�r�f�c�/�r�f�c�3�9�8�6�.�t�x�t����������������'�?����2������������������$���h�t�t�p�:�/�/�w�w�w�.�i�e�t�f�.�o�r�g�/�r�f�c�/�r�f�c�2�1�1�9�.�t�x�t����������������e�����/������������������:���h�t�t�p�:�/�/�p�o�r�t�a�l�.�o�p�e�n�g�e�o�s�p�a�t�i�a�l�.�o�r�g�/�f�i�l�e�s�/�?�a�r�t�i�f�a�c�t�_�i�d�=�2�0�5�0�9����������������d�l����#�������������������������������_�E�r�r�o�r�_�R�e�p�o�n�s�e������������� �������������������������������_�A�s�s�o�c�i�a�t�i�o�n�_�L�i�n�k������l������������������������������������_�N�a�v�i�g�a�t�i�o�n�_�L�i�n�k�_�1���������+�����������������������������������_�D�e�l�t�a�_�R�e�s�p�o�n�s�e�_�1������ � �����������������������������������_�M�e�d�i�a�_�E�n�t�i�t�y�������;�����������������������������������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�S�c�a�l�a�r������ �,�����������������������������������_�S�i�n�g�l�e�_�S�c�a�l�a�r�_�V�a�l�u�e��������������������������������������������_�C�o�l�l�e�c�t�i�o�n�_�o�f�_�E�n�t�i�t�i�e�s�_�1������J�N���� �������������������������������_�R�e�s�o�u�r�c�e�_�R�e�f�e�r�e�n�c�e������X�e�����������������������������������_�E�n�t�i�t�y������� �����������������������������������_�S�e�r�v�i�c�e�_�D�o�c�u�m�e�n�t������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�6�7������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�6�6������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�6�5������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�6�4������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�6�3������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�6�2������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�6�1������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�6�0������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�5�9������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�5�8������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�5�7������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�5�6������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�5�5������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�5�4������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�5�3������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�5�2������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�5�1������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�5�0������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�4�9������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�4�8������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�4�7������6�����}�������������������������������_�T�o�c�3�6�5�4�6�4�6�4�6������6�����w�������������������������������_�T�o�c�3�6�5�4�6�4�6�4�5������6�����q�������������������������������_�T�o�c�3�6�5�4�6�4�6�4�4������6�����k�������������������������������_�T�o�c�3�6�5�4�6�4�6�4�3������6�����e�������������������������������_�T�o�c�3�6�5�4�6�4�6�4�2������6�����_�������������������������������_�T�o�c�3�6�5�4�6�4�6�4�1������6�����Y�������������������������������_�T�o�c�3�6�5�4�6�4�6�4�0������6�����S�������������������������������_�T�o�c�3�6�5�4�6�4�6�3�9������6�����M�������������������������������_�T�o�c�3�6�5�4�6�4�6�3�8������6�����G�������������������������������_�T�o�c�3�6�5�4�6�4�6�3�7������6�����A�������������������������������_�T�o�c�3�6�5�4�6�4�6�3�6������6�����;�������������������������������_�T�o�c�3�6�5�4�6�4�6�3�5������6�����5�������������������������������_�T�o�c�3�6�5�4�6�4�6�3�4������6�����/�������������������������������_�T�o�c�3�6�5�4�6�4�6�3�3������6�����)�������������������������������_�T�o�c�3�6�5�4�6�4�6�3�2������6�����#�������������������������������_�T�o�c�3�6�5�4�6�4�6�3�1������6������������������������������������_�T�o�c�3�6�5�4�6�4�6�3�0������6������������������������������������_�T�o�c�3�6�5�4�6�4�6�2�9������6������������������������������������_�T�o�c�3�6�5�4�6�4�6�2�8������6����� �������������������������������_�T�o�c�3�6�5�4�6�4�6�2�7������6������������������������������������_�T�o�c�3�6�5�4�6�4�6�2�6������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�2�5������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�2�4������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�2�3������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�2�2������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�2�1������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�2�0������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�1�9������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�1�8������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�1�7������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�1�6������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�1�5������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�1�4������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�1�3������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�1�2������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�1�1������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�1�0������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�0�9������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�0�8������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�0�7������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�0�6������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�0�5������6�������������������������������������_�T�o�c�3�6�5�4�6�4�6�0�4������6�����{�������������������������������_�T�o�c�3�6�5�4�6�4�6�0�3������6�����u�������������������������������_�T�o�c�3�6�5�4�6�4�6�0�2������6�����o�������������������������������_�T�o�c�3�6�5�4�6�4�6�0�1������6�����i�������������������������������_�T�o�c�3�6�5�4�6�4�6�0�0������5�����c�������������������������������_�T�o�c�3�6�5�4�6�4�5�9�9������5�����]�������������������������������_�T�o�c�3�6�5�4�6�4�5�9�8������5�����W�������������������������������_�T�o�c�3�6�5�4�6�4�5�9�7������5�����Q�������������������������������_�T�o�c�3�6�5�4�6�4�5�9�6������5�����K�������������������������������_�T�o�c�3�6�5�4�6�4�5�9�5������5�����E�������������������������������_�T�o�c�3�6�5�4�6�4�5�9�4������5�����?�������������������������������_�T�o�c�3�6�5�4�6�4�5�9�3������5�����9�������������������������������_�T�o�c�3�6�5�4�6�4�5�9�2������5�����3�������������������������������_�T�o�c�3�6�5�4�6�4�5�9�1������5�����-�������������������������������_�T�o�c�3�6�5�4�6�4�5�9�0������5�����'�������������������������������_�T�o�c�3�6�5�4�6�4�5�8�9������5�����!�������������������������������_�T�o�c�3�6�5�4�6�4�5�8�8������5������������������������������������_�T�o�c�3�6�5�4�6�4�5�8�7������5������������������������������������_�T�o�c�3�6�5�4�6�4�5�8�6������5������������������������������������_�T�o�c�3�6�5�4�6�4�5�8�5������5����� �������������������������������_�T�o�c�3�6�5�4�6�4�5�8�4������5������������������������������������_�T�o�c�3�6�5�4�6�4�5�8�3������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�8�2������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�8�1������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�8�0������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�7�9������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�7�8������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�7�7������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�7�6������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�7�5������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�7�4������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�7�3������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�7�2������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�7�1������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�7�0������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�6�9������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�6�8������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�6�7������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�6�6������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�6�5������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�6�4������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�6�3������5�������������������������������������_�T�o�c�3�6�5�4�6�4�5�6�2������5������������������������������������_�T�o�c�3�6�5�4�6�4�5�6�1������5�����y�������������������������������_�T�o�c�3�6�5�4�6�4�5�6�0������5�����s�������������������������������_�T�o�c�3�6�5�4�6�4�5�5�9������5�����m�������������������������������_�T�o�c�3�6�5�4�6�4�5�5�8������5�����g�������������������������������_�T�o�c�3�6�5�4�6�4�5�5�7������5�����a�������������������������������_�T�o�c�3�6�5�4�6�4�5�5�6������5�����[�������������������������������_�T�o�c�3�6�5�4�6�4�5�5�5������5�����U�������������������������������_�T�o�c�3�6�5�4�6�4�5�5�4������5�����O�������������������������������_�T�o�c�3�6�5�4�6�4�5�5�3������5�����I�������������������������������_�T�o�c�3�6�5�4�6�4�5�5�2������5�����C�������������������������������_�T�o�c�3�6�5�4�6�4�5�5�1������5�����=�������������������������������_�T�o�c�3�6�5�4�6�4�5�5�0������5�����7�������������������������������_�T�o�c�3�6�5�4�6�4�5�4�9������5�����1�������������������������������_�T�o�c�3�6�5�4�6�4�5�4�8������5�����+�������������������������������_�T�o�c�3�6�5�4�6�4�5�4�7������5�����%�������������������������������_�T�o�c�3�6�5�4�6�4�5�4�6������5������������������������������������_�T�o�c�3�6�5�4�6�4�5�4�5������5������������������������������������_�T�o�c�3�6�5�4�6�4�5�4�4������5������������������������������������_�T�o�c�3�6�5�4�6�4�5�4�3������5����� �������������������������������_�T�o�c�3�6�5�4�6�4�5�4�2������5������������������������������������_�T�o�c�3�6�5�4�6�4�5�4�1������5������������������������������������_�T�o�c�3�6�5�4�6�4�5�4�0������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�3�9������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�3�8������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�3�7������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�3�6������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�3�5������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�3�4������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�3�3������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�3�2������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�3�1������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�3�0������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�2�9������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�2�8������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�2�7������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�2�6������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�2�5������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�2�4������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�2�3������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�2�2������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�2�1������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�2�0������5��������������������������������������_�T�o�c�3�6�5�4�6�4�5�1�9������5�����}��������������������������������_�T�o�c�3�6�5�4�6�4�5�1�8������5�����w��������������������������������_�T�o�c�3�6�5�4�6�4�5�1�7������5�����q��������������������������������_�T�o�c�3�6�5�4�6�4�5�1�6������%�`����l�������������������8���h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�p�o�l�i�c�i�e�s�-�g�u�i�d�e�l�i�n�e�s�/�t�r�a�d�e�m�a�r�k����������������c�=����i����������������������h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/������������������]�����f�������������������2���h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�p�o�l�i�c�i�e�s�-�g�u�i�d�e�l�i�n�e�s�/�i�p�r����������������K�Y����c�������������������^���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�c�s�0�1�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�-�c�s�0�1�.�h�t�m�l����������������3�)����`�������������������3���h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�c�o�m�m�i�t�t�e�e�s�/�o�d�a�t�a�/�i�p�r�.�p�h�p������������������*�2����]�������������������,���h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�c�o�m�m�i�t�t�e�e�s�/�o�d�a�t�a�/�����������������3����Z�������������������H���h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�c�o�m�m�i�t�t�e�e�s�/�c�o�m�m�e�n�t�s�/�i�n�d�e�x�.�p�h�p�?�w�g�_�a�b�b�r�e�v�=�o�d�a�t�a����������������F�����W�������������������-���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�n�s�/�m�e�t�a�d�a�t�a������������������_�����T�������������������)���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�n�s�/�d�a�t�a������������������q�a����Q�������������������T���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�j�s�o�n�-�f�o�r�m�a�t�/�v�4�.�0�/�o�d�a�t�a�-�j�s�o�n�-�f�o�r�m�a�t�-�v�4�.�0�.�h�t�m�l����������������{�'����N�������������������?���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�/�v�4�.�0�/�c�s�0�1�/�v�o�c�a�b�u�l�a�r�i�e�s�/�������������������$����K�������������������7���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�/�v�4�.�0�/�c�s�0�1�/�a�b�n�f�/������������������?�����H�������������������G���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�/�v�4�.�0�/�o�d�a�t�a�-�v�4�.�0�-�p�a�r�t�3�-�c�s�d�l�.�h�t�m�l������������������P�S����E�������������������R���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�/�v�4�.�0�/�o�d�a�t�a�-�v�4�.�0�-�p�a�r�t�2�-�u�r�l�-�c�o�n�v�e�n�t�i�o�n�s�.�h�t�m�l����������������)�e����B�������������������K���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�/�v�4�.�0�/�o�d�a�t�a�-�v�4�.�0�-�p�a�r�t�1�-�p�r�o�t�o�c�o�l�.�h�t�m�l������������������:�r����?�������������������K���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�c�s�0�1�/�v�o�c�a�b�u�l�a�r�i�e�s�/������������������]�T����<�������������������F���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�c�s�0�1�/�s�c�h�e�m�a�s�/����������������p�&����9����������������������h�t�t�p�:�/�/�w�w�w�.�s�a�p�.�c�o�m�/����������������G�7����6����������������������m�a�i�l�t�o�:�r�a�l�f�.�h�a�n�d�l�@�s�a�p�.�c�o�m�����������������_����3����������������������h�t�t�p�:�/�/�w�w�w�.�m�i�c�r�o�s�o�f�t�.�c�o�m�/����������������I�`����0����������������������m�a�i�l�t�o�:�m�i�k�e�p�@�m�i�c�r�o�s�o�f�t�.�c�o�m������������������p�&����-����������������������h�t�t�p�:�/�/�w�w�w�.�s�a�p�.�c�o�m�/����������������D�&����*����������������������m�a�i�l�t�o�:�m�a�r�t�i�n�.�z�u�r�m�u�e�h�l�@�s�a�p�.�c�o�m�������������������_����'����������������������h�t�t�p�:�/�/�w�w�w�.�m�i�c�r�o�s�o�f�t�.�c�o�m�/�����������������k����$�������������������#���m�a�i�l�t�o�:�R�a�m�.�J�e�y�a�r�a�m�a�n�@�m�i�c�r�o�s�o�f�t�.�c�o�m������������������p�&����!����������������������h�t�t�p�:�/�/�w�w�w�.�s�a�p�.�c�o�m�/���������������� �m��������������������������m�a�i�l�t�o�:�b�a�r�b�a�r�a�.�h�a�r�t�e�l�@�s�a�p�.�c�o�m����������������*�2�����������������������,���h�t�t�p�:�/�/�w�w�w�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�c�o�m�m�i�t�t�e�e�s�/�o�d�a�t�a�/����������������n�}�����������������������S���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�.�p�d�f������������������~�n�����������������������T���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�.�h�t�m�l����������������e�l�����������������������S���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�.�d�o�c������������������7�&�����������������������c���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�c�s�p�r�d�0�2�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�-�c�s�p�r�d�0�2�.�p�d�f������������������'�5���� �������������������d���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�c�s�p�r�d�0�2�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�-�c�s�p�r�d�0�2�.�h�t�m�l����������������<�7���� �������������������c���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�c�s�p�r�d�0�2�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�-�c�s�p�r�d�0�2�.�d�o�c������������������[�J�����������������������]���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�c�s�0�1�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�-�c�s�0�1�.�p�d�f������������������K�Y�����������������������^���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�c�s�0�1�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�-�c�s�0�1�.�h�t�m�l����������������P�[������������������������]���h�t�t�p�:�/�/�d�o�c�s�.�o�a�s�i�s�-�o�p�e�n�.�o�r�g�/�o�d�a�t�a�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�/�v�4�.�0�/�c�s�0�1�/�o�d�a�t�a�-�a�t�o�m�-�f�o�r�m�a�t�-�v�4�.�0�-�c�s�0�1�.�d�o�c������������������ ���OASIS TC�������4���Work Product abbreviation without version or stage����� ���TC Chair������� ���Editor #1������ ���Editor #2������ ���namespace������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ ��� ��� ��� ��� ��������������������������������������������������������� ���!���"���#���$���%���&���'���(���)���*���+���,���-���.���/���0���1���2���3���4���5���6���7���8���9���:���;���<���=���>���?���@���A���B���C���D���E���F���G���H���I���J���K���L���M���N���O���P���Q���R���S���T���U���V���W���X���Y���Z���[���\���]���^���_���`���a���b���c���d���e���f���g���h���i���j���k���l���m���n���o���p���q���r���s���t���u���v���w���x���y���z���{���|���}���~��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �� �� �� �� �������������������������������������� ��!��"��#��$��%��&��'��(��)��*��+��,��-��.��/��0��1��2��3��4��5��6��7��8��9��:��;��<��=��>��?��@��A��B��C��D��E��F��G��H��I��J��K��L��M��N��O��P��Q��R��S��T��U��V��W��X��Y��Z��[��\��]��^��_��`��a��b��c��d��e��f��g��h��i��j��k��l��m��n��o��p��q��r��s��t��u��v��w��x��y��z��{��|��}��~������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �� �� �� �� �������������������������������������� ��!��"��#��$��%��&��'��(��)��*��+��,��-��.��/��0��1��2��3��4��5��6��7��8��9��:��;��<��=��>��?��@��A��B��C��D��E��F��G��H��I��J��K��L��M��N��O��P��Q��R��S��T��U��V��W��X��Y��Z��[��\��]��^��_��`��a��b��c��d��e��f��g��h��i��j��k��l��m��n��o��p��q��r��s��t��u��v��w��x��y��z��{��|��}��~������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ �� �� �� �� �������������������������������������� ��!��"��#��$��%��&��'��(��)��*��+��,��-��.��/��0��1��2��3��4��5��6��7��8��9��:��;��<��=��>��?��@��A��B��C��D��E��F��G��H��I��J��K��L��M��N��O��P��Q��R��S��T��U��V��W��X��Y��Z��[��\��]��^��_��`��a��b��c��d��e��f��g��h��i��j��k��l��m��n��o��p��q��r��s��t��u��v��w��x��y��z��{��|��}��~�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������R�o�o�t� �E�n�t�r�y��������������������������������������������������������� ������������F��������������hղ������������D�a�t�a��������������������������������������������������������� ���������������������������������������������������rD�����1�T�a�b�l�e�������������������������������������������������������������������������������������������������������������W�o�r�d�D�o�c�u�m�e�n�t��������������������������������������������������������������������������������������������s ������S�u�m�m�a�r�y�I�n�f�o�r�m�a�t�i�o�n���������������������������(������������������������������������������������������������D�o�c�u�m�e�n�t�S�u�m�m�a�r�y�I�n�f�o�r�m�a�t�i�o�n�����������8�����������������������������������������������������������C�o�m�p�O�b�j�������������������������������������������������������������������������������������������������������r������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ������ ������������F ���Microsoft Word 97-2003 Document� ���MSWordDoc����Word.Document.8��9�q��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������