Ringkasan Materi KLP 5

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1326

>

<xsl:apply-templates select="asmv1:dependentAssembly|
asmv2:dependentAssembly"/>
<xsl:apply-templates
select="asmv1:dependentAssembly/asmv1:assemblyIdentity|asmv1:dependentAssembly/
asmv2:assemblyIdentity|asmv2:dependentAssembly/asmv1:assemblyIdentity|
asmv2:dependentAssembly/asmv2:assemblyIdentity"/>
</xsl:element>
</xsl:template>

<xsl:template match="asmv2:dependency">
<xsl:element name="AssemblyReference" namespace="">
<xsl:attribute name="IsNative">false</xsl:attribute>
<xsl:apply-templates select="asmv1:dependentAssembly|
asmv2:dependentAssembly"/>
<xsl:apply-templates
select="asmv1:dependentAssembly/asmv1:assemblyIdentity|asmv1:dependentAssembly/
asmv2:assemblyIdentity|asmv2:dependentAssembly/asmv1:assemblyIdentity|
asmv2:dependentAssembly/asmv2:assemblyIdentity"/>
</xsl:element>
</xsl:template>

<xsl:template match="asmv1:dependentAssembly">
<xsl:if test="@asmv2:dependencyType='preRequisite'">
<xsl:attribute name="IsPrerequisite">true</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@asmv2:codebase)>0">
<xsl:attribute name="Path">
<xsl:value-of select="@asmv2:codebase"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@asmv2:size)>0">
<xsl:attribute name="Size">
<xsl:value-of select="@asmv2:size"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(asmv2:hash/dsig:DigestValue)>0">
<xsl:attribute name="Hash">
<xsl:value-of select="asmv2:hash/dsig:DigestValue"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@asmv2:group)>0">
<xsl:attribute name="Group">
<xsl:value-of select="@asmv2:group"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(parent::node()/@asmv2:optional)>0">
<xsl:attribute name="IsOptional">
<xsl:value-of select="parent::node()/@asmv2:optional"/>
</xsl:attribute>
</xsl:if>
</xsl:template>

<xsl:template match="asmv2:dependentAssembly">
<xsl:if test="@dependencyType='preRequisite'">
<xsl:attribute name="IsPrerequisite">true</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@codebase)>0">
<xsl:attribute name="Path">
<xsl:value-of select="@codebase"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@size)>0">
<xsl:attribute name="Size">
<xsl:value-of select="@size"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(asmv2:hash/dsig:DigestValue)>0">
<xsl:attribute name="Hash">
<xsl:value-of select="asmv2:hash/dsig:DigestValue"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@group)>0">
<xsl:attribute name="Group">
<xsl:value-of select="@group"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(parent::node()/@optional)>0">
<xsl:attribute name="IsOptional">
<xsl:value-of select="parent::node()/@optional"/>
</xsl:attribute>
</xsl:if>
</xsl:template>

<xsl:template match="asmv1:dependentAssembly/asmv1:assemblyIdentity|
asmv1:dependentAssembly/asmv2:assemblyIdentity|asmv2:dependentAssembly/
asmv1:assemblyIdentity|asmv2:dependentAssembly/asmv2:assemblyIdentity">
<xsl:call-template name="assembly-identity">
<xsl:with-param name="class">AssemblyIdentity</xsl:with-param>
</xsl:call-template>
</xsl:template>

<xsl:template match="asmv1:file">
<xsl:element name="FileReference" namespace="">
<xsl:attribute name="Path">
<xsl:value-of select="@name"/>
</xsl:attribute>
<xsl:if test="string-length(@size)>0">
<xsl:attribute name="Size">
<xsl:value-of select="@size"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(asmv2:hash/dsig:DigestValue)>0">
<xsl:attribute name="Hash">
<xsl:value-of select="asmv2:hash/dsig:DigestValue"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@asmv2:group)>0">
<xsl:attribute name="Group">
<xsl:value-of select="@asmv2:group"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@asmv2:optional)>0">
<xsl:attribute name="IsOptional">
<xsl:value-of select="@asmv2:optional"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@asmv2:writeableType)>0">
<xsl:attribute name="WriteableType">
<xsl:value-of select="@asmv2:writeableType"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="count(asmv1:comClass)>0">
<xsl:element name="ComClasses" namespace="">
<xsl:apply-templates select="asmv1:comClass"/>
</xsl:element>
</xsl:if>
<xsl:if test="count(asmv1:typelib)>0">
<xsl:element name="TypeLibs" namespace="">
<xsl:apply-templates select="asmv1:typelib"/>
</xsl:element>
</xsl:if>
<xsl:if test="count(asmv1:comInterfaceProxyStub)>0">
<xsl:element name="ProxyStubs" namespace="">
<xsl:apply-templates select="asmv1:comInterfaceProxyStub"/>
</xsl:element>
</xsl:if>
</xsl:element>
</xsl:template>

<xsl:template match="asmv2:file">
<xsl:element name="FileReference" namespace="">
<xsl:attribute name="Path">
<xsl:value-of select="@name"/>
</xsl:attribute>
<xsl:if test="string-length(@size)>0">
<xsl:attribute name="Size">
<xsl:value-of select="@size"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(asmv2:hash/dsig:DigestValue)>0">
<xsl:attribute name="Hash">
<xsl:value-of select="asmv2:hash/dsig:DigestValue"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@group)>0">
<xsl:attribute name="Group">
<xsl:value-of select="@group"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@optional)>0">
<xsl:attribute name="IsOptional">
<xsl:value-of select="@optional"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@writeableType)>0">
<xsl:attribute name="WriteableType">
<xsl:value-of select="@writeableType"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="count(asmv1:comClass)>0">
<xsl:element name="ComClasses" namespace="">
<xsl:apply-templates select="asmv1:comClass"/>
</xsl:element>
</xsl:if>
<xsl:if test="count(asmv1:typelib)>0">
<xsl:element name="TypeLibs" namespace="">
<xsl:apply-templates select="asmv1:typelib"/>
</xsl:element>
</xsl:if>
<xsl:if test="count(asmv1:comInterfaceProxyStub)>0">
<xsl:element name="ProxyStubs" namespace="">
<xsl:apply-templates select="asmv1:comInterfaceProxyStub"/>
</xsl:element>
</xsl:if>
</xsl:element>
</xsl:template>

<xsl:template match="asmv1:comClass">
<xsl:element name="ComClass" namespace="">
<xsl:attribute name="Clsid">
<xsl:value-of select="@clsid"/>
</xsl:attribute>
<xsl:attribute name="Progid">
<xsl:value-of select="@progid"/>
</xsl:attribute>
<xsl:attribute name="ThreadingModel">
<xsl:value-of select="@threadingModel"/>
</xsl:attribute>
<xsl:attribute name="Tlbid">
<xsl:value-of select="@tlbid"/>
</xsl:attribute>
<xsl:attribute name="Description">
<xsl:value-of select="@description"/>
</xsl:attribute>
</xsl:element>
</xsl:template>

<xsl:template match="asmv1:typelib">
<xsl:element name="TypeLib" namespace="">
<xsl:attribute name="Tlbid">
<xsl:value-of select="@tlbid"/>
</xsl:attribute>
<xsl:attribute name="Version">
<xsl:value-of select="@version"/>
</xsl:attribute>
<xsl:attribute name="HelpDir">
<xsl:value-of select="@helpdir"/>
</xsl:attribute>
<xsl:attribute name="ResourceId">
<xsl:value-of select="@resourceid"/>
</xsl:attribute>
<xsl:attribute name="Flags">
<xsl:value-of select="@flags"/>
</xsl:attribute>
</xsl:element>
</xsl:template>

<xsl:template match="asmv1:comInterfaceProxyStub|
asmv1:comInterfaceExternalProxyStub">
<xsl:element name="ProxyStub" namespace="">
<xsl:attribute name="Iid">
<xsl:value-of select="@iid"/>
</xsl:attribute>
<xsl:attribute name="ProxyStubClsid32">
<xsl:value-of select="@proxyStubClsid32"/>
</xsl:attribute>
<xsl:attribute name="File">
<xsl:value-of select="@file"/>
</xsl:attribute>
<xsl:attribute name="BaseInterface">
<xsl:value-of select="@baseInterface"/>
</xsl:attribute>
<xsl:attribute name="NumMethods">
<xsl:value-of select="@numMethods"/>
</xsl:attribute>
<xsl:attribute name="name">
<xsl:value-of select="@name"/>
</xsl:attribute>
<xsl:attribute name="tlbid">
<xsl:value-of select="@tlbid"/>
</xsl:attribute>
</xsl:element>
</xsl:template>

<xsl:template name="assembly-identity">
<xsl:param name="class"/>
<xsl:element name="{$class}" namespace="">
<xsl:if test="string-length(@name)>0">
<xsl:attribute name="Name">
<xsl:value-of select="@name"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@version)>0">
<xsl:attribute name="Version">
<xsl:value-of select="@version"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@publicKeyToken)>0">
<xsl:attribute name="PublicKeyToken">
<xsl:value-of select="@publicKeyToken"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@language)>0">
<xsl:attribute name="Culture">
<xsl:value-of select="@language"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@processorArchitecture)>0">
<xsl:attribute name="ProcessorArchitecture">
<xsl:value-of select="@processorArchitecture"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="string-length(@type)>0">
<xsl:attribute name="Type">
<xsl:value-of select="@type"/>
</xsl:attribute>
</xsl:if>
</xsl:element>
</xsl:template>

<xsl:template match="asmv2:trustInfo">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:copy-of select="child::*"/>
</xsl:copy>
</xsl:template>

<xsl:template name="trust-licenses">
<xsl:if test="count(/asmv1:assembly/asmv2:licensing/asmv2:xrmlLicenseInfo/
xrml:licenseGroup/xrml:license)>0">
<xsl:element name="TrustLicenses" namespace="">
<xsl:apply-templates
select="/asmv1:assembly/asmv2:licensing/asmv2:xrmlLicenseInfo" mode="tlic"/>
</xsl:element>
</xsl:if>
</xsl:template>

<xsl:template match="xrml:licenseGroup" mode="tlic">


<xsl:for-each select="xrml:license">
<xsl:element name="XmlDocument" namespace="">
<xsl:copy-of select="."/>
</xsl:element>
</xsl:for-each>
</xsl:template>

<xsl:template name="public-key">
<xsl:element name="PublicKey" namespace="">
<xsl:copy-of select="//asmv1:assembly/dsig:Signature/dsig:KeyInfo"/>
</xsl:element>
</xsl:template>

<xsl:template match="co.v1:fileAssociation">
<xsl:element name="FileAssociation" namespace="">
<xsl:attribute name="Extension">
<xsl:value-of select="@extension"/>
</xsl:attribute>
<xsl:attribute name="Description">
<xsl:value-of select="@description"/>
</xsl:attribute>
<xsl:attribute name="Progid">
<xsl:value-of select="@progid"/>
</xsl:attribute>
<xsl:attribute name="DefaultIcon">
<xsl:value-of select="@defaultIcon"/>
</xsl:attribute>
</xsl:element>
</xsl:template>

</xsl:stylesheet>
###� ###<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="urn:schemas-microsoft-com:asm.v2"
version="1.0">

<xsl:output method="xml" encoding="utf-8" indent="yes"/>


<xsl:strip-space elements="*"/>
<xsl:param name="defaultRequestedPrivileges"/>
<xsl:variable name="requestedPrivileges"
select="document($defaultRequestedPrivileges)" />

<xsl:template match="asmv2:PermissionSet" xmlns:asmv2="urn:schemas-microsoft-


com:asm.v2">
<trustInfo>
<security>
<applicationRequestMinimum>
<xsl:copy-of select="."/>
<defaultAssemblyRequest permissionSetReference="{@ID}" />
</applicationRequestMinimum>
<xsl:if test="$requestedPrivileges">
<xsl:copy-of select="$requestedPrivileges"/>
</xsl:if>
</security>
</trustInfo>

</xsl:template>
</xsl:stylesheet>
#A##<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="urn:schemas-microsoft-com:asm.v1"
xmlns:asmv1="urn:schemas-microsoft-com:asm.v1"
xmlns:asmv2="urn:schemas-microsoft-com:asm.v2"
xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"
xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"
xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1"
version="1.0">

<xsl:output method="xml" encoding="utf-8" indent="yes"/>


<xsl:strip-space elements="*"/>

<xsl:param name="trust-file"/>

<xsl:variable name="trust" select="document($trust-file)"/>

<xsl:template match="AssemblyManifest">
<assembly
xmlns="urn:schemas-microsoft-com:asm.v1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd"
manifestVersion="1.0"
>
<xsl:apply-templates select="AssemblyIdentity" mode="v1"/>
<xsl:call-template name="assembly-manifest"/>
<xsl:apply-templates select="AssemblyReferences/AssemblyReference"/>
<xsl:apply-templates select="FileReferences/FileReference"/>
<xsl:apply-templates select="ExternalProxyStubs/ProxyStub"
mode="external"/>
</assembly>
</xsl:template>

<xsl:template match="ApplicationManifest[@IsClickOnceManifest='false']">
<assembly
xmlns="urn:schemas-microsoft-com:asm.v1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd"
manifestVersion="1.0"
>
<xsl:apply-templates select="AssemblyIdentity" mode="v1"/>
<xsl:call-template name="assembly-manifest"/>
<!-- Application Trust -->
<xsl:if test="$trust">
<xsl:copy-of select="$trust"/>
</xsl:if>
<xsl:apply-templates select="AssemblyReferences/AssemblyReference"/>
<xsl:apply-templates select="FileReferences/FileReference"/>
<xsl:apply-templates select="ExternalProxyStubs/ProxyStub" mode="external"/>
</assembly>
</xsl:template>

<xsl:template match="ApplicationManifest[@IsClickOnceManifest='true']">
<asmv1:assembly
xmlns="urn:schemas-microsoft-com:asm.v2"
xmlns:asmv1="urn:schemas-microsoft-com:asm.v1"
xmlns:asmv2="urn:schemas-microsoft-com:asm.v2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1"
xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd"
manifestVersion="1.0"
>
<xsl:apply-templates select="AssemblyIdentity" mode="winxp-hack"/>
<xsl:call-template name="application-manifest"/>
<xsl:apply-templates select="AssemblyReferences/AssemblyReference"/>
<xsl:apply-templates select="FileReferences/FileReference"/>
<xsl:apply-templates select="FileAssociations/FileAssociation"/>
<xsl:apply-templates select="ExternalProxyStubs/ProxyStub" mode="external"/>
</asmv1:assembly>
</xsl:template>

<xsl:template match="DeployManifest">
<asmv1:assembly
xmlns="urn:schemas-microsoft-com:asm.v2"
xmlns:asmv1="urn:schemas-microsoft-com:asm.v1"
xmlns:asmv2="urn:schemas-microsoft-com:asm.v2"
xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd"
manifestVersion="1.0"
>
<xsl:apply-templates select="AssemblyIdentity" mode="v1"/>
<xsl:call-template name="deploy-manifest"/>
<xsl:for-each select="AssemblyReferences/AssemblyReference"> <!-- expecting
only one match -->
<xsl:call-template name="application-reference"/>
</xsl:for-each>
<xsl:apply-templates select="FileReferences/FileReference"/>
</asmv1:assembly>
</xsl:template>

<xsl:attribute-set name="identity-attributes">
<xsl:attribute name="name"><xsl:value-of select="@Name"/></xsl:attribute>
<xsl:attribute name="version"><xsl:value-of select="@Version"/></xsl:attribute>
<xsl:attribute name="publicKeyToken"><xsl:value-of
select="@PublicKeyToken"/></xsl:attribute>
<xsl:attribute name="language"><xsl:value-of
select="@Culture"/></xsl:attribute>
<xsl:attribute name="processorArchitecture"><xsl:value-of
select="@ProcessorArchitecture"/></xsl:attribute>
<xsl:attribute name="type"><xsl:value-of select="@Type"/></xsl:attribute>
</xsl:attribute-set>

<!--
WinXP & Win2K3 requires this element to be declared with the asmv1 qualifier.
Setting the default namespace will not work!
This is a quirk of the native loader on downlevel OS.
-->
<xsl:template match="AssemblyIdentity" mode="winxp-hack">
<xsl:element name="asmv1:assemblyIdentity" use-attribute-sets="identity-
attributes"/>
</xsl:template>

<xsl:template match="AssemblyIdentity" mode="v1">


<xsl:element name="assemblyIdentity" use-attribute-sets="identity-attributes"
namespace="urn:schemas-microsoft-com:asm.v1"/>
</xsl:template>

<xsl:template match="AssemblyIdentity" mode="v2">


<xsl:element name="assemblyIdentity" use-attribute-sets="identity-attributes"
namespace="urn:schemas-microsoft-com:asm.v2"/>
</xsl:template>

<xsl:template match="EntryPointIdentity">
<xsl:element name="assemblyIdentity" use-attribute-sets="identity-attributes"
namespace="urn:schemas-microsoft-com:asm.v2"/>
</xsl:template>

<xsl:template name="assembly-manifest">
<xsl:if test="string-length(@Description)>0">
<description>
<xsl:value-of select="@Description"/>
</description>
</xsl:if>
</xsl:template>

<xsl:template name="application-manifest">
<!-- Description -->
<xsl:if test="string-length(@Description)>0 or string-length(@IconFile)>0 or
string-length(@Publisher)>0 or string-length(@Product)>0 or string-
length(@SupportUrl)>0 or string-length(@SuiteName)>0 or string-
length(@ErrorReportUrl)>0">
<description asmv2:iconFile="{@IconFile}"
asmv2:publisher="{@Publisher}"
co.v1:suiteName="{@SuiteName}"
asmv2:product="{@Product}"
asmv2:supportUrl="{@SupportUrl}"
co.v1:errorReportUrl="{@ErrorReportUrl}">
<xsl:value-of select="@Description"/>
</description>
</xsl:if>
<application xmlns="urn:schemas-microsoft-com:asm.v2"/>
<!-- Application Startup -->
<xsl:choose>
<xsl:when test="EntryPointIdentity">
<entryPoint xmlns="urn:schemas-microsoft-com:asm.v2">
<xsl:apply-templates select="EntryPointIdentity"/>
<commandLine
file="{@EntryPointPath}"
parameters="{@EntryPointParameters}"
/>
<xsl:if test="@HostInBrowser='true'">
<hostInBrowser xmlns="urn:schemas-microsoft-com:asm.v3"/>
</xsl:if>
</entryPoint>
</xsl:when>
<xsl:when test="@HostInBrowser='true'">
<entryPoint xmlns="urn:schemas-microsoft-com:asm.v2">
<xsl:if test="@HostInBrowser='true'">
<hostInBrowser xmlns="urn:schemas-microsoft-com:asm.v3"/>
</xsl:if>
</entryPoint>
</xsl:when>
<xsl:otherwise>
<entryPoint xmlns="urn:schemas-microsoft-com:asm.v2">
<co.v1:customHostSpecified />
</entryPoint>
</xsl:otherwise>
</xsl:choose>
<!-- Manifest Trust -->
<xsl:if test="@UseApplicationTrust='true'">
<co.v1:useManifestForTrust />
</xsl:if>
<!-- Application Trust -->
<xsl:if test="$trust">
<xsl:copy-of select="$trust"/>
</xsl:if>
<!-- OS dependency -->
<xsl:if test="string-length(@OSMajor)>0">
<dependency xmlns="urn:schemas-microsoft-com:asm.v2">
<dependentOS supportUrl="{@OSSupportUrl}"
description="{@OSDescription}">
<osVersionInfo>
<os majorVersion="{@OSMajor}" minorVersion="{@OSMinor}"
buildNumber="{@OSBuild}" servicePackMajor="{@OSRevision}"/>
</osVersionInfo>
</dependentOS>
</dependency>
</xsl:if>
</xsl:template>

<xsl:template name="deploy-manifest">
<!-- Description -->
<description xmlns="urn:schemas-microsoft-com:asm.v1"
asmv2:publisher="{@Publisher}"
co.v1:suiteName="{@SuiteName}"
asmv2:product="{@Product}"
asmv2:supportUrl="{@SupportUrl}"
co.v1:errorReportUrl="{@ErrorReportUrl}"
>
<xsl:value-of select="@Description"/>
</description>
<!-- Application Updates -->
<deployment xmlns="urn:schemas-microsoft-com:asm.v2"
install="{@Install}"
disallowUrlActivation="{@DisallowUrlActivation}"
mapFileExtensions="{@MapFileExtensions}"
minimumRequiredVersion="{@MinimumRequiredVersion}"
trustURLParameters="{@TrustUrlParameters}"
co.v1:createDesktopShortcut="{@CreateDesktopShortcut}"
>
<xsl:if test="@Install='true' and @UpdateEnabled='true'">
<subscription>
<update>
<xsl:choose>
<xsl:when test="@UpdateMode='Foreground'">
<beforeApplicationStartup/>
</xsl:when>
<xsl:otherwise>
<expiration maximumAge="{@UpdateInterval}"
unit="{@UpdateUnit}"/>
</xsl:otherwise>
</xsl:choose>
</update>
</subscription>
</xsl:if>
<xsl:if test="string-length(@DeploymentUrl)>0">
<deploymentProvider codebase="{@DeploymentUrl}"/>
</xsl:if>
</deployment>
</xsl:template>

<!-- This is the <dependency> element for referencing the ApplicationManifest


(.exe.manifest) from the DeployManifest (.application) -->
<xsl:template name="application-reference">
<dependency xmlns="urn:schemas-microsoft-com:asm.v2">
<dependentAssembly
dependencyType="install"
codebase="{@Path}"
size="{@Size}"
>
<xsl:apply-templates select="AssemblyIdentity" mode="v2"/>
<xsl:call-template name="hash">
<xsl:with-param name="value"><xsl:value-of
select="@Hash"/></xsl:with-param>
</xsl:call-template>
</dependentAssembly>
</dependency>
</xsl:template>

<!-- Must put native <dependency> elements in the asmv1 namespace -->
<xsl:template match="AssemblyReference[@IsNative='true' and
@IsPrerequisite='false']">
<dependency optional="{@IsOptional}" xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly
asmv2:dependencyType="install"
asmv2:codebase="{@Path}"
asmv2:size="{@Size}"
asmv2:group="{@Group}"
>
<xsl:apply-templates select="AssemblyIdentity" mode="v1"/>
<xsl:call-template name="hash">
<xsl:with-param name="value"><xsl:value-of select="@Hash"/></xsl:with-
param>
</xsl:call-template>
</dependentAssembly>
</dependency>
</xsl:template>
<xsl:template match="AssemblyReference[@IsNative='true' and
@IsPrerequisite='true']">
<dependency xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly
asmv2:dependencyType="preRequisite"
>
<xsl:apply-templates select="AssemblyIdentity" mode="v1"/>
</dependentAssembly>
</dependency>
</xsl:template>

<!-- Other <dependency> elements go in the asmv2 namespace -->


<xsl:template match="AssemblyReference[@IsNative='false' and
@IsPrerequisite='false']">
<dependency optional="{@IsOptional}" xmlns="urn:schemas-microsoft-com:asm.v2">
<dependentAssembly
dependencyType="install"
allowDelayedBinding="true"
codebase="{@Path}"
size="{@Size}"
group="{@Group}"
>
<xsl:apply-templates select="AssemblyIdentity" mode="v2"/>
<xsl:call-template name="hash">
<xsl:with-param name="value"><xsl:value-of
select="@Hash"/></xsl:with-param>
</xsl:call-template>
</dependentAssembly>
</dependency>
</xsl:template>

<xsl:template match="AssemblyReference[@IsNative='false' and


@IsPrerequisite='true']">
<dependency xmlns="urn:schemas-microsoft-com:asm.v2">
<dependentAssembly
dependencyType="preRequisite"
allowDelayedBinding="true"
>
<xsl:apply-templates select="AssemblyIdentity" mode="v2"/>
</dependentAssembly>
</dependency>
</xsl:template>

<xsl:template match="FileReference[not(ComClasses or WindowClasses)]">


<file xmlns="urn:schemas-microsoft-com:asm.v2"
name="{@Path}"
size="{@Size}"
group="{@Group}"
optional="{@IsOptional}"
writeableType="{@WriteableType}"
>
<xsl:call-template name="hash">
<xsl:with-param name="value"><xsl:value-of select="@Hash"/></xsl:with-
param>
</xsl:call-template>
</file>
</xsl:template>

<xsl:template match="FileReference[ComClasses or WindowClasses]">


<file xmlns="urn:schemas-microsoft-com:asm.v1"
name="{@Path}"
asmv2:size="{@Size}"
asmv2:group="{@Group}"
asmv2:optional="{@IsOptional}"
asmv2:writeableType="{@WriteableType}"
>
<xsl:call-template name="hash">
<xsl:with-param name="value"><xsl:value-of select="@Hash"/></xsl:with-
param>
</xsl:call-template>
<xsl:call-template name="isolation"/>
</file>
</xsl:template>

<xsl:template name="hash">
<xsl:param name="value"/>
<xsl:if test="$value and string-length($value)>0">
<hash xmlns="urn:schemas-microsoft-com:asm.v2">
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-
com:HashTransforms.Identity"/>
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
<dsig:DigestValue><xsl:value-of select="$value"/></dsig:DigestValue>
</hash>
</xsl:if>
</xsl:template>

<xsl:template name="isolation">
<xsl:apply-templates select="TypeLibs/TypeLib"/>
<xsl:apply-templates select="ComClasses/ComClass"/>
<xsl:apply-templates select="WindowClasses/WindowClass"/>
<xsl:apply-templates select="ProxyStubs/ProxyStub" mode="internal"/>
</xsl:template>

<xsl:template match="TypeLib">
<typelib xmlns="urn:schemas-microsoft-com:asm.v1"
tlbid="{@Tlbid}"
version="{@Version}"
helpdir="{@HelpDir}"
resourceid="{@ResourceId}"
flags="{@Flags}"/>
</xsl:template>

<xsl:template match="ComClass">
<comClass xmlns="urn:schemas-microsoft-com:asm.v1"
clsid="{@Clsid}"
threadingModel="{@ThreadingModel}"
tlbid="{@Tlbid}"
progid="{@Progid}"
description="{@Description}"/>
</xsl:template>
<xsl:template match="WindowClass">
<windowClass xmlns="urn:schemas-microsoft-com:asm.v1"
versioned="{@Versioned}"
>
<xsl:value-of select="@Name"/>
</windowClass>
</xsl:template>

<xsl:template match="ProxyStub" mode="internal">


<comInterfaceProxyStub xmlns="urn:schemas-microsoft-com:asm.v1"
name="{@Name}"
iid="{@Iid}"
numMethods="{@NumMethods}"
baseInterface="{@BaseInterface}"
tlbid="{@Tlbid}"/>
</xsl:template>

<xsl:template match="ProxyStub" mode="external">


<comInterfaceExternalProxyStub xmlns="urn:schemas-microsoft-com:asm.v1"
name="{@Name}"
iid="{@Iid}"
numMethods="{@NumMethods}"
baseInterface="{@BaseInterface}"
tlbid="{@Tlbid}"/>
</xsl:template>

<xsl:template match="FileAssociation">
<fileAssociation xmlns="urn:schemas-microsoft-com:clickonce.v1"
extension="{@Extension}"
description="{@Description}"
progid="{@Progid}"
defaultIcon="{@DefaultIcon}"/>
</xsl:template>

</xsl:stylesheet>
#####*###<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://schemas.microsoft.com/developer/2004/01/bootstrapper"
xmlns:b="http://schemas.microsoft.com/developer/2004/01/bootstrapper"
version="1.0">

<xsl:variable name="newline">
<xsl:text>%NEWLINE%</xsl:text>
</xsl:variable>

<xsl:output method="text"/>

<xsl:template match="Configuration">
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="b:Package">
<xsl:call-template name="object">
<xsl:with-param name="name" select="local-name()"/>
<xsl:with-param name="attributes" select="@*[local-name()='Name' or
local-name()='LicenseAgreement' or local-name()='PackageCode']"/>
</xsl:call-template>
</xsl:template>

<xsl:template match="*">
<xsl:param name="indent"/>
<xsl:call-template name="object">
<xsl:with-param name="name" select="local-name()"/>
<xsl:with-param name="attributes" select="@*"/>
<xsl:with-param name="indent" select="$indent"/>
</xsl:call-template>
</xsl:template>

<xsl:template match="b:PackageFile">
<xsl:param name="indent"/>
<xsl:call-template name="object">
<xsl:with-param name="name" select="local-name()"/>
<xsl:with-param name="attributes" select="@*[local-name()='Name' or
local-name()='Size' or local-name()='Hash' or local-name()='HomeSite' or local-
name()='PublicKey']"/>
<xsl:with-param name="indent" select="$indent"/>
</xsl:call-template>
</xsl:template>

<xsl:template match="b:Dependencies"/>
<xsl:template match="b:Overrides"/>

<xsl:template name="object">
<xsl:param name="name"/>
<xsl:param name="attributes"/>
<xsl:param name="indent"/>
<xsl:value-of select="$indent"/>
<xsl:text>Begin </xsl:text>
<xsl:value-of select="$name"/>
<xsl:value-of select="$newline"/>
<xsl:apply-templates select="$attributes"><xsl:with-param name="indent"
select="concat($indent, '&#9;')"/></xsl:apply-templates>
<xsl:apply-templates select="child::*"><xsl:with-param name="indent"
select="concat($indent, '&#9;')"/></xsl:apply-templates>
<xsl:value-of select="$indent"/>
<xsl:text>End </xsl:text>
<xsl:value-of select="$name"/>
<xsl:value-of select="$newline"/>
</xsl:template>

<xsl:template match="@*">
<xsl:param name="indent"/>
<xsl:value-of select="$indent"/>
<xsl:value-of select="local-name()"/>
<xsl:text>="</xsl:text>
<xsl:value-of select="."/>
<xsl:text>"</xsl:text>
<xsl:value-of select="$newline"/>
</xsl:template>

</xsl:stylesheet>##BSJB########
###v2.0.50727######x###h8###!
##� 8##� 6###~##do##� ###Strings####D� ##� +###US#� )#######GUID###� )##|
� ###Blob#########################
#################$###@#######################################$,### ########\
##x.####h]##]S####� e##7#####q4##r#####� \
##x.####� ]##x.####� ^##� ]####� e##7#####� \
##x.####� ]##x.####� ^##� ]####� ###7#####� \##x.####� ]##� #####!\
##� #####� ]##� ]####-x##7#####y� ##� ###
#####� #####5\##r######]##x.####� ~##m"####K\##x.#### ]##x.####no##� #####b\
##x.####F]##]S####b^##O^##� ###########� ###########
###########!#$#(#+#-#0#3#6#9#<#?
#B#E#H#K#N#Q#T#W#Z#]#`#c#f#i#l#o#r#u#x#{#~#� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #�
#� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #� #######
##############"#%#(#+#.#1#4#7#:#=#@#C#F#I#L#O#R#U#X#[#^#a#d#g#j#m#p#s#v#y#|
##� #� ############################################################################
###################################################################################
###################################################################################
###################################################################################
########################################################################�
##� ###� #� #� #####E#######a#� #� ########� ### #� #� ####�
##� ###� #� #� #� ###V###p### #� #� ####� ####### #� #�
####)###;#############� ##� ###� #� #� ##!##]###;### #� #� ####%###� ###� #� #�
####R###;#############� ##� ###� #� #� #� ###s###;### #� #� � ###-###p### #� #�
####f###;####### #####

##� ###� #� ###� ###� ###;### #� #� � ###7####### #� #� ####v###;########� ###0


##� ###T#� ###� ###� ###;### #� #� � ###D####### #� #� ####� ###;#############@
##� #####� #T#� ###� ###;### #� #� � ###Q####### #� #� ####� ###;#########� ###D
##� ### #� #~##!##� ###;###5#� #� � ###\####### #� #�
####� ###;#############Z
##� ### #� #� #� ###� ###;### #� #� � ###� ###;### #########j
##� ### #� #� #� ###� ###;### #� ##
� ###� ###;### #####� ###�
##� ### #� #� #####� ###� ###� #� ##
####Ri###### #� #� ####� ###� ### ### #####�
##� ###(#� #� #####� ###� ###� #� ##
� ###
###;### ###2#####�
##� ### #� #� #� #######;### ###5#� ###�
##� ### #� #� #� #######� #####� #0
� ###,####### ##F#####�
######4#� #� #� #######� #####� #C
� ###>###;### ###H#####�
######4#� #� #####1###� ### #� #M
� ###P###;### ###N#� ###�
##� ###4#� #� #� ###� ###� #####� #N
####\##########b#####�
######@#� #� #� ###F###� #####� #Q
####m#########'#b############@#� #� #� ###V###� #####� #�
####f#########'#f#####(#######@#� #� #####g###� ####� #�
####� ####### #'#j#####A#######@#� #� #� ###t###� #####� #�
� ###� ###� #####-#k#####]###� ###4#� #� #� ###� ###� #####� #�
####� ###� ###T#/#u#####w#######T#� #� #####� ###� ####� #�
� ###� ###� #####/#� #####� #######T#� #� #####� ###� ###-#� #�
####� ###� ### #0#� #� ###� ###� ### #� #� #####� ###� ####� #�
# ##� ###� #####1#� ####� #######-#� #� #####� ###� ###-#� #�
####� ###� ### #4#� #� ###� ###� ### #� #� #� ###� ###� #####� #�
########� ### #7#� #####� ###� #####� #� #####� ###� ####� #�
########� ### #9#� #####� ###� #####� #� #� ###� ###� ### #� #�
####!###� ###T#:#� #####� ###� #####� #� #####� ########� #######0###� ###
#A#� #####� ###� #####� #� ##################� ###B###� ### #B#� ######
##� #####� #� ######################K###� ###|#E########
##� #####� #� ######################e###� ###|#O########
##� #####� #� #####"############� ###}###� ### #O#######,
##� #####� #� ####1#######-#########� ###� ###� #P#######@
##� #####� #� ####C#######-#########� ###� ### #X#######Q
##� #####� #� ####X#######-#########� ###� ###-#Y#######h
##� #####� #� ####p#######-#>#######� ###� ### #[#!#####�
##� #####� #� ####� #######-#\###� ###� ###� ### #\#$#####�
##� ###� #� #� ####� #######-#_###� ###
###� ### #\#'## ##�
##� ### #� #� ####� #######-#b####!##(###� ###5#c#'## ##�
##� ### #� #� ####� #######-#n#######C###� ###|#c#*#####�
##� ###� #� #� #####� ########p#######b###� ####d#,#####�
##� ###T#� #######� ###� ### #}#######u###� ####j#,# ###�
##� ###-#� #+#####� ###� ###4#� ###� ###� ###� ### #u#,#####�
##� ###� #� #/#� #######� ### #� ####!##� ###� ###5#u#-#####�
##� ###� #� #6############# #� #######� ###� ###|#u#0#####�
##� ###� #� #?#####&###� ### #� #######� ###� ###|#u#2#####
##� ###� ###K#####1####### #� #7#####� ###� ###|#w#4########� ###� #
#Z#####B###� ### #� #9#� ###� ###� ### #x#6#####"##� ###� #
#`#####T###� ### #� #>#########� ###|#x#9#####0#########k#####e###� ###
#� #A#########� ### #x#;#� ###<##� ###9###k#####s###� ###\#� #H##!##
%###� ###5#y#>#####Q#######!#� #� ###� ###� ### #� #V#####K###� ####z#B#####^######
#&#� #####� ###� ###� #� #X#####Y###� ###|#� #B#####m##� ###� #)#� ##!
##� ###� #####� #`#####m###� ### #� #D#####� #######=#� ##!##� #######� #� #i##!
##w###� ###5#� #� #####� ##� ###� #@#� #####� ###� ###\#� #l#####� ###� ### #� #� #####�
##� ###� #P#� ##!##� ###� #####� #� #####� ####### #� #� #####�
##� ###� #b#######� ###� ###� #� #� #####� ###� ### #� #� #####�
##� ###� #g#"#####� ###� ###� #� #� #� ###� ###� ###9#� #� #####� ##� ###M#{#N#####
####### #� #� #####� ###� ###� #� #� #####� #######� #b#############
#� #� ###############� ##############Q#� #b#####!#######
#� #� #########� ### #� ####!##########5#� #j#####-####### #� #� #####
%###� ### #� #######/####### #� #n#####5########� #� #####B###� ###
#� #######5###� ### #� #o#####B####### #� #� #####T###� ###-
#� #######X###� ###� #� #x#####O###� ###� #� #� #####g###� ###
# #######l###� ###� #� ######f####### #�##
�###{###�### #�#######}###�###�#�#�#####|###�###�#�##
# ##�###�### #�#"#�###�###�#####�#�#####�###########(
#!##�###�#####�#&#�###�###�#####�#�#####�###�###(###,
�###�###;###

#�#*#�###�###�#####�#�#####�###�###�#�#.#####�###�###]#�#�#####�###�###T##
#V
�###�###�###�#�#6##!##�###�###5#�#�#####�###�###9###q
####�###�###(#�#=#�#######�#####�#�## ##�###�###5###y
########�###�#�#G#�###"###�#####�##########�######|
�#######�### ###N#####2###�###T#�# #�#######�### ###|
�#######�###4#
#a#####5###�###�#�####!##-###�#######�
####1###�###8###o#####C###�###�#�#&##!##9####### #)#�
�###=###R#######v#####T###�###�#�#,#####C###�###u#-#�
####�###R### ###z#####\###p### #�#1#####^###�###8#.#�
####�####### #.#�#�###�###p### #�#4#####k###�###4#0#�
####�####### #/#�#####�####### #�#d#�###{###�###4#0#�
####�########3#�#####�###p###H#�#f#####�###�###4#0#�
####�####### #7#�#####�###p###P#�#j#�###�###�###4#0#�
####�####### #8#�#####�####### #�#�#####�###�###T#0#�
####�####### #8#�#####�###p### #�#�#####�###�###T#0#�
�###�###R#####8#�##############�#�#####�###�###4#0#�
#### ###R### #8#�#########p####�#�#####�###�###@#0#�
�#######R#####>#�#�###/###p### ###�########�###@#0#�
####$###R### #>#�#####=###p###h#
##########�###@#0#�
�###1###R#####B#�#####O###p### ###%#####(###�###@#0#�
####@###R### #B#######k###p### ###1#####:###�###4#0#�
�###N###R#####Q#$#####w####### ###<#####G###�###4#0#�
�###W###R#####Q#(#�###�###p### ###=#####W###�###4#0#�
�###j###R#####Q#+#####�###p######?#####d###�###4#0#�
�###z###R#####Q#,#####�###p######?#####v###�###�#0#�
####�###R####Q#-#####�###p###H#"#?#####�###�###�#0#�
####�###R####U#-#####�###p### #3#�#####�###�###T#0#�
�###�###R### #Y#-#####�###p### #5#�#�###�###�### #0#�
####�###R### #Y#0#####�###p### #9#�#####�###�###�#0#�
####�###R### #^#7#####�###p###h#:#�#####�###�###\#5#�
####�###R####`#=#########p####>#�#####�###�###9#:#�
####�###R### #d#=#####
###p### #C#�#####�###�#####>#�
####�###R### #m#P#########p### #H#�#####�###�###T#?######
###R### #o#U#########p### #J#�#�###�###�### #N#?####%###R###
#p#[#####(###p### #O#�#########�### #N#A####7###R### #r#b#�###@###p###
#P#�#####5###�###(#N#M####L###R###�#u#h#�###R###p### #P#�#####P###�###
#P#Q####e###R### #v#k#####a###p### #P## ####e#######4#R#S####u#######
#x#p#�###i###p### #T# ####y#######4#R#T####�########{#q#####x###p###
#T# ####�#######H#R#U�###�###R### #}#r#�###�#########Z##
####�#######T#R#V####�###�###�#�#y#�###�#########Z## ####�#######@#R#W
####�###�###�#�#�#�###�###p### #Z#" ####�###�####R#X
####�###�###E#�#�#####�#########\#/ ######## ### #a#X
####�###�#####�#�#####�########\#3 ###0#######-#|#b####�###�###
#�#�#####�###p####`#3 ###@#######-#~#b####�###�### #�#�#####�###p###
#d#3 ###P#######-#�#b�#### ##�### #�#�#####�###p### #h#8
####e### ###}#�#b# ##$ ##�###5#�#�#�###�###p### #l#A ####w###
### #�#h�###D ##�### #�#�#�#######p### #l#P ####�### ###
#�#�####V ##�### #�#�#########p### #p#h ####�### ####�#��###n
##�### #�#�#�###�###p### #w#� ####�### ### #�#�####�
##�###�#�#�#####"####### ##� ####�### ### #�#�####�
##�###�#�#�#�###/###p### ##� ####�### ### #�#���
###�
##�###�#�#�#�###=###p### #�#� ####�### ### #�#�##
#######$###0###################
#
#u�Ou<<<�<�t�##��######Z###�####�######��##�###�j##�####�######(�######�##
#c0##5�##�#�#�###�###��##<###�#####0###########D######### ########## #
%#*#.#1#4#7#;#?
#D#I#N#S#W#[#_#b#e#h#l#p#u#y#}#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#
�#�#�#�#�###
#######$#(#-
#2#7#<#A#F#K#N#Q#T#V#Y#[#]#^#`#d#g#i#k#m#p#t#x#{#~#�#�#�#�#�#�#�#�#�#�#�#�#�
#�#�#�#�#�#�#�#�#�#�#�#�#�################# #$#)#,#0#######################
#################################################################################
#######
####
####
####
##
###
###
##
##
##
#
##
###
###
####
###
###
###
####
###
###
####
####
###
####
####
####
####
########
####
####
####
####
####
####
##
###########
################################################################################
########################## ###### ##### ##### ### ### ####### ##
# # # # ## ## ## ## ### ####
#�#####�#�n##�#4#� ####�#^\
##u#�#######�#�##w###<�####�#z###�#�#�#####�##"##<#g
a�####�#0�##<#�#######�#"�##Q###h�####�#z#####�#�#####�#�)##u#g
z�####�#K�##<#�#######�#6�##Q###��####�#�###�3#
�####�#�)##<#h
��####�#f�##<#�#######�#M�##Q###��####�A�######
�9####�#1"##�#h
��####�#��##<#�#######�#Z�##Q###7b####�#.###�##
�9####�#I"##�#i
######�#k�##�###?b####�#�###�3#
�9####�##w##u#i
�#####�#z###�#�#######�#Ҳ##w###Hb####�#�###�3#
�#####�#w##<#j
��####�#U\##<#�#######�#L�##Q###]b####�#�###�3#
�9####�#a"##u#j
_#####�#^\##u#�#######�#v�##Q###�/####�#��##<#� rb####�#�###�3#
�#####�#m"##<#k
`�####�#�##<#�#� ####�#z###�###�/####�#��##u#� �b####�#�###�3#
�9####�#y"##�#k
��####�##�##<#�##0####�#��##<#� #�####�#####�3
#:####�#�"##�#l
#0####�#��##u#� 8�####�##
##w#
#:####�#‫܂‬##�#l
�#####�#z###�#�#�b####�#,
##�##
":####�#�##�#m
�#####�#z###�#� �####�##
##!##
*:####�#�"##u#m
;#####�#z###�#�##0####�#z###�#� |�####�#v###Q##
######�#�"##<#n
S#####�#�|##�#�#.0####�#��##�#� �b####�#Pc##�
#
�#####�#<�##u#n
#{####�#�|##�#�#######�#��##�#�#60####�#��##�#� >%####�#z###�##
�####�#Q�##<#o
f#####�#�|##�#�#######�#ȫ##�#�#?0####�#]n##�#� ��####�#z######
######�#f�##u#o
#{####�#�|##�#�#######�#Ы##�#�#G0####�#in##�#� P�####�A�######
ׁ####�#~�##<#p
y#####�##}##�#�#######�#�##G#�#P0####�#��##�#� �b####�#<�##$##
=:####�#p+##<#p
�#####�##}##�#�#######�#�##O#�#X0####�#��##�#� �b####�#####�3#
�#####�#%}##u#�#######�#
�##O#�##s####�#un##�#� #c####�#####�##
5{####�#3}##<#�#######�##�##w#�#a0####�#��##�#� c####�#0###�##
�#####�#A}##u#�#######�#/�##Q#�#i0####�##�##�#�
L{####�#U}##<#�#######�#>�##w#�#r0####�##�##�#�
�#####�#r(##�#�#######�#[�##�#�#z0####�#*�##�#�
�#####�#�(##�#�#######�#g�##Q#�# !####�#z###�#"#�0####�#�n##�#�
�#####�#i}##�#�#######�#t�##Q#�##!####�#U\##�#"#�0####�#�n##�#�
�#####�#�}##�#�#######�#��##U#�#%!####�#^\##�#"#�0####�#A�##<#�
(#####�#z###�#s
�#####�#�}##�#�#######�#��##Q#�#.!####�#�4##�###�0####�#R�##u#�
######�#�}##�#�#######�#��##Q#�#6!####�#FT##�###�0####�#c�##�#�
~#####�#H)##u#�#######�#��##w#�#?!####�#dz##�#$#�0####�#w�##�#�
��####�#Y)##<#�#######�#լ##Q#�#G!####�#�##�#$#�0####�#��##�#�
k#####�#0)##u#�#######�#�##�#�#P!####�#�##�#%#�0####�#��##�#� >
%####�#z###�#�#��####�#<)##<#�#�#####�#k~##�#E#######�#�##w#�#X!
####�##�##�#%#�0####�#�n##�#� #�####�#�R##�
�#� ####�#L+##�#�#�#####�#w~##�#F#######�#
�##Q#�#a!####�##�##�#&#�0####�#�n##�#� ��####�#�R##�
�##�####�#^+##�#�#�#####�#9�##�#F#######�#�e##Q#�#i!
####�##�##�#&#�0####�#��##�#� ��####�#S##�
�#�#####�#j)##u#�#�#####�#K�##�#G#######�##�##Q#�#�0####�#��##�#�
��####�#})##<#�#�#####�#1~##�#G#######�#)�##[#�#r!
####�#z###�#'#�0####�##�##�#�
######�#�}##�#�#�#####�#@~##�#H#######�#:�##�#�#�!
####�#d�##�#'#�0####�#%�##�#�
)#####�#�}##�#�#�#####�#]�##�#H#######�#L�##Q#�#�!
####�#o�##�#'#7#####�#�}##�#�#�#####�#r�##�#I#######�#b�##w#�#�!
####�#z�##�#(#O#####�#�}##�#�#�#####�#�J##�#I#######�#n�##w#�#�!
####�#��##�#(#]#####�#�}##�#�#�#####�#�J##�#J#######�#�##w#�#u#####�##~##
�#�#�#####�#��##�#J#######�#��##Q#�#�#####�#z###�#)#�#####�##~##�#�#�###
##�#��##�#K#######�#��##Q#�#�!####�#��##�#)#�
####�#z###�#�#�#####�#$~##�#�#��####�#
M##�#K#######�#��##Q#�#�!####�#��##�#)#�
####�#�4##�#�#�#####�#�)##�#�#�#####�#z###�#�##
####�#��##u#K#######�#��##[#�#�!####�#Ĵ##�#*#>%####�#z###�## �
####�#FT##�#�#ψ####�#�)##�#�#�#####�#�##�#�## ####�#ɢ##<#L#######�#-
##[#�#�X####�#z###A## �
####�#PT##�#�#�#####�#1~##�#�#�#####�##�##�#�##
####�#�##u#L#######�#ϭ##[#�#�X####�#z###u## �
####�#bT##�#�#c{####�#@~##�#�#�#####�#�##�#�##
####�#��##<#M#######�#�##[#�#�X####�#z###$## �
####�#T##�#�#�#####�#O~##�#�#######�##�##�#�#$
####�##�##u#M#######�#�##Q#�#�X####�#��##�*# �
####�#�T##�#�#�#####�#z###�##z{####�#]~##�#�#-
####�#9�##<#N#######�#�##w#�##Y####�#��##�## ######�#\
o##�##�#####�##*##�#�#5 ####�#Y�##u#N#######�##�##�#�#"Y####�#��##�##
######�#fo##�##�{####�#(*##�#�#�#####�#z###�#�#>
####�#t�##<#O#######�#"�##Q#�#=Y####�##i##<## �
####�#�&##|#o#"#####�#�s##�#�#�#####�#k~##�#�#######�#�##�#�#F
####�#��##u#O#######�#6�##Q#�#PY####�#�*##+##
��####�#z###�#o#*#####�#�s##�#�#�{####�#w~##�#�#######�##�##�#�#O
####�#��##<#P#######�#M�##Q#�#cY####�#��##$## �
####�#�G##�#o#�#####�#:*##u#�# #####�#�##�#�#W
####�#ã##�#P#######�#Z�##Q#�#�Y####�#��##�*# �
####�#�G##�#o#�#####�#z###�#�#B�####�#I*##<#�#(#####�##�##�#�#`
####�#ӣ##�#Q#######�#k�##�#�#�Y####�#�E##H## �
####�#�G##�#p#3#####�#\t##�#�#�#####�#�~##�#�#1#####�#6�##�#�#h
####�#�##�#Q#######�#v�##Q#�#�Y####�##�##<## �
####�#�G##�#p#;#####�#lt##�#�#######�#�~##�#�#9#####�#D�##�#�#q
####�#��##�#R#\S####�#‫ڮ‬##�#�#�Y####�#�###+# �
####�#�G##�#q#D#####�#|t##�#�#
%#####�#�~##�#�#��####�#z###�#R#�Y####�##�###+# �
####�#H##�#q#L#####�#�t##�#�#=#####�#�~##�#�#xk####�#85##+# �
####�##H##�#r#U#####�#�t##�#�#b ####�#�*##u#�#B#####�#��##�#�#�Y####�#
5##�## �
####�#7H##�#r#]#####�#�t##�#�#��####�#�*##<#�#Z#####�#��##�#�#�Y####�#3�
##+# �
####�#RH##�#s#f#####�#�t##�#�#K#####�#�~##u#�#c#####�#��##�#�#�k####�#E�##
+#

######�#qH##�#s#n#####�#�t##�#�#�{####�#�~##<#�#{#####�#��##�#�#4l####�#[�
###+#
#####�#�H##�#t#w#####�##u##�#�#u
####�#�*##u#�#�#####�#W0##<#�#�l####�##5###+!

######�#�H##�#t######�##u##�#�#̉####�#�*##<#�#�#####�#f0##u#�##Z####�#v�##�
#"

######�#�H##�#u#�#####�#+u##�#�#^#####�####�#�#�#####�#�J##�#�#(Z####�#��
##!+" ######�#�H##�#u#�#####�#�J##�#�#�m####�#��##r## 7#####�#
I##�#v#K####�#z###�#�#�Y####�#/5##<#$ ?#####�#5I##�#v#_
####�#�W##<#�#=Z####�#Pc##�
$ H#####�#^I##�#w#g####�#�W##u#�#P#####�#�I##�#w#p
####�#�4##�#�#�#####�#z###�#�#Y#####�#�I##<#x#x
####�#FT##�#�#a#####�#�I##u#x#�####�#PT##�#�#j#####�#�I##�#y#r#####�#
J##�#y#�#####�#�##�#�#{#####�##J##�#z#�#####�#�v##�#�#�#####�#�##�#�####
###�##�###-

�#####�#:J##�#z#�#####�#�v##�#�#######�##�##--#
�#####�#XJ##�#{#�#####�#�v##�#�#�#####�#yJ##�#{#�#####�#�v##�#�#�#####�#
�J##<#|#�#####�#w##<#�#�#####�#�J##u#|
#�#####�##w##u#�#�#####�#t�##�###�#####�#�J##�#}#�#####�#1w##�#�#�#####�#
��##�#########�#��##x-'
�#####�#�J##�#}#�#####�#Kw##�#�#t#####�#�'##u#########�#��##�-1
�#####�#�J##<#~#�#####�#vw##�#�#��####�#�'##<###�#####�#�J##u#~#######�#��
##�#########�#Ы##�#�#�#####�#�J##�########�#��##�#########�#�##�#�#######
�#��##�-8
�#####�##K##�##,#####�#‫܁‬##u#########�#��##�#�#######�# �##�-<
�#####�# K##�#�#6�####�#�##<#########�#ȫ##�#�#######�##�##�#@
�#####�#3K##�#�#?
#####�##�##u#########�#�##O#�#�#####�#FK##�#�#M�####�##�##<#########�#
�##O#�#�#####�#fK##�#�#R#####�#2�##u#########�#/�##�#�##
####�#�K##�#�#d�####�#B�##<# #######�#[�##�#�##
####�#�K##�#�#E#####�##)##�# #######�#g�##�#�#####�#�#��##y#A
@`####�#z###�####
####�#�K##�#�#]#####�##)##�#
#######�#t�##Q#�#######�#��##�#B
S`####�#�###<####
####�#�K##�#�#e#####�#R�##u#
#######�#��##w#�#t�####�#�###u###%
####�#�K##<#�#{�####�#b�##<#########�#��##Q#�#[`####�#9�##�###t#####�#�'##u
#X
-
####�#�K##u#�#x#####�#r�##u#########�#��##Q#�#̙####�#####h0##��####�#�'##<#Y
6
####�#�K##�#�#��####�#��##<#
#######�#լ##Q#�#####�#�#��##�-F
#�####�#"###h0##?#####�##�##u#Y
>
####�##L##�#�#;#####�#z###�#�#�#####�#��##�#
#######�#�##�#�#######�#��##�#I
n`####�#�R##�
##M�####�##�##<#Z
R
####�#BL##�#�#C#####�#Ly##�#�#�#####�#��##�########�#
�##w#�#L�####�#�R##o0##,#####�#‫܁‬##u#Z
Z
####�#TL##�#�#K#####�#Xy##�#�#�#####�#Ă##u########�#%�##[#�#`####�#.###�#
#6�####�#�##<#[
b
####�#pL##�#�#T#####�#dy##�#�#��####�#Ђ##<#########�#
�##Q#�#�`####�#f###�# #R#####�#2�##u#[
j
####�#�L##�#�#\
#####�#py##�#�#�#####�#�)##u#########�#�e##Q#�#�`####�#z###h#
#d�####�#B�##<#\
r
####�#�L##�#�#e#####�#|
y##�#�#�####�#�)##<###0#####�#�4##�#�#######�#)�##[#�#��####�#v###�###�8##
##�#� ##�#\
8#####�#�&##|#�#z
####�#�L##�#�#m#####�#�y##�#�#�#####�#‫܂‬##�###H#####�#FT##�#�#######�#:�##Q#
�#�8####�#� ##�#]
@#####�#�&##�#�#�
####�#�L##�#�#v#####�#�y##�#�#�#####�#�##�###Q#####�#W�##�#�#######�#b�##
w###�8####�##!##�#]
W#####�#�&##�#�#�
####�#�L##�#�#~#####�#�y##�#�#�#####�##�##�###Y#####�#q�##�#�#######�#n�#
#w###�#####�##!##�#^
_#####�#�L##�#�#�#####�#+�##�###b#####�#��##�#�#######�#0�##w###x#####�#r�
##u#^
%�####�#
M##�#�#�#####�#<�##u###j#####�#��##�#�#######�#�##w###��####�#��##<#_
�####�#Q�##<#########�#>�##Q###�#####�#��##�#_
######�#f�##u#########�#O�##w###�#####�#��##�#`
�#####�#z###�#�#ׁ####�#~�##<###�#####�#z###�#�#######�#a�##w###�8####�#+!
##�#`
!#####�#p+##<###��####�#�####�#######�#q�##Q###�8####�#D!##�#a
Q####�#�####�#######�#��##Q###�8####�#]!##�#a
#Q####�#
�##u#�#######�#��##Q# ##9####�#l!##�#b
)Q####�#�k##�#�#######�#��##[#
##9####�#{!##u#b
6Q####�#z###�#�#######�#��##w###�#####�#�!##<#c
G#####�#z###�#2#IQ####�#J-##<#�#######�###[#
#"9####�#�!##�#c
Z#####�#]n##�#2#QQ####�#<�##$#�#######�#ϭ##[##:9####�#�!##�#d
b#####�#in##�#2#YQ####�#M�##�#�#######�#��##Q###H9####�#�!##�#d
�W####�#un##�#3#aQ####�#z###u#�#######�#��##Q###`9####�#�!##�#e
k#####�#�n##�#3#(#####�#z###�####�####�#X�##�#�#######�#�##[###n9####�#�!
##�#e
s#####�#�n##�#3#######�#��##w###�9####�#�!##�#f
|#####�#�n##�#4#H�####�#U\##<#�#######�#�##Q###�9####�##"##u#f
v#######T###�############# ##############(#-
#3#8#=#B#G#K#N#Q#T#W#Z#]#a#e#h#k#n#r#v#6868R6868686868R568QR568QR568Q568PQ568PQ568P
Q5678PQ5678Q5678Q5678Q5678`578`57857857857857858Q578Q578Q57Q57Q57Q57Q_57Q_######*H#
#####*H######3H######3H#######Q######AH#######I######JH######AH######q3######
I######YH######.I######�A######=I######mP######�F######�S######JI######uP###
##[Q#######G######aH######JH######~P######kQ######�$######D�######q3######�P#####
##G######�G######�A### ####### ##�N#######G######oH######[I###
##�J######KP######(G######�H######�S######�J######�P######4G######�H######�$###
###aH######�J######eP######a@######�H#######G######Hv######�P######NG######�H###
###�G######oI#### #�P######XG######�H######(G######D�####
#�P######hG######;D######a@######wI######�7######�Z######�G######�G######�7####
##G######NG######oH######�G######XG######�H######�G######�Z######�H######�G####
##G######�H######�G######�G######�H######�G######�I#######Q######�Z######�G###
####H### ###Q######�Z######�H######;D###### Q######�G######
I######,Q######�G######�Z#######Q######�G######�Z###
##5Q#######H######�G######>Q######�7#######H#######H######,Q######�7##########$##
#<###########
#
##################S##########1q##1#z###u#q#z###u#�#z###�>9#z###u#y#z###u#�#z###�
#A#z###u#�#z###u#�#z###�#!
z###u#I#z###u#�#z###�#Q#z###u#�#z###u#Y#z###u#�#z###u#�#z###�#!
#z###�#�#z###u#�#z###�#�#z####N!
#z###�n)#z###�#i#z###u#�#######�###`###########
##########!#$#)#-#1#7#<#A#F#L#P#R#U#X#[#_#b#e#i#l#o#s#v#x#y#|
##�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�########
##############################################
####
####
####
#####
###
############## ##
######
##
##
##
## # ### ## # # ###### ############
########################### #########################C"##s
/NI=##�#W#'###;%W####�
#NI"##�#W#i=##�#W#.###�#�C##�
#N�"##�##u�=##�#W#.###�#�M�"##s
/N�=##�#W#.###�#M�C##�##W�"##�#Hu�=##�#W#.###�#n�c##s#�M�"##s
/N�=##�#W#.###s#�Vc##�
#N�"##�#W# >##�#W#.###�#M�c##�#>W�"##�#W#)?##�#W#.###�#��i###�#W#)###�#W#I?
##�#W# ###�#W#C###s
/Ni?##�#W#.###�#@�.###�#@�)###�#W#C###�#ru
@##�#W#.#####�TI###�#W#c###�#W#i@##�#W#.#####|
Ui###�#W#i###�#W#�@##�#W#.#####���###�#W#�###�#W#�@##�#W#

W####W#Io##�#W#.###�#y��###�#W#�###�#W#�@##�#W#�r##�#W#.###{#�M�###�#W#�###
�#W# A##�#W##z##[#W#.###�#���###�#W##$##�#W#)A####W#d�##[#W#.###�#��

###�#W#)$##�#W#IA####W#IF####/N��##[#W#.###�#��i###�#W#I$##�#W#$###[#W#.###�#݂
� ###�#W#.###�#a��###�#W#�$##�#W#.###�##��###�#W#�$##�#W#�###�#W#�###�#W#�
$##�#W#)###�#W# ###�#W##'##�##`�W##;#�l)###�#W#)'##�#W#�*##[#W##
##�#�Mi###�#W#C'####�i#
##s
#N�###�#W#�'####�i#6##[#W#�###�#W##(####�iD6##[#W#)###{
/N ,##�#W#��##[#W#I###{
8NI,##�#W# X####/N`�####W#�###{
/N)-##�#W#)X####/N####s
#N)X####�V)###{
�TI###{
8Ni.##�#W#�\##�#W#�###�##`)/##�#W#�\##�#W# ###{
/N�`##�#W#I/##�#W#�`##�#W#c/##�#W#i###{
8Ni/##�#W#�B####/N�###s#�M�/##�#W#�b##�#W#�###s
/N�###s#�V�/##�#W#�###�#�b 0##�#W#�###s
#N####s#�M)0##�#W#####�#�bI0##�#W#####s
/N�0##�#W# e##{
�T ###{
/Nc###s#�V)###{
�T !##�#W#I###{
�Tc###�#�c�C####W#c###s#�M�!##s
/NI1##�#W#c###s
/N�!##�#W#)D####W#i###{
8NID####W#�###s#�M�!##s
/NiD####W#�###s
/N�!##�
#N�D####W#�###�##d�!##�#�t�9##�#W#�###{
&N�!##s#�T :##�#W#�g##�#W#�###{
jU#"##s#�n :##�#W#�###{
sU#"##s
/N�:##�#W#iQ####/N�###{
|U#"##�#in�:##�#W# ###{
�U "##�#W#I;##�#W#IE####W##"##�#�ti;##�#W##"##s
/N�<##�#W#C###s#�V)"##�#W# =##�#W##
##s#�MC"##�#�t)=##�#W#########$###<#############################################
##7#�>�#�>�#�>E#�>�#�>U#�>##�>�#�u
#�>e#�>�#�>�#�>##�>s#�>�#�>##�>{#�>�#�>##�>�#�>�#�>�#�>################
########‫ن‬####�Z##2#~##I2#~�#######�###4###########################
###&#)#+#.#1#4#7#:#=#@#C#F#I#L#O#R#U#X#[#^#a#d#f#h#j#l#n#p#r#t#v#x#z#|
#~#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�######################################
###################################################################################
########################################�#[#4#######�#]#6##
###�#^#7#######�#`#8#######�#c#9#####
#�#f#:#####)#�#i#;#####*#�#w#<#&###+#�#y#?
#5###.#�#{#@#6###1#�#~#B#7###3#�#�#C#:###4#�#�#E#B###D#�#�#G#K###E#�#�#5#G#�#
�#I#Y#8#H#�#�#J#f#;#b#�#�#N#i#<#d#�#�#O#j#=#h#�#�#P#l#>#i#�#�#Q#m#D#�#�#�#e
#o#G#�#�#�#f#t#H#�#�#�#g#w#I#�#�#�#h#{#J#�#�#�#i#�#K#�#�#�#l#�#L#�#�#�#y
#�#M#�#�#�#|#�#N#�#�###}#�#P#�#�###~#�#Q#�#�####�#R#�#�#
#�#�#S#�#�###�#�#X#�#�###Y#�#�#@#Z#�#�#O#[#�#�#^#\
#�#�#g#]#�#�#i#^#�#�#l#_#�#�#�#`#�#�#�#e#�#�#�#f#�#�#�#h#�#�#�#i#�#�#�
#j#�#�#�#k###�#�#l###�#�#q###�#�#r###�#�#s###�#�#v###�#�#w#####�#}#####�#~
###
#�######�#�###+#�#�#!#.#�#�###/
#�#�#)#1#�#�#F#2#�#�#W#3#�#�#######�###X#########
###########$#*#.#1#3#5#7#9#;#?
#C#G#L#P#T#X#[#]#_#a#c#f#i#k#l#n#p#r#s#t#u#v#w#y#}#�#�#�#�#�#�#�#�#�#�#�#�#�
#�#�#�#�#�#�#�#�#�############################################################
###################################################################################
####################################################Q##�####�##�###c1##�###z\
##�###�"##�####Q##�###�,##�###�P##�###F&##�###��##�###1Q##�####�##�###-
�##�###��##�###>Q##�###�,##�###C�##�###�"##�###MQ##�###
�##�###J�##�#######�###hQ##�###7�##�###��##�#######�###uQ##�###?
�##�###��##�###+###�###�'##�###�Q##�###�n##�###�+##�###L&##�###:###�###�'#
#�###�Q##�###�n##�###Q�##�###�##�###G###�###�'##�###�n##�###k�##�###S###�#
###o##�###}�##�###R,##�###��##�###d###�###
,##�###�x##�###��##�###x###�###��##�###�###�###��##�###τ##�###�o##�###DŽ##
�###�##�###�###�###�s##�###R,##�###��##�###�##�###�u##�###τ##�###Ԁ##�####
�##�###F&##�###�u##�###�######��##�###�,##�###�T##�###�u##�###�##�###�P##
�###�T##�####v##�####�##�###��##�###�T##�####v##�###�,##�###�Q##�####U##�#
###v##�###ĥ##�###�x##�###‫ڥ‬##�###�x##�###�##�###�x##�###
�##�###�x##�###$�##�###�W##�###�x##�###:�##�###F&##�####z##�###F�##�###�T#
#�####z##�###%z##�###>z##�###F&##�###È##�###��##�###
‫و‬##�####�##�###��##�###�n##�###��##�###�n##�###��##�###�'##�###��##�###T
O##�###G�##�###z\
##�###�n##�###bO##�###Z�##�###��##�###��##�###yO##�###e�######��##�###��
##�###�O##�###n�##�###ʪ##�####�##�###�O##�###x�##�###�##�####o##�###�O##�#
##�+##�###z\
##�####�##�###�O##�###��##�###4�##�###3�##�###�O##�###��######N�##�####P#
#�###',##�###<P##�####,##�###XP##�###�,##�###dP##�###4,##�###~P##�###��##�##
#�P##�###��##�###�P##�###��##�###�P##�###ˀ##�###�P##�###C,##�###!
�##�###bC##�###Ԁ##�###&�##�###qC##�###߀##�###!
�##�###�+##�###QC##�###v,##�###&�##�###}�##�###�P##�###�##�###R�##�###k�##
�###�P##�###�,##�###�##�###��##�###�P##�###�##�###�##�###�"##�#�########
###�###########
###########$#)#.#2#7#;#?#C#F#I#L#O#R#U#X#[#^#b#e#h#k#n#q#s#w#x#y#z#{#|
#~#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�
#�#�#�#�#�#�#�#�#�#�#�#�#�#�#####
#######!#'#-
#2#8#>#C#G#M#R#V#Z#]#b#f#j#n#t#w#{#~#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�####
##
##
###
###
##
####
####
####
####
####
###
####
###
###
##
#####
#####
#######################################
#######################
#############################################################
##################### ## ### ### ### #### #### #### #### #####
#### #### #### ##### #### ##### ##### #### ##### #### ### ##### ####
### ### ## #### ### ### ### ##### ###### #################
#################################_#####W#�###k#5########V#�#####�####
####Y#�#####�########c#K###X#�#####�########[#�###t#!###"#�########Z#�###
%#�###
####F####w####]#�###$#�### ####l#####z#####\#�###'#�###
####m#####{#####_#�###&#�########n#####|#####^#�###)#�####!
###v#####}#####a#�###(#�###!###~#####`#�###+#�########x##########c#�###*#�####
####�#####b#�###-#�####%###�#####e#�###,#�####%###d#�###.#�###Y######
'###�#[###g#�###0#�###f#�###/#�####)###�#####i#�###2#�###h#�###1#�###!
+###v#�###k#�###4#�###�#####j#�###3#�###�#!###m#�###6#�###�#!
###l#�###5#�###�#####o#�###8#�###�#####�#####n#�###7#�###�#
%###q#�###:#�###�#
%###p#�###9#�###�#'###s#�###<#�###�#'###r#�###;#�###�#)###t#�###N#�###�#)###
�#�###�#�###�#+###�#�###.
9###�#+###�#-###�#/###�#/###�#1###�#�###�#1###�#�###�#3###�#�###�#3###�#�#
##�#�###�#�###�#5###�#�###�#�###�#5###{#�###�#�###�#7###�#�####�###�#�##
#�#�###�#9###�#�###�#�###�#�###�#9###�#�###�#�###�#�###�#;###�#�###�#�#
##�#�###�#;###�#�###�#�###�#;###�#�###�#=###�#�###�#�###�#�###�#=###�#�#
##�#�###�#�###�#?###�#�###�#�###�#?
###�#�###�#�###�#�###�#A###�#�###�#�###�#A###�#�###�#�###�#C###�#�###�#
�###�#C###�#�###�#�###�#W###�#�#####�###�#�###�#�###�#�###�#K###w
�###�#�###�#�###�#�###�#�###�#�###�#�###�#�#####Q###y

�###�#�#####S###�#�#####S###�#�#####U###�#�#####U###�#�#####W###�#�#####W###
�#�#####Y###�#�#####Y###�#�#####[###�#�#####[#####�###�
�###�#�#####]####
�###�#�#####]#####�###
�###�#�#####_#########

�###�#�#####_##########
�###�#�#####a###-#�##########
�###�#�#####a###.#�##########
�###�#�### #c###0#�##########
�###�#######c###1#�### ######
�###�
�###�#####"#e###2#�###!######
�###�#####!#e###3#�###"######
�###�#####$#g###7#�##### ####
�###�# #####g###8#�###$# ####
�###�#######�###&#i###9#�###'######
�###�####%#i###:#�###(######
�###�
�###�#####(#k###;#�###)#####
�###�
�###�#####'#k###<#�###*#####
�###�#####*#m###?#�###-######
�###�
�#########)#m###@#�###.######
�###�
�###,#o###A#�###/######
�###�
�###+#o###B#�####
�###�
�###�#u###.#q###C#####6######
�###�
�###-#q###D#####�#�###
�###�
�###0#s###E#####!
�###�
�###/#s###F#####"
�###�
�###2#u####
�###�
�###1#u###L#####<#####$
�###�
�###,#%###4#w###%
�###�
####/#'###3#w###&
�###�
####0#'###6#y###'
�###�
####1#)###5#y###P# #####�#####�###�
####2#+###8#{###�
####3#-###7#{### #�###�
####4#/###:#}###�
####6#1###9#}###�
####<####�
###;####�
###>#�###�
####B#�###=#�###�
####@#�#####�###
�###�
###B#7###?#�###�
###B#�###
#�###�
####H#9###A#�###�
####I#9###D#�###�
####J#;###C#�###�
####K#;###E#�########L#=###N#�###�
####O#?###O#�#####�########U#�########T#�########
###################�s##��##�##΁##‫ځ‬##�###�##.�##:�##E�##Q�##A�################
#######�##############�>�^################################################
#�#####################
#7#######################[#######################u#########
###########################��####��######�#############�####h#######5�####�T##
####e�####�V######��####�z######�####��#######�####@�######a�####`#######��#
###
###########(#############
####
#######%###8#7#F#E#p#m#�#�#*###O#N#>#<#0#/
#D#C#####DNOH#���(�������####x���#####���####L��####���####���|
��#��########################<��####���X��#####���####################`���
########����################
�������#############Microsoft.Build.Tasks.v3.5.dll#DirectoryGetFiles#Microsoft.
Build.Shared#PathGetTempFileName#DirectoryExists#FileExists#FileCopy#FileDelete#Fil
eCreate#GenerateUniqueFileName#MetadataConversionUtilities#StreamMappedString#Micro
soft.Build.Shared.LanguageParser#ExceptionHandling#FileUtilities#ItemSpecModifiers#
EscapingUtilities#FileMatcher#FileSystemEntity#GetFileSystemEntries#Result#ToolTask
Extension#Microsoft.Build.Tasks#AL#AppDomainIsolatedTaskExtension#AppConfig#AppConf
igException#BindingRedirect#DependentAssembly#RuntimeSection#AspNetCompiler#Assembl
yFoldersEx#Resolver#AssemblyFoldersExResolver#AssemblyFoldersResolver#DisposableBas
e#AssemblyInformation#AssemblyNameComparer#AssemblyNameReference#AssemblyNameRefere
nceAscendingVersionComparer#AssemblyResolution#AssemblyResolutionConstants#BadImage
ReferenceException#CandidateAssemblyFilesResolver#ConflictLossReason#CopyLocalState
#CopyLocalStateUtility#DependencyResolutionException#DirectoryResolver#FrameworkPat
hResolver#GacResolver#GlobalAssemblyCache#HintPathResolver#InstalledAssemblies#Inva
lidReferenceAssemblyNameException#NoMatchReason#RawFilenameResolver#Reference#Refer
enceResolutionException#ReferenceTable#ReferenceAssemblyExtensionPair#ResolutionSea
rchLocation#TaskExtension#ResolveAssemblyReference#GetListPath#ReverseVersionCompar
er#TaskItemSpecFilenameComparer#UnificationReason#UnificationVersion#UnifiedAssembl
yName#AssemblyFolder#StateFileBase#AssemblyRegistrationCache#AssemblyResources#Assi
gnCulture#ResolveProjectBase#AssignProjectConfiguration#AssignTargetPath#ComReferen
ce#AxTlbBaseReference#AxReference#IBootstrapperBuilder#Microsoft.Build.Tasks.Deploy
ment.Bootstrapper#BootstrapperBuilder#Graph#GraphNode#NodeColor#GraphNodeDependency
CountComparer#GraphNodeNameComparer#GraphNodeTimeComparer#IBuildMessage#BuildMessag
e#IBuildResults#BuildResults#IBuildSettings#BuildSettings#IProduct#IProductCollecti
on#IProductBuilder#IProductBuilderCollection#BuildMessageSeverity#ComponentsLocatio
n#NativeMethods#Package#PackageCollection#CopyAllFilesType#Product#ProductBuilder#P
roductBuilderCollection#ProductCollection#XmlValidationResults#ProductValidationRes
ults#ResourceUpdater#StringResource#FileResource#Util#CallTarget#CombinePath#Comman
dLineBuilderExtension#MarshalReleaseComObject#ComDependencyWalker#ComReferenceInfo#
ComReferenceItemMetadataNames#ComReferenceResolutionException#ComReferenceTypes#Com
ReferenceWrapperInfo#ItemMetadataNames#ConvertToAbsolutePath#Copy#CreateManifestRes
ourceName#CreateCSharpManifestResourceName#CreateItem#CreateProperty#CreateTemporar
yVCProject#CreateVisualBasicManifestResourceName#ManagedCompiler#Csc#CSharpParserUt
ilities#TokenCharReader#CSharpTokenCharReader#TokenEnumerator#CSharpTokenEnumerator
#CSharpTokenizer#Token#CharLiteralToken#NullLiteralToken#SyntaxErrorToken#Unrecogni
zedStringEscapeToken#EndOfFileInsideStringToken#NewlineInsideStringToken#EndOfFileI
nsideCommentToken#OperatorOrPunctuatorToken#OpenScopeToken#CloseScopeToken#Culture#
ItemCultureInfo#CultureStringUtilities#GetAttributes#SetAttributes#SetLastAccessTim
e#SetLastWriteTime#GetDirectories#CopyFile#GetAssemblyName#GetAssemblyMetadata#Crea
teFileStream#GetRegistrySubKeyNames#GetRegistrySubKeyDefaultValue#GetLastWriteTime#
Delete#Dependencies#DependencyFile#Error#Exec#ExtractedClassName#ReadLinesFromFile#
WriteLinesToFile#FindAppConfigFile#FindInList#FormatUrl#FormatVersion#_FormatType#G
enerateManifestBase#AssemblyType#DependencyType#GenerateApplicationManifest#_Manife
stType#GenerateBootstrapper#GenerateDeploymentManifest#GenerateTrustInfo#GenerateRe
source#ProcessResourceFiles#Format#LineNumberStreamReader#TextFileException#Entry#A
ssemblyNamesTypeResolutionService#GetAssemblyIdentity#GetFrameworkPath#GetFramework
SdkPath#IComReferenceResolver#ICscHostObject#Microsoft.Build.Tasks.Hosting#ICscHost
Object2#ImportPFXKeyDlg#InvalidParameterValueException#IVbcHostObject#IVbcHostObjec
t2#LC#FindUnderPath#RemoveDuplicates#MakeDir#ApplicationIdentity#Microsoft.Build.Ta
sks.Deployment.ManifestUtilities#Manifest#ReferenceComparer#AssemblyManifest#Applic
ationManifest#AssemblyAttributeFlags#AssemblyIdentity#FullNameFlags#AssemblyReferen
ceType#BaseReference#AssemblyReference#AssemblyReferenceCollection#ComImporter#Clas
sInfo#ConvertUtil#UpdateMode#UpdateUnit#DeployManifest#EmbeddedManifestReader#FileA
ssociation#FileAssociationCollection#FileReference#ComClass#TypeLib#WindowClass#Pro
xyStub#FileReferenceCollection#ManifestFormatter#ManifestReader#ComInfo#ManifestWri
ter#MetadataReader#IReferenceIdentity#IMetaDataDispenser#EnumResNameProc#RegKind#Ou
tputMessageType#OutputMessage#OutputMessageCollection#PathUtil#SecurityUtilities#Tr
ustInfo#ItemComparer#XmlNamespaces#XmlUtil#ResourceResolver#XPaths#AssemblyNameExte
nsion#EncodingUtilities#ErrorUtilities#ConversionUtilities#FileUtilitiesRegex#Inter
nalErrorException#ResourceUtilities#Message#MSBuild#IFixedTypeInfo#UCOMICreateIType
Lib#CorMetaDataDispenser#IMetaDataImport#IMetaDataImport2#CorOpenFlags#IMetaDataAss
emblyImport#IClassFactory#CorAssemblyFlags#ASSEMBLYMETADATA#ASSEMBLYINFO_FLAG#ASSEM
BLY_INFO#IAssemblyCache#AssemblyCacheFlags#REGKIND#CryptFlags#KeySpec#BlobType#Cert
StoreClose#IMAGE_FILE_HEADER#IMAGE_DATA_DIRECTORY#IMAGE_OPTIONAL_HEADER32#IMAGE_OPT
IONAL_HEADER64#IMAGE_NT_HEADERS32#IMAGE_NT_HEADERS64#IMAGE_COR20_HEADER#CRYPTOAPI_B
LOB#AssemblyComparisonResult#ParseState#PiaReference#PropertyParser#PropertyNameVal
uePair#RedistList#FullNameComparer#AssemblyTableInfo#SubsetListFinder#AssemblyEntry
#RegisterAssembly#RegistryHelper#RemoveDir#ResGenDependencies#ResXFile#ResolveComRe
ference#ResolveComReferenceCache#ResolveKeySource#ResolveManifestFiles#PublishInfo#
MapEntry#AssemblyMap#FileMap#PublishState#PublishFlags#ResolveNativeReference#ItemS
pecComparerClass#ResolveVCProjectOutput#DllGetClassObjectDelegate#ResolveNonMSBuild
ProjectOutput#SGen#SignFile#StrongNameException#StrongNameLevel#StrongNameUtils#Sys
temState#FileState#TaskLoggingHelperExtension#TlbReference#WhitespaceToken#LiteralT
oken#BooleanLiteralToken#IntegerLiteralToken#HexIntegerLiteralToken#DecimalIntegerL
iteralToken#StringLiteralToken#ExpectedIdentifierToken#ExpectedValidHexDigitToken#U
nrecognizedToken#CommentToken#IdentifierToken#KeywordToken#PreprocessorToken#OpenCo
nditionalDirectiveToken#CloseConditionalDirectiveToken#OperatorToken#TokenChar#Touc
h#UnregisterAssembly#UpdateManifest#Vbc#VCBuild#VisualBasicParserUtilities#VisualBa
sicTokenCharReader#VisualBasicTokenEnumerator#VisualBasicTokenizer#LineTerminatorTo
ken#SeparatorToken#LineContinuationToken#OctalIntegerLiteralToken#ExpectedValidOcta
lDigitToken#CodeMarkerEvent#Microsoft.Internal.Performance#Win32#System.Deployment.
Internal.CodeSigning#CRYPT_DATA_BLOB#AXL_SIGNER_INFO#AXL_TIMESTAMPER_INFO#ManifestS
ignedXml#SignedCmiManifest#CmiManifestSignerFlag#CmiManifestVerifyFlags#CmiManifest
Signer#CmiStrongNameSignerInfo#CmiAuthenticodeSignerInfo#CmiAuthenticodeTimestamper
Info#CodeMarkers#Warning#Constants#FX20Assembly#FX35Assembly#FXAssembly#ThisAssembl
y#System#Microsoft.Build.Utilities.v3.5#Microsoft.Build.Utilities#Microsoft.Build.F
ramework#System.Windows.Forms#System.Xml#System.Runtime.InteropServices#TaskLogging
Helper#.ctor#ITaskItem#System.Text#Files#Directories#Log#HasLoggedErrors#Bag#get_Ve
rsion#BaseAddress#DelaySign#GenerateFullPaths#KeyFile#KeyContainer#MainEntryPoint#O
utputAssembly#Platform#ResponseFiles#TargetType#Win32Icon#Win32Resource#LinkResourc
es#ToolName#get_FileName#System.Reflection#TargetPath#platform#Guid#Equals#GetHashC
ode#ToString#CompareTo#references#FindRelatedFiles#FindSatellites#FindSerialization
Assemblies#get_AssemblyName#AssemblyFiles#TargetFrameworkSubsets#Assemblies#Candida
teAssemblyFiles#TargetFrameworkDirectories#InstalledAssemblyTables#InstalledAssembl
ySubsetTables#IgnoreDefaultInstalledAssemblyTables#IgnoreDefaultInstalledAssemblySu
bsetTables#TargetProcessorArchitecture#SearchPaths#AllowedAssemblyExtensions#Allowe
dRelatedFileExtensions#AppConfigFile#AutoUnify#StateFile#FindDependencies#Silent#Ta
rgetFrameworkVersion#FullTargetFrameworkSubsetNames#ResolvedFiles#ResolvedDependenc
yFiles#RelatedFiles#SatelliteFiles#SerializationAssemblyFiles#ScatterFiles#CopyLoca
lFiles#SuggestedRedirects#FilesWritten#SerializeCache#DeserializeCache#DeleteFile#S
ystem.Resources#resources#AssignedFiles#AssignedFilesWithCulture#AssignedFilesWithN
oCulture#CultureNeutralAssignedFiles#RootFolder#keyContainer#keyFile#delaySign#Path
#get_Name#dependencies#Clear#Targets#TargetOutputs#RunEachTargetSeparately#UseResul
tsCache#Paths#AbsolutePaths#SourceFiles#DestinationFolder#SkipUnchangedFiles#Destin
ationFiles#CopiedFiles#OverwriteReadOnlyFiles#rootNamespace#PrependCultureAsDirecto
ry#ResourceFiles#RootNamespace#ManifestResourceNames#ResourceFilesWithManifestResou
rceNames#Include#Exclude#PreserveExistingMetadata#AdditionalMetadata#Encoding#Addit
ionalLibPaths#AddModules#CodePage#DebugType#DefineConstants#EmitDebugInformation#Fi
leAlignment#NoConfig#NoLogo#NoWin32Manifest#Optimize#References#Resources#Sources#T
reatWarningsAsErrors#Utf8Output#Win32Manifest#StandardOutputEncoding#HostCompilerSu
pportsAllParameters#AllowUnsafeBlocks#CheckForOverflowUnderflow#DocumentationFile#D
isabledWarnings#ErrorReport#LangVersion#ModuleAssemblyName#NoStandardLib#PdbFile#Us
eHostCompilerIfAvailable#WarningLevel#WarningsAsErrors#WarningsNotAsErrors#sources#
TreatErrorsAsWarnings#DeletedFiles#GetDependencyFile#AddDependencyFile#RemoveDepend
encyFile#filename#lastModified#exists#get_LastModified#get_Exists#HasFileChanged#Te
xt#File#Lines#Overwrite#PrimaryList#SecondaryList#set_UseSourcePath#UseSourcePath#A
dditionalInputs#OutputResources#StronglyTypedLanguage#StronglyTypedNamespace#Strong
lyTypedManifestPrefix#StronglyTypedClassName#StronglyTypedFileName#PublicClass#Neve
rLockTypeAssemblies#FrameworkVersion11Path#FrameworkVersion20Path#FrameworkVersion3
0Path#FrameworkVersion35Path#FrameworkSdkVersion20Path#FrameworkSdkVersion35Path#Up
dateToAbsolutePaths#InPath#OutOfPath#Inputs#Filtered#DirectoriesCreated#asAssemblyN
ame#asString#unnamedAssembly#GetAssemblyNam
eEx#CreateAssemblyName#CreateFullName#ReplaceVersion#get_CultureInfo#get_FullName#G
etPublicKeyToken#get_UnnamedAssembly#CompareBaseNameTo#CompareBaseNameToImpl#Compar
eBaseNamesStringWise#get_IsUnnamedAssembly#GetAssemblyNameFromDisplayName#EscapeDis
playNameCharacters#Importance#Properties#Projects#RebaseOutputs#StopOnFirstFailure#
ToolsVersion#BuildInParallel#UnloadProjectsOnCompletion#SkipNonexistentProjects#Tar
getAndPropertyListSeparators#resXFiles#isDirty#baseLinkedFileDirectory#get_BaseLink
edFileDirectory#set_BaseLinkedFileDirectory#GetResXFileInfo#AddResxFile#get_IsDirty
#linkedFiles#get_LinkedFiles#GetLinkedFiles#SetInstalledAssemblyInformation#GetObje
ctData#SetGetLastWriteTime#CacheDelegate#GetFileState#set_LastModified#get_Assembly
#set_Assembly#GenerateDocumentation#Imports#NoVBRuntimeReference#NoWarnings#OptionC
ompare#OptionExplicit#OptionStrict#OptionInfer#OptionStrictType#RemoveIntegerChecks
#SdkPath#TargetCompactFramework#Verbosity#additionalLibPaths#info#context#codePage#
win32Manifest#errorMessage#errorCode#addModules#allowUnsafeBlocks#baseAddress#check
ForOverflowUnderflow#debugType#defineConstants#delaySignExplicitlySet#disabledWarni
ngs#documentationFile#emitDebugInformation#errorReport#fileAlignment#generateFullPa
ths#langVersion#linkResources#targetType#mainEntryPoint#moduleAssemblyName#noConfig
#noStandardLib#optimize#outputAssembly#pdbFile#responseFiles#treatWarningsAsErrors#
warningLevel#warningsAsErrors#warningsNotAsErrors#win32Icon#win32Resource#generateD
ocumentation#importsList#noWarnings#optionCompare#optionExplicit#optionStrict#optio
nStrictType#removeIntegerChecks#sdkPath#targetCompactFramework#optionInfer#szScope#
dwOpenFlags#riid#strName#cchNameIn#amdInfo#dwFlags#mdAsmRef#ppbPublicKeyOrToken#pcb
PublicKeyOrToken#pchNameOut#ppbHashValue#pcbHashValue#pdwAssemblyRefFlags#phEnum#as
mRefs#asmRefCount#iFetched#fileRefs#fileRefCount#pszAssemblyName#pAsmInfo#ComVisibl
eAttribute#CLSCompliantAttribute#GuidAttribute#System.Runtime.CompilerServices#Inte
rnalsVisibleToAttribute#System.Diagnostics#CompilationRelaxationsAttribute#RuntimeC
ompatibilityAttribute#Microsoft.Build.Tasks.v3.5#.cctor#__StaticArrayInitTypeSize=1
8#OutputAttribute#RequiredAttribute#<GetUnifiedAssemblyNames>d__0#InterfaceTypeAttr
ibute#kernel32.dll#__StaticArrayInitTypeSize=6#RequiredRuntimeAttribute#TypeLibType
Attribute#Kernel32.dll#oleaut32.dll#mscoree.dll#sfc.dll#mscorwks.dll#oleaut32#dbghe
lp.dll#fusion.dll#crypt32.dll#advapi32.dll#__StaticArrayInitTypeSize=32#Microsoft.I
nternal.Performance.CodeMarkers.dll#Microsoft.Build.Tasks.Strings.resources#Microso
ft.Build.Tasks.Deployment.ManifestUtilities.Strings.resources#Microsoft.Build.Tasks
.Strings.shared.resources#######
###2###I###]###m###x###�###�###�###�###�###�###############5###G###S###d###y###
�###�###�###�###�###�###�###�### #######'###9###B###\
###t###�###�###�###�###�###########:###Y###l###{###�###�###�###�###�###�#####
######B###P###d###n###�###�###�###�###�###�###########9###K###^###r###�###�###
�###�###�###�###�###########(###4###I###w###�###�###�###�###�###�###�#######
#######(###7###E###N###a###q###�###�###�###�###�###�###�###�###########.###C##
#\###l###{###�###�###�###�###�###�###�###�#### ##; ##M ##e ##w ##�
##� ##� ##� ##� ##� ###
##'
##7
##;
##Q
##a
##w
##�
##�
##�
##�
##�
##�
##�
##########8###T###n###}###�###�###�###�###�###�###�###�###
###
###
##7
##H
##_
##}
##�
##�
##�
##�
##�
##�
##�
##�
##�
###########'##3##H##U##d##�##�##�##�##�##�##�##�
######&###,###O###c###t###�###�###�###�###�###�###
#######)###,###:###K###S###g###�###�###�###�###�###�###########&###4###F###b###
n###x###�###�###�###�###�###�###�###�#######

###########7###I###X###`###o###~###�###�###�###�###�###�###�###�###########&##
#4###<###M###T###j###|
###�###�###�###�###�###�###�###�###########3###D###Q###i###w###�###�###�###�
###�###�###�###�###�###�#######
###5###M###e###x###�###�###�###�###�###�###�###############1###B###P###a###p###
z###�###�###�###�###�###�###�###�###
###########,###C###Y###p###�###�###�###�###�###�###�###�###########)###9###F##
#Z###n###�###�###�###�###�###�###########"###4###R###q######�###�###�###�###
�###�###�###�###########7###F###\
###u###�###�###�###�###�###�###########5###G###]###t###�###�###�###�###�###�
###�###############'###.###M###g###�###�###�###�###�###�###�###�###�#########
##########$###0###:###L###T###a###p######�###�###�###�###�###�###�###�###�###
�###################$###.###9###J###Y###u###�###�###�###�###�###�###########C##
#n###�###�###�###�###�###�###�###############=###K###c###p######�###�###�###
�###�###�###�#### ### ### ##* ##C ##^ ##z ##� ##� ##� ##� ##� ##� ##� ##�
##� ##� ##� ###!## !###!###!##5!##H!##Y!##e!##|!##�!##�!##�!##�!##�!##�!
###"##
"##&"##9"##B"##U"##`"##i"##s"##�"##�"##�"##�"##�"##�"##�"##�"##�"##�"######
#######2###T###f###�###�###�###�###�###�###�###�###�###
$###$##1$##9$##O$##\$##n$##�$##�$##�$##�$##�$##�$##�$##�$##�$##�$##�$##�$###
%###%###%##1%##B%##R%##h%##%##�%##�%##�%##�%##�%###&###&##1&##H&##b&##|
&##�&##�&##�&##�&##�&##�&##�&##�&##�&###'###'##"'##1'##A'##N'##`'##t'##�'##�'
##�'##�'##�'###(###(###(##'(##5(##H(##U(##e(##�(##�(##�(##�(##�(##�(##�(###)#
#*)##6)##B)##N)##^)##m)##�)##�)##�)##�)##�)##�)##�)##�)###*###*##(*##3*##A*##P
*##]*##i*##z*##�*##�*##�*##�*##�*##�*##�*##�*##�*##�*###+###+##"+##.
+##H+##R+##b+##y+##�+##�+##�+##�+##�+##�+##�+##�+###,###,##$,##-,##;,##D,##S,#
#[,##i,##,##�,##�,##�,##�,##�,##�,##�,##�,###-###-## -##1-##E-##M-##d-##p-##x-
##�-##�-##�-##�-##�-##�-##�-##�-##�-##�-##�-
###.###.###.##$.##0.##9.##B.##O.##_.##h.##|.##�.##�.##�.##�.##�.###/##-/##H/
##O/##l/##|/##�/##�/##�/##�/##�/
###0###0##'0##40##@0##H0##U0##^0##j0##u0##�0##�0##�0##�0###1##G1##v1######
###)###;###R###f###v###�###�###�###�###�###�###�###
#######,###>###P###\###m###�###�###�###�###�###�###�###�###########!
###0###B###K###e###}###�###�###�###�###�###
###(###C###b###u###�###�###�###�###�###�###########
%###K###Y###m###w###�###�###�###�###�###########
%###B###T###g###{###�###�###�###�###�###�###############1###=###R###�###�###�#
##�###�###�###�###�###
#######$###1###@###N###W###j###z###�###�###�###�###�###�###�###�###
###%###7###L###e###u###�###�###�###�###�###�###�###�#### ##$ ##D ##V
##n ##� ##� ##� ##� ##� ##� ##� ##

##0
##@
##D
##Z
##j
##�
##�
##�
##�
##�
##�
##�
##�
#####(###A###]###w###�###�###�###�###�###�###�###�####
###
###
##,
##@
##Q
##h
##�
##�
##�
##�
##�
##�
##�
##�
##�
##�
#######"##0##<##Q##^##m##�##�##�##�##�##�##�
##########/###5###X###l###}###�###�###�###�###�###�#######"###2###5###C###T###\
###p###�###�###�###�###�###�###########/
###=###O###k###w###�###�###�###�###�###�###�###�#######
###########(###@###R###a###i###x###�###�###�###�###�###�###�###�###########"##
#/
###=###E###V###]###s###�###�###�###�###�###�###�###########1###F###V###g###t###
�###�###�###�###�###�###�###�###############"###1###C###X###p###�###�###�###
�###�###�###�###########&###1###B###T###e###s###�###�###�###�###�###�###�###
�###
#######!###-###5###B###O###f###|###�###�###�###�###�##########-
###9###C###^###k###{###�###�###�###�###�###�###
###(###:###G###W###d###v###�###�###�###�###�###�###�###�###�#######5###P###e##
#y###�###�###�###�###�#######
###0###@###P###e###w###�###�###�###�###�###�#######%###-###7###D###Q###\
###r###�###�###7###[###u###�#######z###�###m"##F&##L&##�'##�'##�'##�*##�+##�+
##,###,##',##4,##C,##R,##v,##�,##�,##�,##�,##�,##J-##x.##c1##q3##q4###5##
5##/
5##85##�A##QC##bC##qC##�E##TO##bO##yO##�O##�O##�O##�O##�O###P##<P##XP##dP##~P##
�P##�P##�P##�P##�P##�P##�P###Q###Q##1Q##>Q##MQ##hQ##uQ##�Q##�Q##�R##�R##
S##]S##�S##�T##�T##�T###U##�W##�Z##�Z##�Z##z\
###i##�j##�k##�n##�n##�n###o##�o##�s##�u##�u##�u###v###v###v##Hv##�x##�x##�x
##�x##�x###z###z##
%z##>z##�~##G�##Z�##e�##n�##x�##��##��##��##��##��##ˀ##Ԁ##
##7� ##�###�###�##�##߀�##?
�##Q�##k�##}�##��##��##��##��##DŽ##τ##�##�###�##D�##È##‫و‬##�##�##
�###�##(�##5�##<�##M�##X�##��##!�##&�##R�##�##�##9�##��##��##��##ĥ##
‫ڥ‬##�##�##$�##:�##F�##��##��##ʪ##�##4�##N�##-
�##C�##J�##��##��##�##��##��##��##��##��##��##��##��###�##
�###�##3�##E�##[�##v�##��##��###�##��##��##��##��##��##��###�###�##3�
##�###�###�###�###�#######"###.###Z###f###v###�###�###�###�###############0###
�"##�"##�"##########+###:###G###S###d###x###�###�###�$##�7##�7##a@##;D##�F###G
###G###G##(G##4G##NG##XG##hG##G##�G##�G##�G##�G##�G##�G##�G##�G###H###H##*H##3
H##AH##JH##YH##aH##oH##�H##�H##�H##�H##�H##�H## I###I##
I##.I##=I##JI##[I##oI##wI##�I##�J##�J##�J##�N##KP##eP##mP##uP##~P##�P##�P##�P#
#�P##�P###Q###Q## Q##,Q##5Q##>Q##[Q##kQ##!\##5\
##�]##�]##�]##O^##�^##�^##�^##Pc##�c##�e##�e##Ri##no##�s##�v##-
x##y�##��##�##΁##‫ځ‬##�###�##.�##:�##E�##Q�##ы##A�##��##�###�##�H##
###�###`SZ�O�H�ȄG-C�######################�z\V#4�#�?_#�
:# ###### ### #### ######��#### ### ### ####(###############(### ####
#####(###(######��# ##### #### #### ##�##
######�##### #### ####### ##### ##### #####(##��#
# ### ## # #### #
##### #
###��#####*P��#$###�##�########$##RSA1#########��WĮ��.��#�����
j 쏇
�#vl�L��#�;�����6� #!#�#r<���w#��#wO)�2#��#���!����d\L
���(]b,�e,#��=t]o-��~^�#Ė=&#�#Ce# m�4MZғ################
##��######################## ###v2.0##)##$E5CB7A31-7512-11d2-89CE-
0080C792E5D8##)##$7DAC8207-D3AE-4c75-9B67-
92801A497D44######Microsoft.Build.Tasks.v3.5.dll######Microsoft
Corporation######Microsoft® .NET Framework##4##/© Microsoft Corporation. All
rights reserved.##
###3.5.0.0##
###en-US##*##%f:\dd\tools\devdiv\FinalPublicKey.snk##)##$E3D4D3B9-944C-407b-A82E-
B19719EA7FB3##�p##�jMicrosoft.Build.Tasks.Unittest,
PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c
4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad2361321
02900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab9
9285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293##
�x##�rMicrosoft.Build.Tasks.Whidbey.Unittest,
PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c
4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad2361321
02900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab9
9285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293##
#####T##WrapNonExceptionThrows##

###############"###'###,###/###3###7###<###@###C###G###L###P###U###[###_###d###i###
o###t###y###�###�###�###�###�###�###�###�###�###�###�###�###�###�###�###�#
##�###�###�###�###�###�###�#######/###J###j###�###�###�###�###
###~###�###########
###!
###<###Q###u###�###�###�###�###�###########�###W###�###�###�###�###�#######�
###y###�###w###�###w###G###O###U###�###o###x-##�-##c0##�>##�>##�>##�>##�M##/
N##yN##�T##|
U##�V###`##�t##�t##��##݂##�###�##a�##n�##y�##��####@ � �##�## �###�###�####.#
# b#o#o#l##)E#x#p#e#c#t#e#d# #a# #n#e#w# #p#a#g#e#.##GE#x#p#e#c#t#e#d# #n#o#n#-
#z#e#r#o# #e#x#t#r#a#c#t#i#o#n# #c#o#u#n#t#.##YC#o#u#l#d# #n#o#t# #g#e#t#
#c#h#a#r#a#c#t#e#r# #c#o#u#n#t# #f#o#r# #t#h#i#s#
#p#a#g#e#.###F#u#l#l#P#a#t#h###R#e#c#u#r#s#i#v#e#D#i#r###.#\###\###\#\
###+###{###:###M#S#B#u#i#l#d#.###B#a#s#e#A#d#d#r#e#s#s###C#u#l#t#u#r#e###D#e#l#a#y#
S#i#g#n###G#e#n#e#r#a#t#e#F#u#l#l#P#a#t#h#s###K#e#y#F#i#l#e###K#e#y#C#o#n#t#a#i#n#e
#r###M#a#i#n#E#n#t#r#y#P#o#i#n#t###O#u#t#p#u#t#A#s#s#e#m#b#l#y###P#l#a#t#f#o#r#m###
R#e#s#p#o#n#s#e#F#i#l#e#s###T#a#r#g#e#t#T#y#p#e###V#e#r#s#i#o#n###W#i#n#3#2#I#c#o#n
###W#i#n#3#2#R#e#s#o#u#r#c#e###L#i#n#k#R#e#s#o#u#r#c#e#s###/
#b#a#s#e#a#d#d#r#e#s#s#:###/#d#e#l#a#y#s#i#g#n###/#f#u#l#l#p#a#t#h#s###/
#k#e#y#f#i#l#e#:##
/#m#a#i#n#:###/#o#u#t#:###/#p#l#a#t#f#o#r#m#:###/#t#a#r#g#e#t#:###/
#w#i#n#3#2#i#c#o#n#:###/#w#i#n#3#2#r#e#s#:#####L#o#g#i#c#a#l#N#a#m#e##
A#c#c#e#s#s###@## n#u#l#l##

n#a#m#e###T#a#r#g#e#t#P#a#t#h##=G#e#n#e#r#a#l#.#F#r#a#m#e#w#o#r#k#s#F#i#l#e#N#o#t#F
#o#u#n#d###v###S#e#a#r#c#h#P#a#t#h#s###R#E#G#I#S#T#R#Y#K#E#Y#R#O#O#T##)T#A#R#G#E#T#
R#U#N#T#I#M#E#V#E#R#S#I#O#N###R#E#G#I#S#T#R#Y#K#E#Y#S#U#F#F#I#X###C#O#N#D#I#T#I#O#N
#S###O#S#V#E#R#S#I#O#N#=###P#L#A#T#F#O#R#M#=##��{#r#e#g#i#s#t#r#y#:#(#?
#<#R#E#G#I#S#T#R#Y#K#E#Y#R#O#O#T#>#[#^#,#]#*#)#,#(#?
#<#T#A#R#G#E#T#R#U#N#T#I#M#E#V#E#R#S#I#O#N#>#[#^#,#]#*#)#,#(#?
#<#R#E#G#I#S#T#R#Y#K#E#Y#S#U#F#F#I#X#>#[#^#,#]#*#)#(#[#,#]#*#)#(#?
#<#C#O#N#D#I#T#I#O#N#S#>#.#*#)#}###s#o#u#r#c#e#F#i#l#e##%
{#h#i#n#t#p#a#t#h#f#r#o#m#i#t#e#m#}##5{#t#a#r#g#e#t#f#r#a#m#e#w#o#r#k#d#i#r#e#c#t#o
#r#y#}###{#r#a#w#f#i#l#e#n#a#m#e#}##1{#c#a#n#d#i#d#a#t#e#a#s#s#e#m#b#l#y#f#i#l#e#s#
}###{#g#a#c#}###{#a#s#s#e#m#b#l#y#f#o#l#d#e#r#s#}###{#r#e#g#i#s#t#r#y#:###a#s#s#e#m
#b#l#y#N#a#m#e##EG#o#t# #a# #n#u#l#l# #a#s#s#e#m#b#l#y# #n#a#m#e#
#f#u#l#l#n#a#m#e#.##1,# #P#r#o#c#e#s#s#o#r#A#r#c#h#i#t#e#c#t#u#r#e#=##
M#S#I#L##5G#o#t# #a# #n#u#l#l# #t#a#b#l#e#C#a#n#d#i#d#a#t#e#.##iA#
#p#r#i#m#a#r#y# #r#e#f#e#r#e#n#c#e# #m#u#s#t# #h#a#v#e# #a# #p#r#i#m#a#r#y#
#s#o#u#r#c#e# #i#t#e#m#.##qO#n#l#y# #a# #p#r#i#m#a#r#y# #r#e#f#e#r#e#n#c#e# #c#a#n#
#h#a#v#e# #a# #p#r#i#m#a#r#y# #s#o#u#r#c#e# #i#t#e#m#.###P#r#i#v#a#t#e##7G#o#t#
#a#n# #e#m#p#t#y# #a#s#s#e#m#b#l#y#
#n#a#m#e#.###*#d#i#r#e#c#t#o#r#y#*##AG#e#n#e#r#a#l#.#E#x#p#e#c#t#e#d#F#i#l#e#G#o#t#
D#i#r#e#c#t#o#r#y##7G#e#n#e#r#a#l#.#E#x#p#e#c#t#e#d#F#i#l#e#M#i#s#s#i#n#g##'E#x#e#c
#u#t#a#b#l#e#E#x#t#e#n#s#i#o#n###F#u#s#i#o#n#N#a#m#e###H#i#n#t#P#a#t#h###A#s#s#e#m#
b#l#y#F#o#l#d#e#r#K#e#y###P#u#b#l#i#c#K#e#y#T#o#k#e#n##c{#0#}#,#
#V#e#r#s#i#o#n#=#{#1#}#,# #C#u#l#t#u#r#e#=#{#2#}#,#
#P#u#b#l#i#c#K#e#y#T#o#k#e#n#=#{#3#}###=###S#p#e#c#i#f#i#c#V#e#r#s#i#o#n###A#s#s#e#
m#b#l#y#F#i#l#e#s###*#.###.#r#e#s#o#u#r#c#e#s#.#d#l#l##'.#X#m#l#S#e#r#i#a#l#i#z#e#r
#s#.#d#l#l###m#s#c#o#r#l#i#b##=G#e#n#e#r#a#l#.#C#o#u#l#d#N#o#t#L#o#c#a#t#e#A#s#s#e#
m#b#l#y##wM#a#x#i#m#u#m# #i#t#e#r#a#t#i#o#n#s# #e#x#c#e#e#d#e#d# #w#h#i#l#e#
#l#o#o#k#i#n#g# #f#o#r# #d#e#p#e#n#d#e#n#c#i#e#s#.##��M#a#x#i#m#u#m#
#i#t#e#r#a#t#i#o#n#s# #e#x#c#e#e#d#e#d# #w#h#i#l#e# #l#o#o#k#i#n#g# #f#o#r#
#r#e#s#o#l#v#a#b#l#e#
#r#e#f#e#r#e#n#c#e#s#.###0#.#0#.#0#.#0###R#e#s#o#l#v#e#d#F#r#o#m###C#o#p#y#L#o#c#a#
l## t#r#u#e###f#a#l#s#e##
R#e#d#i#s#t###I#s#R#e#d#i#s#t#R#o#o#t##/D#e#s#t#i#n#a#t#i#o#n#S#u#b#D#i#r#e#c#t#o#r
#y## .#d#l#l## .#e#x#e## .#p#d#b## .#x#m#l##-
T#a#r#g#e#t#F#r#a#m#e#w#o#r#k#S#u#b#s#e#t#s##;I#n#s#t#a#l#l#e#d#A#s#s#e#m#b#l#y#S#u
#b#s#e#t#T#a#b#l#e#s##=F#u#l#l#T#a#r#g#e#t#F#r#a#m#e#w#o#r#k#S#u#b#s#e#t#N#a#m#e#s#
#gR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#C#o#n#f#l#i#c#t#R#e#d#i#r#e#c#t
#S#u#g#g#e#s#t#i#o#n##WR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#S#u#g#g#e#
s#t#e#d#R#e#d#i#r#e#c#t#s##;G#e#n#e#r#a#l#.#M#a#l#f#o#r#m#e#d#A#s#s#e#m#b#l#y#N#a#m
#e##]R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#L#o#g#T#a#s#k#P#r#o#p#e#r#t#
y#F#o#r#m#a#t###A#s#s#e#m#b#l#i#e#s##QR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c
#e#.#F#o#u#r#S#p#a#c#e#I#n#d#e#n#t###S#u#b#T#y#p#e##-
C#a#n#d#i#d#a#t#e#A#s#s#e#m#b#l#y#F#i#l#e#s##5T#a#r#g#e#t#F#r#a#m#e#w#o#r#k#D#i#r#e
#c#t#o#r#i#e#s###,##/I#n#s#t#a#l#l#e#d#A#s#s#e#m#b#l#y#T#a#b#l#e#s##
%F#r#a#m#e#w#o#r#k#D#i#r#e#c#t#o#r#y##9I#g#n#o#r#e#I#n#s#t#a#l#l#e#d#A#s#s#e#m#b#l#
y#T#a#b#l#e##3A#l#l#o#w#e#d#A#s#s#e#m#b#l#y#E#x#t#e#n#s#i#o#n#s##9A#l#l#o#w#e#d#R#e
#l#a#t#e#d#F#i#l#e#E#x#t#e#n#s#i#o#n#s###A#p#p#C#o#n#f#i#g#F#i#l#e###A#u#t#o#U#n#i#
f#y##7T#a#r#g#e#t#P#r#o#c#e#s#s#o#r#A#r#c#h#i#t#e#c#t#u#r#e###S#t#a#t#e#F#i#l#e##EI
#g#n#o#r#e#I#n#s#t#a#l#l#e#d#A#s#s#e#m#b#l#y#S#u#b#s#e#t#T#a#b#l#e##SR#e#s#o#l#v#e#
A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#E#i#g#h#t#S#p#a#c#e#I#n#d#e#n#t##WR#e#s#o#l#v#e
#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#L#o#g#A#t#t#r#i#b#u#t#e#F#o#r#m#a#t##aR#e#s#o#
l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U#n#i#f#i#e#d#P#r#i#m#a#r#y#R#e#f#e#r#e#n
#c#e##SR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#P#r#i#m#a#r#y#R#e#f#e#r#e#
n#c#e##UR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U#n#i#f#i#e#d#D#e#p#e#n#d
#e#n#c#y##GR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#D#e#p#e#n#d#e#n#c#y##_
R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U#n#i#f#i#c#a#t#i#o#n#B#y#A#u#t#o
#U#n#i#f#y##_R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U#n#i#f#i#c#a#t#i#o#
n#B#y#A#p#p#C#o#n#f#i#g##oR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U#n#i#f
#i#c#a#t#i#o#n#B#y#F#r#a#m#e#w#o#r#k#R#e#t#a#r#g#e#t##cR#e#s#o#l#v#e#A#s#s#e#m#b#l#
y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#T#o#R#e#s#o#l#v#e#R#e#f#e#r#e#n#c#e##sM#S#B#u#i#l
#d#.#R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#T#o#R#e#s#o#l#v#
e#R#e#f#e#r#e#n#c#e##gR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d
#T#o#F#i#n#d#D#e#p#e#n#d#e#n#t#F#i#l#e#s##wM#S#B#u#i#l#d#.#R#e#s#o#l#v#e#A#s#s#e#m#
b#l#y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#T#o#F#i#n#d#D#e#p#e#n#d#e#n#t#F#i#l#e#s##YR#e
#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#W#i#t#h#E#x#c#e#p#t#i#o#
n##iM#S#B#u#i#l#d#.#R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#W
#i#t#h#E#x#c#e#p#t#i#o#n###r#e#f#e#r#e#n#c#e##CR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#
e#r#e#n#c#e#.#R#e#s#o#l#v#e#d##KR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#R
#e#s#o#l#v#e#d#F#r#o#m##GR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#S#e#a#r#
c#h#P#a#t#h##wR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#C#o#n#s#i#d#e#r#e#d
#A#n#d#R#e#j#e#c#t#e#d#B#e#c#a#u#s#e#N#o#F#i#l#e##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#
R#e#f#e#r#e#n#c#e#.#C#o#n#s#i#d#e#r#e#d#A#n#d#R#e#j#e#c#t#e#d#B#e#c#a#u#s#e#F#u#s#i
#o#n#N#a#m#e#s#D#i#d#n#t#M#a#t#c#h##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#
c#e#.#C#o#n#s#i#d#e#r#e#d#A#n#d#R#e#j#e#c#t#e#d#B#e#c#a#u#s#e#T#a#r#g#e#t#D#i#d#n#t
#H#a#v#e#F#u#s#i#o#n#N#a#m#e##{R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#C#
o#n#s#i#d#e#r#e#d#A#n#d#R#e#j#e#c#t#e#d#B#e#c#a#u#s#e#N#o#t#I#n#G#a#c##��R#e#s#o#l
#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#C#o#n#s#i#d#e#r#e#d#A#n#d#R#e#j#e#c#t#e#d#
B#e#c#a#u#s#e#N#o#t#A#F#i#l#e#N#a#m#e#O#n#D#i#s#k##GR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R
#e#f#e#r#e#n#c#e#.#R#e#q#u#i#r#e#d#B#y##SR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#
n#c#e#.#F#o#u#n#d#R#e#l#a#t#e#d#F#i#l#e##WR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e
#n#c#e#.#F#o#u#n#d#S#a#t#e#l#l#i#t#e#F#i#l#e##SR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#
e#r#e#n#c#e#.#F#o#u#n#d#S#c#a#t#t#e#r#F#i#l#e##qR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f
#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#o#c#a#l#B#e#c#a#u#s#e#P#r#e#r#e#q#u#i#s#i#t#e##��R#
e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#o#c#a#l#B#e#c#a#u#s
#e#I#n#c#o#m#i#n#g#I#t#e#m#A#t#t#r#i#b#u#t#e#O#v#e#r#r#o#d#e##wR#e#s#o#l#v#e#A#s#s#
e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#o#c#a#l#B#e#c#a#u#s#e#F#r#a#m#e#w#o#r
#k#s#F#i#l#e#s##wR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#
o#c#a#l#B#e#c#a#u#s#e#N#o#F#r#a#m#e#w#o#r#k#P#a#t#h##R#e#s#o#l#v#e#A#s#s#e#m#b#l#y
#R#e#f#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#o#c#a#l#B#e#c#a#u#s#e#R#e#f#e#r#e#n#c#e#F#o#u#
n#d#I#n#G#A#C##uR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#o
#c#a#l#B#e#c#a#u#s#e#C#o#n#f#l#i#c#t#V#i#c#t#i#m##{R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#
e#f#e#r#e#n#c#e#.#C#o#n#f#l#i#c#t#B#e#t#w#e#e#n#A#p#p#C#o#n#f#i#g#A#n#d#A#u#t#o#U#n
#i#f#y##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#R#e#d#i#s#t#A#s#s#
e#m#b#l#i#e#s#T#o#G#e#n#e#r#a#t#e#E#x#c#l#u#s#i#o#n#L#i#s#t##OR#e#s#o#l#v#e#A#s#s#e
#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#S#u#b#s#e#t#s#F#o#u#n#d##wR#e#s#o#l#v#e#A#s#s#e#m#
b#l#y#R#e#f#e#r#e#n#c#e#.#I#n#v#a#l#i#d#I#n#s#t#a#l#l#e#d#A#s#s#e#m#b#l#y#T#a#b#l#e
#s#F#i#l#e##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#I#n#v#a#l#i#d#I#n#
s#t#a#l#l#e#d#A#s#s#e#m#b#l#y#S#u#b#s#e#t#T#a#b#l#e#s#F#i#l#e##SR#e#s#o#l#v#e#A#s#s
#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#I#n#v#a#l#i#d#A#p#p#C#o#n#f#i#g##/
G#e#n#e#r#a#l#.#I#n#v#a#l#i#d#A#r#g#u#m#e#n#t##SR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f
#e#r#e#n#c#e#.#I#n#v#a#l#i#d#P#a#r#a#m#e#t#e#r##=M#S#B#U#I#L#D#D#U#M#P#F#R#A#M#E#W#
O#R#K#S#U#B#S#E#T#L#I#S#T##oR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#T#a#r
#g#e#t#F#r#a#m#e#w#o#r#k#S#u#b#s#e#t#L#o#g#H#e#a#d#e#r##oR#e#s#o#l#v#e#A#s#s#e#m#b#
l#y#R#e#f#e#r#e#n#c#e#.#T#a#r#g#e#t#F#r#a#m#e#w#o#r#k#R#e#d#i#s#t#L#o#g#H#e#a#d#e#r
##]R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#F#o#r#m#a#t#t#e#d#A#s#s#e#m#b#
l#y#I#n#f#o##uR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#T#a#r#g#e#t#F#r#a#m
#e#w#o#r#k#W#h#i#t#e#L#i#s#t#L#o#g#H#e#a#d#e#r##}R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#
f#e#r#e#n#c#e#.#T#a#r#g#e#t#F#r#a#m#e#w#o#r#k#E#x#c#l#u#s#i#o#n#L#i#s#t#L#o#g#H#e#a
#d#e#r##R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#E#x#c#l#u#s#i#o#n#L#
i#s#t#B#e#c#a#u#s#e#o#f#F#u#l#l#C#l#i#e#n#t#N#a#m#e##��R#e#s#o#l#v#e#A#s#s#e#m#b#l
#y#R#e#f#e#r#e#n#c#e#.#N#o#E#x#c#l#u#s#i#o#n#L#i#s#t#B#e#c#a#u#s#e#I#g#n#o#r#e#S#u#
b#s#e#t#s#A#n#d#N#o#A#d#d#i#t#i#o#n#a#l#O#n#e#s#P#r#o#v#i#d#e#d##��R#e#s#o#l#v#e#A
#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#E#x#c#l#u#
s#i#o#n#L#i#s#t#B#e#c#a#u#s#e#N#o#S#u#b#s#e#t#s#P#a#s#s#e#d#I#n##WR#e#s#o#l#v#e#A#s
#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U#s#i#n#g#E#x#c#l#u#s#i#o#n#L#i#s#t###M#a#x#V#e#r#
s#i#o#n##cR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#B#a#d#T#a#r#g#e#t#F#r#a
#m#e#w#o#r#k#F#o#r#m#a#t##oR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#I#g#n#
o#r#i#n#g#B#e#c#a#u#s#e#N#o#n#E#m#p#t#y#S#u#b#t#y#p#e##/
R#e#q#u#i#r#e#d#T#a#r#g#e#t#F#r#a#m#e#w#o#r#k##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e
#f#e#r#e#n#c#e#.#F#a#i#l#e#d#T#o#R#e#s#o#l#v#e#R#e#f#e#r#e#n#c#e#B#e#c#a#u#s#e#H#i#
g#h#e#r#T#a#r#g#e#t#F#r#a#m#e#w#o#r#k## h#k#c#u##

h#k#l#m##A#s#s#e#m#b#l#y#F#o#l#d#e#r#.#A#d#d#F#o#l#d#e#r#s#F#r#o#m#R#e#g#i#s#t#r#y
#K#e#y# #e#x#p#e#c#t#e#d# #a# #k#n#o#w#n# #h#i#v#e#.##aS#O#F#T#W#A#R#E#\
#M#i#c#r#o#s#o#f#t#\#.#N#E#T#F#r#a#m#e#w#o#r#k#\
#A#s#s#e#m#b#l#y#F#o#l#d#e#r#s##gS#O#F#T#W#A#R#E#\#M#i#c#r#o#s#o#f#t#\
#V#i#s#u#a#l#S#t#u#d#i#o#\#8#.#0#\
#A#s#s#e#m#b#l#y#F#o#l#d#e#r#s##=G#e#n#e#r#a#l#.#C#o#u#l#d#N#o#t#W#r#i#t#e#S#t#a#t#
e#F#i#l#e##IG#e#n#e#r#a#l#.#C#o#u#l#d#N#o#t#R#e#a#d#S#t#a#t#e#F#i#l#e#M#e#s#s#a#g#e
##CG#e#n#e#r#a#l#.#I#n#c#o#m#p#a#t#i#b#l#e#S#t#a#t#e#F#i#l#e#T#y#p#e##;G#e#n#e#r#a#
l#.#C#o#u#l#d#N#o#t#R#e#a#d#S#t#a#t#e#F#i#l#e##;M#i#c#r#o#s#o#f#t#.#B#u#i#l#d#.#T#a
#s#k#s#.#S#t#r#i#n#g#s##IM#i#c#r#o#s#o#f#t#.#B#u#i#l#d#.#T#a#s#k#s#.#S#t#r#i#n#g#s#
.#s#h#a#r#e#d###D#e#p#e#n#d#e#n#t#U#p#o#n###W#i#t#h#C#u#l#t#u#r#e##+A#s#s#i#g#n#C#u
#l#t#u#r#e#.#C#o#m#m#e#n#t##EA#s#s#i#g#n#C#u#l#t#u#r#e#.#C#a#n#n#o#t#E#x#t#r#a#c#t#
C#u#l#t#u#r#e## L#i#n#k###R#e#s#o#u#r#c#e#s###F#i#l#e#s## F#i#l#e##
P#a#t#h###p#a#t#h#s###-##wm#e#t#a#d#a#t#a#N#a#m#e#s# #a#n#d#
#t#r#e#a#t#A#s#F#l#a#g#s# #s#h#o#u#l#d# #h#a#v#e# #t#h#e# #s#a#m#e#
#l#e#n#g#t#h#.##7C#o#p#y#.#D#e#s#t#i#n#a#t#i#o#n#I#s#D#i#r#e#c#t#o#r#y##-
C#o#p#y#.#S#o#u#r#c#e#I#s#D#i#r#e#c#t#o#r#y##+C#o#p#y#.#C#r#e#a#t#e#s#D#i#r#e#c#t#o
#r#y##!C#o#p#y#.#F#i#l#e#C#o#m#m#e#n#t##
%S#h#a#r#e#d#.#E#x#e#c#C#o#m#m#a#n#d###c#o#p#y# #/#y# #"###"#
#"###"##=C#o#p#y#.#R#e#m#o#v#i#n#g#R#e#a#d#O#n#l#y#A#t#t#r#i#b#u#t#e##+C#o#p#y#.#N#
e#e#d#s#D#e#s#t#i#n#a#t#i#o#n##!
D#e#s#t#i#n#a#t#i#o#n#F#i#l#e#s##)D#e#s#t#i#n#a#t#i#o#n#D#i#r#e#c#t#o#r#y##AC#o#p#y
#.#E#x#a#c#t#l#y#O#n#e#T#y#p#e#O#f#D#e#s#t#i#n#a#t#i#o#n##IG#e#n#e#r#a#l#.#T#w#o#V#
e#c#t#o#r#s#M#u#s#t#H#a#v#e#S#a#m#e#L#e#n#g#t#h###S#o#u#r#c#e#F#i#l#e#s###C#o#p#y#.
#E#r#r#o#r##CC#o#p#y#.#D#i#d#N#o#t#C#o#p#y#B#e#c#a#u#s#e#O#f#F#i#l#e#M#a#t#c#h##
%S#k#i#p#U#n#c#h#a#n#g#e#d#F#i#l#e#s###r#e#s#o#u#r#c#e#F#i#l#e#s##QC#r#e#a#t#e#M#a#
n#i#f#e#s#t#R#e#s#o#u#r#c#e#N#a#m#e#.#R#o#o#t#N#a#m#e#s#p#a#c#e##UC#r#e#a#t#e#M#a#n
#i#f#e#s#t#R#e#s#o#u#r#c#e#N#a#m#e#.#N#o#R#o#o#t#N#a#m#e#s#p#a#c#e##MC#r#e#a#t#e#M#
a#n#i#f#e#s#t#R#e#s#o#u#r#c#e#N#a#m#e#.#D#e#p#e#n#d#s#U#p#o#n##[C#r#e#a#t#e#M#a#n#i
#f#e#s#t#R#e#s#o#u#r#c#e#N#a#m#e#.#D#e#p#e#n#d#s#U#p#o#n#N#o#t#h#i#n#g##)M#a#n#i#f#
e#s#t#R#e#s#o#u#r#c#e#N#a#m#e## T#y#p#e###N#o#n#-
#R#e#s#x##OC#r#e#a#t#e#M#a#n#i#f#e#s#t#R#e#s#o#u#r#c#e#N#a#m#e#.#A#s#s#i#g#n#e#d#N#
a#m#e##AC#r#e#a#t#e#M#a#n#i#f#e#s#t#R#e#s#o#u#r#c#e#N#a#m#e#.#E#r#r#o#r###s#u#b#N#a
#m#e###_##��C#r#e#a#t#e#M#a#n#i#f#e#s#t#R#e#s#o#u#r#c#e#N#a#m#e#.#D#e#f#i#n#i#t#i#
o#n#F#o#u#n#d#W#i#t#h#i#n#C#o#n#d#i#t#i#o#n#a#l#D#i#r#e#c#t#i#v#e###.#r#e#s#x###.#r
#e#s#t#e#x#t###.#r#e#s#o#u#r#c#e#s###.#c#s##
%A#d#d#i#t#i#o#n#a#l#M#e#t#a#d#a#t#a###R#e#f#e#r#e#n#c#e#s###A#s#s#e#m#b#l#y#N#a#m#
e###1###.#v#b##
%A#d#d#i#t#i#o#n#a#l#L#i#b#P#a#t#h#s###A#d#d#M#o#d#u#l#e#s###C#o#d#e#P#a#g#e###D#e#
b#u#g#T#y#p#e###D#e#f#i#n#e#C#o#n#s#t#a#n#t#s##)E#m#i#t#D#e#b#u#g#I#n#f#o#r#m#a#t#i
#o#n###F#i#l#e#A#l#i#g#n#m#e#n#t###N#o#C#o#n#f#i#g##
N#o#L#o#g#o###N#o#W#i#n#3#2#M#a#n#i#f#e#s#t###O#p#t#i#m#i#z#e###S#o#u#r#c#e#s##+T#r
#e#a#t#W#a#r#n#i#n#g#s#A#s#E#r#r#o#r#s###U#t#f#8#O#u#t#p#u#t###W#i#n#3#2#M#a#n#i#f#
e#s#t###l#i#b#r#a#r#y##
m#o#d#u#l#e###.#n#e#t#m#o#d#u#l#e###/#a#d#d#m#o#d#u#l#e#:###/#c#o#d#e#p#a#g#e#:##
/#d#e#b#u#g###/#d#e#b#u#g#:###/#f#i#l#e#a#l#i#g#n#:###/#k#e#y#c#o#n#t#a#i#n#e#r#:##
#/#l#i#n#k#r#e#s#o#u#r#c#e#:###/#n#o#l#o#g#o##!/#n#o#w#i#n#3#2#m#a#n#i#f#e#s#t###/
#o#p#t#i#m#i#z#e###/#r#e#s#o#u#r#c#e#:###/#w#a#r#n#a#s#e#r#r#o#r###/
#u#t#f#8#o#u#t#p#u#t###/#w#i#n#3#2#m#a#n#i#f#e#s#t#:### ##

n#o#n#e###/#n#o#c#o#n#f#i#g##EG#e#n#e#r#a#l#.#D#u#p#l#i#c#a#t#e#I#t#e#m#s#N#o#t#S#u
#p#p#o#r#t#e#d##]G#e#n#e#r#a#l#.#D#u#p#l#i#c#a#t#e#I#t#e#m#s#N#o#t#S#u#p#p#o#r#t#e#
d#W#i#t#h#M#e#t#a#d#a#t#a##UG#e#n#e#r#a#l#.#P#a#r#a#m#e#t#e#r#U#n#s#u#p#p#o#r#t#e#d
#O#n#H#o#s#t#C#o#m#p#i#l#e#r##+d#e#f#a#u#l#t#.#w#i#n#3#2#m#a#n#i#f#e#s#t###A#l#l#o#
w#U#n#s#a#f#e#B#l#o#c#k#s##3C#h#e#c#k#F#o#r#O#v#e#r#f#l#o#w#U#n#d#e#r#f#l#o#w###D#o
#c#u#m#e#n#t#a#t#i#o#n#F#i#l#e##!
D#i#s#a#b#l#e#d#W#a#r#n#i#n#g#s###E#r#r#o#r#R#e#p#o#r#t###L#a#n#g#V#e#r#s#i#o#n##
%M#o#d#u#l#e#A#s#s#e#m#b#l#y#N#a#m#e###N#o#S#t#a#n#d#a#r#d#L#i#b###P#d#b#F#i#l#e###
W#a#r#n#i#n#g#L#e#v#e#l##!
W#a#r#n#i#n#g#s#A#s#E#r#r#o#r#s##'W#a#r#n#i#n#g#s#N#o#t#A#s#E#r#r#o#r#s###C#s#c#.#e
#x#e###/#l#i#b#:###/#u#n#s#a#f#e###/#c#h#e#c#k#e#d###/#n#o#w#a#r#n#:###/
#l#a#n#g#v#e#r#s#i#o#n#:##)/#m#o#d#u#l#e#a#s#s#e#m#b#l#y#n#a#m#e#:###/#p#d#b#:###/
#n#o#s#t#d#l#i#b###/#e#r#r#o#r#r#e#p#o#r#t#:##
/#w#a#r#n#:###/#d#o#c#:###/#d#e#f#i#n#e#:###/#w#a#r#n#a#s#e#r#r#o#r#+#:###/
#w#a#r#n#a#s#e#r#r#o#r#-#:###A#l#i#a#s#e#s###/
#r#e#f#e#r#e#n#c#e#:##UC#s#c#.#A#s#s#e#m#b#l#y#A#l#i#a#s#C#o#n#t#a#i#n#s#I#l#l#e#g#
a#l#C#h#a#r#a#c#t#e#r#s##
g#l#o#b#a#l###;##7C#s#c#.#I#n#v#a#l#i#d#P#a#r#a#m#e#t#e#r#W#a#r#n#i#n#g###U#n#k#n#o
#w#n##MG#e#n#e#r#a#l#.#C#o#u#l#d#N#o#t#S#e#t#H#o#s#t#O#b#j#e#c#t#P#a#r#a#m#e#t#e#r#
#'B#e#g#i#n#I#n#i#t#i#a#l#i#z#a#t#i#o#n###C#S###D#4##7G#e#n#e#r#a#l#.#I#n#c#o#r#r#e
#c#t#H#o#s#t#O#b#j#e#c#t###C#s#c###I#C#s#c#H#o#s#t#O#b#j#e#c#t###n#a#m#e#s#p#a#c#e#
##c#l#a#s#s####
##IE#x#p#e#c#t#e#d# #p#o#s#i#t#i#o#n# #t#o# #b#e#
#i#n#c#r#e#m#e#n#t#e#d#.##1{#}#[#]#(#)#.#,#:#;#+#-#*#/#%#&#|#^#!#~#=#<#>#?###/#/
###/#*###*#/###'###@#"###"#"###}###0#x#####i#f##
##e#n#d#i#f###a#b#s#t#r#a#c#t###a#s## b#a#s#e###b#r#e#a#k## b#y#t#e##
c#a#s#e###c#a#t#c#h##

c#h#a#r###c#h#e#c#k#e#d###c#o#n#s#t###c#o#n#t#i#n#u#e###d#e#c#i#m#a#l###d#e#f#a#u#l
#t###d#e#l#e#g#a#t#e###d#o##d#o#u#b#l#e## e#l#s#e##
e#n#u#m###e#v#e#n#t###e#x#p#l#i#c#i#t##
e#x#t#e#r#n###f#i#n#a#l#l#y###f#i#x#e#d###f#l#o#a#t###f#o#r###f#o#r#e#a#c#h##

g#o#t#o###i#f###i#m#p#l#i#c#i#t###i#n###i#n#t###i#n#t#e#r#f#a#c#e###i#n#t#e#r#n#a#l
###i#s## l#o#c#k## l#o#n#g###n#e#w##
o#b#j#e#c#t###o#p#e#r#a#t#o#r###o#u#t###o#v#e#r#r#i#d#e##
p#a#r#a#m#s###p#r#i#v#a#t#e###p#r#o#t#e#c#t#e#d##
p#u#b#l#i#c###r#e#a#d#o#n#l#y###r#e#f##r#e#t#u#r#n###s#b#y#t#e##
s#e#a#l#e#d###s#h#o#r#t##s#i#z#e#o#f###s#t#a#c#k#a#l#l#o#c##s#t#a#t#i#c##
s#t#r#i#n#g##s#t#r#u#c#t##s#w#i#t#c#h## t#h#i#s###t#h#r#o#w###t#r#y##
t#y#p#e#o#f## u#i#n#t###u#l#o#n#g###u#n#c#h#e#c#k#e#d##u#n#s#a#f#e##
u#s#h#o#r#t###u#s#i#n#g###v#i#r#t#u#a#l##
v#o#i#d###v#o#l#a#t#i#l#e###w#h#i#l#e###f#i#l#e#s##'D#e#l#e#t#e#.#D#e#l#e#t#i#n#g#F
#i#l#e###d#e#l#
#"##=D#e#l#e#t#e#.#S#k#i#p#p#i#n#g#N#o#n#e#x#i#s#t#e#n#t#F#i#l#e###p#r#i#m#a#r#y#L#
i#s#t###s#e#c#o#n#d#a#r#y#L#i#s#t###a#p#p#.#c#o#n#f#i#g##!
O#r#i#g#i#n#a#l#I#t#e#m#S#p#e#c##!F#i#n#d#I#n#L#i#s#t#.#F#o#u#n#d##-
F#i#n#d#I#n#L#i#s#t#.#I#n#v#a#l#i#d#P#a#t#h###R#e#s#g#e#n#.#e#x#e###/
#u#s#e#S#o#u#r#c#e#P#a#t#h###/#p#u#b#l#i#c#C#l#a#s#s###/#r#:###/#c#o#m#p#i#l#e###/
#s#t#r#:##5G#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#N#o#S#o#u#r#c#e#s###O#u#t#p#u#t#R#e#s#
o#u#r#c#e##CG#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#R#e#s#o#u#r#c#e#N#o#t#F#o#u#n#d##CG#e
#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#N#o#t#h#i#n#g#O#u#t#O#f#D#a#t#e##3g#e#n#e#r#a#t#e#R#
e#s#o#u#r#c#e#A#p#p#D#o#m#a#i#n##��S#o#m#e#h#o#w# #g#o#t# #a# #w#r#o#n#g# #a#n#d#
#p#o#s#s#i#b#l#y# #i#n#c#o#m#p#a#t#i#b#l#e# #t#y#p#e# #f#o#r#
#P#r#o#c#e#s#s#R#e#s#o#u#r#c#e#F#i#l#e#s#.###O#u#t#p#u#t#R#e#s#o#u#r#c#e#s##mG#e#n#
e#r#a#t#e#R#e#s#o#u#r#c#e#.#S#T#R#L#a#n#g#u#a#g#e#B#u#t#N#o#t#E#x#a#c#t#l#y#O#n#e#S
#o#u#r#c#e#F#i#l#e##wG#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#S#T#R#C#l#a#s#s#N#a#m#e#s#p#
a#c#e#O#r#F#i#l#e#n#a#m#e#W#i#t#h#o#u#t#L#a#n#g#u#a#g#e##��G#e#n#e#r#a#t#e#R#e#s#o
#u#r#c#e#.#S#e#p#a#r#a#t#e#A#p#p#D#o#m#a#i#n#B#e#c#a#u#s#e#N#e#v#e#r#L#o#c#k#T#y#p#
e#A#s#s#e#m#b#l#i#e#s#T#r#u#e## d#a#t#a##

t#y#p#e##_G#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#S#e#p#a#r#a#t#e#A#p#p#D#o#m#a#i#n#B#e#c
#a#u#s#e#O#f#T#y#p#e###m#i#m#e#t#y#p#e##gG#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#S#e#p#a#
r#a#t#e#A#p#p#D#o#m#a#i#n#B#e#c#a#u#s#e#O#f#M#i#m#e#T#y#p#e##}G#e#n#e#r#a#t#e#R#e#s
#o#u#r#c#e#.#S#e#p#a#r#a#t#e#A#p#p#D#o#m#a#i#n#B#e#c#a#u#s#e#O#f#E#x#c#e#p#t#i#o#n#
L#i#n#e#N#u#m#b#e#r##��G#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#S#e#p#a#r#a#t#e#A#p#p#D#o
#m#a#i#n#B#e#c#a#u#s#e#O#f#E#r#r#o#r#D#e#s#e#r#i#a#l#i#z#i#n#g#L#i#n#e#N#u#m#b#e#r#
#iG#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#S#e#p#a#r#a#t#e#A#p#p#D#o#m#a#i#n#B#e#c#a#u#s#e
#O#f#E#x#c#e#p#t#i#o#n###M#S#B#U#I#L#D#D#E#B#U#G##AG#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#
.#I#n#v#a#l#i#d#F#i#l#e#n#a#m#e##5W#e# #d#i#d# #n#o#t# #c#r#e#a#t#e# #a#
#c#a#c#h#e#!##?G#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#P#r#o#c#e#s#s#i#n#g#F#i#l#e##/
G#e#n#e#r#a#l#.#I#n#v#a#l#i#d#R#e#s#x#F#i#l#e##=G#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#M
#e#s#s#a#g#e#T#u#n#n#e#l##GG#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#C#a#n#n#o#t#W#r#i#t#e#
S#T#R#F#i#l#e##EG#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#C#a#n#n#o#t#W#r#i#t#e#O#u#t#p#u#t
##=G#e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#C#o#r#r#u#p#t#O#u#t#p#u#t##UG#e#n#e#r#a#t#e#R#
e#s#o#u#r#c#e#.#D#e#l#e#t#e#C#o#r#r#u#p#t#O#u#t#p#u#t#F#a#i#l#e#d## .#t#x#t##KG#
e#n#e#r#a#t#e#R#e#s#o#u#r#c#e#.#U#n#k#n#o#w#n#F#i#l#e#E#x#t#e#n#s#i#o#n##IG#e#n#e#r
#a#t#e#R#e#s#o#u#r#c#e#.#R#e#a#d#R#e#s#o#u#r#c#e#M#e#s#s#a#g#e##MG#e#n#e#r#a#t#e#R#
e#s#o#u#r#c#e#.#D#u#p#l#i#c#a#t#e#R#e#s#o#u#r#c#e#N#a#m#e##CG#e#n#e#r#a#t#e#R#e#s#o
#u#r#c#e#.#C#o#u#l#d#N#o#t#L#o#a#d#T#y#p#e##GG#e#t#F#r#a#m#e#w#o#r#k#S#d#k#P#a#t#h#
.#C#o#u#l#d#N#o#t#F#i#n#d#S#D#K##9G#e#t#F#r#a#m#e#w#o#r#k#S#d#k#P#a#t#h#.#F#o#u#n#d
#S#D#K##=F#i#n#d#U#n#d#e#r#P#a#t#h#.#I#n#v#a#l#i#d#P#a#r#a#m#e#t#e#r##9F#i#n#d#U#n#
d#e#r#P#a#t#h#.#C#o#m#p#a#r#i#s#o#n#P#a#t#h##1F#i#n#d#U#n#d#e#r#P#a#t#h#.#P#a#t#h#I
#n#C#o#n#e##7F#i#n#d#U#n#d#e#r#P#a#t#h#.#P#a#t#h#O#u#t#O#f#C#o#n#e###d#i#r#e#c#t#o#
r#i#e#s###M#a#k#e#D#i#r#.#C#o#m#m#e#n#t## m#d#
#"###M#a#k#e#D#i#r#.#E#r#r#o#r###n#o###y#e#s###\#=###\#,###\#"###\
#'##9S#h#a#r#e#d#.#P#a#r#a#m#e#t#e#r#C#a#n#n#o#t#B#e#N#u#l#l##AS#h#a#r#e#d#.#C#a#n#
n#o#t#C#o#n#v#e#r#t#S#t#r#i#n#g#T#o#B#o#o#l###o#n##!#f#a#l#s#e## !#o#f#f###!
#n#o###o#f#f###!#t#r#u#e###!#o#n## !#y#e#s## C#O#D#E###M#E#S#S#A#G#E##W^#\
#s#*#(#?#<#C#O#D#E#>#M#S#B#\#d#\#d#\#d#\#d#)#:#\#s#*#(#?
#<#M#E#S#S#A#G#E#>#.#*#)#$##3M#e#s#s#a#g#e#.#I#n#v#a#l#i#d#I#m#p#o#r#t#a#n#c#e##1G#
e#n#e#r#a#l#.#G#l#o#b#a#l#P#r#o#p#e#r#t#i#e#s###P#r#o#p#e#r#t#i#e#s##;M#S#B#u#i#l#d
#.#N#o#t#B#u#i#l#d#i#n#g#I#n#P#a#r#a#l#l#e#l##9M#S#B#u#i#l#d#.#N#o#S#t#o#p#O#n#F#i#
r#s#t#F#a#i#l#u#r#e##CM#S#B#u#i#l#d#.#S#k#i#p#p#i#n#g#R#e#m#a#i#n#i#n#g#P#r#o#j#e#c
#t#s##EM#S#B#u#i#l#d#.#P#r#o#j#e#c#t#F#i#l#e#N#o#t#F#o#u#n#d#M#e#s#s#a#g#e##7M#S#B#
u#i#l#d#.#P#r#o#j#e#c#t#F#i#l#e#N#o#t#F#o#u#n#d##9G#e#n#e#r#a#l#.#O#v#e#r#r#i#d#i#n
#g#P#r#o#p#e#r#t#i#e#s##)A#d#d#i#t#i#o#n#a#l#P#r#o#p#e#r#t#i#e#s##9G#e#n#e#r#a#l#.#
A#d#d#i#t#i#o#n#a#l#P#r#o#p#e#r#t#i#e#s###T#o#o#l#s#V#e#r#s#i#o#n##AM#S#B#u#i#l#d#.
#S#k#i#p#p#i#n#g#R#e#m#a#i#n#i#n#g#T#a#r#g#e#t#s##EM#S#B#u#i#l#d#.#C#a#n#n#o#t#R#e#
b#a#s#e#O#u#t#p#u#t#I#t#e#m#P#a#t#h##1M#S#B#u#i#l#d#S#o#u#r#c#e#P#r#o#j#e#c#t#F#i#l
#e##/M#S#B#u#i#l#d#S#o#u#r#c#e#T#a#r#g#e#t#N#a#m#e##M{#0#F#2#1#F#3#5#9#-#A#B#8#4#-
#4#1#E#8#-#9#A#7#8#-#3#6#D#1#1#0#E#6#D#2#F#9#}##M{#9#0#8#8#3#f#0#5#-#3#d#2#8#-
#1#1#d#2#-#8#f#1#7#-#0#0#a#0#c#9#a#6#1#8#6#d#}##M{#0#0#0#0#0#0#0#0#-#0#0#0#0#-
#0#0#0#0#-#C#0#0#0#-#0#0#0#0#0#0#0#0#0#0#4#6#}##M{#0#0#0#2#0#4#0#0#-#0#0#0#0#-
#0#0#0#0#-#C#0#0#0#-#0#0#0#0#0#0#0#0#0#0#4#6#}##M{#0#0#0#2#0#4#0#1#-#0#0#0#0#-
#0#0#0#0#-#C#0#0#0#-#0#0#0#0#0#0#0#0#0#0#4#6#}##M{#0#0#0#2#0#4#0#4#-#0#0#0#0#-
#0#0#0#0#-#C#0#0#0#-#0#0#0#0#0#0#0#0#0#0#4#6#}##M{#A#6#E#F#9#8#6#0#-#C#7#2#0#-
#1#1#D#0#-#9#3#3#7#-#0#0#A#0#C#9#0#D#C#A#A#9#}##M{#0#0#0#2#0#4#3#0#-#0#0#0#0#-
#0#0#0#0#-#C#0#0#0#-
#0#0#0#0#0#0#0#0#0#0#4#6#}##9G#e#n#e#r#a#l#.#I#n#v#a#l#i#d#P#r#o#p#e#r#t#y#E#r#r#o#
r### # #{#0#}#=#{#1#}###R#e#d#i#s#t#L#i#s#t##
%f#r#a#m#e#w#o#r#k#D#i#r#e#c#t#o#r#y###*#.#x#m#l###F#i#l#e#L#i#s#t###I#n#G#A#C###S#
u#b#s#e#t#L#i#s#t## i#n#f#o###f#i#l#e#S#t#a#t#e##-
p#r#o#v#i#d#e#d#F#r#a#m#e#w#o#r#k#P#a#t#h#s###n#u#l###l#a#s#t#M#o#d#i#f#i#e#d###d#e
#p#e#n#d#e#n#c#i#e#s###s#c#a#t#t#e#r#F#i#l#e#s###r#e#s#o#u#r#c#e#N#a#m#e##CS#h#a#r#
e#d#.#T#a#s#k#R#e#s#o#u#r#c#e#s#N#o#t#R#e#g#i#s#t#e#r#e#d##7S#h#a#r#e#d#.#T#a#s#k#R
#e#s#o#u#r#c#e#N#o#t#F#o#u#n#d##+G#e#n#e#r#a#t#e#D#o#c#u#m#e#n#t#a#t#i#o#n###I#m#p#
o#r#t#s##)N#o#V#B#R#u#n#t#i#m#e#R#e#f#e#r#e#n#c#e###N#o#W#a#r#n#i#n#g#s###O#p#t#i#o
#n#C#o#m#p#a#r#e###O#p#t#i#o#n#E#x#p#l#i#c#i#t###O#p#t#i#o#n#S#t#r#i#c#t###O#p#t#i#
o#n#I#n#f#e#r##!
O#p#t#i#o#n#S#t#r#i#c#t#T#y#p#e##'R#e#m#o#v#e#I#n#t#e#g#e#r#C#h#e#c#k#s###R#o#o#t#N
#a#m#e#s#p#a#c#e###S#d#k#P#a#t#h##-
T#a#r#g#e#t#C#o#m#p#a#c#t#F#r#a#m#e#w#o#r#k###V#e#r#b#o#s#i#t#y###V#b#c#.#e#x#e###&
#h###X##9V#b#c#.#P#a#r#a#m#e#t#e#r#H#a#s#I#n#v#a#l#i#d#V#a#l#u#e###/
#l#i#b#p#a#t#h#:###/#i#m#p#o#r#t#s#:##
/#d#o#c###/#o#p#t#i#o#n#c#o#m#p#a#r#e#:###/#o#p#t#i#o#n#e#x#p#l#i#c#i#t###/
#o#p#t#i#o#n#s#t#r#i#c#t###:#c#u#s#t#o#m###/#o#p#t#i#o#n#s#t#r#i#c#t#:###/
#n#o#w#a#r#n###/#o#p#t#i#o#n#i#n#f#e#r###/#n#o#v#b#r#u#n#t#i#m#e#r#e#f##!/
#r#e#m#o#v#e#i#n#t#c#h#e#c#k#s###/#r#o#o#t#n#a#m#e#s#p#a#c#e#:###/
#s#d#k#p#a#t#h#:##
/#n#e#t#c#f###q#u#i#e#t###v#e#r#b#o#s#e###/###/#w#i#n#3#2#r#e#s#o#u#r#c#e#:###S#u#b
# #M#a#i#n##
n#o#r#m#a#l##AV#b#c#.#E#n#u#m#P#a#r#a#m#e#t#e#r#H#a#s#I#n#v#a#l#i#d#V#a#l#u#e##-
Q#u#i#e#t#,# #N#o#r#m#a#l#,# #V#e#r#b#o#s#e###\#\
#"###V#b#c###I#V#b#c#H#o#s#t#O#b#j#e#c#t###L#I#B###e#n#d###r#e#m##%#&#@#!
###$###]###[#_#]###[#]###F#A#L#S#E## T#R#U#E#####e#n#d#
#i#f###A#D#D#H#A#N#D#L#E#R###A#D#D#R#E#S#S#O#F###A#N#D#A#L#S#O###A#L#I#A#S###A#N#D#
# A#N#S#I###A#S###A#S#S#E#M#B#L#Y## A#U#T#O###B#O#O#L#E#A#N###B#Y#R#E#F##
B#Y#T#E###B#Y#V#A#L## C#A#L#L##
C#A#S#E###C#A#T#C#H###C#B#O#O#L###C#B#Y#T#E###C#C#H#A#R###C#D#A#T#E##
C#D#E#C## C#D#B#L## C#H#A#R## C#I#N#T###C#L#A#S#S## C#L#N#G##
C#O#B#J###C#O#N#S#T##C#S#H#O#R#T## C#S#N#G## C#S#T#R###C#T#Y#P#E##

D#A#T#E###D#E#C#I#M#A#L###D#E#C#L#A#R#E###D#E#F#A#U#L#T###D#E#L#E#G#A#T#E###D#I#M##
#D#I#R#E#C#T#C#A#S#T###D#O##D#O#U#B#L#E## E#A#C#H## E#L#S#E##
E#L#S#E#I#F###E#N#D## E#N#U#M###E#R#A#S#E###E#R#R#O#R###E#V#E#N#T##
E#X#I#T###F#I#N#A#L#L#Y###F#O#R##
F#R#I#E#N#D###F#U#N#C#T#I#O#N###G#E#T###G#E#T#T#Y#P#E###G#O#S#U#B##

G#O#T#O###H#A#N#D#L#E#S###I#F###I#M#P#L#E#M#E#N#T#S###I#M#P#O#R#T#S###I#N###I#N#H#E
#R#I#T#S###I#N#T#E#G#E#R###I#N#T#E#R#F#A#C#E###I#S###L#E#T## L#I#K#E##
L#O#N#G## L#O#O#P###M#E###M#O#D##
M#O#D#U#L#E###M#U#S#T#I#N#H#E#R#I#T###M#U#S#T#O#V#E#R#R#I#D#E##
M#Y#B#A#S#E###M#Y#C#L#A#S#S###N#A#M#E#S#P#A#C#E###N#E#W##

N#E#X#T###N#O#T###N#O#T#H#I#N#G###N#O#T#I#N#H#E#R#I#T#A#B#L#E###N#O#T#O#V#E#R#R#I#D
#A#B#L#E##O#B#J#E#C#T###O#N##O#P#T#I#O#N###O#P#T#I#O#N#A#L###O#R##
O#R#E#L#S#E###O#V#E#R#L#O#A#D#S###O#V#E#R#R#I#D#A#B#L#E###O#V#E#R#R#I#D#E#S###P#A#R
#A#M#A#R#R#A#Y###P#R#E#S#E#R#V#E###P#R#I#V#A#T#E###P#R#O#P#E#R#T#Y###P#R#O#T#E#C#T#
E#D##
P#U#B#L#I#C###R#A#I#S#E#E#V#E#N#T###R#E#A#D#O#N#L#Y###R#E#D#I#M###R#E#M###R#E#M#O#V
#E#H#A#N#D#L#E#R##R#E#S#U#M#E##R#E#T#U#R#N##S#E#L#E#C#T###S#E#T###S#H#A#D#O#W#S##
S#H#A#R#E#D###S#H#O#R#T##S#I#N#G#L#E##S#T#A#T#I#C## S#T#E#P## S#T#O#P##
S#T#R#I#N#G###S#T#R#U#C#T#U#R#E###S#U#B###S#Y#N#C#L#O#C#K##
T#H#E#N###T#H#R#O#W###T#O###T#R#Y##
T#Y#P#E#O#F###U#N#I#C#O#D#E###U#N#T#I#L###V#A#R#I#A#N#T## W#H#E#N###W#H#I#L#E##

W#I#T#H###W#I#T#H#E#V#E#N#T#S###W#R#I#T#E#O#N#L#Y###X#O#R##)V#S#C#o#d#e#M#a#r#k#e#r
#s#E#n#a#b#l#e#d#############8###�###�###�#######
###################"###4###L###\###p###�###�###�###�###�###
###(###>###N###b###~###�###�###�###�###�###########&###8###P###f###h###�###�###
�###�###�###�###�###�#######6###`###�###�###�###�###�###�###�###
%###A###s######�###�###�#######K###U###�###�###g###w###�###�### ##A
##i ## ##� ##� ##� ##7
##;
##[
##w
##}
##�
##�
##�
######�####
##&
##@
##T
##^
##j
##x
##�
##�
##�
##�
##�
##�
#####T##�##�##R###�###�#######T###d###�###�###�###�###"###\
###�###�###�###�###2###F###�###�###8###�###�###D###�###�###L###�###
###�###�###t###�###8###L###�###�###$###�###3###�###N###�###'###{###�###'###�#
##.###�#######�#######�#### ##g ##� ##d!##�!##�!##<"##z"##�"##Z###�###.
$##�$##,%##�
%##`&##�&##�&##2'##�'##�'##o(##y(##�(###)##e)##�)###*##U*##�*##�*###+##[+##w+#
#�+##�+###,###,###,##+,##5,##?,##K,##O,##�,##�,##--##Y-##{-##�-##�-##�-##�-
##�-##+.##M.##w.##�.###/###/##1/##u/##�/##�/## 0##_0##�0##

1##31##=1##O1##�1##�1##�1##�1##�2##�2##�2##�2##�2##�2##�2###3###3###3##D3##Z3
##l3##�3##�3##�3##�3##�3###4##&4##84##H4##t4##�4##�4##�4##�4##�4##�4###5###5#
#&5##>5##\
5##z5##�5##�5##�5##�5##�5###6##(6##,6##66##J6##�6##�6##D7##p7##�7##�7##�7###8
##&8##>8##d8##�8##�8##�8##�8##�8###9###9##
9##29##D9##`9##�9##�9##�9##�9##�9##�9##�9###:##.:##>:##V:##�:##�:##�:##�:###;
##T;##|;##�;##�;##�;##�;##�;##�;###<##
<##V<##�<##�<##�<##�<##�<##�<##�<##�<##�<##�<##�<##�<##�<##�<##�<###=##
=###=##"=##2=##>=##P=##`=##p=##�=##�=##�=##�=##�=##�=##�=##�=##�=##�=##�=###>
###>## >##&>##8>##>>##F>##Z>##l>##r>##|
>##�>##�>##�>##�>##�>##�>##�>##�>##�>###?###?##"?##0?##<?##J?##V?##d?##z?##�?
##�?##�?##�?##�?##�?##�?##�?##�?##�?###@###@##$@##0@##@@##J@##\
@##h@##t@##�@##�@##�@##�@###A##0A##RA##tA##�A##�A##�A##�A##�A##
B###B##LB##jB##�B##�B##&C##�C##�C##OD##�D##RE##\
E##fE##�E##�E##@F##�F##OG##�G##�G###H##KH##�H##�H##�H##AI##�I##�I###J##
%J##qJ##�J## K##MK##�K##�K##
L##GL##yL##�L##�L##�L##�L###M###M###M###M##)M##/M##5M##oM##�M##�M##�M##�M##�M#
#�M##�M##�M##�M###N###N##oN##�N##�N##�N##'O##aO##�O##�O###P##]P##�P##�P##�P#
##Q##cQ##�Q##�Q###R##aR##�R##�R##KS##�S##�S##5T##oT##�T##�T##�T##�T##�T##�T#
#�T##

U###U##KU##SU##mU##�U##�U##�U##�U##7V##cV##sV##�V##�V##�V##�V###W###W##AW##iW#
#�W##�W##�W##�W##�W##�W##�W##+X##?
X##SX##]X##}X##�X##�X##�X##�X##�X###Y##1Y##SY##sY##�Y##�Y##�Y##�Y##�Y##�Y##�
Y##�Y##7Z##eZ##mZ##uZ##�Z##�Z##�Z##�Z##�Z##�Z##�Z##�Z##�Z##�Z##�Z###[###[##+
[##7[##?[##I[##O[##a[##k[##{[##�[##�[##�[##�[##�[##�[##�[##�[##�[##�[##�[###\
###\###\##!\##+\##5\##A\##O\##Y\##c\##o\##y\##�\##�\##�\##�\##�\##�\##�\##�\
##�\
###]###]###]##!]##-]##9]##E]##O]##_]##g]##u]##�]##�]##�]##�]##�]##�]##�]##�]##
�]##�]## ^###^##-
^##3^##;^##E^##O^##Y^##_^##g^##u^##�^##�^##�^##�^##�^##�^##�^##�^###_##!_##?
_##M_##S_##a_##s_##y_##�_##�_##�_##�_##�_##�_##�_###`##
%`##3`##I`##[`##g`##o`##�`##�`##�`##�`##�`##�`##�`##�`##�`###a##a###a##
%a##9a##Aa##Sa##]a##ia##oa##wa##�a##�a##�a##�a##�a##�a##�a##�a##�a###b##-
b##########1#######M###�###y###�###�###�###�###(###�#######:###�###�#######8##
#H###b###�###�###�#######R###b###v###�###F###�###6###L###t###�###�###�###>###V
###l###�###�###�###�###�###*###*###e###i###�###�###�###�###########/
#######:###`###�###�###�###�#### ##` ##z ##� ##� ##� ##2!##�!
###"##8"##p"##�"##�"######*###@###R###v###�###�###�####$##8$##>$##\
$##�$##�$##*&##�&##-'##�'##�'###(###(###(##+
(##E(##u(##(##�(##�(##�(##�(###)##E)##�)###*##A*##�*##�*###+###+##E+##{+##+##
�+##�+###,##C,##},##�,##�,##�,##�,##?-##�-##�-##M.##�.##�.##?/##�/##�/
##o0##�0##G1##�1##'2##�2##�2##�2##C3##�3##�3##O4##�4##�5###6##�6##�6##.7##�7
##�7##L8##�8##Y9##�9##Q:##5<##�<##8=##�=###>##�>##�>## ?##]?##�?
###@##{@##�@##OA##�A##MB##�B##�C##�C##�C##SD##�D##�D##�E##�E##�E##$F##�F##�F
##,G##vG##�G##�I##�I###J##3J##KJ##wJ###M###Y##�d##�d###h###h##'h##+h###i##Ui##�
i##�i##�i##�i###j###j###j##Uj##�j##�j##�j###k##Yk##qk##�k##�k##�k##
l##_l##�l###m##_m##�m##�m##�m##�m##7n##Gn##Kn##�n##�n##�n##
o###o##�o##�p##`q##tr##|
r##�r##�r##�r##�r##�r##(s##Ds##Vs##ds##�s##�s##�s##�s##�s###t###t##"t##8t##Pt
##ft##tt##�t##�t##�t##�t##�t##
u###u##4u##Nu##fu##�u##�u##�u##�u##�u##Lv##�v##
w##.w##bw##�w##�w##�w##�w##�w###x##*x##Dx##fx##�x##�x##�x##�x##�x##�x##�x##$
y##0y##Dy##`y##ny##zy##�y##�y##�y##�y##�y##Fz##Tz##Xz##�z##�z##�z###{###{##"{#
#Z{##b{##�{##�{##�{##�{##�{##"|##(|##.|##4|##8|##>|##D|##H|##N|##V|##d|##v|##||
##�|##�|##�|##�|##�|##�|##�|##�|##�|##�|##
}###}##"}##0}##:}##D}##P}##b}##p}##�}##�}##�}##�}##�}##�}##�}##�}##�}##�}##�}
###~##
~###~##
~##(~##6~##H~##P~##b~##p~##�~##�~##�~##�~##�~##�~##�~##�~##�~##�~#####"##0##
>##L##V##b##j##x##�##�##�##�##�##�##�##�##�##"�##.�##V�##b�##��##ƒ##
8##�###�##‫�ރ‬##E�##[�##y�##��##��##��##��##�##
�##Q�##��##ɏ##d�##��##�##j�##�##��## �##i�##{�##�##a�##�##\
�##��##Ĕ##N�##��##��##�##D�##��##Ȗ###�##(�##t�##��##�##��##�##b�##��##
‫ڞ‬##
�##D�##\�##|�##��##�###�##��##��##��##��##1�##��##��###�###�###�##!
�##)�##5�##=�##��##��##��##��##3�##e�##{�##��##��##5�##{�##G�##��##��
##��##��##A�##��##��##��##7�##��##��##!
�##o�##��###�##��##��###�##i�##��##Q�##c�##��##�###�###�#######>###X###r
###�###�###�###�
##�
##�
#####,##H##f##�##�##�##�##�
######<###P###`###f###j###�###�###�###�###�#######2###B###`###p###�###�###�###
�###############*###.###N###`###n###�###�###�###�###�###6###>###j###x###|
###�###�###�###�###�###�###�###�###�###�########### ###*###:###F###P###\
###f###p###|
###�###�###�###�###�###�###�###�###�###�###�###############"###.###8###H###X#
##h###z###�###�###�###�###�###�###�###�###�###�###�###############&###4###F##
#N###^###j###t###�###�###�###�###�###�###�###�###�###�###################&###
4###L###f###t###�###�###�###�###�###�###�###�###
#######
###2###8###F###Z###r###�###�###�###�###�###�###�###########&###.###J###X###f###
t###|
###�###�###�###�###�###�###�###�###�###############(###.###6###D###T###`###p##
#z###�###�###�###�###>*##�x##�###H#######�######Ԁ######�x######
###��## ###########W��? ####�#3########�###�###�###�##�
##8###�###v###�###7###########U###�###�###Q#######
###J###B########### ###
###R#########
###########y###r#####�###r#####�###r###
#�###�###
#�###�#####�###r###################r#####/
#########9#########K###r#####U###r#####c###r###
#m###�#####�###�###?#�#######
#�###�#####�#########�###r#####�###�#####
#########Q###7#####p###[#####�###u#####�#########�###r#####�###�#########�###
#####�#####$###�###"#p###O#####�###r#####�###r#####�###�#####�###7#####�###�##
###/!########Q"##�#####y"##m"####�%########�%##�%####-##u#####w-##�#####�-
##�#####�,##r#####�.##x.####*/########�1##�1####q4##r#####d5##I5####.8##r#####�
:#########D##I5####)D##I5####5M##7#####�R##r#####nS##]S####kU##u#####�X##qX####�X
##qX####�X##qX####�X##qX#####Y##qX####<Y##qX#####Z##r#####&[##�#####�]##u#####�]
##u#####�_########�_##u#####4`##u#####ma##Xa####�k##�k####;q##qX####�r##x.####�
w##�#####�w##�#####�~##m"##
#�##�#####2�##�######�##r#####�##r#####u�##r######�##�####F�##]S####h�##]S###
#��##��####C�##r#####\
�##[#####��##[#####��##[#####ܰ##[#####�##[######�##[##### �##��####��##?
#####w�##?#####9�##r#####=�##?
#####x�##J�####��##�#####C�##u#####��##m�####��########4�##r#####��##�#####
��##7#####_�##qX####��##qX####��##qX####��##qX####��##qX####"�##�###
#��##�#####�###�#####l###�#####�###x.####=###7#####�###�#####F###�#####; ##*
####�,##qX####�.##e.####�0##J�####�0##J�####<2##J�####�5##�######A##r#####�F#
#�#####J##�#####�J##�#####!\##�#####5\##r#####K\##x.####b\##x.####\##x.####�\
##x.####�\##x.####�\##x.####�\
##x.#####]##x.#### ]##x.####F]##]S####h]##]S####�]##x.####�]##x.####�]##�#####�]
##�]####$^###^####@^###^####b^##O^##_#v^########�^##�]####�^##�]####�^##r#####�
^##r######_##�#####/_##�#####;_##r#####z\
##�#####�_##r#####�_##r#####�_##�#####�_##m"####�_##r#####�_##r#####�_##�####
##`##r#####$`##r#####;`##r#####P`##r#####i`##r#####�`##r#####�`##�#####�`##r####
#�`##?
#####�`##r#####�`##r#####�`##r######a##r#####*a##r#####Ba##x.####^a##x.####}a##x.
####�a##r#####�a##x.####�a##x.####�a##x.####�a##r#####�b##�%####��##�
%####�b##�%####�b##�#####!
�##�#####�b##r#####Ac##��####_c##Xa####rc##r#####�c##�]####&d##�]####5d##r####
#/###�#####�d##�%####�d##�%####�d##r######e##r###
##e##�#####�e##7#####�e##7#####�e##7######f##u######f##u#####,f##u#####Ef##r####
#xf##�#####�f##�1####{g##r#####�g##r#####�g##*
####�g##�#####�g##r#####�g##r#####Gh##r#####kh##x.####�h##r#####�h##x.####�h##
�#####�h##�#####�h##I5##
#��##�#####&i########<i##�#####*l##O^####Bl##* ####ol##�###�#�l######
#�l##�#####em##r#####�m##I5##�#�m#########n##�m####hn##u#####�n##r#####�n##qX#
#?
#+o########no##�#####�o##�#####�o##�#####�o##�#####�o##�###�#�l#########p##u#
####(p##u#####�p##u#####�p##�k####��##�k####�p##�k####
%q##�k####�q##r#####�q##e.####�q##e.####�q##Xa####$r##u#####Cr##2r####Qr##u#####
��##xr####�r##2r####�r##u#####�r##�#####�r##xr####�r##�#####
s##u######s##u#####Ds##u#####Xs##J�####{s##e.##�#�s########�s##�#####�s##r#####
�s##�k####4t##r#####\
t##�1####�t##r#####{u##qX##�#�u########�u##Xa####1v###^####�v##m"####
w##I5#####w##Xa####�w##�#####-
x##7#####Fx##r#####bx##r#####�x##x.####�x##u######y##�#####�y##vy####�y##x.#####
z##]S####!
z##]S####0z##]S####Cz##]S####iz##Rz####�z##�z####�z########�z##�####�z##r######
{##r######{##r#####e{##[###&#|{##m{##&#�{##m{####�{##�#####�{##�######|
##J�#####|##J�#####|##J�####(|##J�####2|##J�####_|##[#####j|##[#####w|
##[#####�|##[#####�|##[#####�|##[#####�|##��####�|
##��####)}##r#####N}##[#####�}##[#####�}##[#####�}##[#####�}##[###�#)~########;
~##[#####�~##[#####�~##�~#######��#######��####.##��####C##�~####W##�~####
i##�~######�~####�##r#####�##x.####�X##�#####�##�#####�##�######�##�#####
�X##�#####@�##u#####X�##�~####f�##�#####y�##�#####��##�#####��##�#####��##
r#####K�##?#####h�###^####��##?#####��###^####��##m�####�##?
#####,�##e.####n�##O^####‫ۃ‬##O^#####�##��####=�##J�####J�########|
�##u#####��##u#####��###^####„###^####b�##O^####r�##Xa####��##r#####^�##�####
#҆##�#####�##�######�##�######�##�#####c�##r#####��##]S####��##]S####��##r##
###�##r#####��##J�####8�##r#####B�##�#####T�##r#####��##x.####��##x.####��#
#x.####7�##�#####e�##Xa####��##*
##"#��##O#####�##J�#####�##J�####0�##J�##"#q�##O###"#�r##O#####��##�#####��
##u######2##J�##"#�##O#####0�##e.##"#4�##O###"#@�##O###"#X�##O###"#m###O###"#p�
##O###"#��##O#####,�##r#####�##?
#########################)###;#############R###;#############f###;#######
#####v###;#######
#####�###;#############�###;#############�###;#########�###�###;###
#####�###�###;### #########�###�### ### #�###
###;### ###2#�#######;### ###5#�###,####### ##F#�###>###;### ###H#�###P###;###
###N#####\##########b#####m#########'#b#####f#########'#f#####�#######
#'#j#�###�###�#####-#k#####�###�###T#/#u#�###�###�#####/#�#####�###�###
#0#�## ##�###�#####1#�#####�###�### #4#�#########�###
#7#�#########�### #9#�#####!###�###T#:#�#####0###�###
#A#�#�###B###�### #B#�#####K###�###|#E#######e###�###|
#O###�###}###�### #O#######�###�###�#P#######�###�###
#X#######�###�###-#Y#######�###�### #[#!#�###�###�### #\#$#�###
###�### #\#'##!##(###�###5#c#'#####C###�###|#c#*#####b###�###
#d#,#####u###�####j#,#�###�###�### #u#,##!##�###�###5#u#-#####�###�###|
#u#0#####�###�###|#u#2#####�###�###|#w#4#�###�###�### #x#6#########�###|
#x#9#########�### #x#;##!##%###�###5#y#>#####K###�####z#B#####Y###�###|
#�#B#####m###�### #�#D##!##w###�###5#�#�#####�###�###
#�#�#####�####### #�#�#####�###�###
#�#�#�###�###�###9#�#�#####�###�###�#�#�###############�#
#########�### #�#######%###�### #�#######B###�####�#######T###�###-
#�#######g###�### #�###�###{###�### #�#### ##�###�### #�#"##!
##�###�#####�#&#�###�###;###

#�#*#####�###�###�#�#.#�###�###�###�#�#6#####�###�###(#�#=#########�###�#�
#G#�#######�### ###N#�#######�###4#
#a#####1###�###8###o#�###=###R#######v#####�###R### ###z#####�#######
#.#�#####�####### #/#�#####�########3#�#####�#######
#7#�#####�####### #8#�#####�####### #8#�#�###�###R#####8#�#####
###R### #8#�#�#######R#####>#�#####$###R###
#>#�#�###1###R#####B#�#####@###R###

#B###�###N###R#####Q#$#�###W###R#####Q#(#�###j###R#####Q#+#�###z###R#####Q#,####
#�###R####Q#-#####�###R####U#-#�###�###R### #Y#-#####�###R### #Y#0#####�###R###
#^#7#####�###R####`#=#####�###R### #d#=#####�###R### #m#P#####
###R### #o#U#####%###R### #p#[#####7###R### #r#b#####L###R###�#u#h#####e###R###
#v#k#####u####### #x#p#####�####### #{#q#�###�###R###

#}#r#####�###�###�#�#y#####�###�###�#�#�#####�###�###E#�#�#####�###�#####�
#�#####�###�### #�#�#####�###�### #�#�#�#### ##�### #�#�## ##$
##�###5#�#�#�###D ##�### #�#�#####V ##�### #�#�#�###n
##�### #�#�#####� ##�###�#�#�#####� ##�###�#�#�#�###�
##�###�#�#�#####� ##�###�#�#�#####� ##�###�#�#�#####�
##�###�#�#�#####� ##�###�#�#�#####

##�###�#�###�###0
##�###T#�#######@
##�#####�#T#�###D
##�### #�#~#####Z
##�### #�#�#####j
##�### #�#�#�###�
##�### #�#�#####�
##�###(#�#�#####�
##�### #�#�#�###�
##�### #�#�#####�
######4#�#�#####�
######4#�#�#�###�
##�###4#�#�#####�
######@#�#�#####
#######@#�#�#####(#######@#�#�#####A#######@#�#�#####]###�###4#�#�#####w######
#T#�#�#####�#######T#�#�#�###�###�### #�#�####�#######-#�#�#�###�###�###

#�#�#####�###�#####�#�#####�###�#####�#�#####�###�#####�#�#####�###�#####�
#�######
##�#####�#�######
##�#####�#�######
##�#####�#�#####,
##�#####�#�#####@
##�#####�#�#####Q
##�#####�#�#####h
##�#####�#�#####�
##�#####�#�#####�
##�###�#�#�## ##�
##�### #�#�## ##�
##�### #�#�#####�
##�###�#�#�#####�
##�###T#�### ###�
##�###-#�#+#####�
##�###�#�#/#####�
##�###�#�#6#####�
##�###�#�#?#######�###�###K########�###�#
#Z#####"##�###�#
#`#####0#########k#�###<##�###9###k#####Q#######!#�#####^#######&#�#####m
##�###�#)#�#####�#######=#�#####�##�###�#@#�#####�##�###�#P#�#####�
##�###�#b#######�##�###�#g#"#####�##�###M#{#N#####�######
#�#b#############Q#�#b##!##########5#�#j#####/####### #�#n#####5###�###

#�#o#####X###�###�#�#x#####l###�###�#�######}###�###�#�#�#�###�###�#####�#
�#�###�###�#####�#�#�###�###�#####�#�#####�###�###]#�#�##!
##�###�###5#�#�#�#######�#####�#�#�###"###�#####�#######2###�###T#�#
#####5###�###�#�#######C###�###�#�#&#####T###�###�#�#,#####\###p###
#�#1#�###�###p### #�#4#####�#######
#�#d#####�###p###H#�#f#####�###p###P#�#j#####�#######
#�#�#####�###p### #�#�##############�#�#########p###
#�#�#�###/###p### ###�#####=###p###h#
#######O###p### ###%#####k###p### ###1#####w####### ###<#�###�###p###
###=#####�###p######?#####�###p######?#####�###p###H#"#?#####�###p###
#3#�#####�###p### #5#�#####�###p###
#9#�#####�###p###h#:#�#########p### #>#�#####
###p### #C#�#########p### #H#�#########p### #J#�#####(###p### #O#�#�###@###p###
#P#�#�###R###p### #P#�#####a###p### #P## �###i###p### #T#
####x###p### #T# �###�#########Z## �###�#########Z##
�###�###p### #Z#" ####�#########\#/ ####�########\#3 ####�###p####`#3
####�###p### #d#3 ####�###p### #h#8 �###�###p### #l#A
�#######p### #l#P ########p### #p#h �###�###p### #w#�
####"####### ##� �###/###p### ##� �###=###p### #�#�
####E#######a#�#� �###V###p### #�#� #!##]###;### #�#�
�###s###;### #�#� �###�###;### #�#� �###�###;### #�#�
�###�###;### #�#� #!##�###;###5#�#� �###�###;### #�#�
�###�###;### #�##
####�###�###�#�##
####�###�###�#�##
####�####### #�#-
�#######�#####�#0
�#######�#####�#C
####1###�### #�#M
�###�###�#####�#N
�###F###�#####�#Q
�###V###�#####�#�
####g###�####�#�
�###t###�#####�#�
�###�###�#####�#�
####�###�####�#�
####�###�###-#�#�
####�###�####�#�
####�###�###-#�#�
�###�###�#####�#�
####�###�####�#�
�###�###�### #�#�
####�########�##########################################################"#######
########1#######-########C#######-########X#######-########p#######-#>###
###�#######-#\######�#######-#_######�#######-#b######�#######-#n#######�#######
#p#######�###�### #}#######�###�###4#�###�#######�### #�###############
#�#######&###�### #�#######1####### #�#7#####B###�###
#�#9#####T###�### #�#>#####e###�### #�#A#####s###�###\
#�#H#�###�###�### #�#V#####�###�###�#�#X##!##�###�#####�#`##!
##�#######�#�#i#####�###�###\#�#l##!
##�###�#####�#�#####�###�###�#�#�#####�###�###�#�#�#####
####### #�#�############# #�#�#####!####### #�#�#####-#######
#�#�#####5########�#�#####B#######
#�#�#####O###�###�#�#�#####f####### #�##
####|###�###�#�##
####�###########(
####�###�###(###,
####�###�###�# #5
####�###�###T###V
####�###�###9###q
# ##�###�###5###y
#######�######|
�#######�### ###|
#!##-###�#######�
#!##9####### #)#�
####C###�###u#-#�
####^###�###8#.#�
####k###�###4#0#�
�###{###�###4#0#�
####�###�###4#0#�
�###�###�###4#0#�
####�###�###T#0#�
####�###�###T#0#�
####�###�###4#0#�
####�###�###@#0#�
#######�###@#0#�
#######�###@#0#�
####(###�###@#0#�
####:###�###4#0#�
####G###�###4#0#�
####W###�###4#0#�
####d###�###4#0#�
####v###�###�#0#�
####�###�###�#0#�
####�###�###T#0#�
�###�###�### #0#�
####�###�###�#0#�
####�###�###\#5#�
####�###�###9#:#�
####�###�#####>#�
####�###�###T#?##�###�###�### #N#?########�### #N#A####5###�###(#N#M
####P###�### #P#Q####e#######4#R#S####y#######4#R#T####�#######H#R#U
####�#######T#R#V####�#######@#R#W####�###�####R#X######## ### #a#X
###0#######-#|#b###@#######-#~#b###P#######-#�#b####e### ###}#�#b####w### ###
#�#h####�### ####�#�####�### ####�#�####�### ### #�#�####�###
### #�#�####�### ### #�#�####�### ### #�#�########�### #�#�
####�####### #�#�####%###�###�#�#�� ###-###p### #�#��###7####### #�#�
�###D####### #�#��###Q####### #�#�� ###\####### #�#�####�c###### #�#�
####�c######-#�#�####Ri###### #�#�####�v######-#�#�####ы######-#�#�
######�#######�#######�###$###�###6###�###F###�###U###�###_###�###k###�###z###
�#S��
######�!####S��"####S�######S�######S�######S�######S�/#####S�9#####S�F#####S
�O#####S�\
#####S�h#####3#u###�###y###�####$##�#Q�#$####Q�5$####1#<$####1#O$####1#e$##�#3#
x$##�#1#�$##�#1#�$##�###>&##�#V�F&##N#V�L&##N#V�X&##N###l&##�###|
&##�###�&##�###�&######�&######�&######�&##�###�&##�###�&##�####-##�###A-
######W-##�###e-##�###�-######�-######�-######g.##7###�.##<###4/##g###t/
##�###�/##�###�/##�###�/##�###�/##�###�/##�###�/
##�###�1##g###I2######[2##�###k2##�#1#�2######�2######

3######'3##�###03######@3######U3######g3######q3######z3##�###�3##�#Q��3##�#Q
��3##�#Q�#4##�###-4##?###B4##�###P4##E###b4##J###v4##O#3#�4##�####5##�###
%5##�#3#�4##�#V��5####V��5####V��5####V��5####V��5####V�#6####V�'6######A6#
#�###>&##�#V�X6##�#V�b6##�#V�r6##�#V��6##�#V��6##�###>&##�#V��6####V��6#
###V��6####V��6####V�
7####V�07####V�F7####V�h7####V��7####V��7######�7##�###�7##0###�7#######8##W#
##`8######>&##�#V��8##�#V��8##�#V��8##�#V��8##�#V��8##�#V��8##�###�8##�
###�8##�####9##�####9##g####9##g###/
9##g###>9##g###Y9##g###y9######�9##�###�9##�###�9##g###�9##g###�9##�###�9##�#
##�9######�9######
:######&:######?:##�###I:##�###X:##�###e:######p:######:##�###�:######�:##g###
�:##�###�:######�:##�###�A##�###�A##9###�A##�###�A##�###�A##�####B##�###�7
##�####B##�####9##�###�7##0###�7######k2##�###0B##>###@B##B###[2##�###OB##G###c
B##L####E##�####E##�###IE######[E#######5##�###fE##�###�&##�###�E##�
##B4##� ##�E##� ##F##� ##%F##�

##CF##�###hF##�###A6##�###�F##�###�F##�####B##�####9##�###�F######�F##�###�F
##� ##�F##� ##�F##� ##/9##� ##>9##� ###9##� ###G##�
###G##�

##'G##�###>G##�###�A##�###�A##�###�A##�####B##�###]G##�###dG######�G##�
##�G######�7######�L##g###�Q##�#3#�4##�###>&##�#V��Q##j
V��Q##j
V��Q##j
###R######fE##j
###R##�###!R##�###-R##�###I:##�###X:##�###e:######7R##j
##�R##�####S##g####S##g#1#�S##�
1#�S##�
##�S##� ##�S##� ##�S##� ###T##� ##*T##� Q�#U######YU##�
##vU##�
Q��U####Q�#V####Q�'V####Q�4V####Q�IV######�V######�V##� ##$W##�
1#7W##�###�W######�S##� ##�S##� ##�W##�####X######
X##�###!
X##�###:X##�###_X####1#�Y##O#1#�Y##O#1#�Y##O#1#�Y##O###�Y##O###lZ######�Z##i
##�Z######�Z######�Z##�#Q��\####Q��\####Q��\####Q��\####Q��\####Q��\
####Q��\####Q��\####Q��\
####Q�#]####Q�#]####Q�7]####Q�L]####Q�]]####Q�l]####Q�]####Q��]####Q��]##�#Q
��]##�#1#�]##�#1#�]######�]######�]##`###�]##e####^##j####^##�####^##�###5^##
�###?
^##�###�c##g###�c##�###�c##�###�c##�###�c##g###>&##�#V�0d##�#V�6d##�#V�;d##
�###Ad##�###�d##�###�d######�d######�d######�d##�#1#�d######Ye##�###�Z######
ce##g###re##g####h#######h######'h##�###Dh######Sh##M###fh######th##�###�h##�###
�h##�###�h######�h######�h##R###5^##�###�h######�h######>&##�#V�hi##�#V�
%###�#V��
##�###>&##�#V�mi##M#V�vi##M#V�i##M###�i######�h######�c##�###�i##�####^##�##
#%j##g####^##�###>&##�#V�*j##�#V�<j##�#V�Mj##�###�i##�###gj######sj##�###|
j##j###�j##j###�j##g####^##�###�j##�####^##�###�c##�###�h######%j##g###
%j##g###�k##�###�k######�k##g###�k##g###tl##�###�l##g###�l##g###�R##�###Ei###
####m##############?
E####Q�#m####Q�0m####Q�Om####Q�dm######~m#######n##�###'n##g###5n##�###Mn##�###
%o######.o##� ##4o##�

##�j##~###{p##�###�p##�###�p##�###�q##�###�q##�###�q######�q######�q##�#S�
r####S�#r####S�#r####S��h####S�,r####S�7r####S�Cr####S�Jr####S�Pr####S�Xr####
##�]######�r##�###�r##�#S��r####S��:####S��:####S��r####S��r####S��r####S
��r####S��r####S�X:####S��r####S��r####S�#s####S�#s####S�)s####S�.s####S�6s
####S�Js####S�Us####S�cs####S�|s####S�?:####S��s####S��s######.o##�
##�s##� ##�s##� ###t##�####t##� ##&t##�###9t##� ##Et##�###:v##�
##Hv######Vv##� ##lv##� ##�v##�####y##� ###y##� ##
y##�###3y##�###Qz##�#Q��z####Q��z####Q��z######�z##�###�z######�z##�###9{##
� ##n{##� ##�{##� ##�##�###Y�##�###D�##
###L�##�###U�##�###,�##########.#1#q�##�#######�#######�###}�######W-
##�###�h######‫ڇ‬######�##�###�S##� ##A�##�###��##�
##�j##�####�######(�######5�##�###{�######��######�d######É##�###
‫ۉ‬######�#######�#######�##�###!�##� ##)�##�###?
�######I�######Z�######m�##�###��######ы##0####�##0###{�##�###�i######�##�##
#�##� ##�##�###�##� ##,�##�#Q��F######\�##� ##h�##�
##Js######v�##�###%j##�

###�##�####�##�####�######.�##�###<�##�###o�######x�######ˑ##�###֑######�##�
####R######�######>&##�#V��,##�#V�z\
##�####5######�######��######��##�###��##�###��##�###�##� ###q3######ђ######
�##�###�######��#######�##�###>&##�#V��##�#V��##�#V��##�#V�#�##�###>&##
�#V���������
####V� #� ######"� ######-� ##� ###� j##� ##8�######�S##� ##G�##�###P�##�
##f�## ###g3######s�##�###��##�
##��##�###��##�###�c######��######��######�h######Ȗ######
‫ޖ‬######�##�###>&##�#V��## #V�#�## ####h#######h######'h##�###Dh######�##�

##Sh######fh#######�##�###�h######�h######�h######�]######�h######.�##�###7�#
#�###R�######c�##�###y�######��##�###8�######��##�###��##�###��######�c##
####��######��######�h######Μ##�###�##�###�##4###��##<###
�##F####�######(�######��##�###��######��######s�##�###ɟ##�
##�E##]###D�##� ##�##�###�A##� ##�##� ##�G##�####�##�
###�##g###�L##g###/�######E�######\
�######x�######��######��##�###��##�###1####�####�##�###�##‫ڡ‬#��##�###�S##g
###^�##�###q�##�###/
�######��######E�######��######x�######Ȧ##�###�##y####�##~###B4##�
##�E##?
####�##g####�##g####�##g###��##�###�##�###>&##�#V���##�#V��##�#V��##�#V�

##�###��##�####�##�###[�######��##�###e�##�###�i######m�##�###s�##�###��
##� ##��##�###B4##� ###S##�

##�]######�#######�#######�######"�######�]#######�######"�######��##c###��#
#�###Ů##�####�##�###<�##�###e�######|
�######��##h###��##�###ί##�####�######��##�###ʰ##�###�##�###�##�###
�##�####�##�###�Z##�### �##�###-
�##�###8�##�###��######ʱ######��##�###�]##�###�S##� ##��##� ##��##�
##T�##� ##[�##� ##۴##� ##�##� !#�##�#!#)�##�#!
#@�######D�##�###U�##�###��######h�##�###w�######��##�###��##�###��##�#!
#��##�###ŵ##�###�##�###��##�###-�######4�##�###��##�###G�######\
�######8�######G�######k�##�###�######��######��######��######��######��##
####��##�###��##�###��##�###��##�###�c######��######��######�h######��##
�###Ǻ##�#&#��##�#&##�##�#&#-
�##�#&#P�##�###�i#######R######p�######�h######ђ######�######>&##�#V�
�##V#V���##V#V��R##V#V�u###V###>&##�#V��##[#V�#�##[#V�&�##[#V�6�##[###E�##
�###Q�######W�######\
�######j�######u�######��######w�######Js######D�##�###I:##�###n�##[###?:##�#
##%j##g#!#j�##�#!#r�##�#!#��##�#!#}�####!#�S##�
##ί##�#1#��##�#1#��##�#1#��##�###@�######G�######V�######>&##�#V�o�####V�z
�######>&##�#V���####V���####V���######c�######y�######��######��##�###8
�######��######��######��######�c######��######��######�h######Μ######�####
##�######��######
�####1#��##2####�##�###��######��######��######��######
%j##D###r�##�###��######��##�###��##c####�######��######��######!
�######0�######��######��#######�######0�#######R######�i######��######4�###
###B�######�i######F�######0�######%j##g#!#i�####!##�####!#{�####!#0�####!
#��#######�##D###&�##I###5�##J###E�##O###S�##O#V�$�##�
6#=�##2###>&##�#V�#�##�#V�+�##�#V�<�##�###>&##�#V�hi##�#V�%###�#V��
##�#!#I�##�#!#�i####!#{�####!#�##�#!#`�##�
!#%j### ##n�##�###y�##�#Q���####Q���####Q���####Q���######��##H!
##��##`###��##�###
�##H!###�##�###?�######O�##�#3#��####3#�]##�#3#�]####1#��##�###��##�!
1#��##�#1#��##�#1##�##�!V�#�####V�)�####V�/�####V�5�####V�:�####V�?
�####1#d�##�#1#��##�#V���####V�

�####V�#�####V�.�####V�=�####V�J�####V�`�####V�~�####V���####V���####V�
��####V���####V���####V���####V�#�####V�#�####V�0�####V�N�####V�c�####V
���####V���####V���####V���####V���####V�#�####V�#�####V�
�####V�/�####V�@�####V�N�####6#d�##�#6#r�##�###��##<###��######��##�####
�##0#3#,�####3#9�####S�U�##� S�o�##� S���##� S���##� S���##�

S���##�#Q���####Q���######��##�+###�##2####�##�#1#�d######{�######��####
###�##�

###n##�####�##�###'n##g###&�##�###4�##�###5n##�###G�##�###W�##�###Mn##�###r
�##�###��######��##�###>&##�#V�c�##[-V�j�##[-V�r�##[-V��##[-V���##[-
##>&##� V���##�-V���##�-##��##�-##��##�-##��##�-##��##�-
##��##2####�##� ##�##2####�##� ##&�##2###,�##� ##>&##�#V�2�##�-V�;�##�-
##C�##� ##R�##� ##b�##�-##v�######��##� ##>&##�#V���##�-V���##�-
V�#�##�-S�
�##�#S�"�##�#S�9�##�#S�V�##� S�c�##� S�q�##� S��##�
S���##�#S���##� S���##� S���##� S���##�

Q�#�####Q�)�####Q�5�######@�##2###N�##O###e�##O###~�##O###��##O###��##O###�
�##O###��##O###��##O###>&##�#V���##�.V���##�.V���##�.##>&##�#V���##�.V
���##�.V���##�.V�#�##�.##>&##�#V�#�###/V�
�###/##>&##�#V�-�###/V�8�###/V�F�###/V�U�###/V�f�###/V�t�###/V���###/
##>&##�#V���###/V���###/##��##�-##��##�-##��##� ##��##� ##�##�
###�##�-##2�##�-##B�##� ## �##� ##Q�##�-##W�###/##j�###/##}�##�
##��##� ##��##� ##��##� ##��##� ##��##� ##��##�
##��##� ##��##� ##��##�-###�##�-##3�##�-##E�##�-##W�##�-
##m�##�-##��##�##��##� ##��##� ##��##� ##��##�-##��##�-##��##�
##��##� ##��##� ##
�##� ###�##� ##)�##� ##=�###/##Q�##�-##W�###/##j�###/##}�##�
##��##� ##��##� ##��##� ##��##� ##��##�-##��##�
##��##� ##��##�-###�##�-##3�##�-##E�##�-##W�##�-##m�##�-##��##�
##��##� ##��##� ##��##� ##��##�-##��##�-##��##�-##��##�-
##��##�-##
�##�-###�##� ##)�##� ##=�###/##K�##� ##U�## /##`�##%/##K�##�
##U�## /##`�##*/##o�##� ##r�##�-##��##�-##��##//###,##� ##��##�
##߀##//##��##//##��##//##��##//##��##//##
�##//## �##�

##'�##2###>&##�#V�.�##4/V�:�##4/V�R�##4/V�j�##4/V���##4/V���##4/V���##4/
V���##4/V���##4/V���##4/V�#�##4/V�9�##4/
##Y�##�###l�##�###{�##�###��######��##9/##�i######m�##Y/
Q�#�####Q�#�####1#4�##�###E�##�/!#U�##g#!
#b�##�####9##g###p�##g###�##g###��##g###��######��##�/##��##�/1#q�##�#!
#�]####!#�s######�####Q� �######1�##�/##E�##�#!#��####!#��##�#!#X:##�#!
#e:####!#��####!#�s#######S##� ##��##� ##1###�###j###�###{###�###۴##�
######� ##�###c0�#�###�###�#######Z###�###�###� ##��##�
##�###g###�###g###########l###�
##�Z######�Z######�Z##�###�###�###�F##� ##�###�

##�G##########y0######�#######�###'###�#1#*###�###�###�#�#�###�#Q��#####Q��
#######�Z######�#######�#######################,#######?
###�###_###�###�###�###�###�###�###�###�###�###��##�###
##� ##�S##� ###
##� ##*
##� ##;
##� ##L
##�###o
##�###�
##� ##�
##� ##�
##� ##�
######�##E1##�
##�###�
##�###��######�
##�#&#�#####&#Q�####&#Js####&#E�######�###�1&#�###�#&#�###�###�###�1!
#�###�1!#�###�1!
#�###�1##>&##�#V�7###�1V�#z##�1V�#z##�1V�<###�1V�#�##�1##E###�###I:##�###P
###�###}###� ##�###� ##�###� ##�###� ##�###� ##�###� ##
###� ######�#Q� #######YU##� ##�z######:###�###w###� ##�###�

######�#1#####�###6###�###B###�###p###2###�###�###�###�###�###�###�#######w##
#� ##/###� ##8�######��######c�##�###�
##�###�###�###�###� ###S##� ##�###�###��##�###�S##�

##��######D#######�#######I###�###V#######>&##�#V��###�3V��###�3V��###�3V�
�8##�3##=###�###Y###�###q###�###�###�###�7##�####8##W###�###�###�###�3##[2##
�###OB##G###k2##�###@B##B###(�#######5##�###�j##?####9##�###s###�
##�###�###�###�#######�#######�###*#######�S##� ##7###� Q�
#######S##� ##��##� ##j###�###A ##�4##S ######c
##�###��##�###’##�###Y�##�#Q��#####Q��#####Q��#####Q��#####Q�#$####Q�
$####Q�!$####Q�A$#######�##� ##w$##�###�$##� ##�$##� ######�###�
%##D###�
%##�#######�51#q�##�#######�#######�###>&##�#V�E'##�5V�h'##�5V��'##�5V��'#
#�5V��'##�5V��'##�5V�#(##�5V�&(##�5V�E(##�5V�g(##�5V��(##�5V��(##�5V��
(##�5V��(##�5S�#)####S�
)####S�#)####S���##�#S�#)##�#S�+)##�#S�@)##�#S�W)##�#S�n)##�#S��)##�#S��
)##�#S��)##�#S��)##�#S��)##�#S��)##�#S�#*##�#S�-
*##�#S�I*##�#S�]*##�#S�j*##�#S��*##�#S��*##�#S��*##�#S��*##�#S��*##�#S
�#+##�#S�#+##�### �##� ##'�##2###8,##� ##?,##� ##G,##�
##O,##2###X,##2###h,##2###{,##2###8,##� ##?,##� ##G,##�
##�,##�6##{,##2###�,##�#Q��,####Q��,####Q��,####Q�#-####Q�#-####Q�--
######=-##`###K-##�:##b-##�:1#$/##�###>&##�#V��###�;V��/
##�;##>&##�#V��###�;V��/##�;V��/##�;V��/##�;V��/##�;V��/##�;V�#0##�;V�
%0##�;S�40##�

##N0##�;##^0##�;##l0######z0######�0##�;##�0##�;##�0##�;##�1##�###�1######�1
##�;##�1##�####2##�
##$2######l0######+2######F2###<##T2###<##�1##�###�2###<##�2#######2##�

Q�'3####Q�03####6#83##�<##A3##�###{�######��######�d####V��3####V��3####V��
3####V��3####V��3####V��3####V�#4####V�.4####V�;4####V�G4##�#V�`4##�#V��4##
##6#�4####6#�4##�#6#�4##�#6#�4##�#6#�4##�#S��,####S��,####S��,####S��,####
S��+####S�#5####S��+####S��,####S�$5####S�95##�####d###A##�v###]##�v##"]##�y
##"]###�###A##�##��##�i##NF##`j##�###kj##�###�j##YF##{:##^F##�j##^F##�j##�###
�j#######k##�####k######/k##�###Dk##�###Wk######hk##j
##�k##�###�k##hF######�#z#############�#�###!
#########�#�###(#########�#�###4# #######�#z#####
#######�#�###<#
#######�#�###@#
#######�#�###J#########�#z#############�#�###Q#########�#�###V#########�#�###a
#########�#z#############�#�###Q#########�#�###V#########�#�###a#########�#z##
###########�#�###h#########�#�###(#!#######�#�###n#
%#######�#z#####&#######�#�###u#(#######�#�###V#)#######�#�###n#,#######�#z###
##-#######�#�###z#/
#######�#�###V#0#######�#�###�#3#�f####�#�###�#4#�h####�#�###�#<#�;####�#�
###�#?
#�;####�#z###�#A#�;####�#z###�#C##i####�#�###�#F#�;####�#�###�#F#�;####�#�
###�#F#�i####�#�###�#F#�i####�#�###�#G#@j####�#�###�#H#�j####�#�###�#H#�;#
###�#�###�#H#�k####�#�###�#I#$<####�## ##�#I#K<####�## ##�#I#`<####�#0
##�#I#r<####�#K ##�#J#|<####�#b ##�#K#�k####�#l ####L#Pl####�#v
##�#N#�l####�#� ####O#�l####�#� ####P##m####�#� ####Q#�m####�##!
##b#R#po####�##!##b#S#�o####�#9!##g#T##s####�#M!##r#X#5s####�#a!
##r#Y#�<####�#v!##r#Z#Xs####�#�!##b#[#xs####�#�!##w#\#�s####�#�!
##r#]#�s####�#�!##|#^#@t####�#�!##r#`#�t####�#�!##�#a#�t####�#�!
##�#c#�<####�##"##�#c#�<####�#&"##�#c##u####�#Z"##�#c#Lu####�#�"##�#d#hu####
�#�###�#e#�u####�#Pc##�
e#�<####�#�###r#e#8v####�#�###�#f##w####�#�###r#h#�<####�#�###b#i#�w####�#�
###b#j#x####�#Pc##�
k#�<####�#�$##b#k##=####�#�$##�#l#(x####�#�$##�#q#xx####�##
%##�#s##y####�#(%##�#w#�y####�#A%##�#y#D{####�#Q%##�#{#�{####�#_%##�#�#X|
####�#~%##�#�#xs####�#�%##w#�#�|####�#�%##�#�##}####�#�%##�#�#x~####�#�
%####�#<�####�##&####�#l�####�##&## #�#R=####�#+&##3#�#
�####�#+&##:#�#`=####�#5&##�#�#��####�#5&##C#�#0�####�#Pc##�
�#######�#z#####�#######�#�###a#�#######�#�###l#�#######�#�###4#�#######�#z#
####�#######�#�###Q#�#######�#�###V#�#######�#�###a#�#��####�#z###�#�#‫܆‬####
�#z###�#�#8#####�#�&##|
#�#@#####�#�&##�#�#W#####�#�&##�#�##�####�##'##�#�#<�####�##'##�#�#d�####
�#:'##<#�#��####�#W'##<#�#_#####�#s'##�#�#_#####�#�'##�#�#a#####�#�'##u#�#
��####�#�'##<#�#t#####�#�'##u#�#��####�#�'##<#�#�#####�#�'##u#�#҇####�#
(##<#�#�#####�##(##u#�#�####�#,
(##<#�#�#####�#>(##u#�##�####�#L(##<#�#�#####�#Z(##u#�##�####�#f(##<#�#�###
##�#r(##�#�#�#####�#�(##�#�#�#####�#�(##u#�#.�####�#�(##<#�#
#####�#�(##u#�#E�####�#�(##<#�#######�#�(##u#�#\
�####�#�(##<#�#2#####�#�(##u#�#s�####�#�(##<#�#E#####�##)##�#�#]#####�##)##
�#�#k#####�#0)##u#�#��####�#<)##<#�#~#####�#H)##u#�#��####�#Y)##<#�#�#####
�#j)##u#�#��####�#})##<#�#�#####�#�)##�#�#ψ####�#�)##�#�#�#####�#�)##u#�
#�####�#�)##<#�#�#####�#�)##u#�#�####�#�)##<#�#�#####�#�)##u#�##�####�##*
##<#�#�#####�##*##�#�#+�####�#(*##�#�## ####�#:*##u#�#B�####�#I*##<#�##
####�#X*##u#�#Y�####�#i*##<#�#) ####�#z*##u#�#p�####�#�*##<#�#<
####�#�*##u#�#��####�#�*##<#�#O ####�#�*##u#�#��####�#�*##<#�#b
####�#�*##u#�#��####�#�*##<#�#u ####�#�*##u#�#̉####�#�*##<#�#�
####�##+##�#�#�####�##+##�#�#� ####�#&+##�#�#�####�#9+##�#�#�
####�#L+##�#�##�####�#^+##�#�#� ####�#p+##<#�#(�####�#}
+##<#�#��####�#s'##�#�#%�####�#�+##�#�#� ####�#z###�#�#S�####�#z###�#�#�
####�#�&##|#�#��####�##-##u#�#,�####�##-##�#�#�=####�# -
##�#�#�=####�#,-####�#�=####�#z###�#�#�=####�#J-##<#�#�=####�#\-
##�#�#�=####�#l-##�#�#�=####�#z#####�#�=####�#z#####�##>####�#�-##$#�#
>####�#�-##+#�##>####�#�-
##$#�##>####�##.##+#�##>####�#!.##$#�#,>####�#0.##+#�#`�####�##-##�#�#>
%####�#z###�#�#�####�#�.##A#�#�####�#�.##H#�#,�####�##-
##�#�#4>####�#�.##N#�#=>####�#�.##U#�#>%####�#z###�#�#��####�##-##�#�#-
�####�#H/##l#�#E>####�#z###�#�#� ####�#�/##�#�#�####�#�/##�#�#�
####�#�(##�#�#�####�#r(##�#�#� ####�#�/##�#�##
####�##0##�#�#��####�#Y)##<#�#~#####�#H)##u#�#��####�#<)##<###k#####�#0)##u#
##I�####�##0##<####
####�#$0##u###`�####�#50##<####
####�#F0##u###w�####�#W0##<###1
####�#f0##u###��####�#u0##<###D
####�#�0##u###W
####�#�0##�###_
####�#�0##�###h
####�#�0##�###p
####�#�0##�###y
####�#�0##�###�
####�#�0##�###�
####�#�0##�###�
####�#�0##�###�
####�#p+##<# #��####�#�0##<# #X>####�#�0##<# #̑####�#�+##�#
#,�####�#�'##�# #$�####�#}+##<#
#l�####�##1##�#
#� ####�#z###�#
#l>####�#z###x#
#$�####�#�1##�####�####�#�1##�###`�####�##2##�###�####�##2##�###d�####�#*2
##�###�>####�#;2##�# #�>####�#z###�# #######�#v2##�###�>####�#~2##<#-
##�####�#�2##�#-#L�####�#�2##�#3#<�####�#�2####9#�>####�#z### #?
#<�####�#�3##�#D##�####�#v2##�#D#̞####�#Pc##�
N##?####�#z###�#N#�####�#v2##�#Q##?####�#z###�#[#h�####�#�3##�#[##?
####�#�3##�#[#,?####�#�3##�#[#_#####�#�3##�#\#_#####�#�3##�#\
#��####�#z###u#\#4�#�####‫؟‬##T#]#(�####�#�4##�#]#x�####�#,
##[#]#L?
####�#�3##�#`#��####�#�4##T#`#�####�#�4##�#`#��####�#�4##h#`#P�####�#�4##
l#`##�####�#�4##y#f#n�####�#Pc##�
g#>%####�#z###�#g#��####�#�4##�#g#Ĥ####�##5##�#i#x?####�#
5##�#k#�?####�#Pc##�
l#�?####�#/5##<#l#�?####�#85##�#l#�?####�#B5##�#m#>
%####�#z###�#o#�####�#�4##�#o#�?####�#Pc##�
q#D�####�#r5##�#q#�####�#�5##�#|##�####�#�5##�#�#�?####�#z###�#�#�?
####�#z###�#�##@####�#z#####�##@####�#z###�#�#t�####�#v2##�#�#
�####�#�7##)#�#�?####�#z###�#�#�?####�#z###�#�##@####�#z#####�##?
####�#z###�#�#(@####�#v2##�#�#\
@####�#z###5#�#X�####�#v2##�#�#w@####�#z###D#�#$�####�#v2##�#�#��####�#�7#
#O#�#T�####�#
8##O#�#��####�##8##�#�##?####�#z###�#�#�@####�#v2##�#�#�@####�#z###\#�#
98#�####‫ܪ‬##c#�#�@####�#A8##y#�#�?
####�#z###�#�#�@####�#z###u#�##@####�#z#####�# A####�#o8##<#�##?
####�#z###�#�##A####�#v2##�#�#tA####�#�:##�#�#�####�##;##�#�#�A####�##;##�
#�#P�####�#
%;##�#�#�A####�#1;##�#�#�A####�#@;##�#�#�A####�#M;##�#�#�A####�#`;##�#�#
��####�#p;##u#�#�####�#�;##�#�#�A####�#�;##�#�#�A####�#�;##�#�#�A####�#
�;##�#�##�####�#�;##�#�#�A####�#�;##�#�#�A####�##<##u#�##B####�##<##�#�#
#B####�#7<##u#�##B####�#H<##u#�#,B####�#e<##�#�#4B####�#w<##�#�#<B####�#�<##
<#�#4�####�#�<##u#�#‫ܭ‬####�#�<##<#�#D�####�#�<##<#�#��####�#�<##<#�#DB####
�#�<##<#�#LB####�##=##u#�#UB####�##=##<#�#]B####�#+=##u#�#fB####�#A=##�###nB#
###�#O=##�###wB####�#b=##�###B####�#u=##�###�B####�#�=##�###�B####�#�=##u##
#�B####�#�=##<###�####�#�=##�###�B####�#�=##�###�B####�#�=##�###�B####�#�
=##�###:�####�##>##T###�B####�##>##�###�B####�#)>##�###�B####�#@>##�###�B###
#�#W>##�###�B####�#s>##�###V�####�#�>##�###�B####�#�>##�###'C####�#�>##�##
#:C####�#�>##�###BC####�#�>##�###OC####�#�>##�###_C####�#�>##�###yC####�##?
##�###�C####�#&?##�###�C####�#<?##�# #�C####�#_?##�#
#�C####�#�?##<#
#�C####�#�?##u#
#�C####�#�?##�###�C####�#�?####
#t�####�#�?##�###��####�#�?######!D####�#/5##<####�####�#z###�###�?
####�#z###�###�?
####�#z###�####@####�#z#######�####�#z###Q###7D####�#wB##z#*#Dz####�#�B##�#,#\
D####�#�B##�#-#�####�#�B##�#-##�####�#�B##�#/
#`�####�#�B##�#2#p�####�#�B##�#3#��####�##C##�#6#`�####�#"C##�#8#ķ####�##@
##�#;#�####�#>C##�#=#h�####�#QC##�#>#��####�#bC##�#?
#T�####�#qC##�#@#��####�#�C##�#A#dD####�#�C##�#D#�####�#�C##�#E#�D####�#�
C##b#G#Ȼ####�#r5##�#H#�D####�#�C### K#@�####�##D### O#�####�#0D###

S#P�####�#�C##�#V##�####�#CD##�#V#��####�#WD##�#V#,�####�#pD##�#V#��####�#
�D##= V#��####�#�D##�#X#D�####�#�D##J X#p�####�#�D##T Z#��####�#�D##n
`#h�####�##E##� g#�D####�#z###� i#�D####�#-E##�

k#�D####�#5E##�#k#�D####�#mE##<#k#�D####�#�E##u#k#�D####�#~2##<#l#�D####�#�E
##u#l##E####�#�E##�#m#E####�#�E##�#m##E####�#�E##� n##E####�#�E##� n#>
%####�#z###�#o#��####�#z###�#o#�
####�#�&##|#o#��####�#z###�#o#�
####�#�G##�#o#�
####�#�G##�#o#�
####�#�G##�#p#�
####�#�G##�#p#�
####�#�G##�#q#�
####�#H##�#q#�
####�##H##�#r#�
####�#7H##�#r#�
####�#RH##�#s#######�#qH##�#s#
#####�#�H##�#t#######�#�H##�#t#######�#�H##�#u#######�#�H##�#u#7#####�#
I##�#v#?
#####�#5I##�#v#H#####�#^I##�#w#P#####�#�I##�#w#Y#####�#�I##<#x#a#####�#�I##u#
x#j#####�#�I##�#y#r#####�#
J##�#y#{#####�##J##�#z#�#####�#:J##�#z#�#####�#XJ##�#{#�#####�#yJ##�#{#�####
#�#�J##<#|#�#####�#�J##u#|
#�#####�#�J##�#}#�#####�#�J##�#}#�#####�#�J##<#~#�#####�#�J##u#~#�#####�#�
J##�##�#####�##K##�##�#####�#
K##�#�#�#####�#3K##�#�#�#####�#FK##�#�#�#####�#fK##�#�##
####�#�K##�#�##
####�#�K##�#�##
####�#�K##�#�##
####�#�K##�#�#%
####�#�K##<#�#-
####�#�K##u#�#6
####�#�K##�#�#>
####�##L##�#�#R
####�#BL##�#�#Z
####�#TL##�#�#b
####�#pL##�#�#j
####�#�L##�#�#r
####�#�L##�#�#z
####�#�L##�#�#�
####�#�L##�#�#�
####�#�L##�#�#_#####�#�L##�#�#%�####�#
M##�#�#D�####�##M##� �#\�####�#(M##� �#(E####�#GM##�
�#��####�#hM##�#�#��####�#rM##� �##�####�#M###
�#��####�#�M##
�#d�####�#�M##
�##�####�#�M##
�#d�####�#�M##
�##�####�#�M##
�#��####�#�M##
�#H�####�##N##
�#��####�##N##
�#<�####�#%N##� �#��####�#1N##�#�#��####�#?N##�#�#
�####�#NN##l#�#T�####�#�+###
�#h�####�#qN##0
�##�####�#�N##:
�#��####�#�N##�#�#��####�#�N##I
�#l�####�#�N##P
�#p�####�#�N##_
�#\
E####�##O##Q#�#0�####�#2O##�#�##�####�#�+##�#�#######�#z#####�#######�#�###
d
�#######�#�###V#�#######�#�###4#�#�E####�#�Q##�#�#�E####�#z###�#�#>
%####�#z###�#�#��####�#�4##�#�#�E####�#Pc##�
�#�E####�#z###o
�#�E####�#IR##�#�#�E####�#XR##�#�##F####�#�>##�#�#F####�#hR##�
�##F####�#b=##�#�##F####�#�=##�#�#%F####�#�=##<#�#��####�#�R##�
�#-F####�#�R##�
�#v�####�#�R##�
�#��####�#�R##�
�#>%####�#z###�#�##�####�#�R##�
�#��####�#�R##�
�#��####�#S##�
�##�####�#z###�#�#.�####�#1S##�#�#GF####�#;S##h#�#`�####�#DS##�
�#��####�#SS##r#�#cF####�#~S##�
�#jF####�#�S##�
�#��####�#Pc##�
�#�
####�#z###�#�#�
####�#�4##�#�#�
####�#FT##�#�#�
####�#PT##�#�#�
####�#bT##�#�#�
####�#T##�#�#�
####�#�T##�#�##�####�#�+##�#�#�
####�#-U##�#�#�
####�#CU##�#�#(�####�#�U##�
�#t�####�#�U####�##�####�#�U##u#�#��####�#�U####�#�
####�#z###�#�######�#z###�#�######�#YV##<#�# ####�#{V##u#�#)####�#�V##�#�#1
####�#�V##�#�#:####�#�V##�#�#B####�#
W##�#�#��####�#�+##�#�#h�####�#OW##�#�#,#####�#Pc##�
�#K####�#z###�#�#_####�#�W##<#�#g####�#�W##u#�#p####�#�4##�#�#x
####�#FT##�#�#�
####�#PT##�#�#L#####�#�+##�#�#qF####�#z###�#�#�F####�#�W##�#�#�F####�#�W#
#<#�#�F####�#�&##|
#�#�#####�##X##�#�#�F####�#IX##�#�#<#####�#�X##�#�#�F####�#�X##�#�#�####
#�#�X##�#�#######�##Y##�#�#�#####�#&Y##�#�#�#####�#EY##�#�#P#####�#]Y##
�#8#####�#wY###
##P#####�#�Y##
##P#####�#�Y##'
##�#####�#�Y##3
#######�#
Z##=
#t ####�#Pc##�
###G####�#z###R
##5G####� XZ##<###=G####�#|Z##c
##EG####�#Y)##<###MG####�#H)##u###VG####�#<)##<###^G####�#0)##u###gG####�#�(##�
###oG####�#r(##�###� ####�#
Z##=
###
####�#�Z##n
##xG####�#�Z##<###�G####�#�Z##<#########�#�Z##x
##�G####�#z###R
##`#####�#�Z##x
&#�#####�##[##�
'#�####�#3[##�
(#�#####�#�[##�
)#######�#�[##�
*#�#####�#�[##x
+#######�U\##<#,#######�^\##u#,#######�g\##�
-#######�#t\##�
-#$#####�#z###�#.#�####� U\##<#.#�####� ^\##u#.#�####� g\##�
/#`#####�#t\##�
/#�#####�#L^##o#0#�G####�#R^##�#2#
#####�#]^##�#4#�#####�#n^##�#6#,#####�#�^##�#9#�#####�#�^##�#>#�G####�#�^##
Q#B#�#####�#�^##�#C##H####�#�^##�#C##H####�#�^##�#C##H####�#�^##<#D#&H####�#
�^##<#D#8H####�##_##<#D#8#####�##_##�#D#�#####�#%_##�#D#|
#####�#6_##�#D#8#####�#F_##�#D#�#####�#V_##�#F#�#####�#b_##�#H#�#####�#x_##�
#J#
####�#�_##�#K#�"####�#�_##�#L#
#####�#�_##�#M#�#####�#�_####Q#\$####�#�_###S#�
%####�#�_####X#�+####�#�_##"#Z#p,####�##`##+#[#�,####�##`##7#]#LH####�##`##A#a
#|-####�#A`##J#d#�-####�#P`##A#f#|
H####�#g`##T#i#�.####�#r`##_#l#�0####�#�`##n#q##1####�#�`##y#t#�1####�#�`##y#
u#�3####�#�`##�#v##<####�#�`##�#|#\
<####�#�`##�#}#�H####�#�`##u##�H####�#�`##u#�#�<####�#a##�#�#�<####�##a##x
�#(=####�#+a##�#�#�=####�#Ba##�#�#�>####�#ya##�#�#d?
####�#�a##�#�#<A####�#�a##�#�#xB####�#�a##�#�##C####�#�a####�#8C####�#�a##
##�#�C####�#
b####�#�H####�#&b##A#�#�D####�#3b##(#�#�E####�#Jb##/#�##I####�#db##<#�##F###
#�#tb##6#�#�H####�#�b##F#�#TI####�#�b##N#�#�I####�#�b##U#�#@J####�#�b##e#�
#�K####�#�b##x
�#0L####�#�b##y#�#�L####�##c##�#�#�L####�##c##w#�#@M####�#
%c##�#�#�M####�#9c##�#�##N####�#Pc##�
�#'I####�#z###�#�#(N####�#�c##�#�#;I####�#z###�#�#cI####�#�c##�#�#rI####�#
�c##�#�#zI####�#�c##�#�#�I####�#�c##�#�#�I####�#�c##�#�#�I####�#�c##�#�
#TN####�#
d##�#�#�I####�#z###�#�#�N####�#�4##�#�##O####�#�4##�#�#>
%####�#z###�#�#hO####�#�4##�#�#>%####�#z###�#�#######�Nd##�#�#######�
[d##<#�#######�gd##<#�#######�wd##�#�#�I####�#z#####�#�O####�#�d###�#�####�
Nd##�#�#�####� [d##<#�#�####� gd##<#�#�####�
wd##�#�##J####�#�d##<#�#$J####�#Pc##�
�#######� e##�#�#######�<)##<#�#######�#e##�#�#######�
*e####�#�O####�#z###�#�#�####� e##�#�#�####� <)##<#�##P####�
#e##�#�#DP####�

*e####�#5J####�#{e##'#�#DJ####�#�e##�#�#RJ####�#�e##�#�#[J####�#�e##u#�####
###���������������
e##<#� #######� � e##u#� #######� � e##<#� #######� � e##u#� #######� #f##<#� #######�
#f##u#�#######�(f##<#�#######�:f##u#�#######�Lf##�#�#######�_f##�#�#######�
rf##�#�#######�{f##�#�#######������������
f##� #� #######� � f##� #� #######� � f##<#� #######�
�f##u#�#######���������������
f##.#� #######� � ^##� #� #######� � ^##� #� #######� � f##4#� #######�
�f##:#�#######�#g##<#�#######�#g##u#�#######�$g##�#�#######�
Eg##�#�#~P####�#z###�#�#�####� �e##<#�#######� �e##u#�#######�
�e##<#�#######� �e##u#�#######� $g##�#�#'#####� Eg##�#�#0#####�
#f##<#�#8#####� #f##u#�#A#####� �f##4#�#I#####� �f##:#�#R#####�
(f##<#�#Z#####� :f##u#�#c#####� Lf##�#�#k#####� _f##�#�#t#####�
rf##�#�#|#####� {f##�#�#�#####� �f##�#�#�#####� �f##�#�#�#####�
�f##<#�#�#####� �f##u#�#�#####� �f##.#�#�#####� #g##<#�#�#####�
#g##u#�#�#####� �^##�#�#�#####�

�^##�#�#dJ####�#f(##<#�#lJ####�#Z(##u#�#uJ####�#�h##<#�#}J####�#�h##u#�#####
##�
i##W#�#######�#i##<#�#######�(i##<#�#######�8i##�
�#######�1S##�#�#######�#_i##c#�#######�#�###j#�#######�
�c##�#�#######�#di##q#�#####�#� �i##x#�#####�#� �i##~#�#####�#�
�i##�#�#�J####�#z###�#�#�J####�#�i##�###�J####�##i##<###�J####�#f(##<###�J
####�#�c##�###�J####�#�i##�###�J####�#�i##�###�P####�#z###�###�P####�#_i##
�###�P####�#�###�###�J####�#1S##�####Q####�#di##�###�J####�#;2##�###�#####�
#z###�###PQ####�#z###�###
K####�#�i##�####K####�#�j##�###�#####�
i##W###�#####� (i##<###�Q####� #i##<###�#####� 8i##�
###K####�#�4##�
##$K####�#�^##Q###pR####�#�j##�###�R####�#�j##�###7K####�#�j##�#
#EK####�##k##�#
#SK####�##k##u###bK####�#1k##�#
#jK####�#>k##�#
#�K####�#�i##�##�K####�#�i#####�K####�#z###�##�K####�#z#######�#####�

�c##�###�K####�##i##<###�K####�#(i##<###�K####�#z###�###�#####�#di##q###
#####�#;2##�###�K####�#1S##�####L####�#_i#######L####�#�k##*###�R####�#z###�#
###S####�#di##�#########�#_i##c###[S####�#�###j###-#####� 1S##�###-
L####�#�k##�###:#####�#;2##�###EL####�#z###u###jL####�#�k##<###rL####�#�k##2#
##tS####�##l##�###�L####�#�i##�###�S####�#0l##�###�L####�#z###u###�L####�#�
l##:###�S####�#�l##�###�S####�#z###�###�L####�#�l##B####M####�#�l##h#!
#�S####�#�l##u###xV####�#�l##I#$##M####�#z###B#
%#9M####�#z###h#(#�V####�#�m####*#�V####�#�m##b#,##W####�#�m##b#-
#8W####�#�m##
#.#OM####�#�m####/#hW####�#�m##�#/#�W####�#�m####/#G#####�#z###�#2#Z#####�#]n
##�#2#b#####�#in##�#2#�W####�#un##�#3#k#####�#�n##�#3#s#####�#�n##�#3#|
#####�#�n##�#4#�#####�#�n##�#4##X####�#�+##�#5#�#####�#z###�#5#�#####�#Bo##
<#5#�#####�#Oo##u#5#�#####�#\
o##�#6#�#####�#fo##�#6#�#####�#po##�#7#�#####�#�o##�#7#tX####�#�+##�#8#4Y##
##�#�o##)#8#`Y####�#�o##)#;#�Y####�#�o##2#>#�Y####�#�o##)#C#[M####�##p##=#F#x
M####�##p##=#I#�#####�#,p##x
L#�M####�#:p##D#M#�Y####�#Pp##O#P#DZ####�#jp##X#T#�Z####�#:p##_#V#�#####�#z###
�#Z#######�#z#####Z#######�#�###�#\
#######�#�###l#]#######�#�###w#`#�M####�#�p##�#a#V[####�#z###�#a#�[####�#�p#
#�#b#�[####�#�p##�#c##]####�#�p##�#d#�]####�#�p##�#h#<^####�##q##�#j#�^####
�#&q##�#l#l_####�#Dq##�#n##`####�#Sq##�#p#�M####�#cq##�#p#>
%####�#z###�#p#�M####�#z###�#p#H`####�#�q####q#�`####�#�q####t#�a####�#�q###
#w##N####�#o8##<#x#'N####�#�q##�#x#�?
####�#z###�#x#DN####�#z###�#x##@####�#z#####y#RN####�#hr##b#{#cN####�#qr##b#|
#tN####�#yr##b#}#�N####�#r##b#~#>%####�#z###�##�#####�#z###�########�#\
o##�########�#fo##�##"#####�#�s##�#�#*#####�#�s##�#�#�a####�#�+##�#�#�###
##�#z###�#�#3#####�#\t##�#�#;#####�#lt##�#�#D#####�#|
t##�#�#L#####�#�t##�#�#U#####�#�t##�#�#]#####�#�t##�#�#f#####�#�t##�#�#n#
####�#�t##�#�#w#####�##u##�#�######�##u##�#�#�#####�#+u##�#�#�b####�#Fu###
#�#�b####�#au##�#�#0d####�#uu##$#�#|
d####�#�+##*#�#Le####�#�u##�#�#4f####�#�u##�#�#(g####�#�u##1#�#|
h####�#�+##�#�#�N####�#�u##�#�#�#####�#�v##�#�#�#####�#�v##�#�#�#####�#
�v##�#�#�#####�#�v##�#�#�#####�#
w##<#�#�#####�##w##u#�#�#####�#1w##�#�#�#####�#Kw##�#�#�#####�#vw##�#�####
###�#�w##:#�#######�#�w##Q#�#�N####�#�w##E#�#�h####�#�+##R#�#4k####�#�+##�
#�#�N####�#�w##w#�#Hk####�##x##w#�#xk####�#&x##r#�#4l####�#Jx##r#�#�l####�#k
x##r#�#�#####�#z###�#�#�#####�#�w##:#�#Dm####�#�x##Y#�#######�#�w##Q#�#;###
##�#z###�#�#C#####�#Ly##�#�#K#####�#Xy##�#�#T#####�#dy##�#�#\
#####�#py##�#�#e#####�#|
y##�#�#m#####�#�y##�#�#v#####�#�y##�#�#~#####�#�y##�#�#po####�#�+##�#�##p
####�#�y##g#�##q####�#�y##s#�#�q####�##z##~#�#�#####�#z###�#�#�#####�#5E##
�#�#�#####�#Vz##�#�#�#####�#`z##�#�#�#####�#�+##�#�#�#####�#z###�#�#�###
##�#z###�#�#�#####�#�z##�#�#�#####�#�z##�#�#�#####�#,
(##<#�#�#####�##(##u#�#�#####�#
{##�#�#�#####�##{##�#�#�#####�#H{##�#�#�#####�#[{##�#�#�#####�#�{##�#�#�
#####�#�{##�#�#######�#�{##�#�#
#####�#�{##�#�#@r####�#�+##�#�#�s####�##|##�#�#lv####�##|##�#�#hw####�#1|
##�#�#�w####�#I|##�#�#######�#�w##:#�#
y####�#�x##Y#�#0#####�#�w##Q#�#;#####�#z###�#�#S#####�#�|##�#�##{####�#�|
##�#�#f#####�#�|##�#�##{####�#�|
##�#�#y#####�##}##�#�#�#####�##}##�#�#�#####�#
%}##u#�#5{####�#3}##<#�#�#####�#A}##u#�#L{####�#U}##<#�#�#####�#r(##�#�#�###
##�#�(##�#�#�#####�#i}##�#�#�#####�#�}##�#�#�#####�#�}##�#�#######�#�}##
�#�#~#####�#H)##u#�#��####�#Y)##<#�#k#####�#0)##u#�#��####�#<)##<#�#�

####�#L+##�#�##�####�#^+##�#�#�#####�#j)##u#�#��####�#})##<#�#######�#�}##
�#�#)#####�#�}##�#�#7#####�#�}##�#�#O#####�#�}##�#�#]#####�#�}##�#�#u####
#�##~##�#�#�#####�##~##�#�#�#####�#$~##�#�#�#####�#�)##�#�#ψ####�#�)##�#
�#�#####�#1~##�#�#c{####�#@~##�#�#�#####�#O~##�#�#z{####�#]~##�#�#�#####�#
#*##�#�#�{####�#(*##�#�#�#####�#k~##�#�#�{####�#w~##�#�#�#####�#:*##u#�#B
�####�#I*##<#�#�#####�#�~##�#�#######�#�~##�#�#
%#####�#�~##�#�#=#####�#�~##�#�#b
####�#�*##u#�#��####�#�*##<#�#K#####�#�~##u#�#�{####�#�~##<#�#u

####�#�*##u#�#̉####�#�*##<#�#^#####�####�#�#�{####�#s'##�#�#�~####�####�#�
#t#####�#�'##�#�#�~####�#6##�#�######�##1##�#�#�#####�#[##�#�#H####�#[##
�#�#�#####�#s##�#�#�#####�#�##�#�#�#####�#�##�#�#�#####�#�##$#�#H�####
�##�##�###��####�#0�##�###�

####�#z###�###�#####�#t�##�###�#####�#��##�###t#####�#�'##u###��####�#�'##
<#########�#��##�#########�#��##�###,#####�#‫܁‬##u###6�####�#�##<###?
#####�##�##u###M�####�##�##<###R#####�#2�##u###d�####�#B�##<#
#E#####�##)##�# #]#####�##)##�#
#e#####�#R�##u#
#{�####�#b�##<###x#####�#r�##u###��####�#��##<#
#�#####�#��##�#
#�#####�#��##�##�#####�#Ă##u#
#��####�#Ђ##<###�#####�#�)##u###�####�#�)##<###�#####�#‫܂‬##�###�#####�#�##�#
##�#####�##�##�###�#####�#+�##�###�#####�#<�##u###�####�#Q�##<#########�#f
�##u###ׁ####�#~�##<###!#####�#p+##<###�####�#}
+##<###8�####�#s'##�###<�####�#��##�###\�####�#��##b###ԅ####�#Ã##x
##��####�#‫܃‬##�###T�####�##�##�###�####�#'�##�###(#####�#z###�###<�####�##�
##�###��####�#<�######�N####�#z###�###�N####�#a�##�###

O####�#g�##�####O####�#w�##�####O####�#��##�###"O####�#��##�###PO####�#��#
#�###oO####�#��##�###�O####�#��##�###�O####�#��##�###�O####�#҅##Q###H�####
�#҅##�# #�O####�#‫ׅ‬##�#"#�O####�#�##Q#"#�O####�#�##�###�O####�#
�##�###��####�#!�##�####�####�#4�##�###
P####�#@�##�###$P####�#P�##Q###��####�#Z�##�#$#��####�#p�##�#$#TP####�#z##
#�#$#‫ܐ‬####�#��##�#&#T�####�#ц##�#&#t�####�#�##�#&#
�####�#�##�#&#4�####�##�##�#&#######�#4�####&#######�#?
�##�#&#h�####�#M�##�#&#^P####�#a�##�#&#rP####� V�## #&#>
%####�#z###�#&#zP####�#z###�#&#�####�#?�##�#(#�P####�
4�####(#X�####�#Pc##�
(#�P####�#z###�#(#�P####�#;2##�#*#�P####�#��##<#*#�P####�#��##u#*#�P####�#
\-##�#+#�P####�#��##�#+#�P####�#��##Q#,#>%####�#z###�#-#�P####�#z###�#-
#�P####�#z###�#-#�P####�#z###�#-#�P####�#z###�#-#�P####�#z###�#-
#�P####�#z###�#-#�P####�#z###�#-#�P####�#z###�#-##Q####�#z###�#-
##Q####�#z###�#-##�####�#LJ##3#-#��####�##�##b#/#�####�##�##�
0#######�#z#####0#######�#�###;#2#######�#�###V#3#######�#�###B#6#######�#z###
##7#######�#�###K#9#######�#�###S#;#######�#�###n#?
#######�#z#####@#######�#�###a#B#######�#�###i#D#######�#�###n#H#######�#z####
#I#######�#�###a#K#######�#�###i#M#######�#�###n#Q#######�#z#####R#######�#�##
#!
#T#######�#�###(#V#######�#�###4#Z#######�#z#####[#######�#�###�#]#######�#�#
##(#_#######�#�###a#c#######�#z#####d#######�#�###w#f#######�#�###V#g#######�#
�###~#j#######�#z#####k#######�#�###�#m#######�#�###�#p#######�#�###�#u######
#�#z#####x#######�#�###E#z#######�#�###�#}#######�#�###�#�#######�#z#####�##
#####�#�###�#�#######�#�###�#�#######�#�###�#�#######�#z#####�#######�#�##
#�#�#######�#�###�#�#######�#�###J#�#######�#z#####�#######�#�###�#�#######
�#�###V#�#######�#�###�#�#0#####�#�4##�#�#H#####�#FT##�#�#Q#####�#W�##�#�
#Y#####�#q�##�#�#b#####�#��##�#�#j#####�#��##�#�#\
�####�#�+##�#�#��####�#��####�#�#####�#z###�#�#��####�#�####�#
Q####�#�####�##Q####�#
�##u#�#)Q####�#�k##�#�#6Q####�#z###�#�#IQ####�#J-
##<#�#QQ####�#<�##$#�#YQ####�#M�##�#�#aQ####�#z###u#�##�####�#X�##�#�#s####
#�#��##<#�#{#####�#��##u#�#�#####�#��##<#�#�#####�#��##u#�#�#####�#gd##<
#�#�#####�#��##u#�#P�####�#�+##�#�#�#####�#z###�#�#��####�#z###�#�#�###
##�#��##<#�#�#####�#��##u#�#�#####�#��##<#�#�#####�#Ċ##u#�#�#####�#‫ي‬##�#
�#�#####�#�##�#�#�#####�#��##<#�#�#####�#
�##u#�#�#####�#A�##<#�#�#####�#d�##u#�#�#####�#��##�#�#######�#��##�#�#
#####�####�#�#######�#�##�#�#######�##�##<#�#‫؝‬
####�#+�##u#�#)#####�#>�##<#�#8�####�#Q�##u#�#6#####�#d�##�#�#M#####�#p�##
�#�#��####�#|�##�#�#��####�#��##5#�#
‫ܟ‬####�#s##�#�#_#####�#��##h#�#V#####�#��##u#�#��####�#��##<#�##�####�#֌##
D#�#x�####�##1##�#�#�Q####�#�##�#�#d#####�#}
+##<#�#p#####�##�##<#�#�Q####�##�##<#�#�#####�#�'##�#�#�#####�#p+##<#�#�##
###�#4�##K#�#�#####�#W�##K#�#�#####�#��##�#�#�#####�#��##�#�#�#####�##i
##<#�#�#####�#Ύ##u#�#�#####�#z###�#�#�#####�#�##�#�#�#####�##�##�#�#�###
##�#
�##�#�#######�##�##�#�#0�####�#�+##�#�##�####�#��##W#�#�#####�#z###�#�#
######�#�##�#�#######�##�##�#�# #####�#
�##�#�#(#####�##�##�#�#1#####�#6�##�#�#9#####�#D�##�#�#X�####�#�+##�#�#0
�####�#��##W#�#B#####�#��##�#�#Z#####�#��##�#�#c#####�#��##�#�#{#####�#
��##�#�#�#####�#W0##<#�#�#####�#f0##u#�#�#####�#�J##�#�#�#####�#�J##�#�#
�#####�#�+##�#�#l�####�#͏ ##w#�#̤####�#‫ڏ‬##|
#�#�#####�#z###�#�#�#####�#J�##�#�#�#####�#S�##�#�#�#####�#\
�##�#�#�#####�#r�##�#�#�#####�#��##�#�#�#####�#��##�#�#######�#��##<#�
#
#####�#��##u#�#######�#ʐ##�#�#######�#
‫ڏ‬#�####�$#�#�##+�#�####��#�#�##�##�#####,#�#�##�#�#####$#�#�##‫ܐ‬##�#�#�#####�
#z###�#�#5#####�#��##<#�#=#####�#��##u#�#F#####�#��##<#�#N#####�#��##u#�#
Ц####�#�+##�#�#�#####�#z###�#�#W#####�##�##<#�#_#####�##�##u#�#h#####�#
%�##<#�#p#####�#4�##u#�#y#####�#C�##�#�#�#####�#P�##�#�#�#####�#�*##<#�#
�#####�#�*##u#�#�####�#�+##�#�#��####�#�u##�#�#�#####�#z###�#�#######�##
�##�#�#######�#0�##�#�#######�#C�##�#�#�#####�#z###�#�#�#####�#�E##<#�#�
#####�#�E##u#�#�#####�#Q�##<#�#�#####�#e�##u#�#�#####�#�(##<#�#�#####�#�(
##u#�#�#####�#y�##�#�#�#####�#��##�#�#�#####�#��##�#�#######�#��##�#�#
#####�#��##�#�#######�#͓##�#�#######�#�#<##)�#�#####/#�#�##�#�#####&#�#�##ߓ
#7#####�#�)##u#�#@#####�##�##<#�#H#####�##�##u#�#Q#####�#�K##<#�#l#####�#�K
##u#�#$�####�#)�##�#�#��####�#A�##�#�#x#####�#U�##�#�#h�####�#k�##�#�#�
�####�#{�##�#�#Ы####�#�+##�#�#0�####�#��##�#�#��####�#��##�#�#
�####�#��##<#�#\
�####�#Ĕ##�#�##�####�#ؔ##�#�#�Q####�#�##<#�#Į####�#�##�#�#P�####�##�##�#
�#̰####�##�##�#�#(�####�#,�##�#�#ܱ####�#�u##�#�#�####�#>�##�#�#t�####�#M�
##�#�#��####�#[�##�#�#�#####�#{�##�#�#�#####�##�##<#�#�#####�#!
�##u#�#�#####�#0�##�#�#�#####�#?
�##�#�#�#####�#�4##�#�#�#####�#N�##�#�#######�#_�##<#�#######�#r�##u#�##
#####�#��##�###7#####�#��##�###@#####�#�4##�###H#####�#FT##�###V#####�#��#
#�###^#####�#�##�###g#####�#ӗ##�###o#####�#�##�###x#####�#�##�###�#####�##�
##�###�#####�#!
�##<###�#####�#2�##u###�#####�#C�##<###�#####�#Q�##u###�#####�#�c##<###�###
##�#_�##u###�#####�#k�##<###�#####�#y�##u###�#####�#��##�# #�#####�#��##�#
#�#####�#˘##<#
#�#####�#٘##u#
#�#####�##g##<###�#####�##g##u#########�#�##<#
######�##�##u#
#######�##�##�########�#-�##�##'#####�#?
�##�###E#####�#W�##�###N#####�#C�##�###Z#####�##�##�###h#####�#0�##�###��#
###�#o�######$�####�#��######�####�#�######T �####�#��######T�####�#�u##�#
###�####�#Й######��####�#{�######��####�#�######�####�##�##'###�#####�#z###
�####�####�#z###�###�#####�#�e##<###�#####�#�e##u###�#####�#�e##<###�#####�
#�e##u###�#####�#$g##�###�#####�#Eg##�###�#####�##f##<###�#####�##f##u###�##
###�#f�##�###�#####�#|�##�###�#####�#�f##<###�#####�#�f##u#########�#(f##<#
#######�#:f##u# #######�#Lf##�#!#######�#_f##�#!
#"#####�#f(##<#"#*#####�#Z(##u#"#3#####�#�h##<###;#####�#�h##u###D#####�#�f##<
#$#L#####�#�f##u#$#U#####�#U\##<#%#]#####�#^\##u#
%#f#####�##g##<#&#n#####�##g##u#&#w#####�#�^##�#'######�#�^##�#'#�#####�#��#
#<#(#�#####�#��##u#(#�#####�#�##�#)#�#####�#�##�#)#`�####�#�+##�#*#x�####�
##�##-
#*#��####�#<�##�#+#�#####�#V�##�#+#�#####�#p�##<#,#�#####�#��##u#,#�#####
�#��##�#-#�#####�#��##�#-#�#####�#_�##<#.#######�#r�##u#.#######�#ȝ##�#/
#######�#ԝ##�#/
#&#####�#�##<#0#.#####�#�##u#0#7#####�##�##�#1#D#####�#,�##�#1#R#####�#�c##<
#2#Z#####�#_�##u#2#c#####�#k�##<#3#k#####�#y�##u#3#t#####�#˘##<#4#�#####�#٘##u#
4#�#####�##g##<#5#�#####�##g##u#5#�#####�#B�##�#6#�#####�#Y�##�#6#�#####�#p
�##�#7#�#####�#��##�#7#�#####�#��##�#8#�#####�#��##�#8#�#####�#��##<#9#
######�#ɞ##u#9#######�#‫؞‬
##<#:#######�#�##u#:##�####�#Й##P#;#######�#C�##�#<#+#####�##�##�#<#9#####�#0
�##�#=#��####�#�##P#>#H�####�#�u##�#?#��####�#z###�#?#G#####�#�##�#?
#O#####�#�##�#?
#X#####�##�##<#@#`#####�##�##u#@#i#####�#3�##<#A#q#####�#B�##u#A#z#####�#Q�##
�#B#�#####�#m�##�#B#�#####�##�##�#C#�#####�#-
�##�#C#�#####�#z###�#D#H�####�#�+##�#D#��####�#��##W#D#�#####�#k~##�#E#�#
####�#w~##�#F#�#####�#9�##�#F#�#####�#K�##�#G#�#####�#1~##�#G#�#####�#@~##
�#H#�#####�#]�##�#H#�#####�#r�##�#I#�#####�#�J##�#I#�#####�#�J##�#J#�####
#�#��##�#J#�#####�#��##�#K#��####�#
M##�#K## ####�#��##u#K## ####�#ɢ##<#L## ####�#�##u#L## ####�#��##<#M#$
####�##�##u#M#- ####�#9�##<#N#5 ####�#Y�##u#N#> ####�#t�##<#O#F
####�#��##u#O#O ####�#��##<#P#W ####�#ã##�#P#` ####�#ӣ##�#Q#h ####�#�##�#Q#q
####�#��##�#R#��####�#z###�#R#��####�##�##b#R#t�####�#�+##�#T#<�####�#0�
##$#T#@�####�##1##�#T##�####�#T�##�#T#8�####�#j�##l#T#��####�#��##Q#U#��##
##�#Ȥ##s#V#D�####�#�##�#W#��####�##�##�#W#��####�#<�##�#W#$�####�#1N##�#W
#t�####�#?N##�#W#��####�#O�##�#W##�####�#m�##�#Y#
�####�#Pc##�
Y#�Q####�#x�##<#Y#�Q####�#t�##<#Y#�Q####�#"�##�#Y#�Q####�#D�##�#Y#$�####�#
q�##�#Y#P�####�#��##�#d#��####�#��##�#f#��####�#��##x
h#��####�#��##�#i#��####�#��##$#j#`�####�#ͧ##u#l#��####�#‫ܧ‬##h#m#�Q####�#!
�##�#o#p�####�#��##�#q#��####�#V�##u#s#D�####�#ͧ##�#t#��####�#x�##u#u#��#
###�#��##�#v#X�####�#��##�#{#��####�#z###�#~#
R####�#z###�#~##R####�#z###�#�#��####�##-##�#�#<R####�##-
##�#�#�R####�##�##<#�#�R####�##�##<#�#�R####�##�##�#�#�R####�#2�##�#�#�
R####�#z###�#�#�R####�#J-
##<#�##S####�##�##�#�##S####�#2�##�#�##S####�#z###�#�#&S####�#z###�#�#@S###
#�#��####�#@S####�#��## #�# �####�#��####�#@S####�#��##�
�#GS####�#ϩ####�#QS####�#ϩ##"#�#��####�#ϩ##*#�#@S####�#‫ש‬##A#�#y
####�#�G##�#�#� ####�#�G##�#�#� ####�#�G##�#�#� ####�#
H##�#�#`�####�#�##3#�#��####�#�+##�#�#�#####�#z###�#�#H�####�#U\##<#�#�
####�#^\
##u#�#a�####�#0�##<#�#z�####�#K�##<#�#��####�#f�##<#�#��####�#��##<#�#�
####�#�+##�#�#�#####�#z###�#�#��####�#U\##<#�#_#####�#^\
##u#�#`�####�#�##<#�#��####�##�##<#�#�
####�#�+##�#�#�#####�#z###�#�#######�#h�##9#�#######�#��##D#�#######�#��#
#D#�#######�#��##�#�#######�#ȫ##�#�#######�#Ы##�#�#######�#�##G#�#######�#
�##O#�#######�#
�##O#�#######�##�##w#�#######�#/
�##Q#�#######�#>�##w#�#######�#[�##�#�#######�#g�##Q#�#######�#t�##Q#�#####
##�#��##U#�#######�#��##Q#�#######�#��##Q#�#######�#��##w#�#######�#լ##Q#
�#######�#�##�#�#######�#�##w#�#######�#
�##Q#�#######�#�e##Q#�#######�##�##Q#�#######�#)�##[#�#######�#:�##�#�#####
##�#L�##Q#�#######�#b�##w#�#######�#n�##w#�#######�#�##w#�#######�#��##Q#�
#######�#��##Q#�#######�#��##Q#�#######�#��##[#�#######�#-
##[#�#######�#ϭ##[#�#######�#�##[#�#######�#�##Q#�#######�#�##w#�#######�##
�##�#�#######�#"�##Q#�#######�#6�##Q#�#######�#M�##Q#�#######�#Z�##Q#�#####
##�#k�##�#�#######�#v�##Q#�#\S####�#
‫ڮ‬##�#�#dS####�#�##�#�#mS####�##�##�#�#uS####�#
%�##�#�#~S####�#G�##�#�#�S####�#V�##�#�#�S####�#��##�#�#�S####�#��##�#
�#�S####�#֯##�#�#�S####�#�##�#�#�S####�##�##<#�#��####�#z###l#�##�####�#z
###u#�#��####�#"�##�#�#��####�#1�##�#�#,�####�#M�##u#�#�S####�#i�##}#�#
#�####�#|�##u#�#��####�#��##�#�#�S####�#�3##�#�#�?
####�#z###�#�#�S####�#z###=#�##T####�#z###�#�##@####�#z#####�#!
T####�#��##<#�#)T####�#��##u#�#2T####�#ֱ##<#�#:T####�#�##u#�#######�#Ы##�#�
#######�#�##�#�#######�#��##�#�#######�#ȫ##�#�#######�#�##O#�#######�#
�##O#�#######�#/
�##�#�#######�#[�##�#�#######�#g�##�#�#######�#t�##Q#�#######�#��##w#�###
####�#��##Q#�#######�#��##Q#�#######�#լ##Q#�#######�#�##�#�#######�#
�##w#�#######�#%�##[#�#######�#
�##Q#�#######�#�e##Q#�#######�#)�##[#�#######�#:�##Q#�#######�#b�##w########
#�#n�##w#########�#0�##w#########�#�##w#########�#>�##Q#########�#O�##w######
###�#a�##w#########�#q�##Q#########�#��##Q#########�#��##Q# #######�#��##[#
#######�#��##w#########�###[#
#######�#ϭ##[#
#######�#��##Q#########�#��##Q#########�#�##[#########�#��##w#########�#�##Q
#########�#�##w#########�#"�##Q#########�#6�##Q#########�#M�##Q#########�#Z�#
#Q#########�#k�##�#########�#Ҳ##w#########�#L�##Q#########�#v�##Q###�
####�#z###�###�#####�#k~##�###�{####�#w~##�###�
####�#�##�###��####�#�##�###� ####�##�##�###��####�##�##�###�
####�#)�##u###��####�#XZ##<###� ####�#=�##�###��####�#V�##�#
#7#####�#�}##�# #O#####�#�}##�#!##!####�#p+##<#!#� ####�##1##�#!#
�####�#}+##<#!#`�####�#�'##�#!# !####�#z###�#"##!####�#U\##�#"#%!####�#^\
##�#"#.!####�#�4##�###6!####�#FT##�###?!####�#dz##�#$#G!####�#�##�#$#P!
####�#�##�#%#X!####�##�##�#%#a!####�##�##�#&#i!
####�##�##�#&#L�####�#�+##�#'#r!####�#z###�#'#�!####�#d�##�#'#�!
####�#o�##�#'#�!####�#z�##�#(#�!
####�#��##�#(#h�####�#�+##�#)#�#####�#z###�#)#�!####�#��##�#)#�!
####�#��##�#)#�!
####�#Ĵ##�#*#��####�#�+##�#*#$�####�#z###=#*#��####�#z###�#-#��####�#/
5##<#0#�!####�#z###�#0#�!####�#�##�#0#�!
####�##�##�#0##"####�#$�##�#1#T�####�#;�##�#1#)"####�#�(##<#1#1"####�#�(##u
#1#:"####� y�##�#2#_#####�

��##�#2#="####�#M�##�#3#^"####�#`�##�#3#f"####�#p�##�#3#_#####�#��##�#4#CT
####�#��##�#4#o"####�#��####4#w"####�#��##�#4#"####�#��##�#4#��####�#��
##
#5#$�####�#ƶ####7#|
�####�##�##�#9#�####�##�##�#9#�####�#Ҷ##�#:#�#####�#�##�#;#H#####�#�####<#
�#####�#�##�#>#�"####�##�##<#>#�"####�##�##u#>#�"####�#/5##<#?
#QT####�#$�##�#?#YT####�#T�##�#?#�#####�#��####@#|
#####�#��##�#D#x#####�#��##+#E#######�#�##�#F#�"####�#Wc##�#F#8#####�#з##�#
F#�#####�#�##�#F#######�#�##2#F#�"####�# �##�#G#�!####�#!
�##�#G#�"####�#9�##9#H#�"####�#S�##@#H#)"####�#m�##<#I#1"####�#��##u#I#�"##
##�#��##H#J#�"####�#��##O#J#�"####�#��##<#K#_#####�###u#K#
� �#####�#�4##� #L#
>%####�#z###�#N#�"####�#z###�#N#�"####�#�##�#N#�"####�#
‫׹‬##�#N#######�#�##�#N#
#####�#z###�#O#######�#0�##<#O#######�#?
�##u#O#,#####�#y�##�#P#:#####�#��##�#P#I#####�#_�##<#Q#Q#####�#r�##u#Q#�####
#�#‫ۺ‬##�#R#bT####�#�##�#R#T

####�#�##�#R#Z#####�#��##�#R#{#####�#��##�#R#�#####�#�##�#R#�#####�#ӗ##<#S
#�#####�#�##u#S#�#####�#�##�#T#�#####�#
%�##�#T#�#####�#��##�#U#�#####�#͓##�#U#
####�#��##�#V#�#####�#=�##<#V#�#####�#O�##u#V#�#####�#a�##<#W#�#####�#r�##
u#W#�
####�#C�##<#X#X#####�#Q�##u#X#�#####�#�c##<#Y#�#####�#_�##u#Y#�#####�#k�##<#
Z#�#####�#y�##u#Z##$####�#˘##<#[##$####�#٘##u#[##$####�##g##<#\##$####�##g##u#\#
%$####�#��##�#]#-$####�#��##�#]#6$####�#?�##�#^#>$####�#W�##�#^##
####�#��##�#_#]
####�#Wc##�#_#�
####�#��##�#_#�#####�#��##�#_#
#####�#��##�#_#�#####�#ͻ##�#_#L#####�#�##�#_#######�#
�##�#_#�#####�#7�##�#_#######�#X�##<#a#######�#j�##u#a#G$####�#|
�##�#b#O$####�#��##�#b#X$####�#��##<#c#`$####�#̼##u#c#i$####�#�##<#d#q$####�#
��##u#d#I#####�##�##<#e#Q#####�#*�##u#e#z$####�#@�##�#f#�$####�#X�##�#f#�$#
###�#p�##<#g#�$####�#��##u#g#�#####�#��##<#h#�#####�#��##u#h#�$####�#��##
<#i#�$####�#ս##u#i#�$####�#�##<#j#�$####�#��##u#j#�$####�##�##<#k#�$####�##
�##u#k#�$####�#,�##<#l#�$####�#;�##u#l##%####�#J�##<#m##%####�#\
�##u#m#�#####�#n�##<#n#�#####�#��##u#n#�#####�#��##<#o#�#####�#��##u#o#�##
###�#�##<#p#�#####�#Ͼ##u#p#�#####�#޾##<#q#�#####�#�##u#q##$####�##�##<#r##$##
##�##�##u#r##$####�#"�##<#s##$####�#4�##u#s##
%####�#F�##<#t#0%####�#a�##u#t#L#####�#z###u#u#>%####�#z###�#v#F
%####�#z###u#v#U%####�#z###h#w#k%####�#z###�#y#�%####�#z#####}#�%####�#z###
#�#�
%####�#z###�#�#�#####�#��####�#H#####�#��####�#�#####�#��####�#�#####�#�
�##$#�#�#####�#��####�#,#####�#��####�#T&####�#��####�#�T####�#��##-
#�#d#####�#��##7#�#�#####�#��##�#�#&####�#f(##<#�#�&####�#Z(##u#�#�#####�
#��##B#�#�&####�#��##�#�#�#####�##�##�#�#�&####�##i##<#�#�&####�#Ύ##u#�#
�&####�#%�##<#�#�&####�#?
�##u#�#�&####�#Y�##<#�#�&####�#l�##u#�#�T####�#v2##I#�#�#####�#v2##O#�#�&#
###�#/
5##<#�#�&####�#�##<#�#�&####�#��##u#�#�&####�#�*##<#�##'####�#�*##u#�#�&#
###�#��##<#�#�&####�#��##u#�#�&####�#��##<#�##'####�#��##u#�#�&####�#��
##<#�#�&####�#��##u#�#&####�#��##<#�#�&####�##�##u#�#�&####�##�##<#�#�&#
###�#.�##u#�#�&####�#K�##<#�#�&####�#W�##u#�##'####�#z###�#�##'####�#z###u#
�#�#####�#��##r#�#�T####�#��##�#�#�T####�#��##�#�#A'####�#��##<#�#I'###
#�#��##u#�#R'####�#��##<#�#h'####�#��##u#�#q'####�#��##�#�#~'####�#��##
�#�#�'####�##�##<#�#�'####�##�##u#�#�'####�#"�##`#�#�'####�#+�##d#�######
#�
4�##<#�#�'####�##�##<#�#�'####�##�##u#�#�'####�#W0##<#�#�'####�#f0##u#�##
####�#/5##<#�#A'####�#A�##<#�#I'####�#N�##u#�#�'####�#[�##<#�#h'####�#g�##u
#�#�'####�#s�##<#�#�'####�#��##u#�##(####�#��##<#�##(####�#��##u#�#�'###
#�#��##<#�#�'####�#��##u#�#'(####�#��##<#�#/
(####�#��##u#�#8(####�#z###�#�#@(####�#z###u#�#I(####�#�##�#�#Q(####�##�##
�#�#Z(####�#b=##�#�#b(####�#O=##�#�#^ ####�#|
�##�#�#k(####�#��##m#�#s(####�#��##s#�#�T####�#A=##�#�#�T####�#��##�#�#
� ####�#4�##<#�#� ####�#/5##<#�#I(####�# �##�#�#Q(####�#!�##�#�#|
(####�#��##<#�#�(####�#��##u#�#�(####�#��##<#�#�(####�#��##u#�#�T####�#
z###@#�#'!
####�#>�##�#�#�(####�#di##�#�#�(####�#di##�#�#�(####�#�k##�#�#�(####�#1S
##�#�#<!####�#G�##�#�#�!
####�#G�##�#�#p"####�#L�##�#�##)####�#;2##�#�##)####�#[�##�#�#�"####�#b�#
#9#�#######�#z###�#�#�T####�#��##�#�#�
%####�#��##�#�#�T####�#��##�#�#,&####�#��##�#�#�&####�#��##�#�#$'####�
#��##�#�#�T####�##�##�#�##U####�##�##�#�#U####�#!�##�#�#�)####�#Pc##�
�##U####�#z###=#�#2U####�#e�##b#�#0*####�#e�##�#�##)####�#z###�#�#L)####�#<
�##�#�#Y)####�#V�##�#�#l)####�#p�##<#�#t)####�#��##u#�#})####�#��##�#�#�
)####�#��##�#�#�)####�#y�##�#�#�)####�#��##�#�#�)####�#_�##<#�#�)####�#
r�##u#�#�)####�#ȝ##�#�#�)####�#ԝ##�#�#�)####�##�##�#�#�)####�#,�##�#�#�
)####�#�##<#�##*####�#�##u#�#x*####�#��##�#�#�*####�#��##�#�##*####�#�c#
#<#�##*####�#_�##u#�#!
*####�#k�##<#�#)*####�#y�##u#�#2*####�#˘##<#�#:*####�#٘##u#�#C*####�##g##<#�#
K*####�##g##u#�#T*####�#B�##�#�#a*####�#Y�##�#�#t*####�#p�##�#�#�*####�#�
�##�#�#�*####�#��##�#�#�*####�#��##�#�#D+####�#��##
#�#�*####�#ɞ####�#�+####�#‫؞‬####�#�*####�#�####�#�+####�#Wc##�#�#
,####�#��##�#�#@,####�#��##�#�#@-
####�#��##�#�#�*####�#��##<#�#�*####�#��##u#�#l)####�#
�##<#�#t)####�##�##u#�#�*####�#4�##<#�##+####�#Q�##u#�#�)####�##�##<#�#�)#
###�#*�##u#�#�-####�#n�##<#�#+####�#}�##u#�##+####�#��##<#�#-
+####�#��##u#�#�)####�#��##<#�##*####�#��##u#�##*####�#�##<#�##*####�#Ͼ##u
#�#!*####�#
޾##<#�#)*####�#�##u#�#2*####�##�##<#�#:*####�##�##u#�#C*####�#"�##<#�#K*####
�#4�##u#�#6+####�#��##<#�#M+####�##�##u#�#V+####�#.�##<#�#r+####�#C�##u#�#
{+####�#X�##<#�#�+####�#n�##u#�#�+####�#��##<#�#�+####�#��##u#�#�+####�#
��##<#�#�+####�#��##u#�#�-####�#z###u#�#8.####�#��##5#�#�.####�##-
##=#�#;U####�#Pc##�
�#>
%####�#z###�#�#�+####�#��##<#�#�+####�#��##u#�#�+####�#�(##<###�+####�#�
(##u###�+####�#��##<###�+####�##�##u###�+####�##�##<###�+####�##�##u###�+##
##�#
%�##<###�+####�#8�##u###�+####�#m�##<###�+####�#��##u###�+####�#K�##<###�+#
###�#\
�##u###�+####�#m�##<###�+####�#{�##u###HU####�#z###�####,####�#>�##N####,####
�#di##U# #",####�#�k##�#
#/,####�#1S##�#
#<,####�#;2##�#
#kU####�#b�##�#
#8(####�#z###�#
#@(####�#z###u#
#N,####�##�##�###
/####�#��##i###V,####�#��##�###l,####�##�##�###,####�##�##�###�,####�#4�##
<###�,####�#$�##r###N,####�#1�##�###�,####�#C�##y###,####�#U�##�###�,####�#
g�##�###�,####�#y�##r###�,####�#��##�###�,####�#��##<###�,####�#��##u###>
%####�#z###�###xU####�#z###�###�,####�#6�##<###�,####�#�(##<###�,####�##�##<
###�,####�#@�##<###�,####�#S�##<###�,####�#]�##<###�,####�#j�##u###�,####�#
m�##<###�,####�#��##u###�,####�#m�##<###�,####�#{�##u###�,####�#w�##<####-
####�#��##u###�,####�#��##<####-####�#��##u###>
%####�#z###�###�U####�#z###�####-####�#�(##<#"#�/####�#
�##�#"# -####�##�##<###(-####�#+�##<###0-####�#S�##<###8-####�#�*##<####-
####�#:�##<###@-####�#G�##u### -####�#T�##<#$#I-####�#i�##u#$#(-####�#~�##<#
%#R-####�#��##u#%#0-####�#��##<#&#[-####�#��##u#&#8-####�#��##<#'#d-
####�#��##u#'#>%####�#z###�#(#m-####�#z###$#(#�-
####�##i##<#*#K0####�#��##�#*#�-####�#��##<#*#�-####�#��##u#*#�-
####�#��##<#+#�-####�#
�##u#+#>%####�#z###�#,#�-####�#Q�##<#,#�-####�#c�##<#,#�-####�##i##<#,#�-
####�#k�##<#,#�-####�#S�##<#,#�-####�#z�##<#,#�-####�#��##u#,#�-
####�#��##<#-#�-####�#��##u#-#�-####�#��##<#.#�-####�#��##u#.#�-
####�#��##<#/#�-####�#��##u#/#�-####�#��##<#0#�-
####�#��##u#0##V####�#z###O#1##.####�#>�##�#2##.####�#di##�#3#).####�#di##�#4
#9.####�#�k##�#5#F.####�#1S##�#5#x0####�#L�##�#5#S.####�#;2##�#6#`.####�#[�#
#�#6#�0####�#b�##H#7##1####�#�##�#7#
3####�#!
�##�#8#�4####�#,�##�#9#$5####�#;�##�#:#d5####�#P�##�#;#�5####�#P�##�#=#n.#
###�#P�####@#,6####�#P�####B#|
7####�#]�##�#E#�7####�#]�####F#@V####�#z###�#G#eV####�#��##<#K#mV####�#6�##<
#K#uV####�#��##<#K#}V####�#S�##<#K#�8####�#��##"#K#x.####�#M�##+#L#�8####�#M
�##2#M#49####�#M�##:#O#�;####�#z###u#Q#�V####�#B5##N#R#�;####�#^�##Q#S#�V####
�##i##<#T#�V####�#�*##<#T#�V####�#Y�##<#T#�V####�#f(##<#T#�V####�#
%�##<#T#D<####�#s�##U#T#�<####�#��##�#T#�<####�#��##�#T##W####�#��##�#T#�
=####�#��##[#T##>####�#Pc##�
U#######�#��##j#U#######�#��##�#X#######�#��##�#X#######�#��##�#X#######�#
��##�#X#####�#�##�##p#X#######�##�##�#\#####�#� I�##|#\#####�#�
X�##�#_#####�#� d�##�#`#####�#� q�##�#c#####�#� ~�##�#e#####�#�
��##�#g#####�#� ��##�#h#######� ��##�#l#######� ��##�#o#######�
��##�#s#####�#� ��##�#t#######� ��##�#v# W####�#Pc##�
y#######�#z#####y#######�#�###5#{#######�#�###�########�#�###a#�#0>####�#z###
�#�#�.####�#S�##�#�#�.####�##i##<#�#�.####�#��##<#�#�.####�#�##�#�##W##
##�#z###�#�#�.####�#>�##
�#�>####�#��### �#�>####�#��###
�#�.####�#�k##�#�#�.####�#��##�#�#�.####�#;2##�#�#(?####�#��###
�#�.####�#��##�#�#�?####�#��##r#�#8W####�##�##r#�#
@####�##�##W#�#\@####�#�##r#�#�@####�#!
�##b#�#�@####�#��##b#�#RW####�#,�####�#HA####�#8�##b#�#tA####�#D�##b#�#�A#
###�#V�##b#�#�A####�#g�##b#�#nW####�#p�##b#�#LB####�#�m##b#�#xB####�#~�##b#
�#�B####�#v2##r#�##/####�#��##u �#�W####�#��##� �#@C####�#��##�
�#�C####�#��##� �#�D####�##�##� �#�D####�##�##�
�#�E####�#9�##W#�#�F####�#X�##� �#xG####�#��##� �#�G####�#��##� �#|
H####�#��##� �#�H####�#��##� �##I####�#��##� �#�I####�##�##�
�#�J####�#&�##� �#�J####�#�####!�##/####�#�###
!�#@K####�#�####!�#�L####�#��###!�#
N####�#��##1!�#�N####�#��##�#�#�W####�#�,##�#�#�N####�#��##:!
�#0O####�#��##A!�#3/####�#z###�#�#�O####�#_�##M!�#M/
####�#�k##�#�#�O####�#t�##M!�##R####�#��##T!�#�R####�#��##Z!
�#<S####�#��##Z!�#�S####�#��##`!�##U####�##�##l!�#�W####�##�##T!
�#�W####�#/�##u!�##V####�#N�##�#�#k/####�#m�##�#�#z/####�#}�##�#�#�/
####�#��##T!�#NV####�#��##{!�#�/####�#��##�#�#�/
####�#��##�#�#hV####�##-##u#�#�/####�##-##�#�#�V####�##-##�!
�#�V####�#P�##u#�#�/####�#P�##�#�#,W####�#��##u#�#�/####�##�##<#�#�/
####�##�##u#�#�W####�#/
5##<#�#�W####�#+�##u#�#$X####�#+�##�#�#�Y####�#M�##u#�#�/
####�#M�##�#�#8Z####�#M�##�!�#`�####�#�##3#�#P\####�#a##3#�#�\
####�#��##�!�#�\
####�#��##r#�##I####�#db##�#�#,]####�##�##�#�#`]####�##�##r#�#�]####�#Jb##
=#�#�]####�#)�##�!�#$^####�##c##�#�#\
^####�#5�##�#�##X####�#O�##b#�#�^####�#c�##b#�##X####�#r�##b#�#�^####�#��
##�!
�#�_####�#��##b#�#�_####�#��##r#�##`####�#��##s#�#(X####�#��##s#�#�`####
�#��##�!�#LX####�#��##�!�#�`####�#��##�!�#ta####�#��##�!
�#�a####�#��##�!# lX####�#��##�!# `b####�##�##�!# �b####�##�##r##
#c####�#Pc##�
# �c####�#�Q##�## >%####�#z###�# $d####�#P�##{#
�d####�#��##�#
�d####�#��##�#
�X####�#��##r##
f####�#��##�## Vh####�#Pc##�
# th####�#��##�## �X####�#z###�## @i####�#Pc##�
# >%####�#z###�## �X####�#z###A## �X####�#z###u## �X####�#z###$##
�X####�#��##�*# #Y####�#��##�## "Y####�#��##�## =Y####�##i##<##
PY####�#�*##+## cY####�#��##$## �Y####�#��##�*# �Y####�#�E##H##
�Y####�##�##<## �Y####�#�###+# �Y####�##�###+# xk####�#85##+#
�Y####�#
5##�## �Y####�#3�##+# �k####�#E�##+# 4l####�#[�###+# �l####�##5###+!
#Z####�#v�##�#" (Z####�#��##!+" �m####�#��##r## �Y####�#/5##<#$
=Z####�#Pc##�
$ #n####�#��##4+$ ln####�#;�##�
$ �n####�#]�##@+$ IZ####�#]�##�!' QZ####�#p�##H+( ^Z####�#��##H+*
lZ####�#��##N+, �Z####�#p�##U+/ �Z####�#��##U+3 �Z####�#��##]+7
[####�#��##f+< �n####�#��##p+B =[####�#��##H+D L[####�#��##N+F
p[####�#��##U+I �[####�#��##]+M �n####�#��##w+R �[####�#��##H+U
�[####�#��##N+W �[####�#��##U+Z �[####�#��##�+^ �[####�#��##�+a #\
####�#��##�+e @\####�#��##H+j �n####�##�##�!l L\####�##�##�+n
�n####�##�##�+p $o####�#:�##�+s mo####�#^�##b#w Z\####�#r�##b#x
�o####�#��##b#y �o####�#��##b#z l\####�#��##�+{ Xp####�#��##�+|
vp####�#��##�+} �p####�#��##b#~ �\####�##�##b# �\####�##�##b#�
#q####�#Pc##�
� �?####�#z###�#� �\####�#z###u#� �\####�#z###$#� �\####�#z###�#�
#@####�#z#####� �\####�#D�##�#�\q####�##�##r#� ####�#� #�##�#�
####�#� �2##�+�####�#� X�##�#�####�#� (�###,� ####�#� 7�###,�
####�#� C�###,� ####�#� [�##%,� ####�#� m�##0,� ####�#� z�##5,�
####�#� ��##:,� �q####�#Pc##�
� �q####�#��##B,� �\####�#��##r#�
]####�#��##L,� Hr####�#��##W,� ,]####�#��##W,� `r####�#Pc##�
� �/####�#��##<#� �/####�#��##u#�#0####�#��##<#� #0####�#��##u#�
tr####�#�+##�#� �#####�#z###�#� #0####�#z###�#� .0####�#��##�#�
60####�#��##�#�?0####�#]n##�#� G0####�#in##�#� P0####�#��##�#�
X0####�#��##�#�#s####�#un##�#� a0####�#��##�#�i0####�##�##�#�
r0####�##�##�#� z0####�#*�##�#� �0####�#�n##�#� �0####�#�n##�#�
�0####�#A�##<#� �0####�#R�##u#� �0####�#c�##�#� �0####�#w�##�#�
�0####�#��##�#� �0####�#��##�#� �0####�#�n##�#�
�0####�#�n##�#� �0####�#��##�#� �0####�#��##�#�
�0####�##�##�#� �0####�#%�##�#�0s####�#�+##�#� �v####�#I�##^,�
Lw####�#a�##�#� 0x####�#�##k,� �x####�#��##t,�D}####�##5##�#�
T]####�#
5##�#� >%####�#z###�#� ######�#S�##�,� ######�#i�##�,� ######�#u�##�,�
######�#��##�,�######�#��##�,�######�#��##�,�######�#��##�,�
######�#��##�,�######�#�###�,� ######�#��##�,�######�#��##�,�
######�#
�##�,� ######�##�##�,� ######�#)�##�,� ######�#8�###-� ######�#@�##
-#
####�#�#U�##y##
####�#�#e�##y##
####�#�#u�##y##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#z###�##
######�#��###-#
######�##�###-

######�##�##--#
####�#�#��##�##
######�##�##8-#
######�##�##�##
######�##�##�##
######�#(�##�##
######�#;�##�##
######�#H�##�##
######�#Z�##�##
######�#h�##�##
######�#{�##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�##�##�##
######�##�##�##
######�##�##�##
######�#)�##�##
######�#8�##�##
######�#H�##�##
######�#[�##�##
######�#f�##�##
######�#q�##�##
######�#{�##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�##�##�##
######�##�##�##
######�##�##�##
######�#5�##�##
######�#E�##�##
######�#W�##�##
######�#f�##�##
######�#{�##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�##�##�##
######�##�##�##
######�#/�##�##
######�#;�##�##
######�#J�##�##
######�#X�##�##
######�#i�##�##
######�#w�##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�##�##�##
######�##�##�##
######�##�##�##
######�#(�##�##
######�#;�##�##
######�#H�##�##
######�#Z�##�##
######�#h�##�##
######�#{�##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�##�##�##
######�##�##�##
######�##�##�##
######�#)�##�##
######�#8�##�##
######�#H�##�##
######�#[�##�##
######�#f�##�##
######�#q�##�##
######�#{�##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�##�##�##
######�##�##�##
######�##�##�##
######�#5�##�##
######�#E�##�##
######�#W�##�##
######�#f�##�##
######�#{�##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�##�##�##
######�##�##�##
######�#/�##�##
######�#;�##�##
######�#J�##�##
######�#X�##�##
######�#i�##�##
######�#w�##?-#
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#��##�##
######�#�##�##
######�#)�##�##
######�#H�##J-#
######�#R�##R-#
######�#��##e-#
######�#��##x-'
######�#��##�-1
######�#��##�#8
######�#��##�#8
######�#��##�-8
######�# �##�-<
######�##�##�#@
######�#%�##�#@
######�#;�##�-@
######�#P�##�#A
######�#g�##�#A
####�#�#��##y#A
######�#��##�#B
######�#)�##�,B
######�#��##�#E
######�#��##�#F
####�#�#��##�-F
######�#��##�#I
######�#��##�#I
######�#��##�#I
######� ��##�+I
######� ��##%.L
######� ��##3.Q
######� ��##9.T
######�
�##D.Y
####�#� ,�##O.^
####�#� z�##5,e
####�#� 7�##�#f
####�#� C�##^.h
####�#� U�##h.n
####�#� c�##�#s
####�#� s�##�#u
####�#� ��##q.v
####�#� ��##z.z
####�#� ��##�.|
####�#� ��##�.
####�#� ��##�.�
####�#� ��##�.�
####�#� ��##�#�
####�#� #�##�.�
####�#� '�##�.�
####�#� 7�##�.�
####�#� F�##�#�
####�#� V�##�.�
####�#� j�##�#�
####�#� ��##�.�
####�#� ��##�.�
####�#� ��##�#�
#~####�#Pc##�

}]####�#z###�#�
�]####�#��##�#�
�]####�#��##�#�
�]####�#��##�#�
�]####�#��##�#�
�]####�##�##�#�
�]####�#%�##<#�
�]####�#3�##u#�
�]####�#a�##�#�
�]####�#A�##�#�
�]####�#Z�##�#�
#^####�#t�##u#�
�~####�#��##<#�
�~####�#��##x

#^####�#z###�#�
P####�#
Z##=

��####�#��##>/�
<�####�##�##K/�
(^####�##i##<#�
0^####�#Ύ##u#�
9^####�#5E##^/�
A^####�#Vz##d/�
J^####�#z###h#�
>%####�#z###�#�
#�####�#z###�/�
̃####�#��##�#�
q^####�#��##�#�
;�####�#��##�/�
W�####�#��##�#�
s�####�#�##�/�
��####�#!�##�#�
��####�#c�##Q#�
x^####�#=�##Q#�
�^####�#�@##�/�
�####�#T�##�/�
�^####�#g�##�/�
�^####�#z�##�/�
(�####�#��##�/�
x�####�#��##W#�
�^####�#�@##x

#�####�#��##�/�
��####�#��##r#�
Ԇ####�#�##�/�
�^####�#%�##x

��####�#A8##y#�
$�####�#<�####�
h�####�#V�##�/�
P�####�#h�##�/�
��####�#Pc##�

��####�#�4##�#�
>%####�#z###�#�
#_####�#z###h#�
&_####�#U\##<#�
._####�#�##<#�
6_####�#�##<#�
`_####�#85##�#�
�_####�#z###�#�
�_####�#W�##�#�
�####�#l�##d

�_####�#z####0�
#`####�##�##<#�
#`####�#��##�#�
`####�#�=##�#�
(`####�#�=##<#�
0`####�#��##<#�
8`####�#�##<#�
�0####�#z###�#�
#1####�#�G##�#�
#1####�#H##�#�
#1####�#�##�#�
+1####�#�##�#�
41####�#####�#�
<1####�#####�#�
E1####�#@###�#�
M1####�#U###�#�
؎####�#�+##�#�
̐####�#�###)0�
8�####�#�###20�
��####�#�###�#�
ȕ####�#�###90�
8�####�#�###A0�
l�####�#####J0�
V1####�#��##�#�
n1####�#��##�#�
w1####�#.###�#�
1####�#E###�#�
��####�#�+##�#�
�####�#\###R0�
��####�#z###\0�
�#####�#z###�###@`####�#z###�###S`####�#�###<###t�####�#�###u###[`####�#9�##
�###̙####�#####h0###�####�#"###h0##n`####�#�R##�
##L�####�#�R##o0##`####�#.###�# #�`####�#f###�# #�`####�#z###h#
#��####�#v###�###d�####�#z###�##�1####�#�###�##�1####�#�###�#
#�1####�#�##�###�1####�#�##�###�1####�#�###<###�1####�#�###u###�1####�#.##
#�###�1####�#M###�###�1####�#Y)##<###�1####�#H)##u###�1####�#<)##<###�1####�
#0)##u###�1####�#�(##�###�1####�#r(##�###�1####�#�###�####2####�#�###�####2
####�#BL##�####2####�#�###�###!
2####�#�###�###)2####�#�###�###22####�#�J##<###:2####�#�J##u###��####�#�+##
�###
�####�#/
###�###ԟ####�#7###�###`�####�#Q###~0###�####�#y###~0##Ģ####�#�###�###��####�
#�###�0###�####�#r5##�0
#0�####�#�###�0$##�####�#�###�0'#��####�#h�##�0)#8�####�#####9#/#�####�#V#
##D#4#\
�####�#�###D#6##�####�#�###�08#��####�#�###�0;#ȭ####�#####�0@#d�####�#F###
�0D#��####�#i###�0F#
�####�#�###�0G#4�####�#�###�#H#Ա####�#�####1H#��####�#�###
1J#0�####�######1L#��####�#Pc##�
M#�`####�#�###�#M#�`####�#z###�#M#�####�#>�##�#M#�`####�#�###a#N#C2####�#<)
##<#P#K2####�#0)##u#P#T2####�#�###<#Q#\2####�#�###u#Q#e2####�##
##<#R#m2####�## ##u#R#v2####�#. ##�#S#~2####�#R ##�#S#�2####�#v
##�#T#�2####�#� ##�#T#�2####�#� ##�#U#�2####�#� ##�#U#�2####�##
##�#V#�2####�#4
##�#V#�2####�#T
##<#W#�2####�#k
##u#W#�2####�#�
##<#X#�2####�#�
##u#X#�2####�#�
##<#Y#�2####�#�
##u#Y#�2####�#�+##�#Z##�####�#�
##?1Z#��####�#�
##�#[#8�####�#�
##�#[#��####�#z###�#[#�`####�#Pc##�
[#�2####�#�
##�#[##3####�####�#[##3####�#y�##�#\##3####�#��##�#\#!3####�#7
##�#]#)3####�#F##�#]#73####�#�4##�#^#?3####�#FT##�#^#M3####�#U##�#_#U3####�#k
##�#_#c3####�#�##�#`#k3####�#�##�#`#y3####�#�##�#a#�3####�#�
##�#a#�3####�#�##�#b#�3####�#�
##�#b#�3####�#####�#c#�3####�#8###�#c#�3####�#M###�#d#�3####�#]###�#d#�3###
#�#m###�#e#�3####�#~###�#e#�3####�#�###�#f#�3####�#�###�#f#�3####�##�##<#g
#�3####�##�##u#g#�3####�#�###�#h##4####�#�###�#h##4####�#�K##<#i#&4####�#�K
##u#i#�#####�#z###�#j#�####�#�+##�#j#��####�#[�##�#j##a####�#{�##�#k##�###
#�#�u##�#m#��####�#�###J1m##�####�#�###V1q#��####�#####c1v#Ƚ####�#"###l1w#�
####�#3###s1x#D�####�#B###|1y#��####�#T###�1z# �####�#h###�1|
#L�####�#�###�1~#8�####�#�###�1##�####�#�###�1�#��####�#�###�1�#��####
�#�###l1�#8�####�#�###�1�#>
%####�#z###�#�#��####�#z###�#�#,a####�#z###�1�##�####�#>�##�1�#<�####�#di
##�#�#��####�#
###�#�#��####�#z###�#�##�####�#>�##�1�#,�####�#di##�1�#s�####�#
###�#�#Ba####�#z###�#�#Ua####�#z####2�#��####�#\###
2�#��####�#m####2�#<�####�#z###!
2�#ra####�#��##�#�#za####�#b=##�#�#�a####�#�###�#�#�a####�#�###12�#/
4####�#z###�#�#C4####�#�###�#�#[4####�#�###�#�#d4####�#�###�#�#|4####�#

###�#�#�4####�#####�#�#�4####�#@###�#�#�4####�#]###�#�#�4####�#�###�#�#�
4####�#�###�#�#�4####�#�###�#�#�4####�#�###�#�#�4####�#�###�#�#�4####�#
####�#�#�4####�#,###�#�#�4####�#G###�#�#�4####�#b###�#�#��####�#�+##�#�#
��####�#9###<2�#��####�#�Q##�#�#>
%####�#z###�#�#�#####�#z###�#�#�4####�#-U##�#�##5####�#CU##�#�#
5####�#,(##<#�##5####�##(##u#�##5####�# ###�#�#%5####�#-
###�#�#.5####�#G###�#�#65####�#_###�#�#?
5####�#�###�#�#G5####�#�###�#�#P5####�#�###�#�#X5####�#�###�#�#��####�#�
+##�#�#x�####�#&###*3�#d�####�#Y###h#�#��####�#�###
#�#8�####�#�###03�##�####�#�###<3�#��####�#####E3�##�####�#Pc##�
�#######�#z#####�#######�#�###W3�#######�#�###g3�#######�#�###}3�##
####�#z###�#�#a5####�#�###<#�#i5####�#�###u#�#r5####�#G###�#�#z5####�#_###�
#�#�5####�#�###�#�#�5####�#####�#�#��####�#�+##�#�#d�####�#OW##�#�#�5##
##�#_�##<#�#�5####�#r�##u#�#�5####�#�K##<#�#�5####�#�K##u#�#��####�#<�##
�#�#�5####�#V�##�#�#�5####�#�###�#�#�5####�#�###�#�#�5####�#V�##�#�#�5
####�#=�##�#�#�5####�#�G##�#�##6####�#H##�#�#
6####�#�
##�#�##6####�##
##�#�##6####�#y�##�#�##6####�#��##�#�#,6####�#�4##�#�#46####�#FT##�#�#=6#
###�#˘##<#�#E6####�#٘##u#�#N6####�#��##�#�#V6####�#��##�#�#��####�#[�##�#
�#�a####�#{�##�#�#�a####�#�###�#�#�a####�#�###�#�#�a####�#�###�#�#��##
##�#�###�#�##�####�#####[#�#P�####�#####�3�##b####�#7###�#�#_6####�#z###�#
�#��####�#�+##�#�#~6####�#V###u#�#��####�#l###<#�#�6####�#�###u#�#��####
�#�###<#�#�6####�#�###�#�#�6####�#�###�#�#�6####�#�###�#�#�6####�#�###�
#�#�#####�#1~##�#�#\
�####�#@~##�#�#~#####�#H)##u#�#��####�#Y)##<#�#k#####�#0)##u#�#��####�#<)##
<#�#�#####�#r(##�#�#�#####�#�(##�#�#�6####�#
###�#�#s�####�#&###�#�#��####�#@###<#�##b####�#^###<#�#$b####�#|
###<#�##7####�#p+##<#�#(�####�#}
+##<#�#��####�##1##�#�##7####�#�###�#�#P�####�#W'##<#�#�

####�#z###�#�#+7####�#z###�#�#=7####�#�###<#�#E7####�#�###u#�#N7####�#c###�
#�#V7####�#u###�#�#_7####�#�###<#�#g7####�#�###u#�#��####�#�+##�#�#�?
####�#z###�#�#DN####�#z###�#�##@####�#z#####�#��####�#�###�3�##�####�#�###
�3�#��####�#####�3�#��####�#+###5,�#<�####�#z###�#�#h�####�#z#####�#��##
##�#�###�3#
��####�A�######
7b####�#.###�##
?b####�#�###�3#
Hb####�#�###�3#
]b####�#�###�3#
rb####�#�###�3#
�b####�#�###�3#
#�####�#####�3
8�####�##
##w#
�b####�#,
##�##
�####�##
##!##
|�####�#v###Q##
�b####�#Pc##�
#
>%####�#z###�##
��####�#z######
P�####�A�######
�b####�#<�##$##
�b####�#####�3#
#c####�#####�##
c####�#0###�##
p7####�#z####4#
#c####�#z###�##
�7####�#C####4#
�7####�#[####4#
��####�#��##!4#
c####�#z###.4#
Pc####�#�###�#(
Xc####�#XZ##<#(
D�####�#�Z##x
(
nc####�#
Z##=
)
x�####�##[##�
+
X�####�#�###A4,
��####�#####I4.
��####�#X###P4/
�P####�#z###�#2
�P####�#z###�#2
�P####�#z###�#2
�P####�#z###�#2
�c####�#z###�#2
�c####�#z###�#2
�P####�#z###�#2
�P####�#z###�#2
�P####�#z###�#2
�P####�#z###�#2
�P####�#z###�#2
�P####�#z###�#2
�P####�#z###�#2
�P####�#z###�#2
�P####�#z###�#2
�c####�#z###�#2
�c####�#z###�#2
#Q####�#z###�#2
�c####�#�###w#2
0�####�#�###w#3
�c####�#�###w#4
�c####�#�###w#5
�c####�#�###w#6
d####�#�###w#7
_�####�#�###w#8
(d####�#####w#9
�7####�#z###�#:
�7####�#D###�#:
�7####�#S###�#:
�7####�#b###�#;
�7####�#s###�#;
�7####�#�###<#<
�7####�#�###u#<
�7####�#�4##�#=
�7####�#FT##�#=
�7####�#�###�#>
#8####�#�###�#>
��####�#�###Y4?
D�####�#�+##�#E
��####�#,�##m4E
#�####�#�###t4G
��####�#�###$#O
�0####�#z###�#O
#8####�#�G##�#O
#8####�#H##�#O
#8####�#�##�#P
$8####�#�##�#P
-8####�#@###�#Q
58####�#U###�#Q
�####�#�+##�#R
L�####�## ##�#R
T#####�#Pc##�
T
>8####�#w ##<#T
F8####�#� ##u#T
O8####�#� ##�#U
W8####�#� ##�#U
`8####�#��##�#V
h8####�#��##�#V
q8####�#ߓ##�#W
y8####�#�##�#W
f#####�#�+##�#X
�8####�#z###�#X
t#####�#�'##u#X
��####�#�'##<#Y
?#####�##�##u#Y
M�####�##�##<#Z
,#####�#‫܁‬##u#Z
6�####�#�##<#[
R#####�#2�##u#[
d�####�#B�##<#\
�8####�#� ##�#\
�8####�#� ##�#]
�8####�##!##�#]
�#####�##!##�#^
x#####�#r�##u#^
��####�#��##<#_
�#####�#��##�#_
�#####�#��##�#`
�8####�#+!##�#`
�8####�#D!##�#a
�8####�#]!##�#a
#9####�#l!##�#b
#9####�#{!##u#b
�#####�#�!##<#c
"9####�#�!##�#c
:9####�#�!##�#d
H9####�#�!##�#d
`9####�#�!##�#e
n9####�#�!##�#e
�9####�#�!##�#f
�9####�##"##u#f
�#####�##"##<#g
�#####�#�)##u#g
�####�#�)##<#h
�9####�#1"##�#h
�9####�#I"##�#i
�9####�##w##u#i
�#####�#w##<#j
�9####�#a"##u#j
�#####�#m"##<#k
�9####�#y"##�#k
#:####�#�"##�#l
#:####�#‫܂‬##�#l
":####�#�##�#m
*:####�#�"##u#m
######�#�"##<#n
�#####�#<�##u#n
�####�#Q�##<#o
######�#f�##u#o
ׁ####�#~�##<#p
=:####�#p+##<#p
�####�#}+##<#p
#####�#�"##<#p
�#####�#s'##�#p
�#####�##1##�#q
|#####�#Ã##r#q
�#####�#4�##‫܃‬r
d#####�##�##�#s
�#####�#'�##�#s
(#####�#z###�#s
� ####�#z###�#s
D:####�#�0##�#s
R:####�#�0##�#s
�####�#,(##<#t
�#####�##(##u#t
�####�#�)##<#u
�#####�#�)##u#u
j:####�#��##�#v
�:####�#��##�#v
�:####�#_$##�#w
�:####�#k$##�#w
�:####�# ###�#x
�:####�#-###�#x
�:####�#�|##�#y
�:####�#�|##�#y
�:####�#�$##�#z
�:####�#�$##�#z
�:####�#�###�#{
�:####�#�###�#{
�#####�#�$##�#|
�:####�##%##�#|
;####�##%##�#}
#;####�#,%##�#}
L#####�#?%##<#~
3;####�#U%##u#~
d#####�#k%##U#
�#####�#�%##�5
F;####�#p+##<#�
V#####�#�0##<#�
x#####�#�+##�#�
p#####�##1##�#�
�#####�#}+##<#�
T#####�#�%##�5�
�#####�#�'##�#�
�#####�##�##�#�
######�#<�##�5�
TP####�#z###�#�
�#####�#^&##�#�
7d####�#u&##�#�
4#####�#�&##�#�
Ld####�#�&##�#�
^d####�#�&##�#�
v#####�#�&##�#�
�#####�#�&##�#�
�#####�#�&##�#�
X#####�##'##�#�
�#####�#&'##�#�
�#####�#3'##�#�
pd####�#z###�#�
�#####�#?�##�#�
�d####�
4�####�
�#####�#Pc##�

�d####�#z###�#�
�d####�#;2##�#�
�P####�#z###�#�
�P####�#z###�#�
�d####�#z###�#�
�c####�#z###�#�
�P####�#z###�#�
####�#� A+##�6�
####�#� P+##�6�
####�#� Y+##�6�
####�#� z+##�6�
####�#� �+##�6�
####�#� �+##�6�
####�#� �+##�6�
####�#� �+##�6�
####�#� #,##�6�
>%####�#z###�#�
�d####�#z###�#�
�d####�#z###M!�
�d####�#z###�6�
�d####�#z####7�
�!####�#�,##�#�
�d####�#�,###7�
>%####�#z###�#�
#"####�#z###�6�
#e####�#{-##�:�
@"####�#{-##�:�
�"####�#�-##�:�
-e####�#�-##�:�
5e####�#�-##�:�
H&####�#�-##�:�
�'####�#�-##Z!�
,(####�#�-###;�
8)####�#�-###;�
D*####�##.###;�
�+####�# .##<#�
�-####�#5.##;�
�.####�#M.###;�
#/####�#�.###;�
0####�#�##(;�
=e####�#�.##/;�
�0####�#�.##7;�
x1####�#�.##@;�
�2####�#�.##N;�
D4####�#�.##Y;�
�5####�#
/##a;�
�6####�#./##n;�
#7####�#?/##s#�
s7####�#P/##v;�
�7####�#Pc##�

>%####�#z###�#�
Fe####�#z###�;�
�7####�#z###�;�
Pe####�#�0##�;�
Xe####�#�0##�;�
`e####�#�(##<#�
he####�#�(##u#�
qe####�#�0##<#�
ye####�##1##u#�
�e####�#!1##�;�
�e####�#01##�;�
)8####�#B1##�;�
�e####�#T1##�;�
S8####�#]1##�;�
>%####�#z###�#�
�e####�#z####<�
�e####�#�1##�#�
�e####�#�1##�#�
�e####�#Y�##<#�
�e####�#l�##u#�
�e####�#�1##�;�
�e####�#�1##�;�
>%####�#z###�#�
�e####�#z###�#�
p8####�#z####<�
�e####�#�1##�#�
�e####�#f2###<�
#f####�#��##<#�
f####�#�(##<#�
#f####�#�0##<#�
#f####�#t2###<�
"f####�#�2##)<�
>%####�#z###�#�
L9####�#z###?<�
*f####�#�1##�#�
2f####�#f2###<�
:f####�#�2##$#�
Bf####�#�2###<�
Jf####�#z###�#�
�9####�#Q3##�<�
#:####�#\3##�<�
hf####�#Pc##�

####�#� i3##�<�
####�#� {3##�<�
####�#� �3##�<�
####�#� �3##�<�
>%####�#z###�#�
M;####�#��##<#�
U;####�#��##u#�
^;####�#��##<#�
f;####�#��##u#�
o;####�#gd##<#�
w;####�#��##u#�
T:####�#�+##�#�
�#####�#z###�#�
�:####�#Pc##�

�;####�#pi##CF�
tf####�#
###�#�
�;####�#M�##�#�
|f####� �i##SF�
@S####�#;j##�#�
\=####�#��##�#�
|f####� �j## #�
�f####�#z###�#�
�f####�#�k##�#�
####J5######Q5######�]######X5######�]######X5######f5######J5######o5######J5####
##Q5######f5######J5######o5######J5######Q5######�]######�]######f5######J5######
o5######J5######Q5######�]######�]######f5######J5######o5######J5######Q5######v5
######}5######v5######}5######f5######J5######o5######J5######Q5######�]######�]##
####f5######J5######o5######J5######Q5######�]######�]######f5######J5######o5####
##�5######k2######�5######�5######0B#######t######�5######�5######�#######�5###
###�5######�#######�5######################################z#######�5######�5###
####6######�5######�5######�5#######6#######6######�5#######6#######6#######6###
###�i######�i#######6######06######96######B6######R6######�]######�]######R6###
####6######�]######R6#######6######R6######A-
######[6######�k######m6######t6######t6######�6######�6######�6######t6######�6
######�6######�]######�6######�6######�6######�]######�6######�]######�6######
�6######�6######�]######�6######�]######�6######�6######�&######�&######�&###
###�6######�6######�&######�&######�&######.o#######6######.o######�6######�6##
#####7#######7######�6######47######M7######\7######�6#####�6####
#�6######�&######�&######�&######l&######�6######M7######\
7######l&######�6######�6######�&######�&######�&######k7######\
7######l&######�6######�6######7######�6######7######�6######�6######�6######�
6######�6######�6######0B######J5######Q5######�6######�]######�6######�6######
�6######�6######�]######�6######�6######�6######f5######J5######o5######J5#####
#Q5######�]######�]######f5######J5######o5######�7######�7######�7######�7####
##�7######�7######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�######m�####
##m�######m�######m�######�7######�F##############�7######�7######�d######A-
######W-######e-
######�7######�7######�7######m�######m�######m�##############m�##############m
�##############m�######m�######m�######m�######m�######m�######m�######m�#####
#m�######m�######m�######m�######m�######�7######03######@3######U3######g3####
##q3######�2######
3######�7######03######@3######U3######g3######q3######�2######

3######q3######�7######�7######�7######@3######�7#######R######I2######[2######k
2#######5######�7#######8######�:######%8######�:######�:######Y9####
#:8####
#�:######�9#######5#######8######�:######D8######Y9#######5#######8######�:#####
#D8######n8######�8#######5#######8######�:######
%8######�8######Y9######I2######[2######k2######�2######
3#######5######�7#######8######�:######%8######�:######�:######Y9####
#:8####
#�:######I2######[2######k2#######5######�7#######8######�:######
%8######�:######�:######Y9#### #:8####
#�:######�8######�8######�]######�j#######9######�8######�8######�8######�8###
###�8######��######�8######�8######�8######�8######�8######�8######�8#######5
######%5######�8######�8######�8#######5######�7#######8######�:######
%8######�:######�:#### #Y9####
#y9######�:######�F######A6######�7######�7######k2######[2######�2###### 3####
#�7######۴######k2######[2######�d######
9######�7######�7######A6######I2######[2######k2#######5######�7#######8######�
:######%8######�:######�:######Y9#### #:8####
#�:######�#######�d######
9######�7######�7######I2######[2######k2#######5######�7#######8######�:######
%8######�:######�:######Y9#### #:8####
#�:######�7######�7######I2######[2######k2#######5######�7#######8######�:#####
#%8######�:######�:######Y9#### #:8####
#�:######�7######I2######[2######k2#######5######�7#######8######�:######
%8######�:######�:######Y9#### #:8####
#�:#######5######�7#######9######�7######I2######[2######k2#######5######�7#####
##8######�:######%8######�:######�:######Y9#### #:8####
#�:#######8#######5######&9######I:######X:######e:######��######`8######�7#####
#�7######I2######[2######k2#######5######�7#######8######�:######
%8######�:######�:######Y9#### #:8####
#�:######59######@9######Q9######Z9######k9######��#######B######m�#######6#####
#�9#######�#######�######m�######m�######m�######m�######m�######m�######�9##
####m�######m�#######R######fE######m�######�9######m�######�9######59######�9#
#####6s######�9######�7#######5######�7######�7######�d######
9######�7######�7######�A######�A######�A#######B######�F#######B#######9######
A6#### #�7####
#�7######�7####
#k2#####0B######@B######[2######OB######�2###### 3#######5######
%5#######5######
%5######�9######�9#######:######&:######1:######06######�r#######5######�r######
#5######�r######G:######m�######1:#######5######Q:######%5######%5######%5######
%5######g:#######9######{:######%5######�:######�i#######5######�7######
%5######�:######�9#######:######&:######�'######�:######�:######�:######�:#####
#�:#######;#######;######!;######7;######J;#######5######&9######7R######I:######X
:######e:######];######j;######�F######/
9######>9#######9#######G######z;######�;######�#######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�######m�######m�######m�######�;######�;######�;######
�;######%5######�r######%5######�#######�;######%5######�r######��######
%5######��######%5######��######%5######��######%5######��######
%5######��######%5######��######%5######��######%5######��######
%5######�r######k2######0B######@B######[2######OB######�2######

3######�########<#######<######,<######G<######�:######�;######`<######~<######�
<#######R######�<######J5######Q5######�<######�<######f5######J5######o5######�
<######�<######�8######�8#######R######!R######-
R######7R######I:######X:######e:######�<######�#######۴######�#######۴######�<##
####�G######
X######�G######
X######�<######�G######
X######�<######
=#######=######�<######
=######�i######m�######m�######%5######
=######�A######1=######>=######H=######m�######m�######m�######H=######S=######m
�######m�######t=######�W#######X######�q######�=######�=######j�######�=#####
#�=######�=######�=######�=######�=######�=######�=######�=######�=######�=##
####
X######j�######�=######�q######
X######�=######�q######�q######k2######
X######�=######�q######
X######�=######�=#######>######t=######�Z######�W#######X######lZ######�Z######
�Z######�Z######m�######m�######m�######�=#######>######�=#######>######�q####
##t=######�Z######�W#######X######lZ######�Z######�Z######�Z######�q######�=###
####>#######5#######>#######5######m�######&>######m�######&>######/
>######6>######/
>######�c######&>######<>######&>######D>######<>######Q>######�i######@�######a>
######<>######p>######�h######�h######Sh######�h######m�######}>######>######}>#
#####>######}>######�>######>######>######�>######�i######�>######�>######�>##
####�c######�>######�k######�>######�>######�>######<>######�>######�>######�i
######�i######�c#######?#######?######!?######*?#######?#######?######3?#######?
######B?######L?######]?######k?######y?######�>######�?######�?######�?######�?
######�?######�?######�?######�?######�?######�i######�i######&>######�?
######Q>######�?######<>######�?######�i######�i######�?
#######@#######@######"@######�k######�i#######?
######,@######&>######8@######<>######�h######@@######8@######<>######K@######&>##
####Q>######<>######&>######<>######X@######�h######@@######<>######X@######K@####
##�h######a@######j@######v@######�@######�@######�@######�@######�?
######&>######�i#######?######3?######6>######�i######�@######<>######�i######A-
######{�######A-######�@######�@######8@######&>######<>######�@######�@######A-
######8@######&>######<>######�@######�i######�c######�c######�@######�h######�
c######}>######�i######m�######m�######�<######�<######�<######�<######�<#####
#�<######�d######�d######�d######�d######�d#######A#######A######�d######'A####
##�k######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�#######=######gj#####
#8@######A-######1A######HA######PA######WA######^A######hA######
�######HA######mA######�c######�i#######^######�i######�h#######=######�h######
vA######�i######��#######^######~A######�h######vA######�c######�c######gj#####
#�h######�c######�c######�h######8@#######=#######=######8@######�c#######=#####
#gj######�k######�A#######6######�k######�h######<>######�h######�######�i####
##hA#######�######�########�######�A######�######�i######hA#######�######�####
###�A######�A######�]######�]######�A######�#######�]######�A######m�######m�
######m�######m�######m�######m�######�A######�&######�7######�A######�&######
�7######�A######�&######�7######�A######�A######�A######�&######�7######�A###
###�r######�A######�A######�A######�A######�A######�A#######B#######B######�A#
#####�A#######B###### B######�A######
B######�A#######B######(B######6B######J5######Q5######�8######�8######f5######J5
######o5######�p######CB######�=######�=######j�######OB######^B######�=######OB
######�=######OB######�=######OB######�=######pB######|B######
X######�B######�B######
X######�]######�B######
X######
9######�7######�7######�B######�B######�B######�B######m�######m�######m�#####
#m�######m�######m�######m�######�8######�B######�8######�B######�######�B###
###�B######�8######�B######�B######v5######}5######m�######m�######m�######m�#
#####A-######�B######�B######�B##############A-######�]#######C#######C######
C#######6#######6#######C######�i######�i######A-
######�B######Hv######�B##############A-
######�B######�v######Hv######�B##############
X######A-######m�######m�######m�######m�######
%C######3C######@C######z;######m�######m�######m�######m�######m�######m�#####
#m�######GC######OC######aC######tC######�C######�C######�C######�C######�C####
##�C######GC######OC######�C######�C######A-
######�B######Hv######�B##############A-
######�B######�v######Hv######�B##############
X######A-
######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�######m�######�7######�7
######�C######�7######�C######�7######�C######m�######�7#######D######$D######;
D######m�######m�######m�######m�######m�######m�######m�######m�######m�#####
#m�######m�######m�######m�######m�######m�######m�######�7######�7######ID###
###TD######lD##############zD######################m�######�D#######6######�D####
##�D######�D######�D######�D####################################################
##m�######m�######�D######�i######�D######�D######J5######Q5######�]######�]##
####f5######J5######o5######J5######Q5######�]#######B######�]#######B######f5####
##J5######o5######J5######Q5######�]######�D######�]######�D######f5######J5####
##o5######J5######Q5######�]######�D######�]######�D######f5######J5######o5####
##J5######Q5######�]######�6######�]######�6######f5######J5######o5######J5####
##Q5######v5######}5######v5######}5######f5######J5######o5######J5######Q5######
�]######�]######f5######J5######o5######J5######Q5######�]######�j#######9######
�]######�j#######9######f5######J5######�j#######9######o5######J5######Q5######
�]#######C#######C######�]#######C#######C######f5######J5######o5######J5######Q5
######�7######�D######�7######�D######f5######J5######o5######J5######Q5######�7
######�D######�7######�D######f5######J5######o5######J5######Q5######�]######�]
######f5######J5######o5######m�######m�######m�######�#######6#######�#######�
######�#######�#######�######m�######m�######m�######m�######m�######m�######m
�######m�######m�######m�######m�######m�######�D######�D######�D######�C####
##�D######�d######
E#######E######
E######)E######�7######m�######m�######m�######m�######A-
#######6######ί######m�######m�######m�######A-
#######6######ί######m�######m�######m�######m�######;E######�#######;E######m�
######m�######m�######m�######m�######m�######NE######�#######m�######m�######
m�######m�######m�######m�#######�#######�######m�######m�######m�######m�###
###m�######m�######m�######m�######m�######m�######�#######n�######�#######�#
######n�######�#######YE######4�######�#######�#######�#######f�######�#######
�#######R######fE######oE######m�######m�######m�######m�######m�######m�######
m�######m�######m�######m�######m�######m�######m�######m�######m�######m�###
###m�######m�######m�#######�#######�#######�#######�#######�#######�#######�
######xE#######�######E######�E######m�######m�######m�######m�######m�######m
�######m�######m�######m�######m�######m�######m�######m�######m�######m�####
##m�######�E######m�######m�######m�######m�######m�######m�######m�######m�#
#####m�######m�######m�######m�######m�######m�######m�######m�#######�#######
�#######�#######�######m�######m�######m�######m�######m�######�E######m�####
##m�######m�######m�######m�######m�######m�######m�######m�######m�######m�#
#####m�######m�######�E######�
##############hA######{�######�E######�E######
X######�E######T�######!�######w�######�E######�E#######F#### ##�####
##F######��######�A#######A######
F######'F######�]#######�#######�######/F#######�######'F######CF######QF######Z
F##############A-######A-######nF######A-
######�i######m�######CF######uF######�F######�i######m�######CF######A-
######�F######�F######�F######�F#######=######�F######�d######A-
######uF######�F######�i######m�######��######�i######�i######�F######�F######
�F######�i######�i######�i######�F######�i######�F######�D######�i######m�###
###m�######�7######m�######m�######�=######lZ######�F######�F######�=#######5#
#####�<#######5######�<######�F#######G######�$#######G#######G######(G######4G#
#####a@######NG######XG######hG######�Z######G######�G######�G######�G######�G#
#####�G######�Z######�Z######�G######�G######�G#######H#######H######*H######3H
######AH######JH######q3######YH######�A######�S######aH######D�######�G######oH
######�H######�H######�H######�H######�H######;D######m�######m�######m�######
m�######m�######�H######�H######�H######�H######�A#######6######�A#######6####
##�A#######6######�8######��######ʱ######�d######��######ʱ######�d######
9######�7######�7######m�######m�######�$#######G######�G######(G######a@######
�G######NG######XG######�Z######G######�G######�G######�G######�H######
I######�Z######�Z######�G#######H######*H######3H#######I######AH######
I######.I######=I######JI######JH######q3######�A######[I######�S######aH######Hv#
#####oI######D�######wI######�G######oH######�H######�H######�H######�H######�I
#######H######;D######m�######m�######m�######m�######m�######m�######�7######m
�######m�######m�######m�######m�######m�######m�######m�######@�######�I####
##�I######@�######)�######
�######m�######m�######m�######m�######m�######�7######�F######�I######�F####
##�F######�F######�F######�]######�F######m�######m�######�I######�h######�I#
#####�I######�7######�I######�r######m�######m�######m�######m�######m�######
�<######�<######m�######m�######m�######m�######m�######m�######m�######m�###
###m�######m�######m�######m�######m�######m�######m�######m�######m�######�r
######��######m�######m�######m�######m�######m�######m�######m�######m�#####
#m�######m�######m�######m�######m�######m�######m�######m�######m�######m�##
####m�######m�######�]######�i######�i#######R######�i#######R######p�######�h
######�i#######R######p�######�h######ђ######�i#######R######p�######�h######ђ#
#####�######E#######5######�]######�E######�]######�]######�]######�]######�I
######�I######�I######�I#######s######m�######��######m�######m�######m�######
�F######�F#######s######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�######m�######m�######m�######�I#######=######�]######�r#####
#�i######E######Js######�I######�]######��######}�######�#######�########J####
##�#######�########J#######�#######J#######�######�7######��#######J######!
�######m�######m�######�7######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
�######m�######m�######m�######m�######m�######m�######m�######�]######(J#####
#0J######6J######<J######�]######m�######m�######m�######m�######m�######m�####
##m�######m�######��#######=######BJ######�]######�]######��######}�######m�#
#####m�######m�######m�######m�######RJ######XJ######^J######!
�######��######m�######m�######m�######m�######m�######RJ#######R######��####
##eJ######��######��######m�######m�######m�######m�######m�######�i######��
######m�######m�######m�######m�######m�######m�######m�######�I#######=######
�]######�######Js######�######6>######�]######�]######�]######�]######pJ######f
�######�]######pJ######6>######pJ######f�######6>######pJ######�]######�E######{
�######i�#######�######0�#######�#######�#######�######�]#######�######/
>######�]######�]######�i######�### ####### ##��### ##Ei###
##�J######�J######�J###
##�J#######@######�J######�J######(J######(J######6J######0J######(J######�J####
##(J######�J######�J######(J######0J######�J######<J######�J######�J###
##j�######�J#######K#######K######3K######m6######HK######RK### #######
##�k######�J######J5######Q5######(J######0J######6J######<J######(J######0J######
6J######<J######f5######J5######o5######�######�i######{�######I�#######=######_
K######I�######_K######I�######pK######�]######@�######�]######�]######�]######
�]######uK######{K######�]######�]######�]######�]######�]######�]######�]####
##�]######��######�K######��######��######�K######��######�j######�K######�
�######�j######�K######�K######�j######��######�j######�i######�j######�i####
##�K######�j######�K######�K#######5######�######�K######�K######�K######�K##
####�K######y?
######�K######V#######�]######�K######�K######V#######�]######�K######V#######�
]######�K######V#######�]######�S######�K######V#######�]#######�######�K######
N�######N�#######L######�]######�]######m�######m�######m�######�]######6>####
##�E######"L######�]######6>######(L######m�######�]######/>######�]######/
>######6>######/>######�7######�7######6>######/
>######m�######�i######�i######�]######W�#######6######m�######m�######m�#####
#m�######,L######m�######q3######z;######z;######�]######�E######�]######�E####
##{�#######�######�E#######�######�E#######�######y?
######�E######�E######3L######8L######=L######GL######IL######y?
######�]######OL######�E######\
L######6>######eL######mL######qL######vL#######5#######5#######5######.�######�]#
######R######xL######xL######xL######}L######�L######xL######�L######�L######�L#
#####�L#######A######�d######�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##
#####A#######A######�L#######A######�L#######A######�L######�L#######A######�L##
####�L######�L#######A######�L######�L######�L######
9#######A#######A######�L#######A######�L#######A######�L######�L#######A######�
L######�L######�L######
9#######A######�L######
9#######A######�L######�L######
9#######A######�L######�L######�L######�7######�A######�7######�A######�7#####
#�A######�7#######A######�L######�L######�L######�L######�E######�E######�E###
###�E######M######M######M######M######M######
M######�d######�d######�L######�d######
9######�7######�7######�L#######�######�]######A-
######��#######M######m6#######M### ##########,M######,M######3M######A-
######<M######AM######MM######`M######mM######~M######�M######�M#### #�M####
#�M######�M######(J######m6#######6######�M######�J######�M######�M######�M####
##�M######��#######A######��######�d#######A#######A#######A#######A#######N###
####A######m�######m�######m�######m�######m�######m�######m�######m�######m�#
#####m�######m�######m�######m�######m�#######N######$N######ί######0N#######n##
####5n#######�#######N######$N######4�######&�######=N######
X######'n#### #Mn####
#W�######��######�7######�7######�7######IN######TN#######=######\
N#######=######gN######qN###
##wN######�N######�N#######=######�N#######=######�N### ##�N######�N### ##�N###
##�N######qN######�N######�N######�N######�N######�N#######=######�N#######O###
####O######!O######qN######-
O######5O######BO######LO######VO######[O######qN######-O######`O###
##dO######�J### ##nO######qN######uO######O######�O######�O######�O######�O###
##########�O######�O######�J### ####### ##�J######�J######�J###
##########�O###### �######�J######�J######�O######�O######�O###
##�O######�O######�O######�O######�O### ###P######
P#######P#######P######$P######2P######BP###
##�N######KP######UP######eP#### #mP######uP######~P######�P###
##�N######KP######�P######eP######�P#### #�P####
#�P######�P### ##�N######�P######UP######�P######�P#######Q#######Q###
###Q###### Q######,Q#######Q### ##5Q######>Q######,Q#######P#######Q###
##dO######�J### ##KQ######UQ######mP### ##[Q######kQ### ##tQ### ##}Q### ##�Q######
r######�Q######�Q######�h######�Q### ####### ##}Q######�J###
###########�######�Q######�Q######�h###
###########�######�Q######�Q######�h######�Q######�Q######�Q######�Q######
R###### R######5R######�J###
##########CR######�J######KR######cR######mR######R######WA######�R######�Q######
�R######�R######�R###
##########�R######�R######�R######�R######�R######�R#######S#######S#######S###
###)S######3S######<S### ##QS######[S### ##pS### ##zS######�S######�H######
�######��### ##########�S#######,######�S######�S###
##########�S######��######�S######�S########### ##�S###
##########�S##############?E### ##########?
E######�S######�#######,#######m######�S### ##########�S###
##########�S#######,### ##########�S### ##########',######�S######�S###
###########T######�S######�S#######T######"T######�S######m�######m�######m�###
###4T######�K######t=######�W#######X######�=#######>######
X######�7######BT#######N######
X######�7######OT######ZT######sT######m�######m�######�T######�T######�T######
#5#######5#######5#######R######�s#######5######~<#######5#######5#######5######�
�######�T######�T######�T######�T######�T#######U#######U######�7######�7#####
#�]######�s######�J######E�######�s######�i#######R######p�######�h######��##
####X:######e:######�s######m�######m�######m�######m�######,U######��######1U#
#####5U######�<######�q######GU######KU######�7######[U######�7######[U######m�#
#####m�######�8######bU######wU######�8######m�######m�######�U######�######�G
######
X######�G######�######
X#######�######�########�######�#######m�######m�######m�######m�######m�#####
#m�######m�######m�######m�######m�######m�######�U######�U######�U######�U##
####�U######�U######�U######�U######�U######�W######lZ######�U######�=#######V
######�W######�=######�W######�W######lZ######�F######�F#######V######�=######
�=######lZ######�F######�F######�=#######5######�<######"V######�<######�W#####
#�F######�=######�W######lZ######�F#######V######�=######�W######lZ######�F####
##�=######%5######3V######%5######%5######LV######\V######�U######
%5######�q######dV######dV######m�######m�######m�######m�######m�######m�#####
#m�######m�######m�######m�######m�######hA######m�######m�######m�######m�###
###m�######m�######m�######m�######m�######m�######m�######m�######m�######m�
######m�#######R######fE######oE######�#######Q�######Js######E�######�#######Q
�######Js######E�######E#######�#######�#######�#######�#######rV######U�######
V######�V######rV######rV######U�######��######�V######V######�V######�V######
�V######�#######m�######�#######�#######�#######�r######�#######Js######�#####
##�#######E#######I:######P#######�#######�r######�#######�5######�#######�####
###�V######�######�
######�V######�######�
######m�######m�######m�######m�######m�######m�######m�######m�######�q######
�]#######W######
W######EW######aW######}W######�W######�W######�W######m�######m�######m�######
m�######m�######m�######H=######�W######�W######�W######�C#######X#######X#####
##X#######X######J5######Q5#######�######B�######(X#######�######B�######(X#####
#f5######J5#######�######B�######(X######o5######m�######m�######m�######H=#####
#u�######m�######m�######m�######m�######m�######m�######m�######m�######m�##
####m�######m�#######R######fE######oE######�S######�######m�######m�######m�##
####m�######m�######m�######m�######m�######m�######m�######m�######m�######
9######�7######�7######
X######�Z######4X######<X######
X######�Z######�Z######4X######<X######�<######FX######�7######�7######SX######j
X######�7######�7######�X######�X######�X######�X######�X######�]######�]#####
#�]######�j#######9######�]######�6######�]######�7######�7######�7######�7###
###m�######m�######�X######�X######�S######
Y######m�#######A#######A######t=######�Z######�W#######X######lZ######�#######�
Z######�Z#### #�Z####
#�#######�q######�=#######>######�=#######Y######.Y######:Y######EY######OY#####
#YY#######6#######6#######6#######6#######6#######6#######6#######6######m�######m
�######m�######m�######m�######k2######bY######mY######Y######�Y######�Y######
�######bY######�######�Y######k2######bY######mY######Y######�Y######�Y######m�
######m�######m�######�<######�q######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�######m�######m�######�7######TD######�Y######m�######m�######m�######
m�######m�######m�######m�######m�######m�######m�######m�######m�######�Y###
###�Y######�Y######�Y######�Y###### Z######
Z######>Z######�7##############zD#################################################
#####[Z######mP######aZ######gZ######zZ######�Z######�Z######mP######�Z######�Z#
#####�Z######�Z######�Z######�Z######�Z######�Z#######[#######[#######[######.
[######�]######�]######3[######�7######:[######�]######:
[######B[######N[######N[######U[######b[######b[######n[######x[######x[######x[##
####B[######|
[######B[######B[######�[######B[######B[######B[######n[######N[######�[######W�
######�[######N[######U[######�[######U[######B[######�[######N[######�I######�[
######�[######�[######�[######�[######�[######�[######m�######m�######m�######
m�#######G######p�######m�######m�######m�#######G######�[######�[######�[####
##�[######�[######�[######�[### ##�[######
\#######\#######\#######\######m�######m�######m�######`j######"#!#$#%#$#)#%###&#
%#@#%#A#%#O#A#Q#@#U#%#V#%#W#%#Y#`#[#h#]#p#f###h#x#i#�#j#�#j###k#|
#k###�#I#�###�#U#�#Y#�###�#Y#�#Y#�#,#�#Y#�#%#�###�###�###�#!#�###�#%#
#e#0#%#1#i#4#m#9###?###@###D#%#N#q#O#q#Q#y#m###�#:#�###�#>#�#I#�#!
#I#�4##�#�#�[##�
�#�###�
�#�###�
�#=\##x
A#�3##�#9#;2##�#�#�###I4�#�###P4�#z###�###z###�# #z###�###z###�>!
#z###�#)#z###�#1#z###u#9#z###u#A#z###u#I#z###u#Q#z###u#Y#z###u#a#z###u#i#z###u#q#z
###u#y#z###u#�#z###u#�#z###�#�#z###u#�#z###u#�#z###u#�#z###�>�#z###�>�#z###�
#�#z###�#�#�^##�#�##5##l?�#z###u#�##_##l?�#_##|
#�#z###u#i#[d##<#�#z###�#�#z###�###W_##r###c_##|#A#k_####�#�##t?
�#�_####�#z###u###�_##x
##�_##<#�#z###�###z###�#!#w�##`#!#�_##�?q#�_##4+�#z###�?!#z###�?)#z###u#9#
`##�#I#� ##�?9#z###�#A##`##�?9##`##�?##/5##<#�#
b##�#�##b####)##b###@)#>�###@�#�4###@##�!##r###/b##r###;b###@�#
_##"@##Rb##r###cb##r###b##r#I#�b##(@�##�##�###�^##�#�#l ##�# #�b##$#
#/5##/@##t�##b###�b##7@##�b##7@##�b##>@)#z###D@)#�###J@�#l
#######c###@�##c##<#�##c##j@A#!c####�#�4##~@9#4c##�#1#z###u# #M�##�#!
#z###�#)#z###�@�#Wc##�@9#z###�###�###w#9##`##�@
#lc##�@9##`##�@�#Wc##�@9#z###u#1#zc##�@1#/5##�@9#�c##�@�#�c###A�#Wc##
A9#z###�#A#Hd###AQ#t�##b#Q#m###�#Q#5&##�#Q#5&##W#Q##
##W#Q##
##�#�#Xd##:A�#^d##AA�#cd###AI#rd##Q#A#di##�#�#zd####�#�d##Q#�#�d##l?
�#�c##j#9##`##uA9#�^##�#I#z###�A##�d##�A�#�d##
A�#�d##�Aa#>�##�A##5E##<#y#z###�#�##5##�A�#�d##�Ay#b�##�A�#z###�A)#z###�#!
#z###�A�#�&##�#!#�&##�#!#p+##<#y#!e##By#>e##
By#^e###By#�e###B�#�e###B�#:p##h###�e##h#!
#�+##�#�#z###�#�#z###�#�#z###�#)#z###�AQ#z###u#Q##�##�#Q#2�##�#�#��##�#�#
8f##AB�##i##<#�##-##�#�#z###�#1#z###�#1#z#####�#��##x
i#z###u#q#��##
#q#�*##$#y#[f##�#�#5E##<#�#df##�#y#di##�#�#�f##�#�#�f##jB�#�f##u#y#�f###B�#
�f##rB�##g##rBy#;2##�#�#V�## #�#_##wB�#
_##}B�#M�##�#y##g##�B�##g##b#�#'g##�B�#2g##�#�#Ag##�Bi#zd##�Bi#Jg##�Bi#Yg##
�Bi##b##�B�#�4##�Bi#eg##�B�#�k##SC##�3##�#�#�g##�C�#�g##�C�#�g##�C�#�g#
#�C�#�g##2#�#zd##�C�#z###�C�#�g##0,�#�g##�C�#�g##�C�##h##�Cq#z###�#q#Ύ##u
#i#z###�C�##h###DA#!h###q#7h###D�#�
###Dq#Lh###Dq#Yh###Dq#�(###D�#}h##�#�#�h##0D
#�h##>D�#5E##<#�#z###u###z###fD�#
_##mDi#z###�#i#85##zD<#;2##�DD#V�##�DL#z###�#T#;2##�D\
#V�##�DL#di##�DL#b�##�Di#z###�#i#z###�#i#z#####1#�h##�#�#z###0E)##i##�#)#[�#
#oE)##i##�#y#�k##�#y#1S##�#)#;2##�EA#5E## #)#z###�E�#�c##�Et#;2##�D|
#V�##�D�#a�##�#I#z###�#Q#Il##xFQ#[l##�#�#;2##�D�#V�##�Dy#z###�#A#z###J@�#z#
##�#�#di##�D�#z###�#�#di##�D)#�k##�#�#z###�#�#z###�#�#|
l###G�#z###�#�#di##(G�#di##�D�#di##�D�#�l###B�#;2##0G�#V�##�D�#M�##�#�#;2#
#0G�#V�##�D�#1S##�#�#M�##�#A#-E##
#y#>�##�Gy#�l##�#q#�*##+#�#z###�#�#di##�D�#z###�#�#;2##0G�#V�##�D�#di##�D
�#M�##�#�#b�##�D�#b�##�D##�l##>@i#�l##�Bi#z###�###�l##u#d##m##�Dd##m##�###
!m##�#i#z###u#y#0m##�HI##g##�Hq#z###�A�#7m###Iq#/5##<#�#��##!4�#��##!
J�#Om##(J�#Zm###I�#�e##�J�#b�##�Dq#qm##r#�#z###�K�#�###(G�#1S##�#�##i##�K�
#0m##�K1#�m##�K�#�m##�K##�
##7@##�m##>@�#85##
L�#'g###L�#�###�#�#Ag###L##�
##�!##z###?L�#z###�#�#��##GL�#]�##\
L�#7m###B�##n###@A#"n####�#SS##LY#7n##�L�#z###�Li#z###�###z###�###Ln##u###Tn##
Z!1#tn##�L�#;2##�#�#��##x
�#�###(G�#|
l###G1#��##<#�#z###�KI#�n##�#y#z###�###ϩ##�####i##<#Q#��##�###�n##b#�#�4###
M�#
r##O#�#�Q##+M�#�Q##+M�#�h##�#�##b##3M�#�n##�,�##b##�CY#z###u#�#�n##y#�#S�#
#�,�#U�##y#�#��##�,�#u�##�,�#�n##AM�#�n##HM�#�d##�@1#�n##w#Q#z#####�#�n#
#�#q#�n##r# #�4##�Mq##
##!
+q##o###+Y#"o##�M�#z###�#�#�Z##�#�#3o##�#�#�Z####�#�Z####�#4X##�M�#lZ####�
#>o####�#Io##�#�#�A##�M�#<X##h#y#z###�My#Vo##�
q##�##<#q##i##<#�#z####N�#z###�#�#z###kN##�o##rN1#�o##�#1#�o##yN�#z###�#9##�
##<#)#1S##�# #/5##�@y#0m##N�##i##�K##;2##�N
#V�##�N
#M�##�#�#�m##<#�##b##�N�#di##(G##z###�#�#z###�###di##(G###b##�N##�
##NO)#�d###@)#di##J@y#z###�#y##g##�#q#�o##�####-
##u#1##p##�O1#s�##�O�#8p##�O1#5E##<#1#Ep##u!
##Wp##�O�#bp##�O1#Vz##u#�##`##�O##rp##�O!#z###�O!
#�p##h###�o##�O�#�p##�O1#�p###P)#�p##oE)#�p##
#)#z###�#�##5##Q#)#1S##�#�#z###�P�#�p##�P�#di##�P
#z#####�#�p##�P##z###�O###-
##�P1##q##<#1##p##�P�#;2##�#�#8q##oQ##Cq##oQ�#Sq##�#1##i##<#1#`q##�#1#8f##AB1#
oq##�#1#{q##�#�#[�##�O1#�^##`###/5##�@Q#�q##�R##�###�R##�###�R�#/5##/@!
#z###�#)#�q##�RA##i##<#A#�q##�#A#�q##�*1#�p##�R�#�q##�RA##r##9S1##r##�#A#z##
#u#9#z###y#A#z###�#I#cr##dSQ#z###�#Q##-
##kSA#z###�Pi#z###�#)#z###�#Q#�r##xSy#�r##�#!#��##d#�#%�##<#Y#�r##/
#Y#�r##<####i##�K##;2##�N$#V�##�N$#M�##�#�#0m##�Hq##s##4+�#z###T�#
%s###T�#4s##�#�#Ns###T)#z###$#y#+�##u#�#z###u#�#hs##<#�#1S##�#q#�s##ZT�#z###�
K�#[�##�NA#z###�#

#lc##�TI#z###u#A#rf##�#�#z###u#�#z###�#i#z###u#y#�k##8W�#�s##<#I#Nd##hWI#[d##<
#�# t##0, #/5##/@##�o##nW!#�^##`#!##-##uWq##t##4+q#!
t##I#I#0m##�H##z###u###*t##�#Q#"n##�*q#Gt##�#�#nt##�Wq#{t##�W4#z###�#i#�l##u#4
#di##�D4#b�##�D�#�t##h#�#�t##u#�#�t###X�#Xd###X�#:p###X�#�t##^/
�#z###�#<#z###�#D#z###�#L#z###�#�#�t##�#�#u##VXL#di##�D�#@�##
-D##b##�ND#di##(G<#�###(G�#r##O#�#��##�,�##u###+�#(u##+M�#3u##�X�#u�##y#�#?
u##+M##Eu##2#�#Wu##`#�#z###d###_u##+M##gu##�X�#e�##y#�#tu##+MQ#�u##�X�#�u##2#
�#�u##+M<##i##�XT#1S##�#T#0m##�X<#�k##�#

#zd##�X�#�u###Y##z###VY1#�###w#1#�u##�Y1#�u##w#9#�c##�Y9#�k##�Y9#�k##�Yi#�e
##h#1#�u##<###�u##u#�#�u##�R�#1S##�#�#8q###Z\#z###�K\#�###(G\
##b##�N�##i##�Kd#;2##�Nl#V�##�Nl#M�##�#�#��##h#�#
v##Q#�##v##�#�#z###�>�#Wv##�R!####�#�#z###h#�#:p##�\�#_v##�5!#xv##<#!
#�v##<#�#��##(Jq#�v##H]1#�v##w#I#Wc##�]I##w##�]A#0w##�]I##g##�]q#<w##<#q#Mw##
�]!#�##�###Yw##�###� ##�!##iw##�#)#z####^y#uw##u#!#��##5#!#w##u#!#�w##�#!
#��##u#�#��###B�#Om###B�#Zm###B�#�w###^I#rd##### �w##$^!
##1##�#y#�w##r#y#�w##�#!##�##<#�##v##u###�w##W#9#�w##uA##�w##�!##
x##�!�#�c##l^##lc##r^q#�&##|#q##x##�###(x##j_###-
##�#d#5E##�Dd#z###�Dt#5E##�Dt#z###�Dt##m##�#|##m##�#|
#5E##�D�##m##�#�#5E##�D|#z###�D�#z###�D�#��##<#! z###u#�#_v###`)
Px##8`) qx##>`) �x##D`�#�x##Q`9 �x##<#�##�##<#) �x##W`)
�x##]` #�x#### #�x#### #Jg##�X�#ϩ##�`A
#�##�#�#�x##�`�#+y##<#i#z####D1#Fy##s###Wy##|#y#�d###@ ##b##�X�#gy##!
a�#z#####) �y##>a) �y##>a�##i##<#i#�y##Xa�##�##�#�#2�##�#a z###�aa
z###u#a Oo##u#i z###u#q z###u#y z###u#� B5##�a�
z###�#)#z###u#�#�z##�a�#�z##<#�#;2##�E9#-E## #9#5E## #!#z###�#9##-
##�#9##�##<#�#�l##�J9#�z##�#9#b##�#9##-##�#�
lc###b�#��##�#�#��##�#y#uw##Nb�#z###�#�#z###�#�##-##�#�##-
##�#�##�##<#� z###u#i#z###u#Y#ϩ##*#q#�###+q#��##�*y#0{###By#I{###B�#z###�#�
��##u#� ��##<#� �{##�b� �{##�b� �{###c� �{##h#�
�{##�#� �{##�#!#z###�#�#�{##0,�#�{##�#� z###$c� (x##.c!
#z###�#�#F|##5c�di##>c!##�##<#� ��##�#1#M|##�#
�|##Nc�#��##�#� �|##�#�#�|##�#9
z###�#A
z###qc�#z###xc�#z###�#�#z###�#�#z###�#�#z###�#� #}##�#�##}##�#�##}##�#I
z#####�#6}##cA
?}##�c�#k}##�cQ
di##�c� Ύ##u#�#x}##�c�#�}##�c�#�}##�#Y
��##�#� �}##c�#�}##�ci
#~##�c�##~##�c� k}##�cy
di##�c�#K~##�c�#_~##�#�#n~##�#�#~~##�#�
z#####� �~##�c� �~##�#� �~##�#�#�3##�#�#z###u#9#�~##Z!
1#��##u#A#z###h#�#z###h#�#z###�#�##b##�N�#di##(G�#>�###e�#�###(G�
z###�#�
z###�#�
z###5e�
z###u#�
z###u#�
z###u#�
z###u#i#�##�#i#C�##�#�#z###�#i#�##�#i#�##�#�#z###�#�##b##�N�#di##(G�#>�#
##e�#z###�K�##b##�N�#di##(G1#/5##�f�#�###x
�#z###�#�#di##�D�#;2##0G�#V�##�D�#M�##�#�
z###�#1#Wu##>i1#/5##Fi�#_##�i�
z###u#y#[�##oE�#SS##x
##�n##�,##�n##y#�
r##O###��##�,�
�Q##+M�
�Q##+Mi#z###�i�
�h##�#�
�##�i1#zc##�i�#z###�###�t##�###�###j##u###j�
S�##�,�
U�##y###r##O#�#/5##x
�#di##�D�#1S##�#�#b�##�D�##�##�#�##i##<#�##�##�#�#,�##rB1#e�##�j1#zc##�T
1#/
5##�ji#z###�k�#z###�#�#z###�#�#[f##�k�#>�###l�#di##�D�#�k##�#�#1S##�#�#;2
##0G�#b�##�Di#/5##�#1#/
5##�l�#8�##j@Q#z###�#Q#S�###m�#rp##�O�#z####m�#j�##�#�#}�##<#�#��##<#�##q#
#<#�#��##=#�#��##�#�#��##�#I##w##�]�#ʀ##�#�#߀##�#�#�##�#�##�##�#�##�##
�#�##�##u#�#0�##u#�#;�##u#�#G�##�#�#�r##�#�#z###�#�#di##�D�#b�##�D!
#��##�#�#ϩ##�m##z###qc##]�##\L##��##�m�#>�##x
�#z###�#�#di##h###z###�#!
#z###�n1#z###�#�#z###�#�#>�###l�#di##�D�#�k##�#�#;2##0G�#V�##�D�#M�##�###
�##<###z###�n###�##�####�##<###"�##�n###b##�nq#,�##�###� ##T!
##<�##�###W�##o##1S##�###;2##�#I#<�##�###��## oQ#��##?
o##z###Doa#ʂ##Koi##i##<###�4##�###�##Qo##�##�o ##�##�o�#�d##�N #
�##�o###�##�o #�h##x
q#z###u# #z###u# #&b##h#9 ####*3!#z###.p!##�##�;1#z###u###E�##�#�#\
�##?
py#z###h#y#�##�#y#��##�#y#��##�#y#�##�#�#�##Yp�#�##�#Q#�##bp�#�##�#�#�w
##�#�# �##gp�#z###u#�#��##�###zd##�n�
,�##�;�#G�##�p�#1S##�#�#>�##�p1#Y�##�#q#lc##b#1#h�##�#�#��##<###��#
#�p##Cq###q�#z###7q##‫ل‬##Qo1#�##<#!#�r##�###�u##�#1#�##gq�#z###�#!
#�##d#1##�##�q!#+�##�q9#[�##�qq#�*##�q1##�##3#!#1�##x
q#z###�#q#>�##�rQ#�r##�r##G�##�###T�##<###z###�r�#z###�###
5##
Lq#Mw###s�#k�##�#i#z###�#I#�^##�#A#��##
s�#lc###s #�m###s�#�m##(s9#��##�#Y#��##�#�#�##Rs�#Xd##�s�
;2##�EY#Å##�s� #i##�#� �d###@� >�###@####1߅t##�##�####�##�###
5##�#)#;2##�#�#z###�#�#o�##�uY##-
##�M##z###�###di##�D##1S##�###>�###l##;2##0G
#V�##�D
#M�##�###z###�#y#��###B$#z###�K$##b##�N$#di##(G$#>�###eI##g##Uv,#z###�#,#di##
�D,#b�##�D##|l###G##�###(G�#��##�#q#�m##�v$#|
l###G$#�###(GY#ʆ##H#�#z###�#�#s###-w #Yg##�X�#(�##}w�#z###u#Q#�
##�w #s�##�w #A�##�w�#P�##�w�##
##�w#
z###�#a z�##�#a ;2##�E
��###x#
J-##<#�#/5##�@�#lc##0yL#;2##0G4#V�##�D4#M�##�#L#�k##�# #ć##�yq#̇##�#q#߇##�#!
/5##/@�#�##�y!##�##�y!#z###u#<#z###�#<#di##�D<#b�##�DD#|
l###GD##b##�ND#di##(GD##i##�KL#;2##�ND#z###�####5###@1#/5##<#q#!�##�!1
)�## |9
�1##�#�#]�###|�#{�###|�#��##bp�#��##P|Q
�###[|�#ň##b|Y
Ag##[|�#��##i|##ʆ##p|A#J-
##<#�#�x##�#�#z####D�#�1###+�#z###u#�#ш##�}Y#Ag##�}Y#‫ۈ‬##�#Y#�##�#Y#‫ۈ‬##a#�#z#
##�~�#�###4�##�##u#�##�###4�#*�##<#�#��##!4�#L�##�~ #�
##�# ##i##<#�#�u##u###B5##nW##�###H##�###Hi
x�##y #lc##q
��##�#�#�###��#��##�#�#�Q##��#z###�q#z###�#�#lc##��#/5##/
@�#:p###�9##`##J��#z###�#�#z###M!�#z###�6�#�,###7�#��##��y
��##<#y
ʼn##Z!�#z###�#�#Ln##M!�#̉##���#z###��#��##�#1#��##<#�##�##&��
>�##,��
�0##�;�#%�##h#!#F�##3��
#i##<#1#��##�#1#V�##gqq#c�##���
z###�#�
��##oE�
��## #�
z###u#�
z###�#�
��##�#1#̊##<#�#B5##��#؊##�#!#�1###��
-E##�;�#�##�;�##�###��
#�##u#�
z####�y
N�###��
z####��
z###�#�
h�##u#�
z###�#�
��##)��#wB##0��#��##�#�#ʼn##Z!1#��##u###�o##I�q#SS##�#�
z###M!y
ʋ##u#�#z###�#�#z###y#�##�##�#�##�##�# ##�##��
z###�###,#####4#�###8#�###<#�###@#�###D#�###H#�###L####P#&###T#7###X#P###\
#g###l#�###p#�###�#R###�#W###�#\###@#0###D#5###H#:###p#####t#%###x#H###|
#y###�#�###�#�###�#�###�#R###�#W###�#\###�#####�#####�#R###�#W###�#\
###�#####�#####�#####�#####�#####�#####�#$###�#R###�#W###�#\
###�#####�###########p#R###t#W###x#\###�#�
##�#####�#9###�#T###�#e###�#�###D#�
##H#�
##L#�
##P#�
##T#�
##X####\#####`####d#�##h#�##l#�##p#�##t#�##x#####|
#)###�#:###�#M###�#V###�#[###�#R###�#W###�#\###H#R###L#W###P#\###X#R###\
#W###`#\###�#R###�#W###�#\###�#O###�#�###�#�#####�###H#!###L#*###P#C###T#\
###X#e###\#t###`#�###d#�###h#�###l#�###|
#�###�#�###�#�###�#####�#*###�#9###�#e###�#N###�#a###�#z###�#�###�#�###�#
�###�#�###�#�###�#####�#-###�#B###�#]###�#�###�#�###�#�###�#�###
#�###$#�###(#�###�#b###H#R###L#W###�#R###�#W###�#\
###�#####�#R###�#W###�#R###�#W###8
R###<
W###@
\###D
####�#R###�#W###�#\###�#####�#R###�#W###�#\####
####p
R###t
W###|
R###�
W###�
\# #h\###tR###xW###|\###�R###�W###�\###�' ##�< ##�W ##�h ##��
!####
"####a"####�"##
#�"####(#####�### #�###$##$##(#�$##,#�$##0#X%##4#
&##8#E&##<#�&##@#�&##D#�&##H#�&##L#�&##P#;'##T#|'##X#�'##\#�'##`#+
(##d#R(##h#�(##l#�(##p#�)##t#�)##x#�)##|#*##�#**##�#g*##�#�*##�#�*##�#�*
#�#�+ #�#:# #�#R# #�#5# #�#\###�#�+##�#�+##�#�+##$#R###(#W###,#\
###0#####4#`- #<#W# #@#�-##p#W###t#\###�#W###�#\###�#####�#�-##�#�-##�#�-
#�#�- #�#\# #�### #�#W###�### #�#�- #�#�- #�#�-
#�#####�#�-##�#
.##�#�+####R#####W#####\#####W#####\#####�.####�.##$#W###(#\
###0#W###4#####8#####<#####@#$###D#
/##H##/##P#W###T#\###�#R###�#W###�#\
###�#####�#####�#####�#####�#####�#####�#$###�#
/##�##/####q/####|/##T##0##�#'1##�#01##�#R###�#W###�#\
###�#####�#####�#V2##d#R###h#W###l#\###p#####�#�4##�#�4#####5####/5####n5##
#�5#####5####/5####n5##L#�5##P#�5##T#�5##X#�5##\##6##`##6##d#
6##h##6##l##6##p##6##t# 6##x#%6##|#*6##�#/6##�#�-
##�#�+##�#46##�#R###�#M6##�#R6##�#W6##�#\
6##�#a6##�#f6##�#k6##�#p6##�#u6##�#z6##�#6##�#�6##�#�6##�#�6##�#�6##�#�6#
#�#�6##�#W###�#\###�#####�#####�#:###�#�.##,#�!##0#
"##4##7##8#�"##<#�7##@#�7##X#R###\#W###d#R###h#W###l#\###p#####t#####x#:###|
#�.##�#�; #�#W###�#F<##�#o<##�#�<##�#B=####Q=####b=####w=##
#�=####�=####�=####�=########
#�=##$#�=##<#�=##@#�=##D#�=##H#�=##L#�=##P#�=##T##>##X#�=##\#z>##`#�>'###;
%W#.###�#�.###�#�M.###�#M�.###�#n�.###s#�V.###�#M�.###�#��.###�#.###
� �#@� .#
####�T.#####|
U.#####��.###�#y�.###{#�M.###�#��.###�#��.###�#��.###�#݂.###�#a�.###�##��
###�#W#)###�#W#)###�#W##
##�#�M#
##s
#N#
##s#�M#
##s#�M#
##�
#N#
##�#AN####s
#N####s#�M####�#�TC###s
#NC###�#�TC###s#�Mc###�
#Nc###s#�Mc###�##U�###s#�M�###�#@U�###s
#N�###s#�M�###�#�U�###�
#N�###s#�M�###�#�U�###s
#N�###�##V�###s#�M�###s
#N#
##s#�M#
##�#0V#
##s
#N#
##�#ZV#
##s
#N#
##s#�MC
##s#�MC
##�#�Vc
##s#�Mc
##�#�V�
##s#�V###s#�M###�#�V###�
#NC##�
#NC##s#�MC##�##Wc##s#�Mc##�
#Nc##�#>Wi###�#W#
###�#W#)###�#W#I###�#W#i###�#W#�###�#W#�###�#W#�###�#W#�###�#W#
###�#W#i###�#W#�###�#W#�###�#W#�###�#W#�###�#W#
###�#W#I###�#W#i###�#W#�###�#W#�###�#W#)###{
/NI###{
8N�###{
/N ###{
�T)###{
�TI###{
8N�###�##` ###{
/N)###{
�TI###{
�Ti###{
8N�###s#�M�###s
/N�###�#�b####s#�M####�#�b####s
/N ###{
/N)###{
�TI###{
�Tc###�#�cc###s#�Mc###s
/Ni###{
8N�###s#�M�###s
/N�###�##d�###{
&N�###{
jU�###{
sU�###{
|U ###{
�U####s#�V)###{
�UC###s#�VI###{
�Ui###{
�U�###s#�V�###C#�e�###{
�U�###s#�V�###C#�e�###C#<e�###s#�V####�#W#C###s#�Vc###s#�V�#####�i�###s#�V#
###s#�V####s#�VC###C#�jC###s#�V�###s#�V�###{
/N�#####�i�###s#�V�###{
�T�###s#�V�###{
�T�###s#�V�###{
8N####s#�V ###{
/N####s#�V)###{
/NC###s#�Vc###s#�Vc#####�i�###s#�V�###s#�V####�#?n####s
/NC###�#inC###s
/NC###s#�n�###s#�V�###s#�V####s#�V######�iC###s#�Vc###s#�V !##�#W#�!
##�#W#�!##�#Lt�!##s
/N�!##�#W#�!##�#vt�!##s
/N�!##�
#N�!##�#�t�!##s#�T#"##s#�n#"##s
/N#"##�#in "##�#W##"##�#�t#"##s
/N)"##�#W#C"##�#�tC"##s
/NI"##�#W#�"##�##u�"##s
/N�"##�#Hu�"##s
/N�"##�#W#�"##�#W#)###�#W#C###s
/NC###�#ruc###�#W#i###�#W#�###�#W#�###�#W#�###�#W##$##�#W#)
$##�#W#I$##�#W#i$##�#W#�$##�#W#�$##�#W#�$##�#W##'##�##`)'##�#W#C'####�i�'###
#�i#(####�i

,##�#W#I,##�#W#)-##�#W#).##�#W#I.##�#W#i.##�#W#)/##�#W#C/##�#W#I/##�#W#c/
##�#W#i/##�#W#�/##�#W#�/##�#W#

0##�#W#)0##�#W#I0##�#W#�0##�#W#�0##�#W##1##�#W#)1##�#W#C1##�#W#I1##�#W#�2##�
#W#)7##�#W#I7##�#W#�9##�#W#�9##�#W# :##�#W# :##�#W#�:##�#W#�:##�#W#I;##
�#W#i;##�#W#�<##�#W#
=##�#W#)=##�#W#I=##�#W#i=##�#W#�=##�#W#�=##�#W#�=##�#W#�=##�#W#
>##�#W#)?##�#W#I?##�#W#i?##�#W#
@##�#W#i@##�#W#�@##�#W#�@##�#W#�@##�#W#
A##�#W#)A####W#IA####W#iA####W#�A####W#�A####W#�A####W#�A####W#

B####W#)B####W#iB##+#<eiB####�ViB####/N�B####/N�B####�V�B##3#Re�B####�V�B####/
N�B##;#je�B####�V�B##3#{e�B####/N�B##;#�e�B####/N�B####�V
C####W#)C##3#�e)C####/N)C####�VIC####W#iC####W#�C####W#�C####W#�C####W#
D####W#)D####W#ID####W#iD####W#�D####W#�D####W#�D####W#�D####W#

E####W#)E####W#IE####W#iE####W#�E####/N�E####�V�E##;#�f�E####�V�E##+#�f�E####
/N�E##;##g�E####�V�E####/N�E####�V�E##;#0g�E####/N F##;#Dg F####�V

F####/N)F####/N)F##3#Xg)F####�VIF####�VIF##;#ngIF####/NiF####/NiF####�ViF##;#�g�
F##;#�g�F####�V�F####/N�F####�V�F##;#�g�F####/N�F####�V�F##;#�g�F####/
N�F####/N�F##;#�g�F####�V G####�V G##;#�g

G####/N)G##;#�g)G####�V)G####/NIG####�VIG##;#�gIG####/NiG####/NiG####�ViG##;##h
�G####/N�G##;##h�G####�V�G####/N�G##;#
h�G####�V�G####/N�G##;#/h�G####�V�G####/N�G##;#?h�G####�V
H####W#)H####W#IH####W#iH####W#�H####W#�H####W#�H####W#�H####W#

I####W#)I####/N)I##;#�h)I####�VII##;#�hII####�VII####/NiI##;#�hiI####�ViI####/
N�I####�V�I##;#
i�I####/N�I####/N�I####�V�I##;##i�I####�V�I##;#4i�I####/N
J####W#)J####W#IJ####W#iJ####W#�J####W#�J####W#�J####W# K##;#Ni
K####�V

K####/N)K##;#Yi)K####�V)K####/NIK##;#ciIK####/NIK####�ViK####/NiK####�ViK##;#pi�
K####�V�K####/N�K##;#�i�K##;#�i�K####�V�K####/N�K####W#�K####W#
L####W#)L####W#IL####W#�L####/N�L####�V�L##+#<e�L####�V�L##;#�i�L####/
N�L##;#�i�L####/N�L####�V�M####W#�M####W#�M####W#�M####W#
N####W#)N####W#IN####W#iN####W#�N####W#�N####W#�N####W#�N####W#
O####W# O##{
&N)O####W#IO####W#iO####W#�O####W#�O##;#�j�O####�V�O####/
N�O####�V�O##;#�j�O####/N�O####/N�O####�V�O##;#�j P####�V P##;#Dg

P####/N)P##;##k)P####�V)P####/NIP####�VIP##;##kIP####/NiP####/NiP####�ViP##;#+k�
P####�V�P##;##h�P####/N�P####�V�P####/N�P##;##h�P##;#
h�P####�V�P####/N�P##;#/h�P####�V�P####/N Q##;#Gk Q####/N

Q####�V)Q##;#_k)Q####/N)Q####�VIQ####�VIQ####/NIQ##;#rkiQ##;#�kiQ####�ViQ####/
N�Q####�V�Q##;#�k�Q####/N�Q####W#�Q####W#�Q####W#

R####W#)R##;#�k)R####�V)R####/NIR####�VIR##;#jeIR####/NiR####/NiR####�ViR##;#�k
�R####/N�R####�V�R##;#�k�R####W#

S####W#)S####W#iS####W#�S####/N�S####�V�S##3#'l�S##3#7l�S####/N�S####�V�S####/
N�S##3#Gl�S####�V�S##;#Ul�S####/N�S####�V
T####W#)T####W#IT####W#iT####W#�T####W#�T####/N�T##;#hl�T####�V�T####/
N�T##;#je�T####�V�T####/N�T####�V�T##;#�k U####/N U##;#sl

U####�V)U##;#�l)U####�V)U####/NIU####W#iU####W#�U####W#�U####W#�U####W#�U####/
N�U####�V�U##;#�l V####�V V##;#�l

V####/N)V##;#�l)V####�V)V####/NIV##;#�lIV####�VIV####/NiV####/NiV####�ViV##;#�h
�V####W#�V####W#�V##;#�h�V####/N�V####�V�V##;#�l�V####/N�V####�V

W####W#)W####W#IW####W#iW####W#�W####W#�W##;#�l�W####�V�W####/N�W####�V�W####/
N�W##;#�l�W####�V�W##;#�h�W####/N X##;#�l X####�V
X####/N)X####/N)X####�V)X##;#�l�\##�#W#�\
##�#W#�`##�#W#�`##�#W#)a##�#W#Ia##�#W#�b##�#W#
c##�#W#id##�#W#�d##�#W#�d##�#W# e##{
�T@e##{
�T�e##{
�T�e##�#W#�e##�#W#�e##�#W#�e##�#W#Ig##�#W#ig##�#W#�g##�#W#�g##�#W#�g##�#W#
�g##�#W# h##�#W#)h##�#W#Ih##�#W#�h##�#W#�h##�#W#�i##�#W#�i##�#W#

k##�#W#)k##�#W#Ik##�#W#ik##�#W#�k##�#W#)l##�#W#�l##�#W#�l##�#W#In##�#W#in##�
#W#�n##�#W#

o##�#W#)o##�#W#Io##�#W#�r##�#W##z##[#W#d�##[#W#��##[#W#$###[#W#�###[#W#�###[#
W#D"##[#W#�$##[#W#d(##[#W#�*##[#W#�5##[#W##6##[#W#D6##[#W#��##[#W#`�####W#��##
##W#�####W#�####W#
�####W#@�####W#�#�>z#�u�#�u�#�>�#�>�#�>�#�>�#�>�#�>�#�>�#�>!
#�>�#�>�#�>�#�>�#�>�#�>�#�>#�>##�>##�>##�>-
#�>7#�>E#�>U#�>e#�>s#�>{#�>�#�>�#�>�#�>�#�>�#�>�#�>�#�>�#�>�#�>�#�>�
#�>�#�>##�>##�>##�>##�>##�>'#�>)#�>1#�>?#�>C#�>I#�>M#�>U#�>�#�>####
‫ن‬####�Z##2#~##I2#~######�#######�### ###�#~?�?�?�?�?�?�?�?�?�?
#@P@p@z@�@�@�@�@�@�@�@$A+A3AHAWA^AcA|
A�A�A�A�A�A#B#B)B6BGBPBaB�B�B�B#C$C6C<CCCYCiCuC�C�C�C�C�C$D8DKDUD_DtD�D�D�
D�D#E#E#E)E6EAEOEeEyEE�E�E�E�E�E�E#F#F#F#F
%F*F~F�F�FCG�G�G�#�G�G�G#HbHsH�H�H#I-
IqIwI~I�I�I7JPJ[J�J�J�J�J�J�J�J0KGKjKxK�K�K�K�K#L(L8LOLcLxL�L�L�L�L�L�L#
M#M"M.M=MRM_MqM�M�M�M�M�N�N#OUOqO�O�O�O
P/PFPTP�P�P�P�P�PLQhQvQ�Q�Q�Q�Q�Q�Q#R�R�R�R�R�R�R�R#S(S?
SESXS�S�S�S$T*T0T8TITQTaTtT~T�T�T�T�T9U#W}W�W�W�W�W�W�W�W#X
X(X.X_XjXzX�X�X�X�X�X�X#Y#Y&Y.Y7YBYaY�Y�Y�Y�Y�Y�Y�Y#ZFZ�Z�Z�Z�Z�\�\�\�\
#]#]']5]M]V]]]i]##|]�]�]�]�]�]�]#^#^+^?^P^\
^{^�^�^�^�^�^�^�^�^�^�^�^�^�^#_#_#_/
_B_P_Y_z_�_�_�_�_#`$`d`�`�`�`�`�`�`#a#a(aEa]a�a�a�a�a�a#b!bBbUbgbob�b
cEcbckc�c-
dAdddud�d�d�d�d�d�d�d�d#e)e�e�e�e#f#fifxf�f�f�fXh^hmhvh�h�h�h�h�h�i�i#j
LjWjcj�j�j�j�k�k�k#l�l#m&mHm|m�m�m�m�m�m�m�m
%n.n9n�n�n�n�n�n#o#o#o)oZoqo�o�o�o�o�o�o#p#p%p9pEplp|
p�p�p�p�p�p�p�p#q.q>qGqSq_qsq�q�q�q�q#r#r#r#r$r:rArFrMrVr_rer�r�r�r�r�r5s9
sBsIsYs�s�s�s�s7tFt�u�u�u�u#v$v/v5vAvcvnv�v�v�v�v�v#w
w#w7w�w�w�w�w�w�w#x
x#x,xQxbxmxzx�x�x�x�x�x�x�x#y#y)y;yZymy�y�y�y�y�y#z#z>zIzz�z�z�z�z#{
{({0{9{C{q{�{�{#| |x|�|#}"}E}Q}Y}b}l}�}�}�}�}�}�}�~�~�~�~�~# 0P[���#�
%�1�:�A�Q�`�r�~����������
�#�9�G�^�������́ �7�R�r�����������#################
###)###*###+###.###1###3###4###D###E#5#G#8#H#;#b#<#d#=#h#>#i#D#�#G#�#H#�#I#�#J#�
#K#�#L#�#M#�#N#�#P#�#Q#�#R#�#S#�#X#�#Y#�#Z#�#[#�#\
#�#]#�#^#�#_#�#`#�#e#�#f#�#h#�#i#�#j#�#k###l###q###r###s###v###w###}###~#####
#�###�#!
#�###�#)#�#F#�#W#�#[#�#]#�#^#�#`#�#c#�#f#�#i#�#w#�#y#�#{#�#~#�#�#�#�#�#
�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�###
�###�###�#

#�###�###�#@#�#O#�#^#�#g#�#i#�#l#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#
�#�#�#�#�#�#�#�###�###�#
#�###�#+#�#.#�#/#�#1#�#2#�#3#�#4###6# #7###8###9###:###;###<#&#?
#5#@#6#B#7#C#:#E#B#G#K#H#N#I#Y#J#f#N#i#O#j#P#l#Q#m#e#o#f#t#g#w#h#{#i#�#l#�#y#�#|
#�#}#�#~#�##�#�#�#�#�###� ######� ##
###�"##�###�"##�###�"##�###�###�###�'##�###�'##�###�'##�###�+##�###�+##�#
##�+##�###�+##�###�+##�###�###�###�+##�###�+##�###�+##�###�+##�####,##�###
,##�####,##�###',##�###4,##�###C,##�###R,##�###[,##�###g,##�###v,##�###�,##�#
##�,##�###�,##�###�,##�###�,##�###�,##�###�,##�###�,##�###�,##�###�,##�##
#�,##�###�'##�###9-######�-##�###�-######�-######?.##1###M.##1###\.##1####/
##[####/##a###`/##r###!
1##�###�+##�###>1##�###',##�####,##�###I1##�###V1##�###c1##�###n1##�###z1##�#
##�1##�###�1##�###�1##�###�,##�###�1##�###�1##�###�2##�###�
##~###F&##�###�8##�####@##�###(@##�###�"##�###B@##�###P@##�###i@##�###�@##�#
##�@##�###�@##�###�@##�###�@######�@##�###�@##�###�@##�###�@##�###�@##�###
A##!### A##'###8A##�###BA##-
###�7##�###LA##�###WA##�###fA##�###xA##3###�A##�###?E##� ##CE##!
###�E##�###�2##�###�.##!###�E##�

##�'##�###TO##�###bO##�###yO##�###�O##�###�O##�###�O##�###�O##�###�O##�####
P##�###<P##�###XP##�###dP##�###~P##�###�P##�###�P##�###�P##�###�P##�###bC##
�###qC##�###QC##�###�P##�###�P##�###�P##�####Q##�####Q##�###1Q##�###>Q##�###
MQ##�###hQ##�###uQ##�###�Q##�###�Q##�###~R##!###�R##!###8A##�###B###�
##�@##�###�@######�@##�###MS######�S##�
##�S##�
##F&##�###�T##�###�T##�###�T##�####U##�###�U##�###^W##�###|
W##�###�W##�###�W##�###F&##�###�T##�### Z##H
##.Z##�###�'##�###7Z##N
##FZ##�###�Z##�####[##}
##',##�####,##�###�+##�###z\##�###\##�
##z\##�###\##�
##Nc##�###Wc##�###`c##�###qc##�###}c##�###�c##�###�###�####d##�####d######*d#
#�###�d##�###�###�###�d##�###�d######�d##�###�###�###�d##�###�d#######e##�
###7e##�####,##�###Ae##�###Pe## ###7e##�####,##�###Ae##�###Pe##
###fg##�###vg##�###�g##�###�g##�###�g##�###�g######�g######�g##�###�g##A###W
c##�###�###G###�g##�###�g##�###fg##�###vg##�###�g##�###�g##�###�###G###�g##
�###�g##�###�g######�g######�g##�###�g##A###�g##�###Wc##�###�###�###�h##�##
#�###]###Ei##�###Ji##�###Vi##�
##MS######�###�###�i##�###Ei##�###�###�###�###�####j##�####j##�###MS######�i
##�###Zk## ###�###]###Ji##�###Ei##�###Vi##�
##�
##�
##nk##�###�k#######j##�####j######�###�###Ei##�###Ji##�###MS######MS######Gl##
�###Pl##�####j##�###al##�####n#######n##�###�n##�###�n##�###�n##�####o##�###
�o##�###�o##�###�o##�###wq##�###�8##�###�o##�###�s##�###�u##�###�u##�###�
u##�####v##�####v##�####v##�###�x##�###�x##�###�x##�###�x##�###�x##�####z##
�####z##�###%z##�###>z##�###CE##�###sz##�###e|##�###�+##�###q|##�###�|
##�###�|##�###�|
##�###G�##�###Z�##�###e�######n�##�###x�##�###�+##�###��##�###��######',##
�####,##�###�,##�###4,##�###��##�###��##�###��##�###ˀ##�###C,##�###Ԁ##�###
߀##�###v,##�###�##�###�,##�###�##�####�##�###�,##�####�##�###�,##�###
�##�###7�##�###?�##�###�+##�###Q�##�###k�##�###}�##�###��##�###
,##�###��##�###��##�###��##�###DŽ##�###R,##�###τ##�###�######�##�####�##�#
##�,##�###��######��######��######��##�###b�##$###i�##*###b�##$###��##�###
�-######F&##�###È##�###‫و‬##�###�-
##�###g�##*###t�##�###��##�###��##�###�d##�###{�##�###��##�###��##�###�
�##�###�##�###�##�%###�##�####�##�####�##� ###�##ߍ
###4�##�###�,##�###<�##Q###[�##Q###‫׎‬##�###Ei##�###!�##�###&�##�###!
�##�###&�##�###R�##�###�##�###�##�###c1##�###�P##�####�##�###(�##�###:�##
�###D�##�###S�##�###a�##�###��##�###�##�###]�##�###k�##�###v�######�,##�
###�.##�###��##�###�+##�###��##�###��##�###��######˕##�###R,##�###‫ڕ‬##�###
�P##�####�##�###*�##�###�
##�###5�##�###D�##�###F&##�###U�##�###c�##�###l�##�###��##�###��##�###�#
##�###��##�###��##�###�##�###�g##�###˚##�###�##�###�##�###fg##�###vg##�##
#�g##�###�g##�###"�##�###�###�###�g##�###�g##�###�###�###�h##�###�g##�###
z\##�###�g##�###Wc##�###4�##�###H�##�###
�##�### �##�###.�##�###5�##�###
�##�###D�##�###[�##�###�###�###��##�###�##�###�g##�###m�##�###��##�###�
�######�###�###�###�###��##�###��##�###��##�###ʠ##�###�##�###�##�###��#
#�###Ԁ##�###��##�###�P##�###��##�###�Q##�###ĥ##�###‫ڥ‬##�###�##�###
�##�###$�##�###:�##�###F�##�###��##�###
�##�###��##3###˨##�###C�######N�######�-
##�###C�######N�######TO##�###yO##�###z\
##�###��##�###��##�###ʪ##�###�##�###z\
##�###4�##�###N�##�###E�######T�######g�##�###r�##�###��##�###��##�###�##
�####�##�###�##�###o�##�###}�##�###�Z##�###��##�###��##�###�,##�###z\
##�###F&##�###-
�##�###C�##�###J�##�###��##�###��##�###L&##�###�##�###�###W###۸##]###�+##
�###��##c###�##i###�##o### �##u####�##�###!
�##�###,�##�###X�##W###l�##{###��##�###��##�###��##�####�##�####�##�###*
�##�###��##c###5�##�###|
�##�###D�##�###U�##�###c�##�###��##�###��######��##�###��##�###��##�###
�###�###��##�###�##�###�g##�#######�###�##�###��##�###ǿ##W###‫ݿ‬##�###�##�#
###�##�####�##�###-
�##�###>�##�###J�##�###a�##�###l�##�###w�##�###��##�###��##�###��##�###
��##�###��##�###��##�###��##�###��##�###c�##�###�###�###w�##�###��##�#
##Ei##�###��##�###��##�###�R##�###�,##�###��##�###��##�###��##�###��##
�###��##�####�##�###��##�###��##�####�##�####�##�####�##�### �##i###
%�##�###!�##�###c1##�###.�##�###7�##�###?
�##�###P�##�###^�##�###f�##�###�###W###�@##�####�##�####�##z###�@##�###
%�##�###X�##W### �##�###,�##�###_i##�###MS######-�##�###5�##�###
###�###
�##�### �##�###.�##�###��##c###5�##�###
�##�###[�##�###D�##�###�###�###��##�###�##�###�g##�###m�##�###��##�###�
�######�###&###�###,###��##�###��##�###��##�####�##�####�##�####�##�###/
�##�###��##�###��##�###��##�###��##�###I�##�###_�##�###p�##�###��##�##
#��##�###��##�###�+##�#######�###��##�###��##�###��##�###��##�###��##�
###_i##\###MS######5�##�###��##�###��##�###
%�##�###��##�###��##�###��##�###��##�###
�##�###��##�###�+##�###��##�###V�##�###��##�###��##�###��##�###��##�##
#��##�###��##�####,##�###��##�###��##�###��##�###�,##�###��##�###��##�
###��##�###��##�###��##�###Ei##�####�##�###��##�###'�##�###��##�###��##
�###Ei##�###��##�###��##�###��##�###
�##�###��##�####�##�###��##�###_i##�###MS######��##�###��##�###��##�###
��##�###Ei##�###�,##�###��##�###�###�###��##�###��##d###Ei##�###��##�###
�R##�###_i## ##��######��######1�##�###L�##�###��##�!
##X�##�###w�##�###Ei##�###�,##1###ma##(+##�.##[###��##�###��##.
+##��##�###"�##:
+##��##�####�##�###��##�###�n##�###��##�###�n##�###��##�###��##�###�n##
�###��##�###��##�####�##�####o##�####�##�###3�##�###��##�###��##�###��#
#�###��##�###Ei##�###CE##k/##��##�###��##�/##��##�###��##�/##��##�###z\
##�####�##�####�##�###��##�###��##�###�##�###�@######�@##�###�##�####�##
�###yO##�###�###�###�###�###�###�###L&##�###�###�###:###�###��##�###R###�#
##�###�###(###�###�###�###5###�###L###�###',##�####,##�###�+##�###g###�####Q
##�###v###�###�P##�###�###�###_i## 1###,##�#######�###
%###�###5###�###U###�###}#######�#######�###�###�###�###�###�###�###�###��#
#�###
###�###F&##�#######�###)###�###:###�###K###�###n###�######�###�###�###�###�#
##‫ڕ‬##�###�###�###�P##�###_i##�1##_i##�1##��##�###�@##�###�###�###M###�###^#
##�###t###�###�###�###�###�###�###�###�###�###�###�###�U##�###�+##�###&###
�###/###�###C###�###^###�###k###M3##w###S3##�###*###K###�###/
###�###e###�###5�##�###�P##�###
�##�###�###�###��##�###yO##�###�###�###��##�###F&##�###�##�###��##�###�#
##�###�###�###�###�###�###�###Ԁ##�###',##�####,##�###�+##�###�###�#######�#
######�###8###�###�,##�#######�###�###�###�###�###R###�###g�##*###�r##!
###�###(4##�###�###�Z##�###�###�###�###�###�###�###F&##�###�###�###yO##�###
�###�###�###�###�
##�###�###�###��##�###˕##�###�+##�###}�##�###k�##�###��##�###�"##�###�"#
#�###��##�###��##�###�"##�#######�#######�###+###�###:###�###G###�###S###�#
##R,##�###d###�###�x##�###x###�###�###�###τ##�###�###�###�##�####�##�###�,#
#�###�1##�###�+##�###R,##�###��##�###�%##�###&###�###G�##�###�
%##�###^###�####&##�###)&##�###8&##�###J&##d###�,##�###�1##�###b�##$###Z/
##{;##o/
##�;##f1##�;##t1##�;##�+##�###�1##�###�1##�;##�1##�;##�1##�;###2######��##
�####2##�;###2######�2##/
<###�##�###�+##�###�1##�###�2##3<##�2##9<###2######�2##/
<###3##*####3##3<##��##�###��##�###�d##�###�k##rF###l##*#########$#####A#####B
# ###C#####F####l#####m#####n#####v#####u#####x#####w#####z#####y#####|
#####{#####~#####}#####�##########�#!###�#!###�#####�#####�#%###�#
%###�#'###�#'###�#)###�#)###�#+###�#+###�#-###�#-###�#/###�#/
###�#1###�#1###�#3###�#3###�#5###�#5###�#7###�#7###�#9###�#9###�#;###�#;###�
#=###�#=###�#?###�#?
###�#A###�#A###�#C###�#C###�#E###�#E###�#G###�#G###�#I###�#I###�#K###�#K###�
#M###�#M###�#O###�#O###�#Q###�#S###�#U###�#W###�#Y###�#[###�#]###�#]###�#_##
#�#_###�#a###�#a###�#c###�#c###�#e###�#e###�#g###�#i###�#i###�#k###�#k###�#m
###�#m###�#o###�#o###�#q###�#q###�#s###�#s###�#u###�#u###�#w###�#w###�#y###�
#y###�#{###�#{###�#}###�#}###�####�####�#�###�#�###�#�###�#�###�#�###�#�
#####�#####�###A#�###N#�###O#�###P#�###Y#�###Z#�###[#�###\
#�###]#�###^#�###_#�###`#�###a#�###b#�###d#�###c#�###f#�###e#�###h#�###g#�##
#i#�###j#�###k#�###n#�###o#�###p#�###q#�###r#�###u#�###v#�###w#�###x#�###y#�
###z#�###{#�###}#�###~#�####�###�#�###�#�###�#�###�#�###�#�###�#�###�#�#
##�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#
�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###
�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�#
##�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#
�###�#�###�#�###�#�###�#####�#####�#####�#####�# ###�#####�#
###�#####�#####�###############################################'#!###+#####,#
%###/#'###0#'###1#)###2#+###3#-###4#/###6#1###7#1###>#3###?
#3###@#5###A#5###B#7###C#7###H#9###I#9###J#;###K#;###L#=###O#?
###P#A###Q#C###R#E###S#G###b#I###c#K###d#M###e#M###f#O###g#O###h#Q###i#Q###v#S###w#
S###x#U###{#W###|
#W###}#Y###�#[###�#]###�#]###�#_###�#a###�#c###�#e###�#g###�#i###�#i###�#k###
�#k###�#m###�#o###�#q###�#s###�#u###�#w###�#y###�#{###�#}###�####�#�###�#�
###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�
#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�##
#�#�###�#�#####�#####�#####�#####�#####�#####�#####�#####�### #�###
#�#####�###
#�###
#�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####�##
###�#####�#####�#####�#####�#####�### #�###!#�###"#�#####�###$#�###
%#�###&#�###'#�###(#�###+#�###1#�###2#�###3#�###4#�###5#�###6#�###:#�###?
#�###@#�###A#�###B#�###C#�###D#�###E#�###G#�###L#�###N#�###O#�###R#�###S#�##
#T#�###X#�###_#####c#####e#####f#####g# ###v#####w####z#####{#####|
#####}#####~##########�#####�#####�#####�#####�#####�#####�#####�#####�#####�
#!###�#!###�#####�#####�#%###�#%###�#'###�#'###�#)###�#)###�#+###�#+###�#-
###�#/###�#/
###�#1###�#1###�#3###�#3###�#5###�#5###�#7###�#9###�#9###�#;###�#;###�#=###�
#=###�#?###�#?
###�#A###�#A###�#C###�#C###�#E###�#G###�#G###�#I###�#I###�#K###�#K#####M#####
M#####O#####O#####Q#####Q#####S#####S#####U#####U#####W#####W#####Y#####Y#####[####
#[#####]#####]#####_#####_#####a#####a### #c#####c###"#e###!#e###$#g#####g###&#i###
%#i###(#k###'#k###*#m###)#m###,#o###+#o###.#q###-#q###0#s###/
#s###2#u###1#u###4#w###3#w###6#y###5#y###8#{###7#{###:#}###9#}###<####;####>#�###
=#�###@#�###?
#�###B#�###A#�###D#�###C#�###E#�###N#�###O#�###U#�###T#�###W#�###V#�###Y#�##
#X#�###[#�###Z#�###]#�###\
#�###_#�###^#�###a#�###`#�###c#�###b#�###e#�###d#�###g#�###f#�###i#�###h#�##
#k#�###j#�###m#�###l#�###o#�###n#�###q#�###p#�###s#�###r#�###t#�###�#�###�#
�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###
�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�#####�#####�##
###�#####�#####�#####�### #�###
#�#####�###
#�###
#�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####�##
###�###(#�###)#�###*#�###+#�###,#�###-
#�###.#�###0#�###1#�###2#�###3#�###7#�###8#�###9#�###:#�###;#�###<#�###?
#�###@#�###A#�###B#�###C#####D#####E#####F#####K#####L#####M#####N#####O# ###P#
###Q#####R#####S####T####U#####V#####Z#####[#####\
#####]#####`#####a#####b#####c#####d#####e#####f#####g#####o#####p#####q#####r#####
s#!###t#!###u#####v#####w#%###x#%###y#'###z#'###{#)###|#)###}#+###~#+####-###�#-
###�#/###�#/
###�#1###�#1###�#3###�#3###�#5###�#5###�#7###�#7###�#9###�#9###�#;###�#;###�
#=###�#=###�#?###�#?
###�#A###�#A###�#C###�#C###�#E###�#E###�#G###�#G###�#I###�#I###�#K###�#K###�
#M###�#M###�#O###�#O###�#Q###�#Q###�#S###�#S###�#U###�#U###�#W###�#W###�#Y##
#�#Y###�#[###�#[###�#]###�#]###�#_###�#_###�#a###�#a###�#c###�#c###�#e###�#e
###�#g###�#g###�#i###�#i###�#k###�#k###�#m###�#m###�#o###�#o###�#q###�#q###�
#s###�#s###�#u###�#u###�#w###�#w###�#y###�#y###�#{###�#{###�#}###�#}###�####
�####�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�#####�#####�#####�###
##�#####�#####�#####�#####�#####�### #�###
#�#####�###
#�###
#�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####�###"#�##
#%#�###$#�###'#�###&#�###)#�###(#�###+#�###*#�###-#�###,#�###.#�###0#�###/
#�###2#�###1#�###4#�###3#�###6#�###5#�###8#�###7#�###:#�###9#�###<#�###;#�##
#N#�###O#�###P#�###Q#�###h#�###i#�###k#�###l#�###m#�###x#�###y#�###z#�###{#�
####�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#
�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###
�#�###�#�#####�###
#�####�###
#�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####################
############ #####!#####"####### ###$# ###'#####(#####)####*#
###-#####.#####/#####5#####6#####7#####9#####:#####;#####<#####=#####>#####?
#####B#####C#!###D#!###M#####N#####P#%###Q#%###Z#'###[#'###\
#)###]#)###^#+###_#+###`#-###a#-###b#/###c#/
###g#1###h#3###i#3###k#5###l#5###m#7###n#7###o#9###p#9###s#;###t#=###u#?###v#?
###w#A###x#A###y#C###z#C###{#E###|
#E###~#G####G###�#I###�#I###�#K###�#K###�#M###�#M###�#O###�#O###�#Q###�#Q###
�#S###�#S###�#U###�#U###�#W###�#W###�#Y###�#Y###�#[###�#[###�#]###�#]###�#_#
##�#_###�#a###�#a###�#c###�#c###�#e###�#e###�#g###�#g###�#i###�#i###�#k###�#
k###�#m###�#m###�#o###�#o###�#q###�#q###�#s###�#s###�#u###�#u###�#w###�#w###
�#y###�#y###�#{###�#{###�#}###�#}###�####�####�#�###�#�###�#�###�#�###�#
�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###
�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�#
##�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�###�#�#####
�#####�#####�#####�#####�#####�#####�#####�### #�###
#�#####�###
#�###
#�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####�#####�##
###�#####�#####�### #�###!
#�###"#�#####�###$#�###&#�###*#�###8#�###9#�###:#�###@#�###A#�###B#�###C#�##
#D#�###E#�###F#�###G#�###H#�###I#�###J#�###K#�###L#�###M#�###N#�###O#�###R#�
###S#�###T#�###U#�###V#�###W#�###X#�###Y#�###Z#�###[#�###\
#�###]#�###^#�###_#�###`#�###a#�###b#�###c#�###h#�###i#�###j#�###k#�###l#�##
#m#�###n#####o#####p#####q#####r#####s#####t#####u#####v# ###w# ###x#####y#####z#
###{####|
#####}#####~##########�#####�#####�#####�#####�#####�#####�#####�#####�#####�
#####�#####�#####�#####�#####�#!###�#!###�#####�#####�#%###�#
%###�#'###�#'###�#)###�#)###�#+###�#-###�#/
###�#1###�#1###�#3###�#5###�#7###�#9###�#9###�#;###�#;###�#=###�#=###�#?
###�#?
###�#A###�#C###�#E###�#G###�#I###�#K###�#K###�#M###�#M###�#O###�#O###�#Q###�
#Q###�#S###�#S###�#U###�#W###�#Y###�#[###�#]###�#_###�#_###�#a###�#a###�#c##
#�#c###�#e###�#e###�#g###�#g###�#i###�#k###�#m###�#m###�#o###�#o###�#q###�#s
###�#u###�#w###�#y###�#{###�#{###�#}###�#}###�####�####�#�###�#�###�#�###
�#�###�#�###�#�#### �#### �#### �#### �#### �#### �#### �#### �#### �#### �###5
�###6 �###7 �###9 �###= �###@ �###s �###t �###u �###v �###w �###x �###y �###�
�###� �###� �###� �###� �###� �###� �###�
�###� �###� �####
�###
�###

�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�###
�###!
�###"
�####
�###$
�###%
�###&
�###'
�#####�#####�### #�###
#�#####�###
#�####�#####�#####�#####�#####�### #�###!
#�###"#�#####�###$#�###:#�###;#�###<#�###?
#�###B#�###C#####D#####E#####F#####G# ###I#####J#####K####L#
###M#####N#####O#####P#####X#####Y#####Z#####[#####a#####b#####c#####h#####i#####m#
####n#####o#!###p#!###q#####r#####s#%###t#
%###u#'###v#'###w#)###x#)###y#+###z#+###{#-###|#-###}#/###~#/
####1###�#1###�#3###�#3###�#5###�#7###�#7###�#9###�#9###�#;###�#;###�#=###�#
=###�#?###�#?
###�#A###�#A###�#C###�#C###�#E###�#E###�#G###�#G###�#I###�#I###�#K###�#K###�
#M###�#M###�#O###�#O###�#Q###�#Q###�#S###�#S###�#U###�#U###�#W###�#W###�#Y##
#�#Y###�#[###�#[###�#]###�#]###�#_###�#_###�#a###�#a###�#c###�#c###�#e###�#e
###�#g###�#g###�#i###�#i###�#k###�#m###�#o###�#q###�#s###�#u####
u####
w####
w####
y####
y####
{####
{####
}####
}###
###
####
�###
�###
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�####
�###!
�###"
�####
�###-
�###.
�###/
�###0
�###1
�###2
�###5
�###6
�###7
�###8
�###9
�###:
�###;
�###<
�###=
�###>
�###?
�###@
�###A
�###B
�###C
�###D
�###E
�###F
�###G
�###H
�###I
�###J
�###W
�###V
�###Y
�###X
�###[
�###Z
�###]
�###\
�###_
�###^
�###a
�###`
�###c
�###b
�###e
�###d
�###g
�###f
�###h
�###i
�###j
�###k
�###r
�###s
�###t
�###u
�###v
�###w
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
�###�
####�
####�
####�
####�
####�
####�
####�
####�
###�
###�
####�
####�
###�
###�
####�
####�
####�
#########�
############################################
#### ####
##########!###!##############%####%####'####)####)### +###!+###"-####-###$/###%
/###&1###'1###(3###)3###*5###+5###,7###-7###.9###/9###0;###1;###2=###3=###4?###5?
###6A###8C###9E###OG###mI###nK###�M###�O###�Q###�Q###�S###�S###�U###�W###�
W###�Y###�Y###�[###�[###�]###�]###�_###�_###�a###�c###�e###�g###�i###�k###�
m###�o###�q###�s###�u###�w###�w###�y###�y###�{###�{###�}###�
#@#"###O#�###O#�###O#�# #O#�###�#0##�#H###9####9####9# ##?
#�###@#�###D#"###Q#F###Q#H###�#v#�#�#x###�#z#{#�#|#�#�#~###�#�#
#�#�#u#�s##��##�##΁##‫ځ‬##�###�##.�##:�##E�##Q�##A�####�A#BLBfB�C�D�D�D�D�
DHEtE1F:F�F�F�F�F�F#G#G:G�G#H
H#H�K�K�L�N�N�N�N�S�S�S�W<XFXNX�X*Z2Z<Z�_�_�_#e#f~f�h�h�i�i�k#l#l#l#m?
m�n�n�u�u#v+vLvwvey�z�z#{#{##[#�i######]#�i######_#�i####D#E#I�####@#G#X�####
F#I#d�####@#K#q�####@#M#~�######O#��####F#Q#��######S#��######U#��######W#��
######Y#��######[#��######�##�####D#�#�2####@#�#X�####b#�#(�####D#�#7�####D
#�#C�####D#�#[�######�#m�######�#z�####D###��######�#��######�##�######�#�
�######�#��######�#
�####D#�#,�####@#�#z�####@#�#7�####D#�#C�####@#�#U�####@#�#c�####@#�#s�####
@#�#��######�#��## ###�#��## ###�#��## #D#�#��##
#@#�#��##
#@#�#��##
#@#�##�##
#@#�#'�####@#�#7�####@#�#F�####@###V�####@###j�##
#D###��####D###��####@#

#��####F#�#A+####F#�#P+####F#�#Y+####F#�#z+####F#�#�+####F#�#�+####F#�#�+###
#F#�#�+####F#�##,######[#p�##
###]#{3######_#�3######a#�3####�X##�#�X##�#�X##�#�X##�#�X##�#�X##�##�######
########�>�^####################i#####################
#�#####################
#r#######################r#####################
#7#######################[#######################u#####################
#?#####################
#m{################��####��######�#############�####h#######5�####�T######e�##
##�V######��####�z######�####��#######�####@�######a�####`#######��######
#################;#:#?
#>#R#Q#S#Q#T#Q#U#Q#V#Q#W#Q#o#n#p#n#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�
#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#
�###�#
############### ###!###"#######$###%###&###'###(###)###*###.#-#0#/#8#7#=#<#>#<#?
#<#@#<#A#<#B#<#D#C#F#E#O#N#n#m#o#m#p#m#q#m#r#m#u#t#v#t#w#t#�#�#�#�#�#:#�#�#�#�
#�#�]�#�]�#�]�#�]##]v#####<Module>#Microsoft.Build.Tasks.v3.5.dll#DirectoryGet
Files#Microsoft.Build.Shared#PathGetTempFileName#DirectoryExists#FileExists#FileCop
y#FileDelete#FileCreate#GenerateUniqueFileName#MetadataConversionUtilities#StreamMa
ppedString#Microsoft.Build.Shared.LanguageParser#ExceptionHandling#FileUtilities#It
emSpecModifiers#EscapingUtilities#FileMatcher#FileSystemEntity#GetFileSystemEntries
#Result#ToolTaskExtension#Microsoft.Build.Tasks#AL#AppDomainIsolatedTaskExtension#A
ppConfig#AppConfigException#BindingRedirect#DependentAssembly#RuntimeSection#AspNet
Compiler#AssemblyFoldersEx#Resolver#AssemblyFoldersExResolver#AssemblyFoldersResolv
er#DisposableBase#AssemblyInformation#AssemblyNameComparer#AssemblyNameReference#As
semblyNameReferenceAscendingVersionComparer#AssemblyResolution#AssemblyResolutionCo
nstants#BadImageReferenceException#CandidateAssemblyFilesResolver#ConflictLossReaso
n#CopyLocalState#CopyLocalStateUtility#DependencyResolutionException#DirectoryResol
ver#FrameworkPathResolver#GacResolver#GlobalAssemblyCache#HintPathResolver#Installe
dAssemblies#InvalidReferenceAssemblyNameException#NoMatchReason#RawFilenameResolver
#Reference#ReferenceResolutionException#ReferenceTable#ReferenceAssemblyExtensionPa
ir#ResolutionSearchLocation#TaskExtension#ResolveAssemblyReference#GetListPath#Reve
rseVersionComparer#TaskItemSpecFilenameComparer#UnificationReason#UnificationVersio
n#UnifiedAssemblyName#AssemblyFolder#StateFileBase#AssemblyRegistrationCache#Assemb
lyResources#AssignCulture#ResolveProjectBase#AssignProjectConfiguration#AssignTarge
tPath#ComReference#AxTlbBaseReference#AxReference#IBootstrapperBuilder#Microsoft.Bu
ild.Tasks.Deployment.Bootstrapper#BootstrapperBuilder#Graph#GraphNode#NodeColor#Gra
phNodeDependencyCountComparer#GraphNodeNameComparer#GraphNodeTimeComparer#IBuildMes
sage#BuildMessage#IBuildResults#BuildResults#IBuildSettings#BuildSettings#IProduct#
IProductCollection#IProductBuilder#IProductBuilderCollection#BuildMessageSeverity#C
omponentsLocation#NativeMethods#Package#PackageCollection#CopyAllFilesType#Product#
ProductBuilder#ProductBuilderCollection#ProductCollection#XmlValidationResults#Prod
uctValidationResults#ResourceUpdater#StringResource#FileResource#Util#CallTarget#Co
mbinePath#CommandLineBuilderExtension#MarshalReleaseComObject#ComDependencyWalker#C
omReferenceInfo#ComReferenceItemMetadataNames#ComReferenceResolutionException#ComRe
ferenceTypes#ComReferenceWrapperInfo#ItemMetadataNames#ConvertToAbsolutePath#Copy#C
reateManifestResourceName#CreateCSharpManifestResourceName#CreateItem#CreatePropert
y#CreateTemporaryVCProject#CreateVisualBasicManifestResourceName#ManagedCompiler#Cs
c#CSharpParserUtilities#TokenCharReader#CSharpTokenCharReader#TokenEnumerator#CShar
pTokenEnumerator#CSharpTokenizer#Token#CharLiteralToken#NullLiteralToken#SyntaxErro
rToken#UnrecognizedStringEscapeToken#EndOfFileInsideStringToken#NewlineInsideString
Token#EndOfFileInsideCommentToken#OperatorOrPunctuatorToken#OpenScopeToken#CloseSco
peToken#Culture#ItemCultureInfo#CultureStringUtilities#GetAttributes#SetAttributes#
SetLastAccessTime#SetLastWriteTime#GetDirectories#CopyFile#GetAssemblyName#GetAssem
blyMetadata#CreateFileStream#GetRegistrySubKeyNames#GetRegistrySubKeyDefaultValue#G
etLastWriteTime#Delete#Dependencies#DependencyFile#Error#Exec#ExtractedClassName#Re
adLinesFromFile#WriteLinesToFile#FindAppConfigFile#FindInList#FormatUrl#FormatVersi
on#_FormatType#GenerateManifestBase#AssemblyType#DependencyType#GenerateApplication
Manifest#_ManifestType#GenerateBootstrapper#GenerateDeploymentManifest#GenerateTrus
tInfo#GenerateResource#ProcessResourceFiles#Format#LineNumberStreamReader#TextFileE
xception#Entry#AssemblyNamesTypeResolutionService#GetAssemblyIdentity#GetFrameworkP
ath#GetFrameworkSdkPath#IComReferenceResolver#ICscHostObject#Microsoft.Build.Tasks.
Hosting#ICscHostObject2#ImportPFXKeyDlg#InvalidParameterValueException#IVbcHostObje
ct#IVbcHostObject2#LC#FindUnderPath#RemoveDuplicates#MakeDir#ApplicationIdentity#Mi
crosoft.Build.Tasks.Deployment.ManifestUtilities#Manifest#ReferenceComparer#Assembl
yManifest#ApplicationManifest#AssemblyAttributeFlags#AssemblyIdentity#FullNameFlags
#AssemblyReferenceType#BaseReference#AssemblyReference#AssemblyReferenceCollection#
ComImporter#ClassInfo#ConvertUtil#UpdateMode#UpdateUnit#DeployManifest#EmbeddedMani
festReader#FileAssociation#FileAssociationCollection#FileReference#ComClass#TypeLib
#WindowClass#ProxyStub#FileReferenceCollection#ManifestFormatter#ManifestReader#Com
Info#ManifestWriter#MetadataReader#IReferenceIdentity#IMetaDataDispenser#EnumResNam
eProc#RegKind#OutputMessageType#OutputMessage#OutputMessageCollection#PathUtil#Secu
rityUtilities#TrustInfo#ItemComparer#XmlNamespaces#XmlUtil#ResourceResolver#XPaths#
AssemblyNameExtension#EncodingUtilities#ErrorUtilities#ConversionUtilities#FileUtil
itiesRegex#InternalErrorException#ResourceUtilities#Message#MSBuild#ITaskItemEquali
tyComparer#IFixedTypeInfo#UCOMICreateITypeLib#CorMetaDataDispenser#IMetaDataImport#
IMetaDataImport2#CorOpenFlags#IMetaDataAssemblyImport#IClassFactory#CorAssemblyFlag
s#ASSEMBLYMETADATA#ASSEMBLYINFO_FLAG#ASSEMBLY_INFO#IAssemblyCache#AssemblyCacheFlag
s#REGKIND#CryptFlags#KeySpec#BlobType#CertStoreClose#IMAGE_FILE_HEADER#IMAGE_DATA_D
IRECTORY#IMAGE_OPTIONAL_HEADER32#IMAGE_OPTIONAL_HEADER64#IMAGE_NT_HEADERS32#IMAGE_N
T_HEADERS64#IMAGE_COR20_HEADER#CRYPTOAPI_BLOB#AssemblyComparisonResult#ParseState#P
iaReference#PropertyParser#PropertyNameValuePair#RedistList#FullNameComparer#Assemb
lyTableInfo#SubsetListFinder#AssemblyEntry#RegisterAssembly#RegistryHelper#RemoveDi
r#ResGenDependencies#ResXFile#ResolveComReference#ResolveComReferenceCache#ResolveK
eySource#ResolveManifestFiles#PublishInfo#MapEntry#AssemblyMap#FileMap#PublishState
#PublishFlags#ResolveNativeReference#ItemSpecComparerClass#ResolveVCProjectOutput#D
llGetClassObjectDelegate#ResolveNonMSBuildProjectOutput#RequiresFramework35SP1Assem
bly#SGen#SignFile#StrongNameException#StrongNameLevel#StrongNameUtils#SystemState#F
ileState#TaskLoggingHelperExtension#TlbReference#WhitespaceToken#LiteralToken#Boole
anLiteralToken#IntegerLiteralToken#HexIntegerLiteralToken#DecimalIntegerLiteralToke
n#StringLiteralToken#ExpectedIdentifierToken#ExpectedValidHexDigitToken#Unrecognize
dToken#CommentToken#IdentifierToken#KeywordToken#PreprocessorToken#OpenConditionalD
irectiveToken#CloseConditionalDirectiveToken#OperatorToken#TokenChar#Touch#Unregist
erAssembly#UpdateManifest#Vbc#VCBuild#VisualBasicParserUtilities#VisualBasicTokenCh
arReader#VisualBasicTokenEnumerator#VisualBasicTokenizer#LineTerminatorToken#Separa
torToken#LineContinuationToken#OctalIntegerLiteralToken#ExpectedValidOctalDigitToke
n#CodeMarkerEvent#Microsoft.Internal.Performance#Win32#System.Deployment.Internal.C
odeSigning#CRYPT_DATA_BLOB#AXL_SIGNER_INFO#AXL_TIMESTAMPER_INFO#ManifestSignedXml#S
ignedCmiManifest#CmiManifestSignerFlag#CmiManifestVerifyFlags#CmiManifestSigner#Cmi
StrongNameSignerInfo#CmiAuthenticodeSignerInfo#CmiAuthenticodeTimestamperInfo#CodeM
arkers#Warning#Constants#FX20Assembly#FX35Assembly#FXAssembly#ThisAssembly#mscorlib
#System#MulticastDelegate#Object#Enum#Microsoft.Build.Utilities.v3.5#Microsoft.Buil
d.Utilities#ToolTask#AppDomainIsolatedTask#ApplicationException#System.Collections#
IEnumerable#IDisposable#IComparer#IHashCodeProvider#ValueType#IComparable`1#Excepti
on#Task#System.Design#System.Windows.Forms.Design#AxImporter#IReferenceResolver#Com
mandLineBuilder#IEnumerator#MarshalByRefObject#System.IO#StreamReader#System.Compon
entModel.Design#ITypeResolutionService#Microsoft.Build.Framework#ITaskHost#System.W
indows.Forms#Form#System.Xml#XmlUrlResolver#IEqualityComparer#IComparable#System.Ru
ntime.InteropServices#ITypeLibExporterNotifySink#System.Runtime.Serialization#ISeri
alizable#TaskLoggingHelper#ITypeLibImporterNotifySink#System.Security#System.Securi
ty.Cryptography.Xml#SignedXml#.ctor#Invoke#IAsyncResult#AsyncCallback#BeginInvoke#E
ndInvoke#FileStream#GetTemporaryFileName#ITaskItem#TryConvertItemMetadataToBool#Str
eam#binaryStream#reader#forceANSI#currentPageNumber#finalPageNumber#charactersRead#
priorPage#currentPage#pagesAllocated#pageSize#RestartReader#get_PagesAllocated#get_
DefaultPageSize#GetAt#GetPage#ReadNextPage#ReadBlockStripEOF#AppendCharacterToStrea
m#LastCharacterInStream#SwapPages#IsZeroLengthStream#AbsoluteOffsetToPageOffset#Pag
eFromAbsoluteOffset#IsPastEnd#Substring#GetCharactersOnPage#PagesAllocated#DefaultP
ageSize#IsCriticalException#NotExpectedException#NotExpectedReflectionException#Fil
eTimeFormat#IsItemSpecModifier#IsDerivableItemSpecModifier#Hashtable#GetItemSpecMod
ifier#EnsureTrailingSlash#EnsureNoLeadingSlash#EnsureNoTrailingSlash#EndsWithSlash#
IsSlash#TrimAndStripAnyQuotes#GetFullPath#GetDirectory#HasExtension#executablePath#
get_CurrentExecutablePath#get_CurrentExecutableDirectory#get_CurrentExecutableConfi
gurationFilePath#FileInfo#GetFileInfoNoThrow#System.Text#StringBuilder#GetCurrentDi
rectoryStaticBuffer#CurrentExecutablePath#CurrentExecutableDirectory#CurrentExecuta
bleConfigurationFilePath#FullPath#RootDir#Filename#Extension#RelativeDir#Directory#
RecursiveDir#Identity#ModifiedTime#CreatedTime#AccessedTime#All#tableOfItemSpecModi
fiers#get_TableOfItemSpecModifiers#TableOfItemSpecModifiers#UnescapeAll#Escape#Cont
ainsReservedCharacters#ContainsEscapedWildcards#charsToEscape#recursiveDirectoryMat
ch#dotdot#directorySeparator#altDirectorySeparator#wildcardCharacters#directorySepa
ratorCharacters#defaultGetFileSystemEntries#defaultDirectoryExists#HasWildcards#Get
AccessibleFileSystemEntries#GetAccessibleFilesAndDirectories#GetAccessibleFiles#Get
AccessibleDirectories#GetLongPathName#SplitFileSpec#PreprocessFileSpecForSplitting#
RemoveInitialDotSlash#IsDirectorySeparator#RemoveProjectDirectory#IList#System.Text
.RegularExpressions#Regex#GetFilesRecursive#RegularExpressionFromFileSpec#GetFileSp
ecInfo#FileMatch#GetFiles#value__#Files#Directories#
FilesAndDirectories#isLegalFileSpec#isMatch#isFileSpecRecursive#fixedDirectoryPart#
wildcardDirectoryPart#filenamePart#get_Log#logExtension#get_HasLoggedErrors#get_Bag
#bag#GetBoolParameterWithDefault#GetIntParameterWithDefault#GenerateResponseFileCom
mands#GenerateCommandLineCommands#AddResponseFileCommands#AddCommandLineCommands#Lo
g#HasLoggedErrors#Bag#set_AlgorithmId#get_AlgorithmId#set_BaseAddress#get_BaseAddre
ss#set_CompanyName#get_CompanyName#set_Configuration#get_Configuration#set_Copyrigh
t#get_Copyright#set_Culture#get_Culture#set_DelaySign#get_DelaySign#set_Description
#get_Description#set_EvidenceFile#get_EvidenceFile#set_FileVersion#get_FileVersion#
set_Flags#get_Flags#set_GenerateFullPaths#get_GenerateFullPaths#set_KeyFile#get_Key
File#set_KeyContainer#get_KeyContainer#set_MainEntryPoint#get_MainEntryPoint#set_Ou
tputAssembly#get_OutputAssembly#set_Platform#get_Platform#set_ProductName#get_Produ
ctName#set_ProductVersion#get_ProductVersion#set_ResponseFiles#get_ResponseFiles#se
t_TargetType#get_TargetType#set_TemplateFile#get_TemplateFile#set_Title#get_Title#s
et_Trademark#get_Trademark#set_Version#get_Version#set_Win32Icon#get_Win32Icon#set_
Win32Resource#get_Win32Resource#set_SourceModules#get_SourceModules#set_EmbedResour
ces#get_EmbedResources#set_LinkResources#get_LinkResources#get_ToolName#GenerateFul
lPathToTool#Execute#AlgorithmId#BaseAddress#CompanyName#Configuration#Copyright#Del
aySign#Description#EvidenceFile#FileVersion#Flags#GenerateFullPaths#KeyFile#KeyCont
ainer#MainEntryPoint#OutputAssembly#Platform#ProductName#ProductVersion#ResponseFil
es#TargetType#TemplateFile#Title#Trademark#Version#Win32Icon#Win32Resource#SourceMo
dules#EmbedResources#LinkResources#ToolName#runtime#Load#XmlTextReader#Read#get_Run
time#StringEquals#Runtime#fileName#get_FileName#line#get_Line#column#get_Column#Ser
ializationInfo#StreamingContext#FileName#Line#Column#oldVersionLow#oldVersionHigh#n
ewVersion#set_OldVersionLow#get_OldVersionLow#set_OldVersionHigh#get_OldVersionHigh
#set_NewVersion#get_NewVersion#OldVersionLow#OldVersionHigh#NewVersion#bindingRedir
ects#System.Reflection#AssemblyName#partialAssemblyName#set_PartialAssemblyName#get
_PartialAssemblyName#set_BindingRedirects#get_BindingRedirects#PartialAssemblyName#
BindingRedirects#ArrayList#dependentAssemblies#get_DependentAssemblies#DependentAss
emblies#_updateable#_force#_debug#_clean#_aptca#_delaySign#_fixedNames#get_AllowPar
tiallyTrustedCallers#set_AllowPartiallyTrustedCallers#get_FixedNames#set_FixedNames
#get_MetabasePath#set_MetabasePath#get_PhysicalPath#set_PhysicalPath#get_TargetPath
#set_TargetPath#get_VirtualPath#set_VirtualPath#get_Updateable#set_Updateable#get_F
orce#set_Force#get_Debug#set_Debug#get_Clean#set_Clean#get_ProjectName#get_TargetNa
me#ValidateParameters#AllowPartiallyTrustedCallers#FixedNames#MetabasePath#Physical
Path#TargetPath#VirtualPath#Updateable#Force#Debug#Clean#ProjectName#TargetName#dir
ectoryNames#Microsoft.Win32#RegistryKey#FindDirectories#MatchingPlatformExists#IsVe
rsionInsideRange#GatherVersionStrings#ConvertToVersion#GetEnumerator#searchPathElem
ent#getAssemblyName#fileExists#Resolve#get_SearchPath#ResolveAsFile#FileMatchesAsse
mblyName#ResolveFromDirectory#SearchPath#crackAssemblyFoldersExSentinel#getRegistry
SubKeyNames#getRegistrySubKeyDefaultValue#wasMatch#registryKeyRoot#targetRuntimeVer
sion#registryKeySuffix#osVersion#platform#isInitialized#LazyInitialize#_disposed#Fi
nalize#Dispose#DisposeManagedResources#DisposeUnmanagedResources#GENMAN_STRING_BUF_
SIZE#GENMAN_LOCALE_BUF_SIZE#GENMAN_ENUM_TOKEN_BUF_SIZE#assemblyDependencies#assembl
yFiles#metadataDispenser#assemblyImport#Guid#importerGuid#get_Dependencies#get_File
s#ImportAssemblyDependencies#ImportFiles#AllocAsmMeta#ConstructAssemblyName#FreeAsm
Meta#comparer#Compare#Equals#GetHashCode#assemblyName#reference#ToString#CompareTo#
Create#System.Collections.Generic#IEnumerable`1#ResolveReference#CompileSearchPaths
#CompileDirectories#hintPathSentinel#assemblyFoldersSentinel#candidateAssemblyFiles
Sentinel#gacSentinel#frameworkPathSentinel#rawFileNameSentinel#assemblyFoldersExSen
tinel#candidateAssemblyFiles#DidntLose#HadLowerVersion#InsolubleConflict#WasNotPrim
ary#FusionEquivalentWithSameVersion#Undecided#YesBecauseOfHeuristic#YesBecauseRefer
enceItemHadMetadata#NoBecauseFrameworkFile#NoBecauseNoFrameworkPathWasProvided#NoBe
causePrerequisite#NoBecauseReferenceItemHadMetadata#NoBecauseReferenceFoundInGAC#No
BecauseConflictVictim#NoBecauseUnresolved#IsCopyLocal#frameworkPaths#installedAssem
blies#targetProcessorArchitecture#GetLocationImpl#GetLocation#GetGacPath#redistList
#Nullable`1#GetInfo#FindAssemblyNameFromSimpleName#sourceItemSpec#get_SourceItemSpe
c#SourceItemSpec#Unknown#FileNotFound#FusionNamesDidNotMatch#TargetHadNoFusionName#
NotInGac#NotAFileNameOnDisk#sourceItems#dependees#scatterFiles#errors#relatedFileEx
tensions#satelliteFiles#serializationAssemblyFiles#assembliesConsideredAndRejected#
resolvedSearchPath#conflictVictorName#conflictLossReason#conflictVictims#preUnifica
tionVersions#isBadImage#primarySourceItem#fullPath#directoryName#fileNameWithoutExt
ension#fullPathWithoutExtension#isPrimary#isPrerequisite#isRedistRoot#redistName#co
pyLocalState#dependenciesFound#hintPath#expectedExtensions#wantSpecificVersion#asse
mblyFolderKey#userRequestedSpecificFile#AddSourceItem#ICollection#AddSourceItems#Ge
tSourceItems#AddDependee#RemoveDependee#GetDependees#AttachScatterFiles#GetScatterF
iles#SetExecutableExtension#GetExecutableExtensions#get_WantSpecificVersion#get_Use
rRequestedSpecificFile#set_UserRequestedSpecificFile#AddError#GetErrors#AddRelatedF
ileExtension#GetRelatedFileExtensions#AddSatelliteFile#AddSerializationAssemblyFile
#GetSatelliteFiles#GetSerializationAssemblyFiles#get_FullPath#set_FullPath#get_Dire
ctoryName#get_FileNameWithoutExtension#get_FullPathWithoutExtension#get_HintPath#se
t_HintPath#get_AssemblyFolderKey#set_AssemblyFolderKey#get_IsPrimary#set_IsPrerequi
site#get_IsPrerequisite#set_IsRedistRoot#get_IsRedistRoot#set_RedistName#get_Redist
Name#get_PrimarySourceItem#get_IsBadImage#get_IsConflictVictim#AddConflictVictim#Ge
tConflictVictims#get_IsConflictVictor#get_ConflictVictorName#set_ConflictVictorName
#get_ConflictLossExplanation#set_ConflictLossExplanation#GetPreUnificationVersions#
AddPreUnificationVersion#get_IsUnified#get_CopyLocal#get_IsCopyLocal#get_IsResolved
#get_IsUnresolvable#get_DependenciesFound#set_DependenciesFound#AddAssembliesConsid
eredAndRejected#get_AssembliesConsideredAndRejected#get_ResolvedSearchPath#set_Reso
lvedSearchPath#MakeDependentAssemblyReference#MakePrimaryAssemblyReference#IsFramew
orkFile#SetFinalCopyLocalState#WantSpecificVersion#UserRequestedSpecificFile#Direct
oryName#FileNameWithoutExtension#FullPathWithoutExtension#HintPath#AssemblyFolderKe
y#IsPrimary#IsPrerequisite#IsRedistRoot#RedistName#PrimarySourceItem#IsBadImage#IsC
onflictVictim#IsConflictVictor#ConflictVictorName#ConflictLossExplanation#IsUnified
#CopyLocal#IsResolved#IsUnresolvable#DependenciesFound#AssembliesConsideredAndRejec
ted#ResolvedSearchPath#references#remappedAssemblies#findDependencies#findSatellite
s#findSerializationAssemblies#findRelatedFiles#allowedAssemblyExtensions#directoryE
xists#getDirectories#getAssemblyMetadata#compiledSearchPaths#AddReference#GetRefere
nce#GetReferences#NameAssemblyFileReference#SetPrimaryItems#SetPrimaryAssemblyRefer
enceItem#TryConvertToAssemblyName#TryGatherAssemblyNameEssentials#TryGetAssemblyNam
eComponent#SetPrimaryFileItem#FindRelatedFiles#FindSatellites#FindSerializationAsse
mblies#GetUnifiedAssemblyMetadata#GetUnifiedAssemblyNames#FindDependenciesAndScatte
rFiles#IsPseudoAssembly#ComputeClosure#RemoveReferencesInBlackList#Dictionary`2#Lis
t`1#RemoveDependencies#FindAssociatedFiles#ResolveAssemblyFilenames#ResolveConflict
sBetweenReferences#ResolveConflicts#BuildSimpleNameTable#ResolveAssemblyNameConflic
t#UnifyAssemblyNameVersions#GetReferenceItems#FindCopyLocalItems#assemblyKey#assemb
lyValue#get_Key#get_Value#Key#Value#fileNameAttempted#searchPath#reason#get_FileNam
eAttempted#set_FileNameAttempted#set_SearchPath#get_AssemblyName#set_AssemblyName#g
et_Reason#set_Reason#FileNameAttempted#Reason#cache#assemblyNames#installedAssembly
Tables#installedAssemblySubsetTables#ignoreDefaultInstalledAssemblyTables#ignoreDef
aultInstalledAssemblySubsetTables#targetFrameworkDirectories#searchPaths#appConfigF
ile#autoUnify#resolvedFiles#resolvedDependencyFiles#relatedFiles#copyLocalFiles#sug
gestedRedirects#targetFrameworkSubsets#fullTargetFrameworkSubsetNames#silent#projec
tTargetFrameworkAsString#projectTargetFramework#stateFile#get_AssemblyFiles#set_Ass
emblyFiles#get_TargetFrameworkSubsets#set_TargetFrameworkSubsets#get_Assemblies#set
_Assemblies#get_CandidateAssemblyFiles#set_CandidateAssemblyFiles#get_TargetFramewo
rkDirectories#set_TargetFrameworkDirectories#get_InstalledAssemblyTables#set_Instal
ledAssemblyTables#get_InstalledAssemblySubsetTables#set_InstalledAssemblySubsetTabl
es#get_IgnoreDefaultInstalledAssemblyTables#set_IgnoreDefaultInstalledAssemblyTable
s#get_IgnoreDefaultInstalledAssemblySubsetTables#set_IgnoreDefaultInstalledAssembly
SubsetTables#get_TargetProcessorArchitecture#set_TargetProcessorArchitecture#get_Se
archPaths#set_SearchPaths#get_AllowedAssemblyExtensions#set_AllowedAssemblyExtensio
ns#get_AllowedRelatedFileExtensions#set_AllowedRelatedFileExtensions#get_AppConfigF
ile#set_AppConfigFile#get_AutoUnify#set_AutoUnify#get_StateFile#set_StateFile#get_F
indDependencies#set_FindDependencies#get_FindSatellites#set_FindSatellites#get_Find
SerializationAssemblies#set_FindSerializationAssemblies#get_FindRelatedFiles#set_Fi
ndRelatedFiles#get_Silent#set_Silent#get_TargetFrameworkVersion#set_TargetFramework
Version#get_FullTargetFrameworkSubsetNames#set_FullTargetFrameworkSubsetNames#get_R
esolvedFiles#get_ResolvedDependencyFiles#get_RelatedFiles#get_SatelliteFiles#get_Se
rializationAssemblyFiles#get_ScatterFiles#get_CopyLocalFiles#get_SuggestedRedirects
#filesWritten#set_FilesWritten#get_FilesWritten#LogResults#LogReference#MessageImpo
rtance#ChooseReferenceLoggingImportance
#LogInputs#LogAttribute#LogPrimaryOrDependency#LogReferenceErrors#LogFullName#LogAs
sembliesConsideredAndRejected#LogDependees#LogRelatedFiles#LogSatellites#LogScatter
Files#LogCopyLocalState#LogConflict#ReadStateFile#WriteStateFile#GetAssemblyRemappi
ngsFromAppConfig#GenerateSubSetName#DumpTargetFrameworkSubsetLists#DetermineBlackLi
stGeneration#PopulateSuggestedRedirects#GetInstalledAssemblyTableInfo#FrameworkVers
ionFromString#IsAvailableForTargetFramework#FilterBySubtypeAndTargetFramework#Assem
blyFiles#TargetFrameworkSubsets#Assemblies#CandidateAssemblyFiles#TargetFrameworkDi
rectories#InstalledAssemblyTables#InstalledAssemblySubsetTables#IgnoreDefaultInstal
ledAssemblyTables#IgnoreDefaultInstalledAssemblySubsetTables#TargetProcessorArchite
cture#SearchPaths#AllowedAssemblyExtensions#AllowedRelatedFileExtensions#AppConfigF
ile#AutoUnify#StateFile#FindDependencies#Silent#TargetFrameworkVersion#FullTargetFr
ameworkSubsetNames#ResolvedFiles#ResolvedDependencyFiles#RelatedFiles#SatelliteFile
s#SerializationAssemblyFiles#ScatterFiles#CopyLocalFiles#SuggestedRedirects#FilesWr
itten#forwardCompare#System.Collections.IComparer.Compare#DidntUnify#FrameworkRetar
get#BecauseOfBindingRedirect#version#preUnified#postUnified#isUnified#unificationRe
ason#get_PreUnified#get_PostUnified#get_UnificationReason#PreUnified#PostUnified#as
semblyFolders#AddFoldersFromRegistryKey#CreateAssemblyFolders#GetAssemblyFolders#Se
rializeCache#Type#DeserializeCache#DeleteFile#assemblies#typeLibraries#get_Count#Ad
dEntry#GetEntry#Count#GetString#System.Resources#ResourceManager#get_PrimaryResourc
es#get_SharedResources#resources#sharedResources#PrimaryResources#SharedResources#f
iles#assignedFiles#assignedFilesWithCulture#assignedFilesWithNoCulture#cultureNeutr
alAssignedFiles#set_Files#get_AssignedFiles#get_AssignedFilesWithCulture#get_Assign
edFilesWithNoCulture#get_CultureNeutralAssignedFiles#AssignedFiles#AssignedFilesWit
hCulture#AssignedFilesWithNoCulture#CultureNeutralAssignedFiles#attributeProject#ge
t_ProjectReferences#set_ProjectReferences#projectReferences#XmlElement#cachedProjec
tElements#VerifyReferenceAttributes#VerifyProjectReferenceItems#CacheProjectElement
sFromXml#GetProjectItem#ProjectReferences#attrFullConfiguration#attrConfiguration#a
ttrPlatform#attrSetConfiguration#attrSetPlatform#get_SolutionConfigurationContents#
set_SolutionConfigurationContents#solutionConfigurationContents#get_AssignedProject
s#set_AssignedProjects#assignedProjects#get_UnassignedProjects#set_UnassignedProjec
ts#unassignedProjects#configPlatformSeparator#ResolveProject#SolutionConfigurationC
ontents#AssignedProjects#UnassignedProjects#rootFolder#get_RootFolder#set_RootFolde
r#RootFolder#get_ReferenceInfo#referenceInfo#get_ItemName#itemName#log#get_Ado27Ins
talled#ado27PropertyInitialized#ado27Installed#get_Ado27ErrorMessage#ado27ErrorMess
age#System.Runtime.InteropServices.ComTypes#TYPELIBATTR#UniqueKeyFromTypeLibAttr#Ar
eTypeLibAttrEqual#ITypeLib#GetTypeLibAttrForTypeLib#ITypeInfo#TYPEATTR#GetTypeAttrF
orTypeInfo#VARDESC#GetVarDescForVarIndex#FUNCDESC#GetFuncDescForDescIndex#GetTypeLi
bNameForITypeLib#GetTypeLibNameForTypeLibAttrs#StripTypeLibNumberFromPath#GetPathOf
TypeLib#guidADO20#guidADO21#guidADO25#guidADO26#guidADO27#RemapAdoTypeLib#DateTime#
FindExistingWrapper#ReferenceInfo#ItemName#Ado27Installed#Ado27ErrorMessage#get_Out
putDirectory#outputDirectory#get_ResolverCallback#resolverCallback#keyContainer#key
File#delaySign#IsWrapperUpToDate#GetWrapperPath#GetWrapperFileName#OutputDirectory#
ResolverCallback#GenerateWrapper#UCOMITypeLib#System.Windows.Forms.Design.AxImporte
r.IReferenceResolver.ResolveActiveXReference#ResolveActiveXReference#System.Windows
.Forms.Design.AxImporter.IReferenceResolver.ResolveComReference#System.Windows.Form
s.Design.AxImporter.IReferenceResolver.ResolveManagedReference#ResolveManagedRefere
nce#get_Path#set_Path#get_Products#Build#Path#Products#SETUP_EXE#SETUP_BIN#SETUP_RE
SOURCES_FILE#ENGINE_PATH#SCHEMA_PATH#PACKAGE_PATH#RESOURCES_PATH#BOOTSTRAPPER_NAMES
PACE#BOOTSTRAPPER_PREFIX#ROOT_MANIFEST_FILE#CHILD_MANIFEST_FILE#MANIFEST_FILE_SCHEM
A#CONFIG_TRANSFORM#EULA_ATTRIBUTE#HOMESITE_ATTRIBUTE#PUBLICKEY_ATTRIBUTE#HASH_ATTRI
BUTE#MESSAGE_TABLE#RESOURCE_TABLE#logging#logPath#path#XmlDocument#document#XmlName
spaceManager#xmlNamespaceManager#products#cultures#validationResults#fValidate#fIni
tialized#Merge#AddProduct#AddBuiltProducts#CopySetupToOutputDirectory#AddStringReso
urceForUrl#GetOutputFolders#ContainsCulture#get_Cultures#get_Validate#set_Validate#
get_BootstrapperPath#get_PackagePath#get_SchemaPath#Refresh#RefreshResources#Refres
hProducts#AddDependencies#AddIncludes#SelectRelatedProducts#OrderProducts#CreateNod
es#SortGraph#Stack#DepthFirstSearchVisit#GetCycle#LoadAndValidateXmlDocument#Explor
eDirectory#XmlNode#CreateProduct#CreatePackage#ReplaceAttributes#ReplaceAttribute#X
mlAttribute#MergeAttribute#UpdatePackageFileNodes#AppendNode#CombineElements#QueryF
orSubNode#CorrectPackageFiles#ReplaceStrings#BuildPackages#CreateProductNode#ReadAt
tribute#EnsureFolderExists#ClearReadOnlyAttribute#ByteArrayToString#GetFileHash#Rep
laceAttributeString#GetPackageForSettings#System.Globalization#CultureInfo#GetPacka
geForSettings_Helper#BuildResources#GetResourcesNodeForSettings#GetResourcesNodeFor
Settings_Helper#GetCodePage#ReplacePackageFileAttributes#CreateApplicationElement#A
ddAttribute#XmlToConfigurationFile#GetEmbeddedResourceStream#GetAssemblyPath#Report
Cycles#DumpXmlToFile#DumpStringToFile#VerifyHomeSiteInformation#AddVerificationInfo
rmation#GetPublicKeyOfFile#ConvertChildsNodeToAttributes#GetLogPath#GetIncludedProd
ucts#AddIncludedProducts#MapLCIDToCultureName#Cultures#Validate#BootstrapperPath#Pa
ckagePath#SchemaPath#nodes#get_Nodes#Nodes#color#product#finishingTime#edges#AddEdg
e#get_Product#get_Color#set_Color#get_FinishingTime#set_FinishingTime#get_Edges#Col
or#FinishingTime#Edges#white#gray#black#nameComparer#get_Severity#get_Message#get_H
elpKeyword#get_HelpId#Severity#HelpKeyword#HelpId#severity#message#helpKeyword#help
Code#helpId#msbuildMessageCodePattern#CreateMessage#get_HelpCode#HelpCode#get_Succe
eded#get_ComponentFiles#get_Messages#Succeeded#ComponentFiles#Messages#succeeded#co
mponentFiles#messages#AddMessage#AddComponentFiles#BuildSucceeded#SetKeyFile#get_Ap
plicationName#set_ApplicationName#get_ApplicationFile#set_ApplicationFile#get_Appli
cationUrl#set_ApplicationUrl#get_ComponentsUrl#set_ComponentsUrl#get_CopyComponents
#set_CopyComponents#get_LCID#set_LCID#get_FallbackLCID#set_FallbackLCID#get_OutputP
ath#set_OutputPath#get_ProductBuilders#get_ComponentsLocation#set_ComponentsLocatio
n#get_SupportUrl#set_SupportUrl#get_ApplicationRequiresElevation#set_ApplicationReq
uiresElevation#ApplicationName#ApplicationFile#ApplicationUrl#ComponentsUrl#CopyCom
ponents#LCID#FallbackLCID#OutputPath#ProductBuilders#SupportUrl#ApplicationRequires
Elevation#applicationName#applicationFile#applicationRequiresElevation#applicationU
rl#componentsLocation#componentsUrl#fCopyComponents#lcid#fallbackLCID#outputPath#su
pportUrl#productBuilders#culture#fallbackCulture#get_FallbackCulture#set_FallbackCu
lture#FallbackCulture#get_ProductBuilder#get_Name#get_ProductCode#get_Includes#Name
#ProductCode#Includes#Item#Add#Info#HomeSite#Relative#Absolute#BeginUpdateResourceW
#UpdateResourceW#EndUpdateResource#name#node#get_Node#get_ValidationPassed#get_Vali
dationResults#Node#ValidationPassed#ValidationResults#list#CopyAllFilesFalse#CopyAl
lFilesTrue#CopyAllFilesIfNotHomeSite#productCode#packages#includes#dependencies#mis
singDependencies#copyAllPackageFiles#get_CopyAllPackageFiles#get_MissingDependencie
s#AddPackage#AddIncludedProduct#AddDependentProduct#AddMissingDependency#get_Packag
es#GetPackageValidationResults#CopyAllPackageFiles#MissingDependencies#Packages#Ins
ert#table#Clear#filePath#validationErrors#validationWarnings#get_FilePath#System.Xm
l.Schema#ValidationEventArgs#SchemaValidationEventHandler#get_ValidationErrors#get_
ValidationWarnings#FilePath#ValidationErrors#ValidationWarnings#packageValidationRe
sults#AddPackageResults#PackageResults#stringResources#fileResources#AddStringResou
rce#AddFileResource#UpdateResources#StringToByteArray#Data#BOOTSTRAPPER_REGISTRY_PA
TH#DOTNET_FRAMEWORK_REGISTRY_PATH#REGISTRY_DEFAULTPATH#BOOTSTRAPPER_PACKAGE_PATH#de
faultPath#AddTrailingChar#IsUncPath#IsWebUrl#GetCultureInfoFromString#get_DefaultCu
ltureInfo#get_DefaultPath#ReadRegistryString#DefaultCultureInfo#DefaultPath#targets
#targetOutputs#runEachTargetSeparately#useResultsCache#get_Targets#set_Targets#get_
TargetOutputs#get_RunEachTargetSeparately#set_RunEachTargetSeparately#get_UseResult
sCache#set_UseResultsCache#Targets#TargetOutputs#RunEachTargetSeparately#UseResults
Cache#basePath#paths#combinedPaths#get_BasePath#set_BasePath#get_Paths#set_Paths#ge
t_CombinedPaths#set_CombinedPaths#BasePath#Paths#CombinedPaths#AppendWhenTrue#Appen
dPlusOrMinusSwitch#AppendByChoiceSwitch#AppendSwitchWithInteger#AppendSwitchAliased
#AppendNestedSwitch#GetQuotedText#AppendSwitchIfNotNull#AppendSwitchWithSplitting#I
sParameterEmpty#analyzedTypes#marshalReleaseComObject#encounteredProblems#get_Encou
nteredProblems#AnalyzeTypeLibrary#AnalyzeTypeInfo#CanSkipType#ScanImplementedTypes#
ScanDefinedVariables#ScanDefinedFunctions#ELEMDESC#AnalyzeElement#GetDependencies#C
learDependencyList#EncounteredProblems#typeLibPointer#attr#typeLibName#typeLibPath#
taskItem#InitializeWithTypeLibAttrs#InitializeWithPath#GetTypeLibId#ReleaseTypeLibP
tr#guid#versionMinor#versionMajor#privatized#wrapperTool#tlbimp#aximp#primary#prima
ryortlbimp#IsTlbImp#IsAxImp#IsPia#IsPiaOrTlbImp#Assembly#assembly#originalPiaName#f
usionName#alias#aliases#parentFile#privateMetadata#copyLocal#redist#resolvedFrom#de
stinationSubDirectory#specificVersion#link#subType#executableExtension#targetPath#d
ependentUpon#msbuildSourceProjectFile#msbuildSourceTargetName#targetFramework#frame
workDirectory#absolutePaths#get_AbsolutePaths#set_AbsolutePaths#AbsolutePaths#sourc
eFiles#destinationFolder#destinationFiles#skipUnchangedFiles#copiedFiles#overwriteR
eadOnlyFiles#get_SourceFiles#set_Source
Files#get_DestinationFolder#set_DestinationFolder#get_SkipUnchangedFiles#set_SkipUn
changedFiles#get_DestinationFiles#set_DestinationFiles#get_CopiedFiles#get_Overwrit
eReadOnlyFiles#set_OverwriteReadOnlyFiles#IsMatchingSizeAndTimeStamp#CopyFileWithLo
gging#MakeFileWriteable#ValidateInputs#InitializeDestinationFiles#DoCopyIfNecessary
#PathsAreIdentical#SourceFiles#DestinationFolder#SkipUnchangedFiles#DestinationFile
s#CopiedFiles#OverwriteReadOnlyFiles#resourceFiles#rootNamespace#manifestResourceNa
mes#resourceFilesWithManifestResourceNames#prependCultureAsDirectory#get_PrependCul
tureAsDirectory#set_PrependCultureAsDirectory#get_ResourceFiles#set_ResourceFiles#g
et_RootNamespace#set_RootNamespace#get_ManifestResourceNames#get_ResourceFilesWithM
anifestResourceNames#set_ResourceFilesWithManifestResourceNames#CreateManifestName#
IsSourceFile#FileMode#FileAccess#CreateFileStreamOverNewFileStream#IsValidEverettId
FirstChar#IsValidEverettIdChar#MakeValidEverettSubFolderIdentifier#MakeValidEverett
FolderIdentifier#MakeValidEverettIdentifier#PrependCultureAsDirectory#ResourceFiles
#RootNamespace#ManifestResourceNames#ResourceFilesWithManifestResourceNames#CreateM
anifestNameImpl#include#exclude#additionalMetadata#preserveExistingMetadata#get_Inc
lude#set_Include#get_Exclude#set_Exclude#get_PreserveExistingMetadata#set_PreserveE
xistingMetadata#get_AdditionalMetadata#set_AdditionalMetadata#CreateOutputItems#Exp
andWildcards#GetUniqueItems#Include#Exclude#PreserveExistingMetadata#AdditionalMeta
data#prop#set_Value#get_ValueSetByTask#ValueSetByTask#ConfigurationTypeExe#Configur
ationTypeDll#ConfigurationTypeLib#projectFile#get_ProjectFile#set_ProjectFile#confi
guration#outputProjectFile#get_OutputProjectFile#set_OutputProjectFile#referenceGui
ds#get_ReferenceGuids#set_ReferenceGuids#referenceAssemblies#get_ReferenceAssemblie
s#set_ReferenceAssemblies#referenceImportLibraries#get_ReferenceImportLibraries#set
_ReferenceImportLibraries#ReplaceProjectReferences#AddImportLibraries#FindToolInCon
figuration#GetConfigurationInformation#ProjectFile#OutputProjectFile#ReferenceGuids
#ReferenceAssemblies#ReferenceImportLibraries#set_AdditionalLibPaths#get_Additional
LibPaths#set_AddModules#get_AddModules#set_CodePage#get_CodePage#set_DebugType#get_
DebugType#set_DefineConstants#get_DefineConstants#set_EmitDebugInformation#get_Emit
DebugInformation#set_FileAlignment#get_FileAlignment#set_NoConfig#get_NoConfig#set_
NoLogo#get_NoLogo#set_NoWin32Manifest#get_NoWin32Manifest#set_Optimize#get_Optimize
#set_References#get_References#set_Resources#get_Resources#set_Sources#get_Sources#
set_TreatWarningsAsErrors#get_TreatWarningsAsErrors#set_Utf8Output#get_Utf8Output#s
et_Win32Manifest#get_Win32Manifest#Encoding#get_StandardOutputEncoding#ConfigureDeb
ugProperties#UseAlternateCommandLineToolToExecute#ListHasNoDuplicateItems#HandleTas
kExecutionErrors#hostCompilerSupportsAllParameters#get_HostCompilerSupportsAllParam
eters#set_HostCompilerSupportsAllParameters#CheckHostObjectSupport#CheckAllReferenc
esExistOnDisk#GetWin32ManifestSwitch#AdditionalLibPaths#AddModules#CodePage#DebugTy
pe#DefineConstants#EmitDebugInformation#FileAlignment#NoConfig#NoLogo#NoWin32Manife
st#Optimize#References#Resources#Sources#TreatWarningsAsErrors#Utf8Output#Win32Mani
fest#StandardOutputEncoding#HostCompilerSupportsAllParameters#useHostCompilerIfAvai
lable#set_AllowUnsafeBlocks#get_AllowUnsafeBlocks#set_CheckForOverflowUnderflow#get
_CheckForOverflowUnderflow#set_DocumentationFile#get_DocumentationFile#set_Disabled
Warnings#get_DisabledWarnings#set_ErrorReport#get_ErrorReport#set_LangVersion#get_L
angVersion#set_ModuleAssemblyName#get_ModuleAssemblyName#set_NoStandardLib#get_NoSt
andardLib#set_PdbFile#get_PdbFile#set_UseHostCompilerIfAvailable#get_UseHostCompile
rIfAvailable#set_WarningLevel#get_WarningLevel#set_WarningsAsErrors#get_WarningsAsE
rrors#set_WarningsNotAsErrors#get_WarningsNotAsErrors#AddReferencesToCommandLine#Is
LegalIdentifier#GetDefineConstantsSwitch#InitializeHostCompiler#HostObjectInitializ
ationStatus#InitializeHostObject#CallHostObjectToExecute#AllowUnsafeBlocks#CheckFor
OverflowUnderflow#DocumentationFile#DisabledWarnings#ErrorReport#LangVersion#Module
AssemblyName#NoStandardLib#PdbFile#UseHostCompilerIfAvailable#WarningLevel#Warnings
AsErrors#WarningsNotAsErrors#GetFirstClassNameFullyQualified#Extract#sources#positi
on#currentLine#Reset#get_CurrentLine#get_Position#set_Position#Skip#get_CurrentChar
acter#get_EndOfLines#GetCurrentMatchedString#Sink#SinkCharacter#SinkIgnoreCase#Matc
hNextIdentifierStart#SinkIdentifierStart#SinkIdentifierPart#SinkNewLine#SinkToEndOf
Line#SinkUntil#SinkMultipleHexDigits#SinkMultipleDecimalDigits#CurrentLine#Position
#CurrentCharacter#EndOfLines#SinkLongIntegerSuffix#SinkOperatorOrPunctuator#SinkStr
ingEscape#MatchRegularStringLiteral#SinkMultipleWhiteSpace#current#get_Reader#FindN
extToken#MoveNext#get_Current#Reader#Current#keywordList#innerText#get_InnerText#se
t_InnerText#set_Line#EqualsIgnoreCase#InnerText#GetItemCultureInfo#cultureNeutralFi
lename#cultureInfoStrings#IsValidCultureString#PopulateCultureInfoArray#FileAttribu
tes#treatErrorsAsWarnings#get_TreatErrorsAsWarnings#set_TreatErrorsAsWarnings#delet
edFiles#get_DeletedFiles#set_DeletedFiles#LogError#TreatErrorsAsWarnings#DeletedFil
es#GetDependencyFile#AddDependencyFile#RemoveDependencyFile#filename#lastModified#e
xists#get_LastModified#get_Exists#HasFileChanged#LastModified#Exists#text#get_Text#
set_Text#code#get_Code#set_Code#set_HelpKeyword#Text#Code#encodingParametersValid#c
ommand#userSpecifiedWorkingDirectory#workingDirectory#ignoreExitCode#outputs#workin
gDirectoryIsUNC#batchFile#customErrorRegex#customWarningRegex#ignoreStandardErrorWa
rningFormat#tempFile#get_Command#set_Command#get_WorkingDirectory#set_WorkingDirect
ory#get_IgnoreExitCode#set_IgnoreExitCode#get_CustomErrorRegularExpression#set_Cust
omErrorRegularExpression#get_CustomWarningRegularExpression#set_CustomWarningRegula
rExpression#get_IgnoreStandardErrorWarningFormat#set_IgnoreStandardErrorWarningForm
at#standardOutputEncoding#get_StandardErrorEncoding#standardErrorEncoding#get_StdOu
tEncoding#set_StdOutEncoding#get_StdErrEncoding#set_StdErrEncoding#get_Outputs#set_
Outputs#CreateTemporaryBatchFile#ExecuteTool#LogPathToTool#LogToolCommand#LogEvents
FromTextOutput#OutputMatchesRegex#ValidateParametersAccessor#GetWorkingDirectory#Ge
tWorkingDirectoryAccessor#get_StandardErrorLoggingImportance#get_StandardOutputLogg
ingImportance#Command#WorkingDirectory#IgnoreExitCode#CustomErrorRegularExpression#
CustomWarningRegularExpression#IgnoreStandardErrorWarningFormat#StandardErrorEncodi
ng#StdOutEncoding#StdErrEncoding#Outputs#StandardErrorLoggingImportance#StandardOut
putLoggingImportance#isInsideConditionalBlock#get_IsInsideConditionalBlock#set_IsIn
sideConditionalBlock#set_Name#IsInsideConditionalBlock#file#lines#get_File#set_File
#get_Lines#set_Lines#File#Lines#overwrite#get_Overwrite#set_Overwrite#Overwrite#pri
maryList#secondaryList#appConfigFileFound#get_PrimaryList#set_PrimaryList#get_Secon
daryList#set_SecondaryList#ConsultLists#IsMatchingItem#PrimaryList#SecondaryList#ma
tchFileNameOnly#itemFound#itemSpecToFind#caseSensitive#findLastMatch#get_List#set_L
ist#get_MatchFileNameOnly#set_MatchFileNameOnly#get_ItemFound#set_ItemFound#get_Ite
mSpecToFind#set_ItemSpecToFind#get_CaseSensitive#set_CaseSensitive#get_FindLastMatc
h#set_FindLastMatch#StringComparison#List#MatchFileNameOnly#ItemFound#ItemSpecToFin
d#CaseSensitive#FindLastMatch#inputUrl#outputUrl#get_InputUrl#set_InputUrl#get_Outp
utUrl#set_OutputUrl#InputUrl#OutputUrl#formatType#outputVersion#revision#specifiedF
ormatType#get_OutputVersion#set_OutputVersion#get_FormatType#set_FormatType#get_Rev
ision#set_Revision#OutputVersion#FormatType#Revision#assemblyVersion#description#en
tryPoint#inputManifest#maxTargetPath#outputManifest#processorArchitecture#startTime
#targetCulture#targetFrameworkVersion#manifest#OnManifestLoaded#OnManifestResolved#
GetObjectType#get_AssemblyVersion#set_AssemblyVersion#get_EntryPoint#set_EntryPoint
#get_InputManifest#set_InputManifest#get_MaxTargetPath#set_MaxTargetPath#get_Output
Manifest#set_OutputManifest#get_TargetCulture#set_TargetCulture#AddAssemblyNameFrom
Item#AddAssemblyFromItem#AddEntryPointFromItem#AddFileFromItem#CreateAssemblyIdenti
ty#BuildManifest#FindFileFromItem#GetDefaultFileName#GetItemAssemblyType#GetItemDep
endencyType#GetOutputPath#InitializeManifest#ResolveFiles#ResolveIdentity#SetItemAt
tributes#ValidateOutput#WriteManifest#ConvertFrameworkVersionToString#CompareFramew
orkVersions#AssemblyVersion#EntryPoint#InputManifest#MaxTargetPath#OutputManifest#T
argetCulture#Unspecified#Managed#Native#Satellite#Install#Prerequisite#clrVersion#c
onfigFile#errorReportUrl#iconFile#isolatedComReferences#manifestType#trustInfoFile#
fileAssociations#hostInBrowser#useApplicationTrust#publisher#suiteName#specifiedMan
ifestType#targetFrameworkSubset#requiresMinimumFramework35SP1#get_ClrVersion#set_Cl
rVersion#get_ConfigFile#set_ConfigFile#set_Dependencies#get_ErrorReportUrl#set_Erro
rReportUrl#get_FileAssociations#set_FileAssociations#get_HostInBrowser#set_HostInBr
owser#get_IconFile#set_IconFile#get_IsolatedComReferences#set_IsolatedComReferences
#get_ManifestType#set_ManifestType#get_OSVersion#set_OSVersion#set_Product#get_Publ
isher#set_Publisher#get_RequiresMinimumFramework35SP1#set_RequiresMinimumFramework3
5SP1#get_SuiteName#set_SuiteName#get_TargetFrameworkSubset#set_TargetFrameworkSubse
t#get_TrustInfoFile#set_TrustInfoFile#get_UseApplicationTrust#set_UseApplicationTru
st#BuildApplicationManifest#AddIsolatedComReferences#AddClickOnceFileAssociations#A
ddClickOnceFiles#BuildResolvedSettings#EnsureAssemblyReferenceExists#GetRequestedEx
ecutionLevel#ClrVersion#ConfigFile#ErrorReportUrl#FileAssociations#HostInBrowser#Ic
onFile#IsolatedComReferences#ManifestType#OSVersion#Publisher#RequiresMinimumFramew
ork35SP1#SuiteName#TargetFrameworkSubset#TrustInfoFile#UseApplicationTrust#ClickOnc
e#bootstrapperItems#copyComponents#validate#bootstrapperComponentFiles#bootstrapper
KeyFile#get_BootstrapperItems#set_Boots
trapperItems#get_BootstrapperKeyFile#set_BootstrapperKeyFile#get_BootstrapperCompon
entFiles#set_BootstrapperComponentFiles#ConvertStringToComponentsLocation#Bootstrap
perItems#BootstrapperKeyFile#BootstrapperComponentFiles#createDesktopShortcut#deplo
ymentUrl#disallowUrlActivation#install#mapFileExtensions#minimumRequiredVersion#tru
stUrlParameters#updateEnabled#updateInterval#updateMode#updateUnit#specifiedUpdateM
ode#specifiedUpdateUnit#get_CreateDesktopShortcut#set_CreateDesktopShortcut#get_Dep
loymentUrl#set_DeploymentUrl#get_DisallowUrlActivation#set_DisallowUrlActivation#ge
t_Install#set_Install#get_MinimumRequiredVersion#set_MinimumRequiredVersion#get_Map
FileExtensions#set_MapFileExtensions#get_TrustUrlParameters#set_TrustUrlParameters#
get_UpdateEnabled#set_UpdateEnabled#get_UpdateInterval#set_UpdateInterval#get_Updat
eMode#set_UpdateMode#get_UpdateUnit#set_UpdateUnit#BuildDeployManifest#CreateDeskto
pShortcut#DeploymentUrl#DisallowUrlActivation#MinimumRequiredVersion#MapFileExtensi
ons#TrustUrlParameters#UpdateEnabled#UpdateInterval#baseManifest#excludedPermission
s#targetZone#applicationDependencies#get_BaseManifest#set_BaseManifest#get_Excluded
Permissions#set_ExcludedPermissions#get_TargetZone#set_TargetZone#get_ApplicationDe
pendencies#set_ApplicationDependencies#StringToIdentityList#BaseManifest#ExcludedPe
rmissions#TargetZone#ApplicationDependencies#useSourcePath#additionalInputs#outputR
esources#unsuccessfullyCreatedOutFiles#stronglyTypedLanguage#stronglyTypedNamespace
#stronglyTypedManifestPrefix#stronglyTypedClassName#stronglyTypedFileName#publicCla
ss#stronglyTypedResourceSuccessfullyCreated#neverLockTypeAssemblies#foundNewestUnco
rrelatedInputWriteTime#newestUncorrelatedInputWriteTime#set_UseSourcePath#get_UseSo
urcePath#set_AdditionalInputs#get_AdditionalInputs#set_OutputResources#get_OutputRe
sources#set_StronglyTypedLanguage#get_StronglyTypedLanguage#set_StronglyTypedNamesp
ace#get_StronglyTypedNamespace#set_StronglyTypedManifestPrefix#get_StronglyTypedMan
ifestPrefix#set_StronglyTypedClassName#get_StronglyTypedClassName#set_StronglyTyped
FileName#get_StronglyTypedFileName#set_PublicClass#get_PublicClass#set_NeverLockTyp
eAssemblies#get_NeverLockTypeAssemblies#LogResgenCommandLine#GetNewestUncorrelatedI
nputWriteTime#NeedSeparateAppDomain#NeedSeparateAppDomainBasedOnSerializedType#Dete
rmineWhetherSerializedObjectLoads#SpecialChars#ByteArrayFromBase64WrappedString#Cre
ateOutputResourcesNames#RemoveUnsuccessfullyCreatedResourcesFromOutputResources#Rec
ordFilesWritten#ShouldRebuildResgenOutputFile#ShouldRebuildStronglyTypedResourceCla
ss#UseSourcePath#AdditionalInputs#OutputResources#StronglyTypedLanguage#StronglyTyp
edNamespace#StronglyTypedManifestPrefix#StronglyTypedClassName#StronglyTypedFileNam
e#PublicClass#NeverLockTypeAssemblies#resourcesHashTable#logger#get_StronglyTypedFi
lename#stronglyTypedFilename#stronglyTypedResourcesNamespace#stronglyTypedClassIsPu
blic#typeResolver#ResolveEventHandler#eventHandler#inFiles#outFiles#get_Unsuccessfu
llyCreatedOutFiles#get_StronglyTypedResourceSuccessfullyCreated#Run#ResolveEventArg
s#ResolveAssembly#ProcessFile#GetFullPathNoThrow#GetFormat#ReadResources#WriteResou
rces#CreateStronglyTypedResources#System.CodeDom.Compiler#CodeDomProvider#GenerateD
efaultStronglyTypedFilename#IResourceReader#ReadTextResources#IResourceWriter#Write
TextResources#AddResource#StronglyTypedFilename#UnsuccessfullyCreatedOutFiles#Stron
glyTypedResourceSuccessfullyCreated#XML#Binary#_lineNumber#_col#ReadLine#ReadToEnd#
get_LineNumber#get_LinePosition#LineNumber#LinePosition#_fileName#_column#value#cac
hedAssemblies#referencePaths#cachedTypes#GetAssembly#GetAssemblyByPath#GetPathOfAss
embly#GetType#ReferenceAssembly#ByteArrayToHex#version11Path#version20Path#version3
0Path#version35Path#get_FrameworkVersion11Path#get_FrameworkVersion20Path#get_Frame
workVersion30Path#get_FrameworkVersion35Path#FrameworkVersion11Path#FrameworkVersio
n20Path#FrameworkVersion30Path#FrameworkVersion35Path#get_FrameworkSdkVersion20Path
#get_FrameworkSdkVersion35Path#FrameworkSdkVersion20Path#FrameworkSdkVersion35Path#
ResolveComClassicReference#ResolveNetAssemblyReference#ResolveComAssemblyReference#
IsDesignTime#Compile#BeginInitialization#EndInitialization#SetAdditionalLibPaths#Se
tAddModules#SetAllowUnsafeBlocks#SetBaseAddress#SetCheckForOverflowUnderflow#SetCod
ePage#SetDebugType#SetDefineConstants#SetDelaySign#SetDisabledWarnings#SetDocumenta
tionFile#SetEmitDebugInformation#SetErrorReport#SetFileAlignment#SetGenerateFullPat
hs#SetKeyContainer#SetLangVersion#SetLinkResources#SetMainEntryPoint#SetModuleAssem
blyName#SetNoConfig#SetNoStandardLib#SetOptimize#SetOutputAssembly#SetPlatform#SetP
dbFile#SetReferences#SetResources#SetResponseFiles#SetSources#SetTargetType#SetTrea
tWarningsAsErrors#SetWarningLevel#SetWarningsAsErrors#SetWarningsNotAsErrors#SetWin
32Icon#SetWin32Resource#IsUpToDate#SetWin32Manifest#System.ComponentModel#IContaine
r#components#importToCertStore#ticksBeforeAutoClose#get_CountDownTimer#set_CountDow
nTimer#showCountDown#get_CountDownTimerShow#set_CountDownTimerShow#showPopups#get_S
howPopups#set_ShowPopups#countdownFormatMessage#keyContainerName#certBlob#noCountdo
wn#get_SuppressCountdown#set_SuppressCountdown#success#get_SuccessfullyImported#set
_SuccessfullyImported#thumbprint#get_Thumbprint#ImportKeyToCSP#ImportToCertStore#Ev
entArgs#buttonOk_Click#KeyEventArgs#UserAction_KeyDown#timerOneSecond_Tick#Initiali
zeComponent#Timer#timerOneSecond#TableLayoutPanel#tableLayoutPanel1#Button#buttonOk
#Label#labelCountdown#TextBox#password#labelPassword#labelKeyFile#labelIntro#button
Cancel#CountDownTimer#CountDownTimerShow#ShowPopups#SuppressCountdown#SuccessfullyI
mported#Thumbprint#paramName#get_ParamName#set_ParamName#actualValue#get_ActualValu
e#set_ActualValue#ParamName#ActualValue#SetGenerateDocumentation#SetImports#SetNoWa
rnings#SetOptionCompare#SetOptionExplicit#SetOptionStrict#SetOptionStrictType#SetRe
moveIntegerChecks#SetRootNamespace#SetSdkPath#SetTargetCompactFramework#SetOptionIn
fer#set_OutputLicense#get_OutputLicense#set_LicenseTarget#get_LicenseTarget#set_Out
putDirectory#set_ReferencedAssemblies#get_ReferencedAssemblies#OutputLicense#Licens
eTarget#ReferencedAssemblies#updateToAbsolutePaths#inPath#outOfPath#get_UpdateToAbs
olutePaths#set_UpdateToAbsolutePaths#get_InPath#set_InPath#get_OutOfPath#set_OutOfP
ath#UpdateToAbsolutePaths#InPath#OutOfPath#inputs#filtered#get_Inputs#set_Inputs#ge
t_Filtered#set_Filtered#Inputs#Filtered#get_Directories#set_Directories#get_Directo
riesCreated#directories#directoriesCreated#DirectoriesCreated#applicationManifestId
entity#deployManifestIdentity#url#assemblyIdentity#assemblyReferences#fileReference
s#sourcePath#inputStream#fileReferenceList#assemblyReferenceList#outputMessages#tre
atUnfoundNativeAssembliesAsPrerequisites#readOnly#get_AssemblyIdentity#set_Assembly
Identity#get_AssemblyReferences#CollectionToArray#get_FileReferences#get_InputStrea
m#set_InputStream#OnAfterLoad#OnBeforeSave#get_OutputMessages#get_ReadOnly#set_Read
Only#ResolveFile#ResolveFiles_1#ResolveFiles_2#ResolvePath#SortFiles#get_SourcePath
#set_SourcePath#get_TreatUnfoundNativeAssembliesAsPrerequisites#set_TreatUnfoundNat
iveAssembliesAsPrerequisites#UpdateEntryPoint#UpdateAssemblyReference#UpdateFileRef
erence#UpdateFileInfo#ValidateReferences#ValidatePlatform#IsMismatchedPlatform#get_
XmlAssemblyIdentity#set_XmlAssemblyIdentity#get_XmlAssemblyReferences#set_XmlAssemb
lyReferences#get_XmlDescription#set_XmlDescription#get_XmlFileReferences#set_XmlFil
eReferences#get_XmlSchema#set_XmlSchema#AssemblyReferences#FileReferences#InputStre
am#OutputMessages#ReadOnly#SourcePath#TreatUnfoundNativeAssembliesAsPrerequisites#X
mlAssemblyIdentity#XmlAssemblyReferences#XmlDescription#XmlFileReferences#XmlSchema
#externalProxyStubs#get_ExternalProxyStubs#get_XmlExternalProxyStubs#set_XmlExterna
lProxyStubs#ExternalProxyStubs#XmlExternalProxyStubs#entryPointIdentity#entryPointP
arameters#entryPointPath#isClickOnceManifest#oSMajor#oSMinor#oSBuild#oSRevision#oSS
upportUrl#oSDescription#trustInfo#fileAssociationList#FixupClrVersion#FixupEntryPoi
nt#get_WinXPRequired#get_IsClickOnceManifest#set_IsClickOnceManifest#get_OSDescript
ion#set_OSDescription#get_OSSupportUrl#set_OSSupportUrl#get_TrustInfo#set_TrustInfo
#ValidateCom#ValidateConfig#ValidateEntryPoint#ValidateFileAssociations#ValidateRef
erencesForNativeApplication#ValidateReferencesForClickOnceApplication#ValidateRefer
enceForPartialTrust#get_XmlConfigFile#set_XmlConfigFile#get_XmlEntryPointIdentity#s
et_XmlEntryPointIdentity#get_XmlEntryPointParameters#set_XmlEntryPointParameters#ge
t_XmlEntryPointPath#set_XmlEntryPointPath#get_XmlErrorReportUrl#set_XmlErrorReportU
rl#get_XmlFileAssociations#set_XmlFileAssociations#get_XmlHostInBrowser#set_XmlHost
InBrowser#get_XmlIconFile#set_XmlIconFile#get_XmlIsClickOnceManifest#set_XmlIsClick
OnceManifest#get_XmlOSMajor#set_XmlOSMajor#get_XmlOSMinor#set_XmlOSMinor#get_XmlOSB
uild#set_XmlOSBuild#get_XmlOSRevision#set_XmlOSRevision#get_XmlOSSupportUrl#set_Xml
OSSupportUrl#get_XmlOSDescription#set_XmlOSDescription#get_XmlProduct#set_XmlProduc
t#get_XmlPublisher#set_XmlPublisher#get_XmlSuiteName#set_XmlSuiteName#get_XmlSuppor
tUrl#set_XmlSupportUrl#get_XmlUseApplicationTrust#set_XmlUseApplicationTrust#WinXPR
equired#IsClickOnceManifest#OSDescription#OSSupportUrl#XmlConfigFile#XmlEntryPointI
dentity#XmlEntryPointParameters#XmlEntryPointPath#XmlErrorReportUrl#XmlFileAssociat
ions#XmlHostInBrowser#XmlIconFile#XmlIsClickOnceManifest#XmlOSMajor#XmlOSMinor#XmlO
SBuild#XmlOSRevision#XmlOSSupportUrl#XmlOSDescription#XmlProduct#XmlPublisher#XmlSu
iteName#XmlSupportUrl#XmlUseApplicationTrust#IsSigned#HasAllowPartiallyTrustedCalle
rsAttribute#HasPrimaryInteropAssemblyAttribute#HasImportedFromTypeLibAttribute#publ
icKeyToken#type#FromAssemblyName#FromManifest#FromManagedAssembly#FromNativeAssembl
y#FromFile#IsEqual#get_IsFrameworkAssembly#GetFullName#get_IsNeutralPlatform#get_Is
StrongName#get_ProcessorArchitecture#set_ProcessorArchitecture#get_PublicKeyToken#s
et_PublicKeyToken#get_Type#set_Type#get
_XmlName#set_XmlName#get_XmlVersion#set_XmlVersion#get_XmlPublicKeyToken#set_XmlPub
licKeyToken#get_XmlCulture#set_XmlCulture#get_XmlProcessorArchitecture#set_XmlProce
ssorArchitecture#get_XmlType#set_XmlType#IsFrameworkAssembly#IsNeutralPlatform#IsSt
rongName#ProcessorArchitecture#PublicKeyToken#XmlName#XmlVersion#XmlPublicKeyToken#
XmlCulture#XmlProcessorArchitecture#XmlType#Default#ClickOnceManifest#ManagedAssemb
ly#NativeAssembly#includeHash#group#hash#hashAlgorithm#isOptional#resolvedPath#size
#GetDefaultTargetPath#get_IncludeHash#set_IncludeHash#get_Group#set_Group#get_Hash#
set_Hash#get_IsOptional#set_IsOptional#get_ResolvedPath#set_ResolvedPath#get_Size#s
et_Size#get_SortName#get_XmlGroup#set_XmlGroup#get_XmlHash#set_XmlHash#get_XmlHashA
lgorithm#set_XmlHashAlgorithm#get_XmlIsOptional#set_XmlIsOptional#get_XmlPath#set_X
mlPath#get_XmlSize#set_XmlSize#IncludeHash#Group#Hash#IsOptional#ResolvedPath#Size#
SortName#XmlGroup#XmlHash#XmlHashAlgorithm#XmlIsOptional#XmlPath#XmlSize#referenceT
ype#get_IsVirtual#get_ReferenceType#set_ReferenceType#set_IsPrimary#get_XmlIsNative
#set_XmlIsNative#get_XmlIsPrerequisite#set_XmlIsPrerequisite#IsVirtual#ReferenceTyp
e#XmlIsNative#XmlIsPrerequisite#get_Item#Find#FindTargetPath#Remove#ToArray#typeLib
#comClasses#outputDisplayName#emptyArray#knownImplementedCategories#knownSubKeys#Ch
eckForUnknownSubKeys#CheckForUnknownValues#GetRegisteredClassInfo#get_Success#get_C
omClasses#get_TypeLib#Success#ComClasses#Progid#RegisteredPath#ThreadingModel#ToBoo
lean#Background#Foreground#Hours#Days#Weeks#ValidateDeploymentProvider#ValidateMini
mumRequiredVersion#get_XmlCreateDesktopShortcut#set_XmlCreateDesktopShortcut#get_Xm
lDeploymentUrl#set_XmlDeploymentUrl#get_XmlDisallowUrlActivation#set_XmlDisallowUrl
Activation#get_XmlInstall#set_XmlInstall#get_XmlMapFileExtensions#set_XmlMapFileExt
ensions#get_XmlMinimumRequiredVersion#set_XmlMinimumRequiredVersion#get_XmlTrustUrl
Parameters#set_XmlTrustUrlParameters#get_XmlUpdateEnabled#set_XmlUpdateEnabled#get_
XmlUpdateInterval#set_XmlUpdateInterval#get_XmlUpdateMode#set_XmlUpdateMode#get_Xml
UpdateUnit#set_XmlUpdateUnit#XmlCreateDesktopShortcut#XmlDeploymentUrl#XmlDisallowU
rlActivation#XmlInstall#XmlMapFileExtensions#XmlMinimumRequiredVersion#XmlTrustUrlP
arameters#XmlUpdateEnabled#XmlUpdateInterval#XmlUpdateMode#XmlUpdateUnit#id1#EnumRe
sNameCallback#defaultIcon#extension#progid#get_DefaultIcon#set_DefaultIcon#get_Exte
nsion#set_Extension#get_ProgId#set_ProgId#get_XmlDefaultIcon#set_XmlDefaultIcon#get
_XmlExtension#set_XmlExtension#get_XmlProgId#set_XmlProgId#DefaultIcon#ProgId#XmlDe
faultIcon#XmlExtension#XmlProgId#writeableType#proxyStubs#typeLibs#ImportComCompone
nt#get_IsDataFile#set_IsDataFile#get_ProxyStubs#get_TypeLibs#get_XmlComClasses#set_
XmlComClasses#get_XmlProxyStubs#set_XmlProxyStubs#get_XmlTypeLibs#set_XmlTypeLibs#g
et_XmlWriteableType#set_XmlWriteableType#IsDataFile#ProxyStubs#TypeLibs#XmlComClass
es#XmlProxyStubs#XmlTypeLibs#XmlWriteableType#clsid#threadingModel#tlbid#get_ClsId#
get_ThreadingModel#get_TlbId#get_XmlClsId#set_XmlClsId#get_XmlThreadingModel#set_Xm
lThreadingModel#get_XmlTlbId#set_XmlTlbId#ClsId#TlbId#XmlClsId#XmlThreadingModel#Xm
lTlbId#flags#helpDirectory#resourceid#FlagsFromInt#get_HelpDirectory#get_ResourceId
#get_XmlFlags#set_XmlFlags#get_XmlHelpDirectory#set_XmlHelpDirectory#get_XmlResourc
eId#set_XmlResourceId#HelpDirectory#ResourceId#XmlFlags#XmlHelpDirectory#XmlResourc
eId#versioned#get_Versioned#get_XmlVersioned#set_XmlVersioned#Versioned#XmlVersione
d#baseInterface#iid#numMethods#get_BaseInterface#get_IID#get_NumMethods#get_XmlBase
Interface#set_XmlBaseInterface#get_XmlIID#set_XmlIID#get_XmlNumMethods#set_XmlNumMe
thods#BaseInterface#IID#NumMethods#XmlBaseInterface#XmlIID#XmlNumMethods#GetComInfo
#GetXmlDocument#ReadEmbeddedManifest#ReadManifest#Deserialize#componentFileName#man
ifestFileName#get_ComponentFileName#get_ManifestFileName#ComponentFileName#Manifest
FileName#Serialize#_path#System.Collections.Specialized#StringDictionary#_attribute
s#_metaDispenser#_assemblyImport#_importerGuid#_refidGuid#HasAssemblyAttribute#get_
Attributes#Close#ImportAttributes#System.IDisposable.Dispose#GetGuidOfType#Attribut
es#GetAttribute#SetAttribute#EnumAttributes#Clone#DefineScope#OpenScope#OpenScopeOn
Memory#LOAD_LIBRARY_AS_DATAFILE#RT_MANIFEST#LoadLibraryExW#FreeLibrary#FindResource
#LoadResource#SizeofResource#LockResource#EnumResourceNames#LoadTypeLibEx#StrongNam
eTokenFromPublicKey#StrongNameFreeBuffer#SfcIsFileProtected#GetAssemblyIdentityFrom
File#RegKind_Default#RegKind_Register#RegKind_None#arguments#GetArguments#taskResou
rces#errorCount#warningCount#AddErrorMessage#AddWarningMessage#get_ErrorCount#LogTa
skMessages#get_WarningCount#ErrorCount#WarningCount#CanonicalizePath#CanonicalizeUr
l#GetPathSegments#IsAssembly#IsEqualPath#IsLocalPath#IsManagedAssembly#IsNativeAsse
mbly#IsPEFile#IsProgramFile#IsUrl#Everything#LocalIntranet#Internet#Custom#Permissi
onSet#ComputeZonePermissionSet#RemoveExcludedPermissions#AddIncludedPermissions#Get
NamedPermissionSetFromZone#GetNamedPermissionSet#GetRegistryPermissionSetByName#Rem
oveNonReferencedPermissions#SecurityElement#ParseElementForAssemblyIdentification#I
dentityListToPermissionSet#PermissionSetToIdentityList#PermissionSetToXml#XmlElemen
tToSecurityElement#XmlToIdentityList#XmlToPermissionSet#Uri#SecureString#System.Sec
urity.Cryptography.X509Certificates#X509Certificate2#SignPEFile#GetCommandLineParam
eters#GetPathToTool#GetCert#IsCertInStore#_inputPermissionSet#_inputTrustInfoDocume
nt#_isFullTrust#_outputPermissionSet#_preserveFullTrustPermissionSet#sameSiteSettin
g#sameSiteChanged#AddSameSiteAttribute#FixupPermissionSetElement#GetInputPermission
Set#GetInputPermissionSetElement#GetInputRequestedPrivilegeElement#GetRequestedPriv
ilegeElement#GetPermissionSetElement#GetOutputPermissionSet#GetOutputPermissionSetD
ocument#get_HasUnmanagedCodePermission#get_IsFullTrust#set_IsFullTrust#get_Permissi
onSet#set_PermissionSet#get_PreserveFullTrustPermissionSet#set_PreserveFullTrustPer
missionSet#ReadTrustInfo#get_SameSiteAccess#set_SameSiteAccess#Write#HasUnmanagedCo
dePermission#IsFullTrust#PreserveFullTrustPermissionSet#SameSiteAccess#Schema#fileN
ameInvalidChars#StreamWriter#logFileWriter#platforms#processorArchitectures#CopyStr
eam#FilterNonprintableChars#GetClrVersion#GetEmbeddedResourceString#GetFileInfo#Get
RegisteredOrganization#IsValidAssemblyName#IsValidCulture#IsValidFileName#IsValidVe
rsion#IsValidFrameworkVersion#PlatformToProcessorArchitecture#RemoveDuplicateItems#
SortItems#WriteFile#WriteLog#WriteLogFile#WriteTempFile#itemComparer#asmv1#asmv2#as
mv3#dsig#xrml#xsi#XmlNameTable#GetNamespaceManager#resolver#System.Security.Policy#
Evidence#evidence#GetQName#CloneElementToDocument#TrimPrefix#DictionaryEntry#XslTra
nsform#GetEntity#applicationRequestMinimumElement#assemblyElement#assemblyIdentityP
ath#clsidAttribute#comFilesPath#configBindingRedirect#defaultAssemblyRequestElement
#dependencyPublicKeyTokenAttribute#fileNameAttribute#fileSizeAttribute#hashElement#
idAttribute#languageAttribute1#languageAttribute2#manifestTrustInfoPath#permissionI
dentityQuery#permissionClassAttributeQuery#permissionSetElement#permissionSetRefere
nceAttribute#publicKeyTokenAttribute#requestedExecutionLevelPath#requestedPrivilege
Element#requestedExecutionLevelElement#sameSiteAttribute#securityElement#signatureP
ath#tlbidAttribute#trustInfoElement#trustInfoPath#unrestrictedAttribute#codebasePat
hs#emptyAttributeList#asAssemblyName#asString#unnamedAssembly#GetAssemblyNameEx#Cre
ateAssemblyName#CreateFullName#ReplaceVersion#get_CultureInfo#get_FullName#GetPubli
cKeyToken#get_UnnamedAssembly#CompareBaseNameTo#CompareBaseNameToImpl#CompareBaseNa
mesStringWise#get_IsUnnamedAssembly#GetAssemblyNameFromDisplayName#EscapeDisplayNam
eCharacters#FullName#UnnamedAssembly#IsUnnamedAssembly#get_CurrentSystemOemEncoding
#currentOemEncoding#CurrentSystemOemEncoding#LaunchMsBuildDebuggerOnFatalError#Thro
wInternalError#VerifyThrowNoAssert#VerifyThrow#ThrowInvalidOperation#VerifyThrowInv
alidOperation#ThrowArgument#VerifyThrowArgument#VerifyThrowArgumentOutOfRange#Verif
yThrowArgumentLength#VerifyThrowArgumentNull#Array#VerifyThrowArgumentArraysSameLen
gth#ConvertStringToBool#CanConvertStringToBool#ValidBooleanTrue#ValidBooleanFalse#C
onvertDecimalToDouble#ConvertHexToDouble#ConvertDecimalOrHexToDouble#ValidHexNumber
#ValidDecimalNumber#ValidDecimalOrHexNumber#DrivePattern#UNCPattern#ShowAssertDialo
g#ERROR_INSUFFICIENT_BUFFER#STARTUP_LOADER_SAFEMODE#S_OK#RUNTIME_INFO_DONT_SHOW_ERR
OR_DIALOG#FILE_TYPE_CHAR#STD_OUTPUT_HANDLE#kernel32Dll#mscoreeDLL#HandleRef#NullHan
dleRef#NullIntPtr#MAX_PATH#FindOnPath#GetOEMCP#GetProcAddress#LoadLibrary#GetReques
tedRuntimeInfo#GetModuleFileName#GetStdHandle#GetFileType#GetCurrentDirectory#Extra
ctMessageCode#GetHelpKeyword#FormatResourceString#FormatString#importance#get_Impor
tance#set_Importance#Importance#projects#properties#rebaseOutputs#stopOnFirstFailur
e#buildInParallel#unloadProjectsOnCompletion#skipNonexistentProjects#toolsVersion#t
argetAndPropertyListSeparators#get_Properties#set_Properties#get_Projects#set_Proje
cts#get_RebaseOutputs#set_RebaseOutputs#get_StopOnFirstFailure#set_StopOnFirstFailu
re#get_ToolsVersion#set_ToolsVersion#get_BuildInParallel#set_BuildInParallel#get_Un
loadProjectsOnCompletion#set_UnloadProjectsOnCompletion#get_SkipNonexistentProjects
#set_SkipNonexistentProjects#get_TargetAndPropertyListSeparators#set_TargetAndPrope
rtyListSeparators#BuildProjectsInParallel#ExpandAllTargetsAndProperties#CreateTarge
tLists#IBuildEngine2#ExecuteTargets#Properties#Projects#RebaseOutputs#StopOnFirstFa
ilure#ToolsVersion#BuildInParallel#UnloadProjectsOnCompletion#SkipNonexistentProjec
ts#TargetAndPropertyListSeparators#GetTypeAttr#ITypeComp#GetTypeComp#GetFuncDesc#Ge
tVarDesc#GetNames#GetRefTypeOfImplType#IMPLTYPEFLAGS#GetImplTypeFlags#GetIDsOfNames
#DISPPARAMS#GetDocumentation#INVOKEKIND#GetDllEntry#GetRefTypeInfo#AddressOfMember#
CreateInstance#GetMops#GetContainingTypeLib#ReleaseTypeAttr#ReleaseFuncDesc#Release
VarDesc#CreateTypeInfo#SetName#SetVersi
on#SetGuid#SetDocString#SetHelpFileName#SetHelpContext#SetLcid#SetLibFlags#SaveAllC
hanges#CloseEnum#CountEnum#ResetEnum#EnumTypeDefs#EnumInterfaceImpls#EnumTypeRefs#F
indTypeDefByName#GetScopeProps#GetModuleFromScope#GetTypeDefProps#GetInterfaceImplP
rops#GetTypeRefProps#ResolveTypeRef#EnumMembers#EnumMembersWithName#EnumMethods#Enu
mMethodsWithName#EnumFields#EnumFieldsWithName#EnumParams#EnumMemberRefs#EnumMethod
Impls#EnumPermissionSets#FindMember#FindMethod#FindField#FindMemberRef#GetMethodPro
ps#GetMemberRefProps#EnumProperties#EnumEvents#GetEventProps#EnumMethodSemantics#Ge
tMethodSemantics#GetClassLayout#GetFieldMarshal#GetRVA#GetPermissionSetProps#GetSig
FromToken#GetModuleRefProps#EnumModuleRefs#GetTypeSpecFromToken#GetNameFromToken#En
umUnresolvedMethods#GetUserString#GetPinvokeMap#EnumSignatures#EnumTypeSpecs#EnumUs
erStrings#GetParamForMethodIndex#EnumCustomAttributes#GetCustomAttributeProps#FindT
ypeRef#GetMemberProps#GetFieldProps#GetPropertyProps#GetParamProps#GetCustomAttribu
teByName#IsValidToken#GetNestedClassProps#GetNativeCallConvFromSig#IsGlobal#EnumGen
ericParams#GetGenericParamProps#GetMethodSpecProps#EnumGenericParamConstraints#GetG
enericParamConstraintProps#GetPEKind#GetVersionString#ofRead#ofWrite#ofCopyMemory#o
fCacheImage#ofNoTypeLib#GetAssemblyProps#GetAssemblyRefProps#GetFileProps#GetExport
edTypeProps#GetManifestResourceProps#EnumAssemblyRefs#EnumFiles#EnumExportedTypes#E
numManifestResources#GetAssemblyFromScope#FindExportedTypeByName#FindManifestResour
ceByName#FindAssembliesByName#LockServer#afPublicKey#afRetargetable#usMajorVersion#
usMinorVersion#usBuildNumber#usRevisionNumber#rpLocale#cchLocale#rpProcessors#cProc
essors#rOses#cOses#VALIDATE#GETSIZE#cbAssemblyInfo#dwAssemblyFlags#uliAssemblySizeI
nKB#pszCurrentAssemblyPathBuf#cchBuf#UninstallAssembly#QueryAssemblyInfo#CreateAsse
mblyCacheItem#CreateAssemblyScavenger#InstallAssembly#ZAP#GAC#DOWNLOAD#TYPE_E_REGIS
TRYACCESS#TYPE_E_CANTLOADLIBRARY#HRESULT_E_CLASSNOTREGISTERED#GENERIC_READ#PAGE_REA
DONLY#FILE_MAP_READ#FILE_TYPE_DISK#SE_ERR_ACCESSDENIED#IMAGE_NT_OPTIONAL_HDR32_MAGI
C#IMAGE_NT_OPTIONAL_HDR64_MAGIC#IMAGE_DIRECTORY_ENTRY_COMHEADER#COMIMAGE_FLAGS_STRO
NGNAMESIGNED#Crypt32DLL#Advapi32DLL#MscoreeDLL#InvalidIntPtr#GUID_TYPELIB_NAMESPACE
#GUID_ExportedFromComPlus#IID_IUnknown#IID_IDispatch#IID_ITypeInfo#IID_IEnumVariant
#IID_IDispatchEx#IID_StdOle#RegisterTypeLib#SYSKIND#UnregisterTypeLib#LoadRegTypeLi
b#QueryPathOfRegTypeLib#FileShare#CreateFile#CloseHandle#CreateFileMapping#MapViewO
fFile#UnmapViewOfFile#ImageNtHeader#ImageRvaToVa#CreateAssemblyCache#GetCachePath#C
ompareAssemblyIdentity#PFXImportCertStore#CertCloseStore#CertEnumCertificatesInStor
e#CryptAcquireCertificatePrivateKey#CryptGetUserKey#CryptExportKey#CryptDestroyKey#
CryptReleaseContext#CertFreeCertificateContext#StrongNameKeyInstall#StrongNameGetPu
blicKey#REGKIND_DEFAULT#REGKIND_REGISTER#REGKIND_NONE#Exportable#UserProtected#Mach
ineKeySet#UserKeySet#AT_KEYEXCHANGE#AT_SIGNATURE#SIMPLEBLOB#PUBLICKEYBLOB#PRIVATEKE
YBLOB#PLAINTEXTKEYBLOB#OPAQUEKEYBLOB#PUBLICKEYBLOBEX#SYMMETRICWRAPKEYBLOB#CERT_CLOS
E_STORE_FORCE_FLAG#CERT_CLOSE_STORE_CHECK_FLAG#Machine#NumberOfSections#TimeDateSta
mp#PointerToSymbolTable#NumberOfSymbols#SizeOfOptionalHeader#Characteristics#Virtua
lAddress#Magic#MajorLinkerVersion#MinorLinkerVersion#SizeOfCode#SizeOfInitializedDa
ta#SizeOfUninitializedData#AddressOfEntryPoint#BaseOfCode#BaseOfData#ImageBase#Sect
ionAlignment#MajorOperatingSystemVersion#MinorOperatingSystemVersion#MajorImageVers
ion#MinorImageVersion#MajorSubsystemVersion#MinorSubsystemVersion#Win32VersionValue
#SizeOfImage#SizeOfHeaders#CheckSum#Subsystem#DllCharacteristics#SizeOfStackReserve
#SizeOfStackCommit#SizeOfHeapReserve#SizeOfHeapCommit#LoaderFlags#NumberOfRvaAndSiz
es#DataDirectory#signature#fileHeader#optionalHeader#cb#MajorRuntimeVersion#MinorRu
ntimeVersion#MetaData#EntryPointTokenOrEntryPointRVA#StrongNameSignature#CodeManage
rTable#VTableFixups#ExportAddressTableJumps#ManagedNativeHeader#cbData#pbData#ACR_U
nknown#ACR_EquivalentFullMatch#ACR_EquivalentWeakNamed#ACR_EquivalentFXUnified#ACR_
EquivalentUnified#ACR_NonEquivalentVersion#ACR_NonEquivalent#ACR_EquivalentPartialM
atch#ACR_EquivalentPartialWeakNamed#ACR_EquivalentPartialUnified#ACR_EquivalentPart
ialFXUnified#ACR_NonEquivalentPartialVersion#resolvingNamespace#resolvingClass#open
ConditionalDirectives#namespaceName#namespaceStack#get_ResolvingNamespace#set_Resol
vingNamespace#get_ResolvingClass#set_ResolvingClass#get_InsideConditionalDirective#
get_Namespace#set_Namespace#OpenConditionalDirective#CloseConditionalDirective#Push
NamespacePart#PopNamespacePart#ComposeQualifiedClassName#ResolvingNamespace#Resolvi
ngClass#InsideConditionalDirective#Namespace#GetTable#GetTableWithEscaping#matchPat
tern#redistListFolder#cachedRedistList#cachedBlackList#assemblyList#simpleNameMap#e
rrorFilenames#whiteListErrors#whiteListErrorFilenames#cachedKey#cachedValue#redistL
istPathCache#BuildMap#get_RedistListFolder#get_Errors#get_ErrorFileNames#get_WhiteL
istErrors#get_WhiteListErrorFileNames#IsPrerequisiteAssembly#GetFrameworkList20#Get
FrameworkList30#GetFrameworkList35#TargetDotNetFrameworkVersion#GetFrameworkListFro
mReferenceAssembliesPath#GetRedistListPathsFromDisk#GetRedistList#GetSimpleName#Get
UnifiedAssemblyEntry#GetUnifiedAssemblyName#IsEquivalentAssemblyNames#GenerateBlack
List#ReadFile#fullNameComparer#RedistListFolder#Errors#ErrorFileNames#WhiteListErro
rs#WhiteListErrorFileNames#descriptor#get_FrameworkDirectory#get_Descriptor#Framewo
rkDirectory#Descriptor#subsetListFolder#subsetListPathCache#subsetToSearchFor#get_S
ubsetListFolder#GetSubsetListPathsFromDisk#SubsetListFolder#fullName#inGAC#simpleNa
me#get_InGAC#get_SimpleName#InGAC#SimpleName#get_TypeLibFiles#set_TypeLibFiles#type
LibFiles#get_CreateCodeBase#set_CreateCodeBase#createCodeBase#get_AssemblyListFile#
set_AssemblyListFile#assemblyListFile#typeLibExportFailed#ExporterEventKind#ReportE
vent#ResolveRef#Register#ExportTypeLib#TypeLibFiles#CreateCodeBase#AssemblyListFile
#GetSubKeyNames#GetDefaultValue#removedDirectories#get_RemovedDirectories#set_Remov
edDirectories#RemoveDirectory#DirectoryInfo#RemoveReadOnlyAttributeRecursively#Remo
vedDirectories#resXFiles#isDirty#baseLinkedFileDirectory#get_BaseLinkedFileDirector
y#set_BaseLinkedFileDirectory#GetResXFileInfo#AddResxFile#get_IsDirty#BaseLinkedFil
eDirectory#IsDirty#linkedFiles#get_LinkedFiles#GetLinkedFiles#LinkedFiles#get_TypeL
ibNames#set_TypeLibNames#typeLibNames#allProjectRefs#allDependencyRefs#get_WrapperO
utputDirectory#set_WrapperOutputDirectory#wrapperOutputDirectory#get_ResolvedAssemb
lyReferences#set_ResolvedAssemblyReferences#resolvedAssemblyReferences#get_NoClassM
embers#set_NoClassMembers#noClassMembers#set_ResolvedFiles#get_ResolvedModules#set_
ResolvedModules#resolvedModules#timestampCache#cachePia#cacheTlb#cacheAx#Cleanup#Ve
rifyAndInitializeInputs#ConvertAttrReferencesToComReferenceInfo#ConvertFileReferenc
esToComReferenceInfo#AddMissingTlbReferences#ResolveReferenceAndAddToList#IsExistin
gProjectReference#IsExistingDependencyReference#Microsoft.Build.Tasks.IComReference
Resolver.ResolveComClassicReference#Microsoft.Build.Tasks.IComReferenceResolver.Res
olveNetAssemblyReference#Microsoft.Build.Tasks.IComReferenceResolver.ResolveComAsse
mblyReference#ResolveComReferencePia#ResolveComReferenceTlb#ResolveComReferenceAx#r
equiredMetadataForNameItem#VerifyReferenceMetadataForNameItem#InitializeDefaultMeta
dataForNameItem#InitializeDefaultMetadataForFileItem#CheckForConflictingReferences#
SetCopyLocalToFalseOnGacAssemblies#ScanAndResolveAllDependencies#TaskItemToTypeLibA
ttr#TypeLibNames#WrapperOutputDirectory#ResolvedAssemblyReferences#NoClassMembers#R
esolvedModules#componentTimestamps#get_Dirty#dirty#set_Item#Dirty#pfxFileExtension#
pfxFileContainerPrefix#certificateThumbprint#certificateFile#resolvedKeyContainer#r
esolvedKeyFile#resolvedThumbprint#suppressAutoClosePasswordPrompt#showImportDialogD
espitePreviousFailures#autoClosePasswordPromptTimeout#autoClosePasswordPromptShow#p
fxKeysToIgnore#get_CertificateThumbprint#set_CertificateThumbprint#get_CertificateF
ile#set_CertificateFile#get_SuppressAutoClosePasswordPrompt#set_SuppressAutoClosePa
sswordPrompt#get_ShowImportDialogDespitePreviousFailures#set_ShowImportDialogDespit
ePreviousFailures#get_AutoClosePasswordPromptTimeout#set_AutoClosePasswordPromptTim
eout#get_AutoClosePasswordPromptShow#set_AutoClosePasswordPromptShow#get_ResolvedTh
umbprint#set_ResolvedThumbprint#get_ResolvedKeyContainer#set_ResolvedKeyContainer#g
et_ResolvedKeyFile#set_ResolvedKeyFile#HashFromBlob#ResolveAssemblyKey#ResolveManif
estKey#CertificateThumbprint#CertificateFile#SuppressAutoClosePasswordPrompt#ShowIm
portDialogDespitePreviousFailures#AutoClosePasswordPromptTimeout#AutoClosePasswordP
romptShow#ResolvedThumbprint#ResolvedKeyContainer#ResolvedKeyFile#deploymentManifes
tEntryPoint#extraFiles#managedAssemblies#nativeAssemblies#outputAssemblies#outputDe
ploymentManifestEntryPoint#outputEntryPoint#outputFiles#publishFiles#satelliteAssem
blies#specifiedTargetCulture#includeAllSatellites#signingManifests#canPublish#get_D
eploymentManifestEntryPoint#set_DeploymentManifestEntryPoint#get_ExtraFiles#set_Ext
raFiles#get_ManagedAssemblies#set_ManagedAssemblies#get_NativeAssemblies#set_Native
Assemblies#get_OutputAssemblies#set_OutputAssemblies#get_OutputDeploymentManifestEn
tryPoint#set_OutputDeploymentManifestEntryPoint#get_OutputEntryPoint#set_OutputEntr
yPoint#get_OutputFiles#set_OutputFiles#get_PublishFiles#set_PublishFiles#get_Satell
iteAssemblies#set_SatelliteAssemblies#get_SigningManifests#set_SigningManifests#Cre
ateAssemblyItem#CreateFileItem#CreatePrerequisiteItem#GetItemCopyLocal#GetItemCultu
re#GetItemTargetPath#GetOutputAssemblies#GetOutputAssembliesAndSatellites#GetOutput
Files#GetOutputSatellites#GetOutputEntryPoint#GetPublishInfo#IsFiltered#StringToPub
lishState#DeploymentManifestEntryPoint#ExtraFiles#ManagedAssemblies#NativeAssemblie
s#OutputAssemblies#OutputDeploymentManifestEntryPoint#OutputEntryPoint#OutputFiles#
PublishFiles#SatelliteAssemblies#Signin
gManifests#key#state#item#includedByDefault#publishInfo#dictionary#simpleNameDictio
nary#System.Collections.IEnumerable.GetEnumerator#Auto#DataFile#isDataFile#isPublis
hed#GetAssemblyFlags#GetFileFlags#GetSatelliteFlags#get_IsPublished#IsSatelliteIncl
udedByDefault#IsPublished#get_NativeReferences#set_NativeReferences#get_AdditionalS
earchPaths#set_AdditionalSearchPaths#get_ContainingReferenceFiles#set_ContainingRef
erenceFiles#get_ContainedPrerequisiteAssemblies#set_ContainedPrerequisiteAssemblies
#get_ContainedComComponents#set_ContainedComComponents#get_ContainedTypeLibraries#s
et_ContainedTypeLibraries#get_ContainedLooseTlbFiles#set_ContainedLooseTlbFiles#get
_ContainedLooseEtcFiles#set_ContainedLooseEtcFiles#nativeReferences#containingRefer
enceFiles#containedPrerequisiteAssemblies#containedComComponents#containedTypeLibra
ries#containedLooseTlbFiles#containedLooseEtcFiles#additionalSearchPaths#ExtractFro
mManifest#NativeReferences#AdditionalSearchPaths#ContainingReferenceFiles#Contained
PrerequisiteAssemblies#ContainedComComponents#ContainedTypeLibraries#ContainedLoose
TlbFiles#ContainedLooseEtcFiles#VCProjectEnginePIAName#get_Override#set_Override#ov
erridePath#get_ResolvedOutputPaths#set_ResolvedOutputPaths#resolvedOutputPaths#get_
ResolvedImportLibraryPaths#set_ResolvedImportLibraryPaths#resolvedImportLibraryPath
s#get_SolutionFile#set_SolutionFile#solutionFile#solutionMacroNames#get_VCEnginePia
#vcEnginePia#vcEnginePiaInitialized#get_VCProjectEngineDll#vcProjectEngineDll#vcPro
jectEngineDllInitialized#get_VCEngineObject#vcEngineObject#vcEngineObjectInitialize
d#ResolveUsingVCEngineObjectModel#GetToolOutput#GetLinkerToolImportLibrary#Override
#ResolvedOutputPaths#ResolvedImportLibraryPaths#SolutionFile#VCEnginePia#VCProjectE
ngineDll#VCEngineObject#get_PreresolvedProjectOutputs#set_PreresolvedProjectOutputs
#preresolvedProjectOutputs#get_UnresolvedProjectReferences#set_UnresolvedProjectRef
erences#unresolvedProjectReferences#PreresolvedProjectOutputs#UnresolvedProjectRefe
rences#outputRequiresMinimumFramework35SP1#referencedAssemblies#HasErrorUrl#HasCrea
tedShortcut#UncheckedSigning#ExcludeReferenceFromHashing#HasExcludedFileOrSP1File#I
sExcludedFileOrSP1File#HasSuiteName#buildAssemblyPath#set_BuildAssemblyName#get_Bui
ldAssemblyName#set_BuildAssemblyPath#get_BuildAssemblyPath#set_ShouldGenerateSerial
izer#get_ShouldGenerateSerializer#set_UseProxyTypes#get_UseProxyTypes#set_Serializa
tionAssembly#get_SerializationAssembly#get_SerializationAssemblyName#get_Serializat
ionAssemblyPath#get_AssemblyFullPath#SkipTaskExecution#BuildAssemblyName#BuildAssem
blyPath#ShouldGenerateSerializer#UseProxyTypes#SerializationAssembly#SerializationA
ssemblyName#SerializationAssemblyPath#AssemblyFullPath#sigingTarget#timestampUrl#ge
t_SigningTarget#set_SigningTarget#get_TimestampUrl#set_TimestampUrl#SigningTarget#T
imestampUrl#None#DelaySigned#FullySigned#StrongNameKeyPair#ReadKeyFile#GetStrongNam
eKey#GetAssemblyStrongNameLevel#GetCor20HeaderRva#instanceLocalFileStateCache#insta
nceLocalFileExists#instanceLocalDirectories#processWideFileStateCache#getLastWriteT
ime#SetInstalledAssemblyInformation#GetObjectData#SetGetLastWriteTime#CacheDelegate
#GetFileState#set_LastModified#get_Assembly#set_Assembly#ITask#get_TaskSharedResour
ces#set_TaskSharedResources#taskSharedResources#TaskSharedResources#get_HasTemporar
yWrapper#hasTemporaryWrapper#System.Reflection.Emit#AssemblyBuilder#WriteWrapperToD
isk#System.Runtime.InteropServices.ITypeLibImporterNotifySink.ResolveRef#ImporterEv
entKind#System.Runtime.InteropServices.ITypeLibImporterNotifySink.ReportEvent#HasTe
mporaryWrapper#IsNewLine#IsLetter#IsDecimalDigit#IsConnecting#IsCombining#IsFormatt
ing#IsHexDigit#IsOctalDigit#forceTouch#alwaysCreate#specificTime#touchedFiles#get_F
orceTouch#set_ForceTouch#get_AlwaysCreate#set_AlwaysCreate#get_Time#set_Time#get_To
uchedFiles#set_TouchedFiles#ExecuteImpl#TouchFile#GetTouchDateTime#ForceTouch#Alway
sCreate#Time#TouchedFiles#unregisteringLockName#Unregister#System.Threading#Mutex#u
nregisteringLock#applicationPath#applicationManifest#get_ApplicationPath#set_Applic
ationPath#get_ApplicationManifest#set_ApplicationManifest#ApplicationPath#set_Gener
ateDocumentation#get_GenerateDocumentation#set_Imports#get_Imports#set_NoVBRuntimeR
eference#get_NoVBRuntimeReference#set_NoWarnings#get_NoWarnings#set_OptionCompare#g
et_OptionCompare#set_OptionExplicit#get_OptionExplicit#set_OptionStrict#get_OptionS
trict#set_OptionInfer#get_OptionInfer#set_OptionStrictType#get_OptionStrictType#set
_RemoveIntegerChecks#get_RemoveIntegerChecks#set_SdkPath#get_SdkPath#set_TargetComp
actFramework#get_TargetCompactFramework#set_Verbosity#get_Verbosity#GetBaseAddressI
nHex#GenerateDocumentation#Imports#NoVBRuntimeReference#NoWarnings#OptionCompare#Op
tionExplicit#OptionStrict#OptionInfer#OptionStrictType#RemoveIntegerChecks#SdkPath#
TargetCompactFramework#Verbosity#vs9RegKey#vs9InstallDirValueName#vs9RelativePathTo
VCBuildLayouts#vs9RelativePathToVCBuildBatch#vc9RegKey#vc9InstallDirValueName#vc9Re
lativePathToVCBuildLayouts#vc9RelativePathToVCBuildBatch#get_Rebuild#set_Rebuild#ov
errideValue#additionalLibPaths#get_AdditionalLinkLibraryPaths#set_AdditionalLinkLib
raryPaths#additionalLinkLibraryPaths#get_UserEnvironment#set_UserEnvironment#get_Us
eEnvironment#set_UseEnvironment#get_AdditionalOptions#set_AdditionalOptions#get_Env
ironmentOverride#AppendITaskItemArrayToEnvironmentVariable#environmentOverrideDicti
onary#currentProjectItem#TryLocationFromRegistry#Rebuild#AdditionalLinkLibraryPaths
#UserEnvironment#UseEnvironment#AdditionalOptions#EnvironmentOverride#SinkSeparator
Character#SinkLineContinuationCharacter#SinkLineCommentStart#SinkHexIntegerPrefix#S
inkOctalIntegerPrefix#SinkWhiteSpace#SinkIntegerSuffix#SinkDecimalIntegerSuffix#Sin
kMultipleOctalDigits#SinkOperator#SinkTypeCharacter#perfMSBuildEngineBuildProjectBe
gin#perfMSBuildEngineBuildProjectEnd#perfMSBuildHostCompileBegin#perfMSBuildHostCom
pileEnd#perfMSBuildProjectLoadFromFileBegin#perfMSBuildProjectLoadFromFileEnd#perfM
SBuildProjectConstructBegin#perfMSBuildProjectConstructEnd#perfMSBuildProjectSaveTo
FileBegin#perfMSBuildProjectSaveToFileEnd#perfMSBuildProjectEvaluateBegin#perfMSBui
ldProjectEvaluateEnd#perfMSBuildGenerateResourceBegin#perfMSBuildGenerateResourceEn
d#CRYPT32#KERNEL32#MSCORWKS#NTE_BAD_KEY#TRUST_E_SYSTEM_ERROR#TRUST_E_NO_SIGNER_CERT
#TRUST_E_COUNTER_SIGNER#TRUST_E_CERT_SIGNATURE#TRUST_E_TIME_STAMP#TRUST_E_BAD_DIGES
T#TRUST_E_BASIC_CONSTRAINTS#TRUST_E_FINANCIAL_CRITERIA#TRUST_E_PROVIDER_UNKNOWN#TRU
ST_E_ACTION_UNKNOWN#TRUST_E_SUBJECT_FORM_UNKNOWN#TRUST_E_SUBJECT_NOT_TRUSTED#TRUST_
E_NOSIGNATURE#TRUST_E_FAIL#TRUST_E_EXPLICIT_DISTRUST#CERT_E_CHAINING#AXL_REVOCATION
_NO_CHECK#AXL_REVOCATION_CHECK_END_CERT_ONLY#AXL_REVOCATION_CHECK_ENTIRE_CHAIN#AXL_
URL_CACHE_ONLY_RETRIEVAL#AXL_LIFETIME_SIGNING#AXL_TRUST_MICROSOFT_ROOT_ONLY#GetProc
essHeap#HeapFree#CertTimestampAuthenticodeLicense#CertVerifyAuthenticodeLicense#Cer
tFreeAuthenticodeSignerInfo#CertFreeAuthenticodeTimestamperInfo#_AxlGetIssuerPublic
KeyHash#_AxlRSAKeyValueToPublicKeyToken#_AxlPublicKeyBlobToPublicKeyToken#cbSize#dw
Error#algHash#pwszHash#pwszDescription#pwszDescriptionUrl#pChainContext#FILETIME#ft
Timestamp#m_verify#FindIdElement#GetIdElement#AssemblyNamespaceUri#AssemblyV2Namesp
aceUri#MSRelNamespaceUri#LicenseNamespaceUri#AuthenticodeNamespaceUri#licenseTempla
te#m_manifestDom#m_strongNameSignerInfo#m_authenticodeSignerInfo#Sign#Verify#get_St
rongNameSignerInfo#get_AuthenticodeSignerInfo#VerifyLicense#ExtractPrincipalFromMan
ifest#VerifyAssemblyIdentity#VerifyPublisherIdentity#VerifyHash#VerifyPublicKeyToke
n#InsertPublisherIdentity#RemoveExistingSignature#System.Security.Cryptography#Asym
metricAlgorithm#ReplacePublicKeyToken#ComputeHashFromManifest#CreateLicenseDom#Auth
enticodeSignLicenseDom#TimestampSignedLicenseDom#StrongNameSignManifestDom#hexValue
s#BytesToHexString#HexStringToBytes#HexToByte#StrongNameSignerInfo#AuthenticodeSign
erInfo#DontReplacePublicKeyToken#RevocationNoCheck#RevocationCheckEndCertOnly#Revoc
ationCheckEntireChain#UrlCacheOnlyRetrieval#LifetimeSigning#TrustMicrosoftRootOnly#
StrongNameOnly#CimManifestSignerFlagMask#m_strongNameKey#m_certificate#m_descriptio
n#m_url#X509Certificate2Collection#m_certificates#X509IncludeOption#m_includeOption
#m_signerFlag#get_StrongNameKey#get_Certificate#get_DescriptionUrl#set_DescriptionU
rl#get_ExtraStore#get_IncludeOption#set_IncludeOption#get_Flag#set_Flag#StrongNameK
ey#Certificate#DescriptionUrl#ExtraStore#IncludeOption#Flag#m_error#m_publicKeyToke
n#m_snKey#get_ErrorCode#set_ErrorCode#get_PublicKey#set_PublicKey#ErrorCode#PublicK
ey#m_algHash#m_hash#m_descriptionUrl#X509Chain#m_signerChain#m_timestamperInfo#get_
HashAlgId#get_SignerChain#get_TimestamperInfo#HashAlgId#SignerChain#TimestamperInfo
#m_timestamperChain#m_timestampTime#get_TimestampTime#get_TimestamperChain#Timestam
pTime#TimestamperChain#AtomName#DllName#Instance#fUseCodeMarkers#CodeMarker#CodeMar
kerEx#DllPerfCodeMarker#FindAtom#AddAtom#DeleteAtom#CLRPlatformAssemblyName#DeployF
ileExtension#OSVersion_Win9X#OSVersion_WinXP#TargetFrameworkVersion20#TargetFramewo
rkVersion30#TargetFrameworkVersion35#UACAsInvoker#UACUIAccess#MaxFileAssociationsCo
unt#MaxFileAssociationExtensionLength#ClientFrameworkSubset#EntryPointMinimumImageV
ersion#NET30AssemblyIdentity#NET35AssemblyIdentity#NET35SP1AssemblyIdentity#NET35Cl
ientAssemblyIdentity#DefaultAlias#InformationalVersion#DailyBuildNumber#object#meth
od#searchPattern#callback#result#source#destination#pathGetTempFileName#fileCopy#fi
leDelete#fileExtension#tempFilePlaceHolder#OutAttribute#itemMetadataName#metadataFo
und#offset#c#startPosition#length#e#currentDirectory#itemSpec#modifier#cachedModifi
ers#fileSpec#allowedExtensions#buffer#escapedString#escapingWasNecessary#unescapedS
tring#filespec#entityType#pattern#projectDirectory#stripProjectDirectory#getFileSys
temEntries#listOfFiles#baseDirectory#remainingWildcardDirectory#extensionLengthToEn
force#regexFileMatch#needsRecursion#matchFileExpression#fileToMatch#parameterName#d
efaultValue#commandLine#a#b#inner#info#
context#baseKey#platformValue#v#keyPlatform#versions#rawFileNameCandidate#isPrimary
ProjectReference#executableExtensions#foundPath#allowMismatchBetweenFusionNameAndFi
leName#pathToCandidateAssembly#searchLocation#directory#disposing#sourceFile#asmMet
aPtr#asmNameBuf#asmNameLength#pubKeyPtr#pubKeyBytes#o1#o2#o#other#jaggedResolvers#i
nnerException#strongName#unifiedVersion#sourceItem#sourceItemsToAdd#dependee#depend
eeToRemove#scatterFilesToAttach#filenameExtension#victim#assembliesConsideredAndRej
ectedToAdd#sourceReference#wantSpecificVersionValue#assemblyFileName#referenceAssem
blyFiles#referenceAssemblyNames#exceptions#referenceAssemblyName#component#referenc
eAssemblyFile#unifiedDependencies#preUnificationAssemblyNames#newEntries#remappedAs
sembliesValue#blackList#removeOnlyNoWarning#subsetName#removedReference#referenceLi
st#dependencyList#idealRemappings#conflictingReferences#assemblyReference0#assembly
Reference1#primaryFiles#dependencyFiles#items#copyLocalItems#dependencyTable#idealA
ssemblyRemappings#idealAssemblyRemappingsIdentities#generalResolutionExceptions#met
adataName#frameworkSubSetNames#installedSubSetNames#installedAssemblyTableInfo#whit
eListSubsetTableInfo#ignoreInstalledAssemblyTables#assemblyTables#GetAssemblyListPa
ths#assemblyFXVersionAsString#targetFrameworkDirectory#x#y#hive#regKeyAlias#require
dReturnType#assemblyPath#typeLibraryPath#index#missingAttribute#treatAsError#xmlStr
ing#projectRef#resolvedProjectWithConfiguration#taskLoggingHelper#attr1#attr2#typeL
ibAttr#typeInfo#typeAttr#varIndex#varDesc#varDescHandle#funcIndex#funcDesc#funcDesc
Handle#typeLibId#wrapperInfo#componentTimestamp#ucomTypeLib#settings#output#input#r
esults#strOutputExe#resourceUpdater#nameToUseInLog#productCodes#p#availableProducts
#nodeName#g#time#currentNodes#cycles#endNode#validateFilePresent#schemaPath#schemaN
amespace#strSubDirectory#rootElement#targetNode#attributeName#oldValue#newValue#att
ributeValue#attribute#packageFilesNode#strSourcePath#strTargetPath#element#mergeEle
ment#langElement#baseElement#strNodeName#strSubNodeKey#subNode#strTargetValue#confi
gElement#filesCopied#eulas#strAttributeName#strFolderPath#strFileName#byteArray#str
ingsNode#builder#altCulture#fShowWarning#codepage#codePage#targetNodes#targetAttrib
ute#sourceNodes#sourceSubNodeName#sourceOldName#sourceNewName#builtProducts#append#
packageFileNode#fileSource#includedProducts#resourceName#args#ParamArrayAttribute#f
ilePaths#deleteExistingResource#hUpdate#lpType#lpName#wLanguage#data#fDiscard#packa
ge#copyAll#sender#str#ch#cultureName#registryValue#switchName#choice1#choice2#param
eter#outerSwitchName#innerSwitchName#unquotedText#parameters#attributes#delimiter#s
plitOn#metadataNames#treatAsFlags#typeLibrary#typeAttributes#typeLibAttributes#elem
entDesc#copyFrom#tlbAttr#originalTaskItem#refType#destinationFile#logActivity#copyF
ile#linkFileName#rootNamespaceName#dependentUponFileName#mode#access#createFileStre
am#subName#metadataTable#excludeItems#expand#project#configurationName#referencesTo
Remove#referencesToAdd#importLibrariesToAdd#configurationType#configurationElement#
toolName#isConfigurationNative#itemList#disambiguatingMetadataName#resultFromHostOb
jectSetOperation#noDefaultWin32Manifest#win32Manifest#identifier#originalDefineCons
tants#cscHostObject#tokens#n#match#ignoreCase#find#compareTo#dependentUponFilename#
cultureString#timestamp#subKey#pathToTool#responseFileCommands#commandLineCommands#
singleLine#messageImportance#regularExpression#matchWholeItemSpec#comparison#baseId
entity#versionA#versionB#values#identity#requestedExecutionLevel#parameterValue#s#i
nputFiles#sourceFilePath#outputFilePath#assemblyFilesList#language#namespacename#re
sourcesNamespace#classname#inFile#outFile#shouldUseSourcePath#inputFileName#provide
r#outputResourcesFile#writer#lineNumber#linePosition#encoding#detectEncoding#stream
#chars#InAttribute#count#throwOnError#pathToAssembly#wrapperType#refName#errorMessa
ge#errorCode#addModules#allowUnsafeBlocks#baseAddress#checkForOverflowUnderflow#deb
ugType#defineConstants#delaySignExplicitlySet#disabledWarnings#documentationFile#em
itDebugInformation#errorReport#fileAlignment#generateFullPaths#langVersion#linkReso
urces#targetType#mainEntryPoint#moduleAssemblyName#noConfig#noStandardLib#optimize#
outputAssembly#pdbFile#responseFiles#treatWarningsAsErrors#warningLevel#warningsAsE
rrors#warningsNotAsErrors#win32Icon#win32Resource#containerName#blob#pfxFile#certFi
le#generateDocumentation#importsList#noWarnings#optionCompare#optionExplicit#option
Strict#optionStrictType#removeIntegerChecks#sdkPath#targetCompactFramework#optionIn
fer#deployManifestPath#applicationManifestPath#f#inputPath#updatedApplicationPath#a
1#a2#array#assemblyReference#knownNames#rootKey#registeredPath#hModule#pType#pName#
param#fileAssociation#tlbId#clsId#progId#resourceId#preserveStream#MarshalAsAttribu
te#UnmanagedType#szScope#dwOpenFlags#riid#obj#hFile#ulFlags#hResource#hGlobal#enumF
unc#strTypeLibName#regKind#publicKeyBlob#publicKeyBlobCount#strongNameTokenArray#st
rongNameTokenCount#RpcHandle#ProtFileName#taskResourceName#task#path1#path2#include
dPermissionSet#retSet#setToFilter#el#className#ids#permissionSet#ps#xe#psElement#ce
rtThumbprint#certPath#certPassword#cert#inputRequestedPrivilegeElement#xpath#xml#oc
tets#obj1#obj2#nameTable#r#nsmgr#namespaceURI#resource#entries#uri#role#t#that#asSt
ring1#asString2#displayName#showAssert#unformattedMessage#condition#arg0#arg1#arg2#
arg3#parameter1#parameter2#parameter1Name#parameter2Name#number#numBufferChars#file
Part#module#procName#pExe#pwszVersion#pConfigurationFile#startupFlags#runtimeInfoFl
ags#pDirectory#dwDirectory#dwDirectoryLength#pVersion#cchBuffer#dwlength#nStdHandle
#nBufferLength#lpBuffer#messageCodePattern#messageWithCode#unformatted#propertiesTa
ble#targetLists#skipProjects#buildEngine#ppTypeAttr#ppTComp#ppFuncDesc#ppVarDesc#me
mid#rgBstrNames#cMaxNames#pcNames#href#pImplTypeFlags#rgszNames#cNames#pMemId#pvIns
tance#wFlags#pDispParams#pVarResult#pExcepInfo#puArgErr#strName#strDocString#dwHelp
Context#strHelpFile#invKind#pBstrDllName#pBstrName#pwOrdinal#hRef#ppTI#ppv#pUnkOute
r#ppvObj#pBstrMops#ppTLB#pIndex#pTypeAttr#pFuncDesc#pVarDesc#rclsid#dwCreateFlags#p
Data#iRef#ulCount#tkObj#szName#ppData#pcbData#pdwPEKind#pdwMachine#pwzBuf#ccBufSize
#pccBufSize#mdAsm#pPublicKeyPtr#ucbPublicKeyPtr#uHashAlg#cchNameIn#cchNameRequired#
amdInfo#dwFlags#mdAsmRef#ppbPublicKeyOrToken#pcbPublicKeyOrToken#pchNameOut#ppbHash
Value#pcbHashValue#pdwAssemblyRefFlags#mdFile#cchName#bHashData#cchHashBytes#dwFile
Flags#phEnum#asmRefs#asmRefCount#iFetched#fileRefs#fileRefCount#ppvObject#fLock#psz
AssemblyName#pAsmInfo#pTypeLib#szFullPath#szHelpDir#wMajorVerNum#wMinorVerNum#syski
nd#majorVersion#minorVersion#lpFileName#dwDesiredAccess#dwShareMode#lpSecurityAttri
butes#dwCreationDisposition#dwFlagsAndAttributes#hTemplateFile#hObject#lpFileMappin
gAttributes#flProtect#dwMaximumSizeHigh#dwMaximumSizeLow#hFileMapping#dwFileOffsetH
igh#dwFileOffsetLow#dwNumberOfBytesToMap#lpBaseAddress#imageBase#ntHeaders#Rva#Last
RvaSection#ppAsmCache#dwReserved#cacheFlags#cachePath#pcchPath#pwzAssemblyIdentity1
#fUnified1#pwzAssemblyIdentity2#fUnified2#pfEquivalent#pResult#CertStore#PrevCertCo
ntext#CertContext#reserved#CryptProv#CallerFreeProv#ExpKey#DataLen#hKey#Prov#KeyBlo
b#KeyBlobSize#wszKeyContainer#PublicKeyBlob#PublicKeyBlobSize#namespacePart#propert
yList#syntaxName#propertyNameValueStrings#finalPropertiesTable#propertyName#propert
yValue#assemblyTableInfos#assemblyName1#assemblyName2#whiteListAssemblyTableInfo#as
semblyTableInfo#assembliesList#errorsList#errorFilenamesList#kind#msg#assemblyToRes
olve#asm#typeLibFileName#subkey#logUnauthorizedError#unauthorizedAccess#resxFile#pr
ojectRefs#typeLibAttrs#tlbFiles#dependencyWalker#projectRefInfo#resolvedReferenceLi
st#moduleList#referencePathItem#neededRefType#topLevelRef#fullAssemblyName#missingO
rInvalidMetadata#outputTaskItems#gacPath#componentPath#publishInfos#assemblyPublish
Infos#satellitePublishInfos#manifestEntryPointList#filePublishInfos#manifestEntryPo
intPublishInfos#satelliteCulture#containingReferenceFilesTable#containedPrerequisit
eAssembliesTable#containedComComponentsTable#containedTypeLibrariesTable#containedL
ooseTlbFilesTable#containedLooseEtcFilesTable#taskItem1#taskItem2#configName#resolv
edAssemblyPath#resolvedImportLibraryPath#ivcCollectionType#ivcCollectionTools#class
Object#keyPair#publicKey#ntHeadersPtr#providedFrameworkPaths#installedAssemblyTable
Infos#getLastWriteTimeValue#getAssemblyNameValue#getAssemblyMetadataValue#fileExist
sValue#getDirectoriesValue#taskInstance#primaryResources#helpKeywordPrefix#assembly
Builder#wrapperPath#objTypeLib#eventKind#eventCode#eventMsg#fileCreate#fileGetAttri
butes#fileSetAttributes#fileSetLastAccessTime#fileSetLastWriteTime#dt#vbcHostObject
#taskItems#environmentVariableName#root#subKeyName#valueName#messageToLogIfNotFound
#relativePathFromValueOnLayout#relativePathFromValueOnBatch#hHeap#lpMem#pSignedLice
nseBlob#pwszTimestampURI#pTimestampSignatureBlob#pLicenseBlob#pSignerInfo#pTimestam
perInfo#pCertContext#ppwszPublicKeyHash#pModulusBlob#pExponentBlob#ppwszPublicKeyTo
ken#pCspPublicKeyBlob#elem#verify#idValue#manifestDom#signer#timeStampUrl#verifyFla
gs#oldFormat#nsm#signerCert#snKey#principal#licenseDom#start#end#hexString#val#stro
ngNameKey#certificate#signerInfo#timestamperInfo#nTimerID#aBuff#aUserParams#cbParam
s#lpString#atom#ComVisibleAttribute#CLSCompliantAttribute#AssemblyTitleAttribute#As
semblyDescriptionAttribute#AssemblyDefaultAliasAttribute#AssemblyCompanyAttribute#A
ssemblyProductAttribute#AssemblyCopyrightAttribute#AssemblyVersionAttribute#Assembl
yFileVersionAttribute#AssemblyInformationalVersionAttribute#SatelliteContractVersio
nAttribute#NeutralResourcesLanguageAttribute#AssemblyDelaySignAttribute#AssemblyKey
FileAttribute#GuidAttribute#System.Runtime.CompilerServices#InternalsVisibleToAttri
bute#System.Security.Permissions#SecurityPermissionAttribute#SecurityAction#System.
Diagnostics#DebuggableAttribute#DebuggingModes#CompilationRelaxationsAttribute#Runt
imeCompatibilityAttribute#Microsoft.Bui
ld.Tasks.v3.5#String#get_Length#ArgumentException#StartsWith#Concat#DirectoryNotFou
ndException#IOException#UnauthorizedAccessException#GetFileName#Combine#get_Invaria
ntCulture#Int32#IFormatProvider#Empty#GetMetadata#get_ItemSpec#SeekOrigin#Seek#get_
Default#UTF8Encoding#ArgumentOutOfRangeException#Char#TextReader#ReadBlock#Math#Min
#Append#StackOverflowException#OutOfMemoryException#ExecutionEngineException#Access
ViolationException#ArgumentNullException#PathTooLongException#NotSupportedException
#SecurityException#TypeLoadException#MethodAccessException#MissingMethodException#M
emberAccessException#BadImageFormatException#ReflectionTypeLoadException#CustomAttr
ibuteFormatException#TargetParameterCountException#InvalidCastException#AmbiguousMa
tchException#InvalidFilterCriteriaException#TargetException#MissingFieldException#g
et_Chars#op_Equality#ContainsKey#GetPathRoot#DirectorySeparatorChar#GetDirectoryNam
e#GetFileNameWithoutExtension#GetExtension#Match#Capture#FileSystemInfo#get_LastWri
teTime#GetCreationTime#GetLastAccessTime#StringComparer#get_OrdinalIgnoreCase#AltDi
rectorySeparatorChar#Trim#get_CurrentCulture#get_Capacity#Win32Exception#.cctor#Ind
exOf#NumberStyles#Parse#Convert#ToInt32#Replace#IndexOfAny#<PrivateImplementationDe
tails>{0D5A5360-4FD7-48B7-8DC8-
84472D43D707}#CompilerGeneratedAttribute#__StaticArrayInitTypeSize=18#$
$method0x6000d97-
1#RuntimeHelpers#RuntimeFieldHandle#InitializeArray#Split#Join#LastIndexOfAny#IsMat
ch#op_Inequality#Contains#EndsWith#RegexOptions#GetInvalidPathChars#LastIndexOf#Gro
upCollection#get_Groups#RuntimeTypeHandle#GetTypeFromHandle#Boolean#ToolLocationHel
per#GetPathToDotNetFrameworkFile#GetPathToDotNetFrameworkSdkFile#GetDotNetFramework
SdkInstallKeyValue#GetDotNetFrameworkSdkRootRegistryKey#LogErrorWithCodeFromResourc
es#SetMetadata#OutputAttribute#RequiredAttribute#LoadInSeparateAppDomainAttribute#X
mlReader#XmlException#XmlNodeType#get_NodeType#SerializableAttribute#AddRange#MoveT
oNextAttribute#FileLoadException#LogExternalProjectStarted#LogExternalProjectFinish
ed#AppendSwitch#GetDotNetFrameworkVersionFolderPrefix#Registry#CurrentUser#LocalMac
hine#Sort#IsNullOrEmpty#OpenSubKey#get_ValueCount#GetValue#op_GreaterThan#op_LessTh
an#op_GreaterThanOrEqual#FormatException#GC#SuppressFinalize#Monitor#Enter#Exit#Mar
shal#ReleaseComObject#IntPtr#Zero#UInt32#AllocCoTaskMem#SizeOf#StructureToPtr#PtrTo
Structure#PtrToStringUni#CreateSpecificCulture#set_CultureInfo#Byte#SetPublicKey#Se
tPublicKeyToken#AssemblyNameFlags#FreeCoTaskMem#DestroyStructure#Attribute#MemberIn
fo#GetCustomAttribute#StructLayoutAttribute#LayoutKind#IEnumerator`1#get_CurrentPro
cessArchitecture#get_Values#get_Keys#IDictionaryEnumerator#FileNotFoundException#<G
etUnifiedAssemblyNames>d__0#System.Collections.Generic.IEnumerable<Microsoft.Build.
Tasks.UnifiedAssemblyName>.GetEnumerator#<>2__current#System.Collections.Generic.IE
numerator<Microsoft.Build.Tasks.UnifiedAssemblyName>.get_Current#System.Collections
.IEnumerator.Reset#<>1__state#<>l__initialThreadId#System.Collections.IEnumerator.g
et_Current#<>4__this#<>3__preUnificationAssemblyNames#<preUnificationAssemblyName>5
__1#<name>5__2#<dependentAssembly>5__3#<unifiedVersion>5__4#<isPrerequisite>5__5#<i
sRedistRoot>5__6#<redistName>5__7#<unificationReason>5__8#<isUnified>5__9#<>7__wrap
a#<>m__Finallyb#System.Collections.Generic.IEnumerator<Microsoft.Build.Tasks.Unifie
dAssemblyName>.Current#System.Collections.IEnumerator.Current#DebuggerHiddenAttribu
te#Thread#get_CurrentThread#get_ManagedThreadId#COMException#TryGetValue#LogWarning
WithCodeFromResources#Enumerator#RemoveAt#get_CurrentCultureIgnoreCase#op_LessThanO
rEqual#TaskItem#set_ItemSpec#GetValueOrDefault#get_HasValue#CopyMetadataTo#CopyTo#L
ogMessageFromResources#LogWarning#LogMessage#Environment#GetEnvironmentVariable#IEq
ualityComparer`1#ValueCollection#ToLowerInvariant#TryParse#get_Ordinal#System.Runti
me.Serialization.Formatters.Binary#BinaryFormatter#IsInstanceOfType#get_CurrentUICu
lture#GetExecutingAssembly#LoadXml#get_DocumentElement#XmlNodeList#get_ChildNodes#G
etLength#IsPathRooted#Int16#GetLibAttr#ReleaseTLibAttr#ITypeLib2#GetTypeLibName#Get
CustData#IsDigit#GetLastWin32Error#ExpandEnvironmentVariables#GetPublicKey#LoadFrom
#Options#genSources#outputName#overwriteRCW#GenerateFromTypeLibrary#InterfaceTypeAt
tribute#ComInterfaceType#DispIdAttribute#ClassInterfaceAttribute#ClassInterfaceType
#CreateElement#AppendChild#OpenRead#get_NewLine#SelectSingleNode#XmlAttributeCollec
tion#XmlNamedNodeMap#GetNamedItem#get_OwnerDocument#ImportNode#RemoveNamedItem#get_
NameTable#AddNamespace#ToCharArray#SelectNodes#Push#Pop#XmlValidatingReader#XmlSche
maCollection#get_Schemas#ValidationEventHandler#add_ValidationEventHandler#get_Name
spaceURI#XmlSchemaException#get_ItemOf#CreateAttribute#SetNamedItem#get_FirstChild#
RemoveChild#get_NextSibling#Int64#CreateDirectory#SHA1CryptoServiceProvider#HashAlg
orithm#ComputeHash#get_IsNeutralCulture#get_Parent#ToUpper#TextInfo#get_TextInfo#ge
t_ANSICodePage#XmlNodeReader#System.Xml.XPath#XPathDocument#XmlSecureResolver#Creat
eEvidenceForUrl#System.Xml.Xsl#IXPathNavigable#XmlResolver#MemoryStream#XsltArgumen
tList#TextWriter#Transform#Flush#GetManifestResourceStream#get_Location#get_UTF8#Xm
lTextWriter#Formatting#set_Formatting#set_Indentation#XmlWriter#WriteNode#X509Certi
ficate#GetPublicKeyString#CryptographicException#SpecialFolder#GetFolderPath#DllImp
ortAttribute#kernel32.dll#InvalidOperationException#ToUpperInvariant#XmlSeverityTyp
e#op_Explicit#get_Unicode#GetBytes#get_IsUnc#UriFormatException#get_CurrentDirector
y#RegistryValueKind#GetValueKind#get_BuildEngine2#AppendSwitchUnquotedIfNotNull#App
endTextWithQuoting#AppendQuotedTextToBuffer#StringSplitOptions#get_CommandLine#GetT
ypeInfoCount#GetTypeInfo#CompareOrdinal#cImplTypes#elemdescVar#cVars#lprgelemdescPa
ram#ToInt64#cParams#elemdescFunc#cFuncs#TYPEDESC#tdesc#lpValue#vt#KeyCollection#Log
CommandLine#UnicodeCategory#GetUnicodeCategory#IsLetterOrDigit#get_InnerXml#Save#Ge
tElementsByTagName#HasAttribute#AppendFileNameIfNotNull#StrongNameIdentityPermissio
nAttribute#ToLower#AppendFileNamesIfNotNull#get_ToolPath#get_ToolExe#$
$method0x600046a-1#__StaticArrayInitTypeSize=6#$$method0x600046c-
1#get_HostObject#DecoderFallbackException#IsWhiteSpace#IComparer`1#BinarySearch#Cul
tureTypes#GetCultures#get_EncodingName#GetEncoding#GetTempFileName#GetTempPath#Writ
eLine#DeleteTempFile#get_ExitCode#LogMessageFromText#DriveInfo#GetDrives#GetPathToS
ystemFile#get_PathToSystem#ReadAllLines#AppendLine#WriteAllText#AppendAllText#get_T
ickCount#Open#RequiredRuntimeAttribute#AppDomain#get_CurrentDomain#AppDomainSetup#g
et_SetupInformation#CreateDomain#Module#get_Module#get_FullyQualifiedName#CreateIns
tanceFromAndUnwrap#Unload#MinValue#MaxValue#IXmlLineInfo#LogErrorFromException#Seri
alizationException#ReadElementContentAsString#FromBase64String#ChangeExtension#Crea
teProvider#System.Configuration#ConfigurationException#$$method0x6000dad-
1#add_AssemblyResolve#remove_AssemblyResolve#get_InnerException#TargetInvocationExc
eption#ResXResourceReader#ResourceReader#ResXResourceWriter#ResourceWriter#System.R
esources.Tools#StronglyTypedResourceBuilder#System.CodeDom#CodeCompileUnit#IDiction
ary#CodeGeneratorOptions#GenerateCodeFromCompileUnit#get_FileExtension#set_Length#U
Int16#OverflowException#NotImplementedException#GetPathToDotNetFramework#GetPathToD
otNetFrameworkSdk#Control#System.Drawing#SystemFonts#Font#get_MessageBoxFont#set_Fo
nt#GCHandle#GCHandleType#Alloc#AddrOfPinnedObject#get_IsAllocated#Free#AllocHGlobal
#FreeHGlobal#X509Store#StoreName#StoreLocation#OpenFlags#X509KeyStorageFlags#Import
#get_IsRightToLeft#MessageBox#DialogResult#MessageBoxButtons#MessageBoxIcon#Message
BoxDefaultButton#MessageBoxOptions#Show#set_Visible#set_Handled#Container#Component
ResourceManager#SuspendLayout#set_Enabled#set_Interval#EventHandler#add_Tick#ApplyR
esources#TableLayoutControlCollection#get_Controls#set_DialogResult#SetColumnSpan#s
et_UseSystemPasswordChar#TextBoxBase#add_Click#IButtonControl#set_AcceptButton#Cont
ainerControl#AutoScaleMode#set_AutoScaleMode#set_CancelButton#ControlCollection#For
mBorderStyle#set_FormBorderStyle#set_KeyPreview#set_MaximizeBox#set_MinimizeBox#Key
EventHandler#add_KeyDown#ResumeLayout#PerformLayout#get_OwnerElement#System.Xml.Ser
ialization#XmlIgnoreAttribute#BrowsableAttribute#EditorBrowsableAttribute#EditorBro
wsableState#XmlElementAttribute#XmlArrayAttribute#XmlAttributeAttribute#XmlRootAttr
ibute#get_Build#get_Major#get_Minor#FlagsAttribute#DefaultMemberAttribute#LIBFLAGS#
wLibFlags#TYPEKIND#GetTypeInfoType#UCOMITypeInfo#get_SubKeyCount#GetValueNames#Clas
sesRoot#TrimEnd#WhitespaceHandling#set_WhitespaceHandling#WriteStartDocument#get_Pr
efix#get_LocalName#WriteStartElement#get_HasAttributes#MoveToAttribute#WriteAttribu
teString#get_AttributeCount#MoveToElement#get_IsEmptyElement#WriteEndElement#WriteC
omment#WriteCData#WriteString#WriteEndDocument#XmlSerializer#ComImportAttribute#Typ
eLibTypeAttribute#TypeLibTypeFlags#PreserveSigAttribute#Kernel32.dll#oleaut32.dll#m
scoree.dll#sfc.dll#mscorwks.dll#get_AbsoluteUri#UriKind#get_IsAbsoluteUri#get_Host#
TryCreate#get_MachineName#IsUnrestricted#IPermission#RemovePermission#IUnrestricted
Permission#AddPermission#SecurityManager#PolicyHierarchy#PermissionState#PolicyLeve
l#get_NamedPermissionSets#NamedPermissionSet#Union#ToXml#FromString#AddChild#FromXm
l#get_PrivateKey#RSACryptoServiceProvider#set_PreserveWhitespace#GetHRForException#
ProcessStartInfo#set_CreateNoWindow#set_UseShellExecute#set_RedirectStandardError#s
et_RedirectStandardOutput#Process#Start#WaitForExit#Sleep#get_HasExited#get_Standar
dError#WarningException#get_Certificates#X509FindType#CollectionBase#get_ParentNode
#get_PreviousSibling#XmlComment#XmlCharacterData#get_Data#CreateComment#SecurityPer
mission#SecurityPermissionFlag#Intersect#get_OuterXml#ReplaceChild#SetLength#ToChar
#ToBase64String#$$method0x6000db2-
1#LookupPrefix#AddParam#get_Segments#get_LocalPath#Debugger#Launch#NumberFormatInfo
#get_NumberFormat#Double#set_Capacity#get_IsRunningMultipleNodes#BuildProjectFilesI
nParallel#
ReferenceEquals#get_MetadataCount#get_MetadataNames#oleaut32#UnRegisterTypeLib#dbgh
elp.dll#fusion.dll#crypt32.dll#advapi32.dll#TypeLibConverter#GetPrimaryInteropAssem
bly#GetPathToDotNetFrameworkReferenceAssemblies#MoveToFirstAttribute#GetName#Regist
rationServices#AssemblyRegistrationFlags#ITypeLibConverter#TypeLibExporterFlags#Con
vertAssemblyToTypeLib#set_Attributes#GetFileSystemInfos#NonSerializedAttribute#set_
UseResXDataNodes#ResXDataNode#ResXFileRef#get_FileRef#SystemException#get_Now#get_U
serDomainName#get_UserName#UInt64#ShowDialog#X509ContentType#GetCertContentType#Set
EnvironmentVariable#Activator#ExternalException#Delegate#GetDelegateForFunctionPoin
ter#get_GUID#ThrowExceptionForHR#MethodInfo#GetMethod#MethodBase#PropertyInfo#GetPr
operty#ReadInt16#AddValue#GetDateTime#set_TaskResources#set_HelpKeywordPrefix#get_T
askResources#get_TaskName#TypeLibImporterFlags#ConvertTypeLibToAssembly#DateTimeFor
matInfo#get_InvariantInfo#WaitHandle#WaitOne#ReleaseMutex#KeyInfo#get_KeyInfo#get_I
d#GetXml#CheckSignatureReturningKey#X509ChainElementCollection#get_ChainElements#X5
09ChainElement#get_Handle#X500DistinguishedName#get_SubjectName#InsertBefore#Export
CspBlob#XmlDsigExcC14NTransform#LoadInput#GetOutput#StringReader#XmlReaderSettings#
set_ProhibitDtd#get_BaseURI#RemoveAllAttributes#set_SigningKey#SignedInfo#get_Signe
dInfo#set_CanonicalizationMethod#RSA#RSAKeyValue#KeyInfoClause#AddClause#KeyInfoX50
9Data#set_Uri#XmlDsigEnvelopedSignatureTransform#AddTransform#ComputeSignature#set_
InnerXml#KeyInfoNode#set_Id#__StaticArrayInitTypeSize=32#$$method0x6000dc1-
1#dwHighDateTime#dwLowDateTime#FromFileTime#DllNotFoundException#Microsoft.Internal
.Performance.CodeMarkers.dll#PerfCodeMarker#UnverifiableCodeAttribute#Microsoft.Bui
ld.Tasks.Strings.resources#Microsoft.Build.Tasks.Deployment.ManifestUtilities.Strin
gs.resources#Microsoft.Build.Tasks.Strings.shared.resources#Microsoft.Build.Tasks.I
mportPFXKeyDlg.resources#Microsoft.Build.Tasks.Deployment.ManifestUtilities.manifes
t.xml#Microsoft.Build.Tasks.Deployment.ManifestUtilities.merge.xsl#Microsoft.Build.
Tasks.Deployment.ManifestUtilities.read2.xsl#Microsoft.Build.Tasks.Deployment.Manif
estUtilities.trustinfo2.xsl#Microsoft.Build.Tasks.Deployment.ManifestUtilities.writ
e2.xsl#Microsoft.Build.Tasks.Deployment.Bootstrapper.xmltoconfig.xsl######.##5F#i#l
#e#E#x#t#e#n#s#i#o#n#C#a#n#n#o#t#B#e#E#m#p#t#y###D#i#r#e#c#t#o#r#y#N#o#t#F#o#u#n#d#
#;S#h#a#r#e#d#.#F#a#i#l#e#d#C#r#e#a#t#i#n#g#T#e#m#p#F#i#l#e##
%U#n#a#u#t#h#o#r#i#z#e#d#A#c#c#e#s#s###{#0#}#.#{#1#}#{#2#}##AG#e#n#e#r#a#l#.#I#n#v#
a#l#i#d#A#t#t#r#i#b#u#t#e#M#e#t#a#d#a#t#a## b#o#o#l##
o#f#f#s#e#t##)E#x#p#e#c#t#e#d# #a# #n#e#w# #p#a#g#e#.##GA#t#t#e#m#p#t# #t#o#
#a#p#p#e#n#d# #t#o# #n#o#n#-#l#a#s#t# #p#a#g#e#.##ST#h#e#r#e# #i#s# #n#o# #l#a#s#t#
#c#h#a#r#a#c#t#e#r# #i#n# #t#h#e# #s#t#r#e#a#m#.##l#e#n#g#t#h##GE#x#p#e#c#t#e#d#
#n#o#n#-#z#e#r#o# #e#x#t#r#a#c#t#i#o#n# #c#o#u#n#t#.##YC#o#u#l#d# #n#o#t# #g#e#t#
#c#h#a#r#a#c#t#e#r# #c#o#u#n#t# #f#o#r# #t#h#i#s#
#p#a#g#e#.###R#o#o#t#D#i#r###F#u#l#l#P#a#t#h###F#i#l#e#n#a#m#e###I#d#e#n#t#i#t#y###
D#i#r#e#c#t#o#r#y###E#x#t#e#n#s#i#o#n###C#r#e#a#t#e#d#T#i#m#e###R#e#l#a#t#i#v#e#D#i
#r###A#c#c#e#s#s#e#d#T#i#m#e###M#o#d#i#f#i#e#d#T#i#m#e###R#e#c#u#r#s#i#v#e#D#i#r##3
N#e#e#d# #i#t#e#m#-#s#p#e#c# #t#o# #m#o#d#i#f#y#.##IN#e#e#d# #m#o#d#i#f#i#e#r#
#t#o# #a#p#p#l#y# #t#o# #i#t#e#m#-#s#p#e#c#.##�#T#h#e# #c#a#c#h#e# #o#f#
#m#o#d#i#f#i#e#r#s# #i#s# #o#n#l#y# #v#a#l#i#d# #f#o#r# #o#n#e# #i#t#e#m#-
#s#p#e#c#.# #I#f# #t#h#e# #i#t#e#m#-#s#p#e#c# #c#h#a#n#g#e#s#,# #t#h#e# #c#a#c#h#e#
#m#u#s#t# #b#e# #n#u#l#l#e#d# #o#u#t#,# #o#r# #a# #d#i#f#f#e#r#e#n#t# #c#a#c#h#e#
#p#a#s#s#e#d# #i#n#.##UR#o#o#t# #d#i#r#e#c#t#o#r#y# #m#u#s#t# #h#a#v#e# #a#
#t#r#a#i#l#i#n#g# #s#l#a#s#h#.##Ky#y#y#y#'#-#'#M#M#'#-#'#d#d#
#H#H#'#:#'#m#m#'#:#'#s#s#'#.#'#f#f#f#f#f#f#f##Q"#{#0#}#"# #i#s# #n#o#t# #a#
#v#a#l#i#d# #i#t#e#m#-#s#p#e#c#
#m#o#d#i#f#i#e#r#.##ES#h#a#r#e#d#.#I#n#v#a#l#i#d#F#i#l#e#s#p#e#c#F#o#r#T#r#a#n#s#f#
o#r#m##_T#h#e# #i#t#e#m#-#s#p#e#c# #m#o#d#i#f#i#e#r# #"#{#0#}#"# #w#a#s# #n#o#t#
#e#v#a#l#u#a#t#e#d#.###.#c#o#n#f#i#g##3N#u#l#l# #s#t#r#i#n#g#s# #n#o#t#
#a#l#l#o#w#e#d#.###%#{#0#:#x#0#0#}###%#2###%#3###%#2#a###%#2#A###%#3#f###
%#3#F##EU#n#e#x#p#e#c#t#e#d# #f#i#l#e#s#y#s#t#e#m# #e#n#t#i#t#y# #t#y#p#e#.###.#\
###~##G#e#t#L#o#n#g#P#a#t#h#N#a#m#e# #d#o#e#s# #n#o#t# #h#a#n#d#l#e#
#w#i#l#d#c#a#r#d#s# #a#n#d# #w#a#s# #p#a#s#s#e#d#
#'#{#0#}#'#.##��U#n#e#x#p#e#c#t#e#d# #n#u#m#b#e#r# #o#f# #e#n#t#r#i#e#s#
#(#{#3#}#)# #f#o#u#n#d# #w#h#e#n# #e#n#u#m#e#r#a#t#i#n#g# #'#{#0#}#'# #u#n#d#e#r#
#'#{#1#}#'#.# #O#r#i#g#i#n#a#l# #p#a#t#h# #w#a#s#
#'#{#2#}#'###*#*###*#.#*##N#e#e#d# #e#i#t#h#e#r# #a# #f#i#l#e#-#s#p#e#c# #o#r# #a#
#r#e#g#u#l#a#r# #e#x#p#r#e#s#s#i#o#n# #t#o# #m#a#t#c#h#
#f#i#l#e#s#.##]E#x#p#e#c#t#e#d# #n#o#n#-#n#u#l#l# #r#e#m#a#n#i#n#g#
#w#i#l#d#c#a#r#d# #d#i#r#e#c#t#o#r#y#.##7S#l#a#s#h# #s#h#o#u#l#d# #b#e#
#g#u#a#r#a#n#t#e#e#d#.###<#:###:#>###.#.###*##
%<#:#a#n#y#t#h#i#n#g#b#u#t#d#o#t#:#>###?
##9<#:#a#n#y#s#i#n#g#l#e#c#h#a#r#a#c#t#e#r#b#u#t#d#o#t#:#>###<#:#b#o#l#:#>###<#:#f#
i#x#e#d#d#i#r#:#>###<#:#e#n#d#f#i#x#e#d#d#i#r#:#>###<#:#w#i#l#d#c#a#r#d#d#i#r#:#>##
%<#:#e#n#d#w#i#l#d#c#a#r#d#d#i#r#:#>###<#:#f#i#l#e#n#a#m#e#:#>###<#:#e#n#d#f#i#l#e#
n#a#m#e#:#>###<#:#e#o#l#:#>##!
<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>##Y<#:#f#i#x#e#d#d#i#r#:#>#<#:#d#i#r#s#e#p#a#r#a#t#o
#r#:#>#<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>##;<#:#f#i#x#e#d#d#i#r#:#>#<#:#u#n#c#s#l#a#s#
h#s#l#a#s#h#:#>##C<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>#.#<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>
##A<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>#<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>##]<#:#f#i#x#e#d#
d#i#r#:#>#.#<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>#.#<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>##;<#:
#f#i#x#e#d#d#i#r#:#>#.#<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>##A<#:#d#i#r#s#e#p#a#r#a#t#o#
r#:#>#.#<#:#e#n#d#f#i#l#e#n#a#m#e#:#>##9<#:#f#i#l#e#n#a#m#e#:#>#.#<#:#e#n#d#f#i#l#e
#n#a#m#e#:#>##7<#:#f#i#l#e#n#a#m#e#:#>#<#:#e#n#d#f#i#l#e#n#a#m#e#:#>##��E#x#p#r#e#
s#s#i#o#n# #r#e#d#u#c#t#i#o#n#s# #c#a#n#n#o#t# #i#n#c#r#e#a#s#e# #t#h#e#
#l#e#n#g#t#h# #o#f# #t#h#e#
#e#x#p#r#e#s#s#i#o#n#.##)*#*#<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>#*#*##E<#:#d#i#r#s#e#p#
a#r#a#t#o#r#:#>#*#*#<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>###<#:#m#i#d#d#l#e#d#i#r#s#:#>##
C<#:#w#i#l#d#c#a#r#d#d#i#r#:#>#*#*#<#:#d#i#r#s#e#p#a#r#a#t#o#r#:#>##7<#:#w#i#l#d#c#
a#r#d#d#i#r#:#>#<#:#l#e#f#t#d#i#r#s#:#>##'<#:#a#n#y#n#o#n#s#e#p#a#r#a#t#o#r#:#>##'<
#:#s#i#n#g#l#e#c#h#a#r#a#c#t#e#r#:#>###\###\#\###$###\#$###(###\#(###)###\#)###\
#*###+###\#+###\#.###[###\#[###\#?###^###\#^###{###\#{###|###\#|##U(#(#/#)#|#(#\#\
#)#|#(#/#.#*#/#)#|#(#/#.#*#\#\#)#|#(#\#\#.#*#\#\#)#|#(#\#\#.#*#/
#)#)###<#:#l#e#f#t#d#i#r#s#:#>###(#(#.#*#/#)#|#(#.#*#\#\#)#|
#(#)#)###<#:#r#i#g#h#t#d#i#r#s#:#>###.#*###<#:#a#n#y#t#h#i#n#g#:#>##[#^#\#.#]#*##
[#^#\#.#]#.###[#^#/#\#\#]#*##[#/#\#\#]#+###<#:#u#n#c#s#l#a#s#h#s#l#a#s#h#:#>##
\#\#\#\###(#?#<#F#I#X#E#D#D#I#R#>###(#?#<#W#I#L#D#C#A#R#D#D#I#R#>###(#?
#<#F#I#L#E#N#A#M#E#>###.#.#.###:###F#I#X#E#D#D#I#R###W#I#L#D#C#A#R#D#D#I#R###F#I#L#
E#N#A#M#E###M#S#B#u#i#l#d#.###A#l#g#o#r#i#t#h#m#I#d###B#a#s#e#A#d#d#r#e#s#s###C#o#m
#p#a#n#y#N#a#m#e###C#o#n#f#i#g#u#r#a#t#i#o#n###C#o#p#y#r#i#g#h#t###C#u#l#t#u#r#e###
D#e#l#a#y#S#i#g#n###D#e#s#c#r#i#p#t#i#o#n###E#v#i#d#e#n#c#e#F#i#l#e###F#i#l#e#V#e#r
#s#i#o#n###F#l#a#g#s###G#e#n#e#r#a#t#e#F#u#l#l#P#a#t#h#s###K#e#y#F#i#l#e###K#e#y#C#
o#n#t#a#i#n#e#r###M#a#i#n#E#n#t#r#y#P#o#i#n#t###O#u#t#p#u#t#A#s#s#e#m#b#l#y###P#l#a
#t#f#o#r#m###P#r#o#d#u#c#t#N#a#m#e###P#r#o#d#u#c#t#V#e#r#s#i#o#n###R#e#s#p#o#n#s#e#
F#i#l#e#s###T#a#r#g#e#t#T#y#p#e###T#e#m#p#l#a#t#e#F#i#l#e###T#i#t#l#e###T#r#a#d#e#m
#a#r#k###V#e#r#s#i#o#n###W#i#n#3#2#I#c#o#n###W#i#n#3#2#R#e#s#o#u#r#c#e###S#o#u#r#c#
e#M#o#d#u#l#e#s###E#m#b#e#d#R#e#s#o#u#r#c#e#s###L#i#n#k#R#e#s#o#u#r#c#e#s##
A#L#.#e#x#e##?G#e#n#e#r#a#l#.#P#l#a#t#f#o#r#m#S#D#K#F#i#l#e#N#o#t#F#o#u#n#d###/
#a#l#g#i#d#:###/#b#a#s#e#a#d#d#r#e#s#s#:###/#c#o#m#p#a#n#y#:###/
#c#o#n#f#i#g#u#r#a#t#i#o#n#:###/#c#o#p#y#r#i#g#h#t#:###/#c#u#l#t#u#r#e#:###/
#d#e#l#a#y#s#i#g#n###/#d#e#s#c#r#i#p#t#i#o#n#:###/#e#v#i#d#e#n#c#e#:###/
#f#i#l#e#v#e#r#s#i#o#n#:###/#f#l#a#g#s#:###/#f#u#l#l#p#a#t#h#s###/
#k#e#y#f#i#l#e#:###/#k#e#y#n#a#m#e#:##
/#m#a#i#n#:###/#o#u#t#:###/#p#l#a#t#f#o#r#m#:###/#p#r#o#d#u#c#t#:##!/
#p#r#o#d#u#c#t#v#e#r#s#i#o#n#:###/#t#a#r#g#e#t#:###/#t#e#m#p#l#a#t#e#:###/
#t#i#t#l#e#:###/#t#r#a#d#e#m#a#r#k#:###/#v#e#r#s#i#o#n#:###/
#w#i#n#3#2#i#c#o#n#:###/#w#i#n#3#2#r#e#s#:#####T#a#r#g#e#t#F#i#l#e###/
#e#m#b#e#d#:###L#o#g#i#c#a#l#N#a#m#e##A#c#c#e#s#s##
/#l#i#n#k#:###@###r#u#n#t#i#m#e###o#l#d#V#e#r#s#i#o#n##UA#p#p#C#o#n#f#i#g#.#B#i#n#d
#i#n#g#R#e#d#i#r#e#c#t#M#i#s#s#i#n#g#O#l#d#V#e#r#s#i#o#n###n#e#w#V#e#r#s#i#o#n###d#
e#p#e#n#d#e#n#t#a#s#s#e#m#b#l#y##!a#s#s#e#m#b#l#y#I#d#e#n#t#i#t#y##
n#u#l#l###n#e#u#t#r#a#l##
n#a#m#e###p#u#b#l#i#c#K#e#y#T#o#k#e#n###c#u#l#t#u#r#e##k{#0#}#,#
#V#e#r#s#i#o#n#=#0#.#0#.#0#.#0#,# #C#u#l#t#u#r#e#=#{#1#}#,#
#P#u#b#l#i#c#K#e#y#T#o#k#e#n#=#{#2#}##OA#p#p#C#o#n#f#i#g#.#I#n#v#a#l#i#d#A#s#s#e#m#
b#l#y#I#d#e#n#t#i#t#y#F#i#e#l#d#s###b#i#n#d#i#n#g#R#e#d#i#r#e#c#t###d#e#p#e#n#d#e#n
#t#A#s#s#e#m#b#l#y###M#e#t#a#b#a#s#e#P#a#t#h###P#h#y#s#i#c#a#l#P#a#t#h###T#a#r#g#e#
t#P#a#t#h###V#i#r#t#u#a#l#P#a#t#h##'a#s#p#n#e#t#_#c#o#m#p#i#l#e#r#.#e#x#e###C#l#e#a
#n###-#m# ###-#v# ###-#p# ###-#u###-#f###-#c###-#d###-#f#i#x#e#d#n#a#m#e#s##-
#a#p#t#c#a###-#d#e#l#a#y#s#i#g#n###-#k#e#y#f#i#l#e# ###-#k#e#y#c#o#n#t#a#i#n#e#r#
##=G#e#n#e#r#a#l#.#F#r#a#m#e#w#o#r#k#s#F#i#l#e#N#o#t#F#o#u#n#d##��A#s#p#N#e#t#C#o#
m#p#i#l#e#r#.#C#a#n#n#o#t#C#o#m#b#i#n#e#M#e#t#a#b#a#s#e#A#n#d#V#i#r#t#u#a#l#P#a#t#h
#O#r#P#h#y#s#i#c#a#l#P#a#t#h##aA#s#p#N#e#t#C#o#m#p#i#l#e#r#.#M#i#s#s#i#n#g#M#e#t#a#
b#a#s#e#P#a#t#h#A#n#d#V#i#r#t#u#a#l#P#a#t#h##oA#s#p#N#e#t#C#o#m#p#i#l#e#r#.#M#i#s#s
#i#n#g#T#a#r#g#e#t#P#a#t#h#F#o#r#U#p#d#a#t#a#b#l#e#A#p#p#l#i#c#a#t#i#o#n##sA#s#p#N#
e#t#C#o#m#p#i#l#e#r#.#M#i#s#s#i#n#g#T#a#r#g#e#t#P#a#t#h#F#o#r#O#v#e#r#w#r#i#t#t#e#n
#A#p#p#l#i#c#a#t#i#o#n###M#i#n#O#S#V#e#r#s#i#o#n###M#a#x#O#S#V#e#r#s#i#o#n###v###S#
e#a#r#c#h#P#a#t#h#s###R#E#G#I#S#T#R#Y#K#E#Y#R#O#O#T##)T#A#R#G#E#T#R#U#N#T#I#M#E#V#E
#R#S#I#O#N###R#E#G#I#S#T#R#Y#K#E#Y#S#U#F#F#I#X###C#O#N#D#I#T#I#O#N#S###O#S#V#E#
R#S#I#O#N#=###P#L#A#T#F#O#R#M#=##��{#r#e#g#i#s#t#r#y#:#(#?
#<#R#E#G#I#S#T#R#Y#K#E#Y#R#O#O#T#>#[#^#,#]#*#)#,#(#?
#<#T#A#R#G#E#T#R#U#N#T#I#M#E#V#E#R#S#I#O#N#>#[#^#,#]#*#)#,#(#?
#<#R#E#G#I#S#T#R#Y#K#E#Y#S#U#F#F#I#X#>#[#^#,#]#*#)#(#[#,#]#*#)#(#?
#<#C#O#N#D#I#T#I#O#N#S#>#.#*#)#}###s#o#u#r#c#e#F#i#l#e###,# ##%
{#h#i#n#t#p#a#t#h#f#r#o#m#i#t#e#m#}##5{#t#a#r#g#e#t#f#r#a#m#e#w#o#r#k#d#i#r#e#c#t#o
#r#y#}###{#r#a#w#f#i#l#e#n#a#m#e#}##1{#c#a#n#d#i#d#a#t#e#a#s#s#e#m#b#l#y#f#i#l#e#s#
}###{#g#a#c#}###{#a#s#s#e#m#b#l#y#f#o#l#d#e#r#s#}###{#r#e#g#i#s#t#r#y#:##5U#n#e#x#p
#e#c#t#e#d# #C#o#p#y#L#o#c#a#l# #f#l#a#g#.###a#s#s#e#m#b#l#y#N#a#m#e##EG#o#t# #a#
#n#u#l#l# #a#s#s#e#m#b#l#y# #n#a#m#e# #f#u#l#l#n#a#m#e#.##1,#
#P#r#o#c#e#s#s#o#r#A#r#c#h#i#t#e#c#t#u#r#e#=## M#S#I#L##5G#o#t# #a# #n#u#l#l#
#t#a#b#l#e#C#a#n#d#i#d#a#t#e#.##iA# #p#r#i#m#a#r#y# #r#e#f#e#r#e#n#c#e# #m#u#s#t#
#h#a#v#e# #a# #p#r#i#m#a#r#y# #s#o#u#r#c#e# #i#t#e#m#.##qO#n#l#y# #a#
#p#r#i#m#a#r#y# #r#e#f#e#r#e#n#c#e# #c#a#n# #h#a#v#e# #a# #p#r#i#m#a#r#y#
#s#o#u#r#c#e# #i#t#e#m#.###P#r#i#v#a#t#e###*#U#n#r#e#s#o#l#v#e#d#*##7G#o#t# #a#n#
#e#m#p#t#y# #a#s#s#e#m#b#l#y#
#n#a#m#e#.###*#d#i#r#e#c#t#o#r#y#*##AG#e#n#e#r#a#l#.#E#x#p#e#c#t#e#d#F#i#l#e#G#o#t#
D#i#r#e#c#t#o#r#y##7G#e#n#e#r#a#l#.#E#x#p#e#c#t#e#d#F#i#l#e#M#i#s#s#i#n#g##'E#x#e#c
#u#t#a#b#l#e#E#x#t#e#n#s#i#o#n###F#u#s#i#o#n#N#a#m#e###H#i#n#t#P#a#t#h###A#s#s#e#m#
b#l#y#F#o#l#d#e#r#K#e#y###P#u#b#l#i#c#K#e#y#T#o#k#e#n##c{#0#}#,#
#V#e#r#s#i#o#n#=#{#1#}#,# #C#u#l#t#u#r#e#=#{#2#}#,#
#P#u#b#l#i#c#K#e#y#T#o#k#e#n#=#{#3#}###=###S#p#e#c#i#f#i#c#V#e#r#s#i#o#n###A#s#s#e#
m#b#l#y#F#i#l#e#s###*#.###.#r#e#s#o#u#r#c#e#s#.#d#l#l##'.#X#m#l#S#e#r#i#a#l#i#z#e#r
#s#.#d#l#l###m#s#c#o#r#l#i#b##=G#e#n#e#r#a#l#.#C#o#u#l#d#N#o#t#L#o#c#a#t#e#A#s#s#e#
m#b#l#y###E#x#c#l#u#s#i#o#n#L#i#s#t##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n
#c#e#.#F#a#i#l#e#d#T#o#R#e#s#o#l#v#e#R#e#f#e#r#e#n#c#e#B#e#c#a#u#s#e#P#r#i#m#a#r#y#
A#s#s#e#m#b#l#y#I#n#E#x#c#l#u#s#i#o#n#L#i#s#t##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e
#f#e#r#e#n#c#e#.#W#a#r#n#B#e#c#a#u#s#e#D#e#p#e#n#d#e#n#t#A#s#s#e#m#b#l#y#I#n#E#x#c#
l#u#s#i#o#n#L#i#s#t##wM#a#x#i#m#u#m# #i#t#e#r#a#t#i#o#n#s# #e#x#c#e#e#d#e#d#
#w#h#i#l#e# #l#o#o#k#i#n#g# #f#o#r# #d#e#p#e#n#d#e#n#c#i#e#s#.##��M#a#x#i#m#u#m#
#i#t#e#r#a#t#i#o#n#s# #e#x#c#e#e#d#e#d# #w#h#i#l#e# #l#o#o#k#i#n#g# #f#o#r#
#r#e#s#o#l#v#a#b#l#e# #r#e#f#e#r#e#n#c#e#s#.###0#.#0#.#0#.#0##MG#o#t# #a# #n#u#l#l#
#a#s#s#e#m#b#l#y# #n#a#m#e# #f#u#l#l#n#a#m#e#.# #(#0#)##MG#o#t# #a# #n#u#l#l#
#a#s#s#e#m#b#l#y# #n#a#m#e# #f#u#l#l#n#a#m#e#.#
#(#1#)###R#e#s#o#l#v#e#d#F#r#o#m###C#o#p#y#L#o#c#a#l## t#r#u#e###f#a#l#s#e##
R#e#d#i#s#t###I#s#R#e#d#i#s#t#R#o#o#t##/D#e#s#t#i#n#a#t#i#o#n#S#u#b#D#i#r#e#c#t#o#r
#y## .#d#l#l## .#e#x#e## .#p#d#b## .#x#m#l##-
T#a#r#g#e#t#F#r#a#m#e#w#o#r#k#S#u#b#s#e#t#s##;I#n#s#t#a#l#l#e#d#A#s#s#e#m#b#l#y#S#u
#b#s#e#t#T#a#b#l#e#s##=F#u#l#l#T#a#r#g#e#t#F#r#a#m#e#w#o#r#k#S#u#b#s#e#t#N#a#m#e#s#
#gR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#C#o#n#f#l#i#c#t#R#e#d#i#r#e#c#t
#S#u#g#g#e#s#t#i#o#n##WR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#S#u#g#g#e#
s#t#e#d#R#e#d#i#r#e#c#t#s##;G#e#n#e#r#a#l#.#M#a#l#f#o#r#m#e#d#A#s#s#e#m#b#l#y#N#a#m
#e##]R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#L#o#g#T#a#s#k#P#r#o#p#e#r#t#
y#F#o#r#m#a#t###A#s#s#e#m#b#l#i#e#s##QR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c
#e#.#F#o#u#r#S#p#a#c#e#I#n#d#e#n#t###S#u#b#T#y#p#e##-
C#a#n#d#i#d#a#t#e#A#s#s#e#m#b#l#y#F#i#l#e#s##5T#a#r#g#e#t#F#r#a#m#e#w#o#r#k#D#i#r#e
#c#t#o#r#i#e#s###,##/I#n#s#t#a#l#l#e#d#A#s#s#e#m#b#l#y#T#a#b#l#e#s##
%F#r#a#m#e#w#o#r#k#D#i#r#e#c#t#o#r#y##9I#g#n#o#r#e#I#n#s#t#a#l#l#e#d#A#s#s#e#m#b#l#
y#T#a#b#l#e##3A#l#l#o#w#e#d#A#s#s#e#m#b#l#y#E#x#t#e#n#s#i#o#n#s##9A#l#l#o#w#e#d#R#e
#l#a#t#e#d#F#i#l#e#E#x#t#e#n#s#i#o#n#s###A#p#p#C#o#n#f#i#g#F#i#l#e###A#u#t#o#U#n#i#
f#y##7T#a#r#g#e#t#P#r#o#c#e#s#s#o#r#A#r#c#h#i#t#e#c#t#u#r#e###S#t#a#t#e#F#i#l#e##EI
#g#n#o#r#e#I#n#s#t#a#l#l#e#d#A#s#s#e#m#b#l#y#S#u#b#s#e#t#T#a#b#l#e##SR#e#s#o#l#v#e#
A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#E#i#g#h#t#S#p#a#c#e#I#n#d#e#n#t##WR#e#s#o#l#v#e
#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#L#o#g#A#t#t#r#i#b#u#t#e#F#o#r#m#a#t##aR#e#s#o#
l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U#n#i#f#i#e#d#P#r#i#m#a#r#y#R#e#f#e#r#e#n
#c#e##SR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#P#r#i#m#a#r#y#R#e#f#e#r#e#
n#c#e##UR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U#n#i#f#i#e#d#D#e#p#e#n#d
#e#n#c#y##GR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#D#e#p#e#n#d#e#n#c#y##_
R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U#n#i#f#i#c#a#t#i#o#n#B#y#A#u#t#o
#U#n#i#f#y##_R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U#n#i#f#i#c#a#t#i#o#
n#B#y#A#p#p#C#o#n#f#i#g##oR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U#n#i#f
#i#c#a#t#i#o#n#B#y#F#r#a#m#e#w#o#r#k#R#e#t#a#r#g#e#t##cR#e#s#o#l#v#e#A#s#s#e#m#b#l#
y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#T#o#R#e#s#o#l#v#e#R#e#f#e#r#e#n#c#e##sM#S#B#u#i#l
#d#.#R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#T#o#R#e#s#o#l#v#
e#R#e#f#e#r#e#n#c#e##gR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d
#T#o#F#i#n#d#D#e#p#e#n#d#e#n#t#F#i#l#e#s##wM#S#B#u#i#l#d#.#R#e#s#o#l#v#e#A#s#s#e#m#
b#l#y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#T#o#F#i#n#d#D#e#p#e#n#d#e#n#t#F#i#l#e#s##YR#e
#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#W#i#t#h#E#x#c#e#p#t#i#o#
n##iM#S#B#u#i#l#d#.#R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#W
#i#t#h#E#x#c#e#p#t#i#o#n###r#e#f#e#r#e#n#c#e##CR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#
e#r#e#n#c#e#.#R#e#s#o#l#v#e#d##KR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#R
#e#s#o#l#v#e#d#F#r#o#m##GR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#S#e#a#r#
c#h#P#a#t#h##wR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#C#o#n#s#i#d#e#r#e#d
#A#n#d#R#e#j#e#c#t#e#d#B#e#c#a#u#s#e#N#o#F#i#l#e##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#
R#e#f#e#r#e#n#c#e#.#C#o#n#s#i#d#e#r#e#d#A#n#d#R#e#j#e#c#t#e#d#B#e#c#a#u#s#e#F#u#s#i
#o#n#N#a#m#e#s#D#i#d#n#t#M#a#t#c#h##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#
c#e#.#C#o#n#s#i#d#e#r#e#d#A#n#d#R#e#j#e#c#t#e#d#B#e#c#a#u#s#e#T#a#r#g#e#t#D#i#d#n#t
#H#a#v#e#F#u#s#i#o#n#N#a#m#e##{R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#C#
o#n#s#i#d#e#r#e#d#A#n#d#R#e#j#e#c#t#e#d#B#e#c#a#u#s#e#N#o#t#I#n#G#a#c##��R#e#s#o#l
#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#C#o#n#s#i#d#e#r#e#d#A#n#d#R#e#j#e#c#t#e#d#
B#e#c#a#u#s#e#N#o#t#A#F#i#l#e#N#a#m#e#O#n#D#i#s#k##GR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R
#e#f#e#r#e#n#c#e#.#R#e#q#u#i#r#e#d#B#y##SR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#
n#c#e#.#F#o#u#n#d#R#e#l#a#t#e#d#F#i#l#e##WR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e
#n#c#e#.#F#o#u#n#d#S#a#t#e#l#l#i#t#e#F#i#l#e##SR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#
e#r#e#n#c#e#.#F#o#u#n#d#S#c#a#t#t#e#r#F#i#l#e##qR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f
#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#o#c#a#l#B#e#c#a#u#s#e#P#r#e#r#e#q#u#i#s#i#t#e##��R#
e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#o#c#a#l#B#e#c#a#u#s
#e#I#n#c#o#m#i#n#g#I#t#e#m#A#t#t#r#i#b#u#t#e#O#v#e#r#r#o#d#e##wR#e#s#o#l#v#e#A#s#s#
e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#o#c#a#l#B#e#c#a#u#s#e#F#r#a#m#e#w#o#r
#k#s#F#i#l#e#s##wR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#
o#c#a#l#B#e#c#a#u#s#e#N#o#F#r#a#m#e#w#o#r#k#P#a#t#h##R#e#s#o#l#v#e#A#s#s#e#m#b#l#y
#R#e#f#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#o#c#a#l#B#e#c#a#u#s#e#R#e#f#e#r#e#n#c#e#F#o#u#
n#d#I#n#G#A#C##uR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#t#C#o#p#y#L#o
#c#a#l#B#e#c#a#u#s#e#C#o#n#f#l#i#c#t#V#i#c#t#i#m##MR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#
e#f#e#r#e#n#c#e#.#C#o#n#f#l#i#c#t#F#o#u#n#d##iR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e
#r#e#n#c#e#.#C#o#n#f#l#i#c#t#H#i#g#h#e#r#V#e#r#s#i#o#n#C#h#o#s#e#n##]R#e#s#o#l#v#e#
A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#C#o#n#f#l#i#c#t#P#r#i#m#a#r#y#C#h#o#s#e#n##WR#e
#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#C#o#n#f#l#i#c#t#U#n#s#o#l#v#a#b#l#e#
#{R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#C#o#n#f#l#i#c#t#B#e#t#w#e#e#n#A
#p#p#C#o#n#f#i#g#A#n#d#A#u#t#o#U#n#i#f#y##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#
r#e#n#c#e#.#N#o#R#e#d#i#s#t#A#s#s#e#m#b#l#i#e#s#T#o#G#e#n#e#r#a#t#e#E#x#c#l#u#s#i#o
#n#L#i#s#t##OR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#S#u#b#s#e#t#s#F#
o#u#n#d##wR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#I#n#v#a#l#i#d#I#n#s#t#a
#l#l#e#d#A#s#s#e#m#b#l#y#T#a#b#l#e#s#F#i#l#e##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#
f#e#r#e#n#c#e#.#I#n#v#a#l#i#d#I#n#s#t#a#l#l#e#d#A#s#s#e#m#b#l#y#S#u#b#s#e#t#T#a#b#l
#e#s#F#i#l#e##SR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#I#n#v#a#l#i#d#A#p#
p#C#o#n#f#i#g##/
G#e#n#e#r#a#l#.#I#n#v#a#l#i#d#A#r#g#u#m#e#n#t##SR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f
#e#r#e#n#c#e#.#I#n#v#a#l#i#d#P#a#r#a#m#e#t#e#r##=M#S#B#U#I#L#D#D#U#M#P#F#R#A#M#E#W#
O#R#K#S#U#B#S#E#T#L#I#S#T##oR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#T#a#r
#g#e#t#F#r#a#m#e#w#o#r#k#S#u#b#s#e#t#L#o#g#H#e#a#d#e#r##oR#e#s#o#l#v#e#A#s#s#e#m#b#
l#y#R#e#f#e#r#e#n#c#e#.#T#a#r#g#e#t#F#r#a#m#e#w#o#r#k#R#e#d#i#s#t#L#o#g#H#e#a#d#e#r
##]R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#F#o#r#m#a#t#t#e#d#A#s#s#e#m#b#
l#y#I#n#f#o##uR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#T#a#r#g#e#t#F#r#a#m
#e#w#o#r#k#W#h#i#t#e#L#i#s#t#L#o#g#H#e#a#d#e#r##}R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#
f#e#r#e#n#c#e#.#T#a#r#g#e#t#F#r#a#m#e#w#o#r#k#E#x#c#l#u#s#i#o#n#L#i#s#t#L#o#g#H#e#a
#d#e#r##R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#E#x#c#l#u#s#i#o#n#L#
i#s#t#B#e#c#a#u#s#e#o#f#F#u#l#l#C#l#i#e#n#t#N#a#m#e##��R#e#s#o#l#v#e#A#s#s#e#m#b#l
#y#R#e#f#e#r#e#n#c#e#.#N#o#E#x#c#l#u#s#i#o#n#L#i#s#t#B#e#c#a#u#s#e#I#g#n#o#r#e#S#u#
b#s#e#t#s#A#n#d#N#o#A#d#d#i#t#i#o#n#a#l#O#n#e#s#P#r#o#v#i#d#e#d##��R#e#s#o#l#v#e#A
#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#N#o#E#x#c#l#u#s#i#o#n#L#i#s#t#B#e#c#a#u#s#e#N#o#
S#u#b#s#e#t#s#P#a#s#s#e#d#I#n##WR#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#U
#s#i#n#g#E#x#c#l#u#s#i#o#n#L#i#s#t###M#a#x#V#e#r#s#i#o#n##cR#e#s#o#l#v#e#A#s#s#e#m#
b#l#y#R#e#f#e#r#e#n#c#e#.#B#a#d#T#a#r#g#e#t#F#r#a#m#e#w#o#r#k#F#o#r#m#a#t##oR#e#s#o
#l#v#e#A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e#.#I#g#n#o#r#i#n#g#B#e#c#a#u#s#e#N#o#n#E#m#
p#t#y#S#u#b#t#y#p#e##/
R#e#q#u#i#r#e#d#T#a#r#g#e#t#F#r#a#m#e#w#o#r#k##��R#e#s#o#l#v#e#A#s#s#e#m#b#l#y#R#e
#f#e#r#
e#n#c#e#.#F#a#i#l#e#d#T#o#R#e#s#o#l#v#e#R#e#f#e#r#e#n#c#e#B#e#c#a#u#s#e#H#i#g#h#e#r
#T#a#r#g#e#t#F#r#a#m#e#w#o#r#k## h#k#c#u##
h#k#l#m##A#s#s#e#m#b#l#y#F#o#l#d#e#r#.#A#d#d#F#o#l#d#e#r#s#F#r#o#m#R#e#g#i#s#t#r#y
#K#e#y# #e#x#p#e#c#t#e#d# #a# #k#n#o#w#n# #h#i#v#e#.##aS#O#F#T#W#A#R#E#\
#M#i#c#r#o#s#o#f#t#\#.#N#E#T#F#r#a#m#e#w#o#r#k#\
#A#s#s#e#m#b#l#y#F#o#l#d#e#r#s##gS#O#F#T#W#A#R#E#\#M#i#c#r#o#s#o#f#t#\
#V#i#s#u#a#l#S#t#u#d#i#o#\#8#.#0#\
#A#s#s#e#m#b#l#y#F#o#l#d#e#r#s##=G#e#n#e#r#a#l#.#C#o#u#l#d#N#o#t#W#r#i#t#e#S#t#a#t#
e#F#i#l#e##IG#e#n#e#r#a#l#.#C#o#u#l#d#N#o#t#R#e#a#d#S#t#a#t#e#F#i#l#e#M#e#s#s#a#g#e
##CG#e#n#e#r#a#l#.#I#n#c#o#m#p#a#t#i#b#l#e#S#t#a#t#e#F#i#l#e#T#y#p#e##;G#e#n#e#r#a#
l#.#C#o#u#l#d#N#o#t#R#e#a#d#S#t#a#t#e#F#i#l#e##?
G#e#n#e#r#a#l#.#C#o#u#l#d#N#o#t#D#e#l#e#t#e#S#t#a#t#e#F#i#l#e##��I#n#t#e#r#n#a#l#
#a#s#s#e#m#b#l#y# #a#n#d# #t#y#p#e# #l#i#b#r#a#r#y# #l#i#s#t#s# #s#h#o#u#l#d#
#h#a#v#e# #t#h#e# #s#a#m#e# #n#u#m#b#e#r# #o#f# #e#n#t#r#i#e#s# #i#n#
#A#s#s#e#m#b#l#y#R#e#g#i#s#t#r#a#t#i#o#n#C#a#c#h#e##I#n#v#a#l#i#d# #i#n#d#e#x#
#i#n# #t#h#e# #c#a#l#l# #t#o#
#A#s#s#e#m#b#l#y#R#e#g#i#s#t#r#a#t#i#o#n#C#a#c#h#e#.#G#e#t#E#n#t#r#y##;M#i#c#r#o#s#
o#f#t#.#B#u#i#l#d#.#T#a#s#k#s#.#S#t#r#i#n#g#s##IM#i#c#r#o#s#o#f#t#.#B#u#i#l#d#.#T#a
#s#k#s#.#S#t#r#i#n#g#s#.#s#h#a#r#e#d###D#e#p#e#n#d#e#n#t#U#p#o#n###W#i#t#h#C#u#l#t#
u#r#e##+A#s#s#i#g#n#C#u#l#t#u#r#e#.#C#o#m#m#e#n#t##EA#s#s#i#g#n#C#u#l#t#u#r#e#.#C#a
#n#n#o#t#E#x#t#r#a#c#t#C#u#l#t#u#r#e###p#r#o#j#e#c#t#R#e#f#e#r#e#n#c#e#s###P#r#o#j#
e#c#t##cG#e#n#e#r#a#l#.#M#i#s#s#i#n#g#O#r#U#n#k#n#o#w#n#P#r#o#j#e#c#t#R#e#f#e#r#e#n
#c#e#A#t#t#r#i#b#u#t#e##��A#s#s#i#g#n#P#r#o#j#e#c#t#C#o#n#f#i#g#u#r#a#t#i#o#n#.#P#
r#o#j#e#c#t#C#o#n#f#i#g#u#r#a#t#i#o#n#R#e#s#o#l#u#t#i#o#n#S#u#c#c#e#s#s###F#u#l#l#C
#o#n#f#i#g#u#r#a#t#i#o#n##sA#s#s#i#g#n#P#r#o#j#e#c#t#C#o#n#f#i#g#u#r#a#t#i#o#n#.#P#
r#o#j#e#c#t#C#o#n#f#i#g#u#r#a#t#i#o#n#U#n#r#e#s#o#l#v#e#d##5G#e#n#e#r#a#l#.#E#r#r#o
#r#E#x#e#c#u#t#i#n#g#T#a#s#k##!
S#e#t#C#o#n#f#i#g#u#r#a#t#i#o#n###C#o#n#f#i#g#u#r#a#t#i#o#n#=###S#e#t#P#l#a#t#f#o#r
#m###P#l#a#t#f#o#r#m#=## L#i#n#k###{#0#}#|#{#1#}#.#{#2#}#|
#{#3#}##eR#e#s#o#l#v#e#C#o#m#R#e#f#e#r#e#n#c#e#.#C#a#n#n#o#t#G#e#t#T#y#p#e#L#i#b#A#
t#t#r#F#o#r#T#y#p#e#L#i#b##cR#e#s#o#l#v#e#C#o#m#R#e#f#e#r#e#n#c#e#.#C#a#n#n#o#t#R#e
#t#r#i#e#v#e#T#y#p#e#I#n#f#o#r#m#a#t#i#o#n###s#y#s#t#e#m#.#s#t#r#i#n#g##WR#e#s#o#l#
v#e#C#o#m#R#e#f#e#r#e#n#c#e#.#C#a#n#n#o#t#A#c#c#e#s#s#T#y#p#e#L#i#b#N#a#m#e##KR#e#s
#o#l#v#e#C#o#m#R#e#f#e#r#e#n#c#e#.#C#a#n#n#o#t#L#o#a#d#T#y#p#e#L#i#b##CR#e#s#o#l#v#
e#C#o#m#R#e#f#e#r#e#n#c#e#.#T#y#p#e#L#i#b#A#t#t#r#I#d##WR#e#s#o#l#v#e#C#o#m#R#e#f#e
#r#e#n#c#e#.#C#a#n#n#o#t#G#e#t#P#a#t#h#F#o#r#T#y#p#e#L#i#b##WR#e#s#o#l#v#e#C#o#m#R#
e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#T#o#R#e#m#a#p#A#d#o#T#y#p#e#L#i#b##M{#0#0#0#0#0#2#0#0
#-#0#0#0#0#-#0#0#1#0#-#8#0#0#0#-#0#0#A#A#0#0#6#D#2#E#A#4#}##M{#0#0#0#0#0#2#0#1#-
#0#0#0#0#-#0#0#1#0#-#8#0#0#0#-#0#0#A#A#0#0#6#D#2#E#A#4#}##M{#0#0#0#0#0#2#0#5#-
#0#0#0#0#-#0#0#1#0#-#8#0#0#0#-#0#0#A#A#0#0#6#D#2#E#A#4#}##M{#0#0#0#0#0#2#0#6#-
#0#0#0#0#-#0#0#1#0#-#8#0#0#0#-#0#0#A#A#0#0#6#D#2#E#A#4#}##M{#E#F#5#3#0#5#0#B#-
#8#8#2#E#-#4#7#7#6#-#B#6#4#3#-
#E#D#A#4#7#2#E#8#E#3#F#2#}###A#x#I#n#t#e#r#o#p#.##qR#e#s#o#l#v#e#C#o#m#R#e#f#e#r#e#
n#c#e#.#S#t#r#o#n#g#N#a#m#e#U#t#i#l#s#.#N#o#K#e#y#P#a#i#r#I#n#C#o#n#t#a#i#n#e#r##gR
#e#s#o#l#v#e#C#o#m#R#e#f#e#r#e#n#c#e#.#S#t#r#o#n#g#N#a#m#e#U#t#i#l#s#.#N#o#K#e#y#P#
a#i#r#I#n#F#i#l#e##aR#e#s#o#l#v#e#C#o#m#R#e#f#e#r#e#n#c#e#.#E#r#r#o#r#C#r#e#a#t#i#n
#g#W#r#a#p#p#e#r#A#s#s#e#m#b#l#y###a#x#i#m#p##qR#e#s#o#l#v#e#C#o#m#R#e#f#e#r#e#n#c#
e#.#F#a#i#l#e#d#T#o#R#e#s#o#l#v#e#D#e#p#e#n#d#e#n#t#C#o#m#R#e#f#e#r#e#n#c#e##cR#e#s
#o#l#v#e#C#o#m#R#e#f#e#r#e#n#c#e#.#R#e#s#o#l#v#e#d#D#e#p#e#n#d#e#n#t#C#o#m#R#e#f#e#
r#e#n#c#e##��R#e#s#o#l#v#e#C#o#m#R#e#f#e#r#e#n#c#e#.#F#a#i#l#e#d#T#o#R#e#s#o#l#v#e
#D#e#p#e#n#d#e#n#t#C#o#m#R#e#f#e#r#e#n#c#e#B#y#A#s#s#e#m#b#l#y#N#a#m#e##R#e#s#o#l#
v#e#C#o#m#R#e#f#e#r#e#n#c#e#.#R#e#s#o#l#v#e#d#D#e#p#e#n#d#e#n#t#C#o#m#R#e#f#e#r#e#n
#c#e#B#y#A#s#s#e#m#b#l#y#N#a#m#e##iR#e#s#o#l#v#e#C#o#m#R#e#f#e#r#e#n#c#e#.#F#a#i#l#
e#d#T#o#F#i#n#d#D#e#p#e#n#d#e#n#t#N#e#t#A#s#s#e#m#b#l#y##CG#e#n#e#r#a#t#e#B#o#o#t#s
#t#r#a#p#p#e#r#.#I#n#v#a#l#i#d#I#n#p#u#t##CG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#
.#N#o#O#u#t#p#u#t#P#a#t#h###s#e#t#u#p#.#e#x#e###B#A#S#E#U#R#L###A#p#p#l#i#c#a#t#i#o
#n#U#r#l###C#O#M#P#O#N#E#N#T#S#U#R#L###C#o#m#p#o#n#e#n#t#s#U#r#l###S#U#P#P#O#R#T#U#
R#L###S#u#p#p#o#r#t#U#r#l###H#O#M#E#S#I#T#E##)b#o#o#t#s#t#r#a#p#p#e#r#.#c#f#g#.#x#m
#l###S#E#T#U#P#C#F#G##!
b#o#o#t#s#t#r#a#p#p#e#r#.#c#f#g###C#O#U#N#T##9G#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e
#r#.#G#e#n#e#r#a#l##YG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#I#n#c#l#u#d#e#d#P#r#
o#d#u#c#t#I#n#c#l#u#d#e#d##MG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#M#i#s#s#i#n#g
#D#e#p#e#n#d#e#n#c#y##OG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#D#e#p#e#n#d#e#n#c#
y#N#o#t#F#o#u#n#d###s#e#t#u#p#.#b#i#n##IG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#M
#i#s#s#i#n#g#S#e#t#u#p#B#i#n##=G#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#C#o#p#y#E#
r#r#o#r##?G#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#I#n#v#a#l#i#d#U#r#l##
E#n#g#i#n#e###P#a#c#k#a#g#e#s###S#c#h#e#m#a#s##9B#o#o#t#s#t#r#a#p#p#e#r#I#n#s#t#a#l
#l#O#r#d#e#r#.#t#x#t###s#e#t#u#p#.#x#m#l###R#e#s#o#u#r#c#e#s###S#t#r#i#n#g#s##'S#t#
r#i#n#g#[#@#N#a#m#e#=#'#{#0#}#'#]###b#o#o#t#s#t#r#a#p#p#e#r##wh#t#t#p#:#/#/
#s#c#h#e#m#a#s#.#m#i#c#r#o#s#o#f#t#.#c#o#m#/#d#e#v#e#l#o#p#e#r#/#2#0#0#4#/#0#1#/
#b#o#o#t#s#t#r#a#p#p#e#r###P#r#o#d#u#c#t#s##)b#o#o#t#s#t#r#a#p#p#e#r#:#P#r#o#d#u#c#
t##!
D#e#p#e#n#d#s#O#n#P#r#o#d#u#c#t###I#n#c#l#u#d#e#s#P#r#o#d#u#c#t##O{#0#}#:#P#a#c#k#a
#g#e#/#{#1#}#:#R#e#l#a#t#e#d#P#r#o#d#u#c#t#s#/#{#2#}#:#{#3#}##

C#o#d#e###p#r#o#d#u#c#t#.#x#m#l###p#a#c#k#a#g#e#.#x#s#d###P#r#o#d#u#c#t#C#o#d#e##Gb
#o#o#t#s#t#r#a#p#p#e#r#:#P#r#o#d#u#c#t#[#@#P#r#o#d#u#c#t#C#o#d#e#=#'###'#]##3b#o#o#
t#s#t#r#a#p#p#e#r#:#P#a#c#k#a#g#e#F#i#l#e#s##5b#o#o#t#s#t#r#a#p#p#e#r#:#I#n#s#t#a#l
#l#C#h#e#c#k#s##+b#o#o#t#s#t#r#a#p#p#e#r#:#C#o#m#m#a#n#d#s###P#a#c#k#a#g#e#F#i#l#e#
##O#l#d#N#a#m#e## N#a#m#e##!
L#i#c#e#n#s#e#A#g#r#e#e#m#e#n#t###S#o#u#r#c#e#P#a#t#h###p#a#c#k#a#g#e#.#x#m#l##)b#o
#o#t#s#t#r#a#p#p#e#r#:#P#a#c#k#a#g#e###P#a#c#k#a#g#e###C#o#m#m#a#n#d#s###I#n#s#t#a#
l#l#C#h#e#c#k#s###P#r#o#p#e#r#t#y###P#a#c#k#a#g#e#F#i#l#e#s###S#c#h#e#d#u#l#e#s###R
#e#l#a#t#e#d#P#r#o#d#u#c#t#s###P#a#c#k#a#g#e#C#o#d#e##]b#o#o#t#s#t#r#a#p#p#e#r#:#P#
a#c#k#a#g#e#/
#b#o#o#t#s#t#r#a#p#p#e#r#:#P#a#c#k#a#g#e#F#i#l#e#s##'C#o#p#y#A#l#l#P#a#c#k#a#g#e#F#
i#l#e#s###:#*#[#@#{#0#}#=#'#{#1#}#'#]##1b#o#o#t#s#t#r#a#p#p#e#r#:#P#a#c#k#a#g#e#F#i
#l#e###b#o#o#t#s#t#r#a#p#p#e#r#:###{#0#}#:#*#[#@#{#1#}#=#'#{#2#}#'#]##=/#/
#b#o#o#t#s#t#r#a#p#p#e#r#:#*#[#@#P#a#c#k#a#g#e#F#i#l#e#]##Ab#o#o#t#s#t#r#a#p#p#e#r#
:#P#a#c#k#a#g#e#F#i#l#e#[#@#N#a#m#e#=#'##)b#o#o#t#s#t#r#a#p#p#e#r#:#S#t#r#i#n#g#s##
Ab#o#o#t#s#t#r#a#p#p#e#r#:#S#t#r#i#n#g#[#@#N#a#m#e#=#'#{#0#}#'#]###H#o#m#e#S#i#t#e#
#3/#/#b#o#o#t#s#t#r#a#p#p#e#r#:#*#[#@#S#t#r#i#n#g#]##S#t#r#i#n#g##

T#e#x#t##MG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#P#r#o#d#u#c#t#V#a#l#i#d#a#t#i#o
#n##IG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#V#a#l#i#d#a#t#i#o#n#E#r#r#o#r##MG#e#
n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#V#a#l#i#d#a#t#i#o#n#W#a#r#n#i#n#g##MG#e#n#e#r
#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#P#a#c#k#a#g#e#V#a#l#i#d#a#t#i#o#n##eb#o#o#t#s#t#r#
a#p#p#e#r#:#P#a#c#k#a#g#e#F#i#l#e#s#/
#b#o#o#t#s#t#r#a#p#p#e#r#:#P#a#c#k#a#g#e#F#i#l#e##aG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#
p#p#e#r#.#P#a#c#k#a#g#e#R#e#s#o#u#r#c#e#F#i#l#e#N#o#t#F#o#u#n#d##QG#e#n#e#r#a#t#e#B
#o#o#t#s#t#r#a#p#p#e#r#.#P#a#c#k#a#g#e#F#i#l#e#N#o#t#F#o#u#n#d##KG#e#n#e#r#a#t#e#B#
o#o#t#s#t#r#a#p#p#e#r#.#C#o#p#y#P#a#c#k#a#g#e#E#r#r#o#r##

S#i#z#e###E#U#L#A#{#0#}###{#0#}#.#{#1#}#.#x#m#l###P#r#o#d#u#c#t###X#0#2##WG#e#n#e#r
#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#P#r#o#d#u#c#t#C#u#l#t#u#r#e#N#o#t#F#o#u#n#d##QG#e#
n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#U#s#i#n#g#P#r#o#d#u#c#t#C#u#l#t#u#r#e##AG#e#n
#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#N#o#R#e#s#o#u#r#c#e#s###F#o#n#t#s##QG#e#n#e#r#
a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#N#o#S#t#r#i#n#g#s#F#o#r#C#u#l#t#u#r#e##

F#o#n#t###S#E#T#U#P#R#E#S###f#o#n#t#s#.#c#f#g#.#x#m#l###f#o#n#t#s#.#c#f#g###C#O#D#E
#P#A#G#E##UG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#U#s#i#n#g#R#e#s#o#u#r#c#e#s#C#
u#l#t#u#r#e###A#p#p#l#i#c#a#t#i#o#n###R#e#q#u#i#r#e#s#E#l#e#v#a#t#i#o#n###F#i#l#e#s
## F#i#l#e###x#m#l#t#o#c#o#n#f#i#g#.#x#s#l###%#N#E#W#L#I#N#E#
%###{#0#}#.#{#1#}###'#{#0#}#'#,#
###'#{#0#}#'##OG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#C#i#r#c#u#l#a#r#D#e#p#e#n#
d#e#n#c#y##WG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#P#a#c#k#a#g#e#H#o#m#e#S#i#t#e
#M#i#s#s#i#n#g##

H#a#s#h###P#u#b#l#i#c#K#e#y##QG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#D#i#f#f#e#r
#i#n#g#P#u#b#l#i#c#K#e#y#s##gG#e#n#e#r#a#t#e#B#o#o#t#s#t#r#a#p#p#e#r#.#M#i#s#s#i#n#
g#V#e#r#i#f#i#c#a#t#i#o#n#I#n#f#o#r#m#a#t#i#o#n##CM#i#c#r#o#s#o#f#t#\
#V#i#s#u#a#l#S#t#u#d#i#o#\#9#.#0#\#V#S#P#L#O#G##V#S#P#L#O#G##(#\
#d#+#)#$###I#f#N#o#t#H#o#m#e#S#i#t#e###p#a#c#k#a#g#e###G###F#I#L#E#D#A#T#A#{#0#}###
F#I#L#E#K#E#Y#{#0#}###h#t#t#p#:#/#/###h#t#t#p#s#:#/#/##US#o#f#t#w#a#r#e#\
#M#i#c#r#o#s#o#f#t#\#G#e#n#e#r#i#c#B#o#o#t#s#t#r#a#p#p#e#r#\#3#.#5##
P#a#t#h###p#a#t#h#s###-##wm#e#t#a#d#a#t#a#N#a#m#e#s# #a#n#d#
#t#r#e#a#t#A#s#F#l#a#g#s# #s#h#o#u#l#d# #h#a#v#e# #t#h#e# #s#a#m#e#
#l#e#n#g#t#h#.##'{#0#}#.#{#1#}#.#{#2#}#.#{#3#}#:#{#4#}## G#U#I#D## p#a#t#h##
t#l#b#i#m#p###p#r#i#m#a#r#y###p#r#i#m#a#r#y#o#r#t#l#b#i#m#p##7C#o#p#y#.#D#e#s#t#i#n
#a#t#i#o#n#I#s#D#i#r#e#c#t#o#r#y##-
C#o#p#y#.#S#o#u#r#c#e#I#s#D#i#r#e#c#t#o#r#y##+C#o#p#y#.#C#r#e#a#t#e#s#D#i#r#e#c#t#o
#r#y##!C#o#p#y#.#F#i#l#e#C#o#m#m#e#n#t##
%S#h#a#r#e#d#.#E#x#e#c#C#o#m#m#a#n#d###c#o#p#y# #/#y# #"###"#
#"###"##=C#o#p#y#.#R#e#m#o#v#i#n#g#R#e#a#d#O#n#l#y#A#t#t#r#i#b#u#t#e##+C#o#p#y#.#N#
e#e#d#s#D#e#s#t#i#n#a#t#i#o#n##!
D#e#s#t#i#n#a#t#i#o#n#F#i#l#e#s##)D#e#s#t#i#n#a#t#i#o#n#D#i#r#e#c#t#o#r#y##AC#o#p#y
#.#E#x#a#c#t#l#y#O#n#e#T#y#p#e#O#f#D#e#s#t#i#n#a#t#i#o#n##IG#e#n#e#r#a#l#.#T#w#o#V#
e#c#t#o#r#s#M#u#s#t#H#a#v#e#S#a#m#e#L#e#n#g#t#h###S#o#u#r#c#e#F#i#l#e#s###C#o#p#y#.
#E#r#r#o#r##CC#o#p#y#.#D#i#d#N#o#t#C#o#p#y#B#e#c#a#u#s#e#O#f#F#i#l#e#M#a#t#c#h##
%S#k#i#p#U#n#c#h#a#n#g#e#d#F#i#l#e#s###r#e#s#o#u#r#c#e#F#i#l#e#s##QC#r#e#a#t#e#M#a#
n#i#f#e#s#t#R#
e#s#o#u#r#c#e#N#a#m#e#.#R#o#o#t#N#a#m#e#s#p#a#c#e##UC#r#e#a#t#e#M#a#n#i#f#e#s#t#R#e
#s#o#u#r#c#e#N#a#m#e#.#N#o#R#o#o#t#N#a#m#e#s#p#a#c#e##MC#r#e#a#t#e#M#a#n#i#f#e#s#t#
R#e#s#o#u#r#c#e#N#a#m#e#.#D#e#p#e#n#d#s#U#p#o#n##[C#r#e#a#t#e#M#a#n#i#f#e#s#t#R#e#s
#o#u#r#c#e#N#a#m#e#.#D#e#p#e#n#d#s#U#p#o#n#N#o#t#h#i#n#g##)M#a#n#i#f#e#s#t#R#e#s#o#
u#r#c#e#N#a#m#e## T#y#p#e###N#o#n#-
#R#e#s#x##OC#r#e#a#t#e#M#a#n#i#f#e#s#t#R#e#s#o#u#r#c#e#N#a#m#e#.#A#s#s#i#g#n#e#d#N#
a#m#e##AC#r#e#a#t#e#M#a#n#i#f#e#s#t#R#e#s#o#u#r#c#e#N#a#m#e#.#E#r#r#o#r###s#u#b#N#a
#m#e###_##��C#r#e#a#t#e#M#a#n#i#f#e#s#t#R#e#s#o#u#r#c#e#N#a#m#e#.#D#e#f#i#n#i#t#i#
o#n#F#o#u#n#d#W#i#t#h#i#n#C#o#n#d#i#t#i#o#n#a#l#D#i#r#e#c#t#i#v#e###.#r#e#s#x###.#r
#e#s#t#e#x#t###.#r#e#s#o#u#r#c#e#s###.#c#s##
%A#d#d#i#t#i#o#n#a#l#M#e#t#a#d#a#t#a##cC#r#e#a#t#e#T#e#m#p#o#r#a#r#y#V#C#P#r#o#j#e#
c#t#.#C#r#e#a#t#i#n#g#T#e#m#p#o#r#a#r#y#P#r#o#j#e#c#t##%
$#(#P#r#o#j#e#c#t#F#i#l#e#N#a#m#e#)###$#(#P#r#o#j#e#c#t#P#a#t#h#)###R#e#f#e#r#e#n#c
#e#s##!
P#r#o#j#e#c#t#R#e#f#e#r#e#n#c#e##7R#e#f#e#r#e#n#c#e#d#P#r#o#j#e#c#t#I#d#e#n#t#i#f#i
#e#r###A#s#s#e#m#b#l#y#R#e#f#e#r#e#n#c#e###R#e#l#a#t#i#v#e#P#a#t#h###A#s#s#e#m#b#l#
y#N#a#m#e##
G#u#i#d##+C#o#p#y#L#o#c#a#l#D#e#p#e#n#d#e#n#c#i#e#s###U#s#e#I#n#B#u#i#l#d##-
U#s#e#D#e#p#e#n#d#e#n#c#i#e#s#I#n#B#u#i#l#d##9C#o#p#y#L#o#c#a#l#S#a#t#e#l#l#i#t#e#A
#s#s#e#m#b#l#i#e#s###2###1###V#C#L#i#n#k#e#r#T#o#o#l###4###V#C#L#i#b#r#a#r#i#a#n#T#
o#o#l##/L#i#n#k#L#i#b#r#a#r#y#D#e#p#e#n#d#e#n#c#i#e#s##-
A#d#d#i#t#i#o#n#a#l#D#e#p#e#n#d#e#n#c#i#e#s##

T#o#o#l###C#o#n#f#i#g#u#r#a#t#i#o#n#s###C#o#n#f#i#g#u#r#a#t#i#o#n#T#y#p#e###M#a#n#a
#g#e#d#E#x#t#e#n#s#i#o#n#s###0###.#v#b##
%A#d#d#i#t#i#o#n#a#l#L#i#b#P#a#t#h#s###A#d#d#M#o#d#u#l#e#s###C#o#d#e#P#a#g#e###D#e#
b#u#g#T#y#p#e###D#e#f#i#n#e#C#o#n#s#t#a#n#t#s##)E#m#i#t#D#e#b#u#g#I#n#f#o#r#m#a#t#i
#o#n###F#i#l#e#A#l#i#g#n#m#e#n#t###N#o#C#o#n#f#i#g##
N#o#L#o#g#o###N#o#W#i#n#3#2#M#a#n#i#f#e#s#t###O#p#t#i#m#i#z#e###S#o#u#r#c#e#s##+T#r
#e#a#t#W#a#r#n#i#n#g#s#A#s#E#r#r#o#r#s###U#t#f#8#O#u#t#p#u#t###W#i#n#3#2#M#a#n#i#f#
e#s#t###l#i#b#r#a#r#y##
m#o#d#u#l#e###.#n#e#t#m#o#d#u#l#e###/#a#d#d#m#o#d#u#l#e#:###/#c#o#d#e#p#a#g#e#:##
/#d#e#b#u#g###/#d#e#b#u#g#:###/#f#i#l#e#a#l#i#g#n#:###/#k#e#y#c#o#n#t#a#i#n#e#r#:##
#/#l#i#n#k#r#e#s#o#u#r#c#e#:###/#n#o#l#o#g#o##!/#n#o#w#i#n#3#2#m#a#n#i#f#e#s#t###/
#o#p#t#i#m#i#z#e###/#r#e#s#o#u#r#c#e#:###/#w#a#r#n#a#s#e#r#r#o#r###/
#u#t#f#8#o#u#t#p#u#t###/#w#i#n#3#2#m#a#n#i#f#e#s#t#:### ##
n#o#n#e###/#n#o#c#o#n#f#i#g##EG#e#n#e#r#a#l#.#D#u#p#l#i#c#a#t#e#I#t#e#m#s#N#o#t#S#u
#p#p#o#r#t#e#d##]G#e#n#e#r#a#l#.#D#u#p#l#i#c#a#t#e#I#t#e#m#s#N#o#t#S#u#p#p#o#r#t#e#
d#W#i#t#h#M#e#t#a#d#a#t#a##UG#e#n#e#r#a#l#.#P#a#r#a#m#e#t#e#r#U#n#s#u#p#p#o#r#t#e#d
#O#n#H#o#s#t#C#o#m#p#i#l#e#r##;G#e#n#e#r#a#l#.#R#e#f#e#r#e#n#c#e#D#o#e#s#N#o#t#E#x#
i#s#t##+d#e#f#a#u#l#t#.#w#i#n#3#2#m#a#n#i#f#e#s#t###A#l#l#o#w#U#n#s#a#f#e#B#l#o#c#k
#s##3C#h#e#c#k#F#o#r#

You might also like