From a64117703ddecd8810561e9c7aae588335b04acd Mon Sep 17 00:00:00 2001 From: Sarabjot Singh Date: Wed, 1 Aug 2018 19:44:47 +0530 Subject: [PATCH] Adding Intellitest and Create Unit Test wizard --- .../GlobalAssemblyInfo.cs | 19 + .../MSTestv2AssertMethodFilter.cs | 61 ++ .../MSTestv2IntelliTestExtension.csproj | 69 ++ .../MSTestv2TestFramework.cs | 482 +++++++++++++ .../MSTestv2TestFrameworkMetadata.cs | 69 ++ .../MSTestv2TestFrameworkPackage.cs | 14 + .../MSTestv2TestFrameworkPackageAttribute.cs | 31 + .../Properties/AssemblyInfo.cs | 38 + .../packages.config | 5 + .../GlobalAssemblyInfo.cs | 19 + .../IntelliTestExtensionLicense.rtf | 658 ++++++++++++++++++ ...MSTestv2IntelliTestExtensionPackage.csproj | 76 ++ .../Properties/AssemblyInfo.cs | 35 + .../Resources/cs/extension.vsixlangpack | 7 + .../Resources/de/extension.vsixlangpack | 7 + .../Resources/es/extension.vsixlangpack | 7 + .../Resources/fr/extension.vsixlangpack | 7 + .../Resources/it/extension.vsixlangpack | 7 + .../Resources/ja/extension.vsixlangpack | 7 + .../Resources/ko/extension.vsixlangpack | 7 + .../Resources/pl/extension.vsixlangpack | 7 + .../Resources/pt-BR/extension.vsixlangpack | 7 + .../Resources/ru/extension.vsixlangpack | 7 + .../Resources/tr/extension.vsixlangpack | 7 + .../Resources/zh-Hans/extension.vsixlangpack | 7 + .../Resources/zh-Hant/extension.vsixlangpack | 7 + .../extension.vsixlangpack | 6 + .../packages.config | 5 + .../source.extension.vsixmanifest | 27 + .../GlobalAssemblyInfo.cs | 19 + .../MSTestv2FrameworkProvider.cs | 118 ++++ .../MSTestv2SolutionManager.cs | 69 ++ .../MSTestv2UnitTestClassManager.cs | 48 ++ .../MSTestv2UnitTestExtension.csproj | 91 +++ .../MSTestv2UnitTestProjectManager.cs | 41 ++ .../Properties/AssemblyInfo.cs | 38 + .../MSTestv2UnitTestExtension/packages.config | 6 + .../CreateUnitTestExtensionLicense.rtf | 658 ++++++++++++++++++ .../GlobalAssemblyInfo.cs | 19 + .../MSTestv2UnitTestExtensionPackage.csproj | 76 ++ .../Properties/AssemblyInfo.cs | 35 + .../Resources/cs/extension.vsixlangpack | 7 + .../Resources/de/extension.vsixlangpack | 7 + .../Resources/es/extension.vsixlangpack | 7 + .../Resources/fr/extension.vsixlangpack | 7 + .../Resources/it/extension.vsixlangpack | 7 + .../Resources/ja/extension.vsixlangpack | 7 + .../Resources/ko/extension.vsixlangpack | 7 + .../Resources/pl/extension.vsixlangpack | 7 + .../Resources/pt-BR/extension.vsixlangpack | 7 + .../Resources/ru/extension.vsixlangpack | 7 + .../Resources/tr/extension.vsixlangpack | 7 + .../Resources/zh-Hans/extension.vsixlangpack | 7 + .../Resources/zh-Hant/extension.vsixlangpack | 7 + .../extension.vsixlangpack | 6 + .../packages.config | 5 + .../source.extension.vsixmanifest | 27 + WizardExtensions/WizardExtensions.sln | 40 ++ 58 files changed, 3092 insertions(+) create mode 100644 WizardExtensions/MSTestv2IntelliTestExtension/GlobalAssemblyInfo.cs create mode 100644 WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2AssertMethodFilter.cs create mode 100644 WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2IntelliTestExtension.csproj create mode 100644 WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFramework.cs create mode 100644 WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkMetadata.cs create mode 100644 WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkPackage.cs create mode 100644 WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkPackageAttribute.cs create mode 100644 WizardExtensions/MSTestv2IntelliTestExtension/Properties/AssemblyInfo.cs create mode 100644 WizardExtensions/MSTestv2IntelliTestExtension/packages.config create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/GlobalAssemblyInfo.cs create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/IntelliTestExtensionLicense.rtf create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/MSTestv2IntelliTestExtensionPackage.csproj create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Properties/AssemblyInfo.cs create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/cs/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/de/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/es/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/fr/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/it/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ja/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ko/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/pl/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/pt-BR/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ru/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/tr/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/zh-Hans/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/zh-Hant/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/packages.config create mode 100644 WizardExtensions/MSTestv2IntelliTestExtensionPackage/source.extension.vsixmanifest create mode 100644 WizardExtensions/MSTestv2UnitTestExtension/GlobalAssemblyInfo.cs create mode 100644 WizardExtensions/MSTestv2UnitTestExtension/MSTestv2FrameworkProvider.cs create mode 100644 WizardExtensions/MSTestv2UnitTestExtension/MSTestv2SolutionManager.cs create mode 100644 WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestClassManager.cs create mode 100644 WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestExtension.csproj create mode 100644 WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestProjectManager.cs create mode 100644 WizardExtensions/MSTestv2UnitTestExtension/Properties/AssemblyInfo.cs create mode 100644 WizardExtensions/MSTestv2UnitTestExtension/packages.config create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/CreateUnitTestExtensionLicense.rtf create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/GlobalAssemblyInfo.cs create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/MSTestv2UnitTestExtensionPackage.csproj create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Properties/AssemblyInfo.cs create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/cs/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/de/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/es/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/fr/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/it/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ja/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ko/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/pl/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/pt-BR/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ru/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/tr/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/zh-Hans/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/zh-Hant/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/extension.vsixlangpack create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/packages.config create mode 100644 WizardExtensions/MSTestv2UnitTestExtensionPackage/source.extension.vsixmanifest create mode 100644 WizardExtensions/WizardExtensions.sln diff --git a/WizardExtensions/MSTestv2IntelliTestExtension/GlobalAssemblyInfo.cs b/WizardExtensions/MSTestv2IntelliTestExtension/GlobalAssemblyInfo.cs new file mode 100644 index 0000000..cd7fa32 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtension/GlobalAssemblyInfo.cs @@ -0,0 +1,19 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyVersionAttribute("14.0.0.0")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("14.0.0.1")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("14.0.0.1")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2AssertMethodFilter.cs b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2AssertMethodFilter.cs new file mode 100644 index 0000000..fa02e54 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2AssertMethodFilter.cs @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace MSTestv2IntelliTestExtension +{ + using Microsoft.ExtendedReflection.Asserts; + using Microsoft.ExtendedReflection.Metadata; + using Microsoft.ExtendedReflection.Utilities.Safe.Diagnostics; + + /// + /// The MSTestv2 assert method filer. + /// + internal sealed class MSTestv2AssertMethodFilter : IAssertMethodFilter + { + private static MSTestv2AssertMethodFilter instance = new MSTestv2AssertMethodFilter(); + + private MSTestv2AssertMethodFilter() + { + } + + public static MSTestv2AssertMethodFilter Instance + { + get + { + return instance; + } + } + + public bool IsAssertMethod(MethodDefinition method, out int usefulParameters) + { + SafeDebug.AssumeNotNull(method, "method"); + TypeDefinition type; + if (method.TryGetDeclaringType(out type)) + { + if (type.SerializableName == MSTestv2TestFrameworkMetadata.AssertTypeDefinition) + { + switch (method.ShortName) + { + case "IsFalse": + case "IsTrue": + case "IsNull": + case "IsNotNull": + case "IsInstanceOfType": + case "IsNotInstanceOfType": + usefulParameters = 1; + return true; + case "AreEqual": + case "AreNotEqual": + case "AreSame": + case "AreNotSame": + usefulParameters = 2; + return true; + } + } + } + + usefulParameters = -1; + return false; + } + } +} diff --git a/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2IntelliTestExtension.csproj b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2IntelliTestExtension.csproj new file mode 100644 index 0000000..4067fd3 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2IntelliTestExtension.csproj @@ -0,0 +1,69 @@ + + + + ..\..\ + + + + Debug + AnyCPU + {AAB9F3CF-72D5-419B-B31E-209388BF3E7C} + Library + Properties + MSTestv2IntelliTestExtension + MSTestv2IntelliTestExtension + v4.5.2 + 512 + + + + + true + full + false + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + TRACE + prompt + 4 + + + + + + + + + + + + $(TestTemplatesRoot)packages\Microsoft.Internal.IntelliTest.15.0.0\lib\net45\Microsoft.ExtendedReflection.dll + True + + + $(TestTemplatesRoot)packages\Microsoft.Internal.IntelliTest.15.0.0\lib\net45\Microsoft.ExtendedReflection.Reasoning.dll + True + + + $(TestTemplatesRoot)packages\Microsoft.Internal.IntelliTest.15.0.0\lib\net45\Microsoft.Pex.Framework.dll + True + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFramework.cs b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFramework.cs new file mode 100644 index 0000000..2fd32d1 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFramework.cs @@ -0,0 +1,482 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace MSTestv2IntelliTestExtension +{ + using System; + using System.Collections.Generic; + using Microsoft.ExtendedReflection.Asserts; + using Microsoft.ExtendedReflection.Collections; + using Microsoft.ExtendedReflection.Metadata; + using Microsoft.ExtendedReflection.Metadata.Names; + using Microsoft.ExtendedReflection.Monitoring; + using Microsoft.ExtendedReflection.Utilities.Safe; + using Microsoft.ExtendedReflection.Utilities.Safe.Diagnostics; + using Microsoft.Pex.Engine; + using Microsoft.Pex.Engine.ComponentModel; + using Microsoft.Pex.Engine.TestFrameworks; + + /// + /// MSTestv2 test framework + /// + [Serializable] + public class MSTestv2TestFramework : AttributeBasedTestFrameworkBase + { + private static readonly bool Net2process = typeof(object).Assembly.GetName().Version.Major == 2; + + [NonSerialized] + private TypeName assemblySetUpAttribute; + + /// + /// The expected exception attribute. + /// + [NonSerialized] + private TypeName expectedExceptionAttribute; + + [NonSerialized] + private TypeName assemblyTearDownAttribute; + + [NonSerialized] + private TypeName fixtureAttribute; + + [NonSerialized] + private TypeName fixtureSetUpAttribute; + + [NonSerialized] + private TypeName fixtureTearDownAttribute; + + [NonSerialized] + private TypeName setUpAttribute; + + [NonSerialized] + private TypeName testAttribute; + + [NonSerialized] + private TypeName tearDownAttribute; + + [NonSerialized] + private TypeName ignoreAttribute; + + [NonSerialized] + private TypeName assertionExceptionType; + + /// + /// Initializes a new instance of the class. + /// + /// The host. + public MSTestv2TestFramework(IPexComponent host) + : base(host) + { + } + + /// + /// Gets identify of the test framework + /// + public override string Name + { + get { return "MSTestv2"; } + } + + /// + /// Gets the assembly name of the framework main's assembly. This name is used + /// to automatically discover test frameworks, based the assembly references + /// + public override ShortAssemblyName AssemblyName + { + get { return MSTestv2TestFrameworkMetadata.AssemblyName; } + } + + /// + /// Gets the root namespace. + /// + /// The root namespace. + public override string RootNamespace + { + get { return MSTestv2TestFrameworkMetadata.RootNamespace; } + } + + /// + /// Gets the adapter and test framework references. + /// + public override ICountable References + { + get + { + return Indexable.Two( + new ShortReferenceAssemblyName(ShortAssemblyName.FromName("MSTest.TestAdapter"), "1.3.2", AssemblyReferenceType.NugetReference), + new ShortReferenceAssemblyName(ShortAssemblyName.FromName("MSTest.TestFramework"), "1.3.2", AssemblyReferenceType.NugetReference)); + } + } + + /// + /// Gets a value indicating whether + /// partial test classes + /// + public override bool SupportsPartialClasses + { + get { return true; } + } + + /// + /// Gets the ExpectedException attribute. + /// + /// The expected exception attribute. + public override TypeName ExpectedExceptionAttribute + { + get + { + if (this.expectedExceptionAttribute == null) + { + this.expectedExceptionAttribute = MSTestv2TestFrameworkMetadata.AttributeName("ExpectedException"); + } + + return this.expectedExceptionAttribute; + } + } + + /// + /// Gets the assembly set up attribute. + /// + /// The assembly set up attribute. + public TypeName AssemblySetUpAttribute + { + get + { + if (this.assemblySetUpAttribute == null) + { + this.assemblySetUpAttribute = MSTestv2TestFrameworkMetadata.AttributeName("AssemblyInitialize"); + } + + return this.assemblySetUpAttribute; + } + } + + /// + /// Gets the assembly tear down attribute. + /// + /// The assembly tear down attribute. + public TypeName AssemblyTearDownAttribute + { + get + { + if (this.assemblyTearDownAttribute == null) + { + this.assemblyTearDownAttribute = MSTestv2TestFrameworkMetadata.AttributeName("AssemblyCleanup"); + } + + return this.assemblyTearDownAttribute; + } + } + + /// + /// Gets a value indicating whether fixture set up tear down are instance methods. + /// + /// + /// true if [fixture set up tear down instance]; otherwise, false. + /// + public override bool FixtureSetupTeardownInstance + { + get { return false; } + } + + /// + /// Gets the name of the fixture attribute. + /// + /// The fixture attribute. + public override TypeName FixtureAttribute + { + get + { + if (this.fixtureAttribute == null) + { + this.fixtureAttribute = MSTestv2TestFrameworkMetadata.AttributeName("TestClass"); + } + + return this.fixtureAttribute; + } + } + + /// + /// Gets the name of the fixture setup attribute + /// + /// The fixture set up attribute. + public override TypeName FixtureSetupAttribute + { + get + { + if (this.fixtureSetUpAttribute == null) + { + this.fixtureSetUpAttribute = MSTestv2TestFrameworkMetadata.AttributeName("ClassInitialize"); + } + + return this.fixtureSetUpAttribute; + } + } + + /// + /// Gets the name of the fixture teardown attribute + /// + /// The fixture tear down attribute. + public override TypeName FixtureTeardownAttribute + { + get + { + if (this.fixtureTearDownAttribute == null) + { + this.fixtureTearDownAttribute = MSTestv2TestFrameworkMetadata.AttributeName("ClassCleanup"); + } + + return this.fixtureTearDownAttribute; + } + } + + /// + /// Gets the name of the test setup attribute. + /// + /// The set up attribute. + public override TypeName SetupAttribute + { + get + { + if (this.setUpAttribute == null) + { + this.setUpAttribute = MSTestv2TestFrameworkMetadata.AttributeName("TestInitialize"); + } + + return this.setUpAttribute; + } + } + + /// + /// Gets the name of the test attribute. + /// + /// The set up attribute. + public override TypeName TestAttribute + { + get + { + if (this.testAttribute == null) + { + this.testAttribute = MSTestv2TestFrameworkMetadata.AttributeName("TestMethod"); + } + + return this.testAttribute; + } + } + + /// + /// Gets the name of the test teardown attribute. + /// + /// The tear down attribute. + public override TypeName TeardownAttribute + { + get + { + if (this.tearDownAttribute == null) + { + this.tearDownAttribute = MSTestv2TestFrameworkMetadata.AttributeName("TestCleanup"); + } + + return this.tearDownAttribute; + } + } + + /// + /// Gets the ignore attribute. + /// + /// The ignore attribute. + public override TypeName IgnoreAttribute + { + get + { + if (this.ignoreAttribute == null) + { + this.ignoreAttribute = MSTestv2TestFrameworkMetadata.AttributeName("Ignore"); + } + + return this.ignoreAttribute; + } + } + + /// + /// Gets the type of the assertion exception. + /// + /// The type of the assertion exception. + public override TypeName AssertionExceptionType + { + get + { + if (this.assertionExceptionType == null) + { + this.assertionExceptionType = MSTestv2TestFrameworkMetadata.AttributeName("AssertFailedException"); + } + + return this.assertionExceptionType; + } + } + + /// + /// Gets a value indicating whether gets a value that indicates if this framework support static unit tests + /// + public override bool SupportsStaticTestMethods + { + get { return false; } + } + + /// + /// Gets the assert method filters. + /// + public override IIndexable AssertMethodFilters + { + get + { + return Indexable.One(MSTestv2AssertMethodFilter.Instance); + } + } + + /// + /// Gets a value indicating whether the ignore attribute constructor takes a message as its first argument. + /// + protected override bool HasIgnoreAttributeMessage + { + get { return false; } + } + + /// + /// Gets the ignore message property. + /// + /// The ignore message property. + protected override string IgnoreMessageProperty + { + get { return null; } + } + + /// + /// Gets the expected exception property name. + /// + /// The expected exception property. + protected override string ExpectedExceptionProperty + { + get { return "ExceptionType"; } + } + + /// + /// Gets a value indicating if the bitness is supported + /// + /// The bitness. + /// True if supported. + public override bool SupportsProjectBitness(Bitness bitness) + { + SafeDebug.Assume(bitness != Bitness.Unsupported, "bitness != Bitness.Unsupported"); + if (Net2process) + { + return bitness == Bitness.AnyCpu || bitness == Bitness.x86; + } + else + { + return true; + } + } + + /// + /// Tries to get the assembly set up tear down attribute. + /// + /// The assembly. + /// The set up. + /// The tear down. + /// True if found. + public override bool TryGetAssemblySetupTeardownMethods( + AssemblyEx assembly, + out Method setUp, + out Method tearDown) + { + // + SafeDebug.AssumeNotNull((object)assembly, "assembly"); + + // + setUp = tearDown = null; + + // look for [TestClass] types + foreach (var typeDefinition in assembly.TypeDefinitions) + { + if (typeDefinition.IsVisible(VisibilityContext.Exported)) + { + if (typeDefinition.IsEnumType || + typeDefinition.GenericTypeParameters.Length > 0) + { + continue; + } + + if (!this.IsFixture(typeDefinition)) + { + continue; + } + + // looking for assembly setup/teardown methods + foreach (var methodDefinition in typeDefinition.DeclaredStaticMethods) + { + if (methodDefinition.IsVisible(VisibilityContext.Exported) && + methodDefinition.GenericMethodParameters.Length == 0) + { + if (AttributeHelper.IsDefined(methodDefinition, this.AssemblySetUpAttribute, true)) + { + setUp = methodDefinition.Instantiate(TypeEx.NoTypes, TypeEx.NoTypes); + } + + if (AttributeHelper.IsDefined(methodDefinition, this.AssemblyTearDownAttribute, true)) + { + tearDown = methodDefinition.Instantiate(TypeEx.NoTypes, TypeEx.NoTypes); + } + + // nothing else to look for + if (setUp != null && tearDown != null) + { + break; + } + } + } + + // nothing else to look for + if (setUp != null && tearDown != null) + { + break; + } + } + } + + return setUp != null || tearDown != null; + } + + /// + /// Gets a list of attribute that should be duplicated from the + /// pex test to the parameterized test + /// + /// Attribute types. + protected override IEnumerable GetSatelliteAttributeTypes() + { + return Indexable.Array( + MSTestv2TestFrameworkMetadata.AttributeName("DeploymentItem"), + MSTestv2TestFrameworkMetadata.AttributeName("Owner"), + MSTestv2TestFrameworkMetadata.AttributeName("Priority"), + MSTestv2TestFrameworkMetadata.AttributeName("TestProperty"), + MSTestv2TestFrameworkMetadata.AttributeName("Timeout"), + MSTestv2TestFrameworkMetadata.AttributeName("WorkItem"), + MSTestv2TestFrameworkMetadata.AttributeName("CssIteration"), + MSTestv2TestFrameworkMetadata.AttributeName("CssProjectStructureAttributeCtor")); + } + + /// + /// Tries to query the categories. + /// + /// The element. + /// The names. + /// True if found. + protected override bool TryGetCategories( + ICustomAttributeProviderEx element, + out IEnumerable names) + { + names = null; + return false; + } + } +} diff --git a/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkMetadata.cs b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkMetadata.cs new file mode 100644 index 0000000..b68553c --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkMetadata.cs @@ -0,0 +1,69 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace MSTestv2IntelliTestExtension +{ + using Microsoft.ExtendedReflection.Metadata.Names; + using Microsoft.ExtendedReflection.Utilities.Safe.Diagnostics; + + /// + /// The metadata. + /// + internal static class MSTestv2TestFrameworkMetadata + { + internal static readonly ShortAssemblyName AssemblyName = ShortAssemblyName.FromName("Microsoft.VisualStudio.TestPlatform.TestFramework"); + internal static readonly string RootNamespace = "Microsoft.VisualStudio.TestTools.UnitTesting"; + + private static TypeName assertType; + private static TypeName collectionAssertType; + + public static TypeDefinitionName AssertTypeDefinition + { + get + { + if (assertType == null) + { + assertType = MSTestv2TestFrameworkMetadata.TypeName("Assert"); + } + + return assertType.Definition; + } + } + + public static TypeDefinitionName CollectionAssertTypeDefinition + { + get + { + if (collectionAssertType == null) + { + collectionAssertType = MSTestv2TestFrameworkMetadata.TypeName("CollectionAssert"); + } + + return collectionAssertType.Definition; + } + } + + public static TypeName AttributeName(string name) + { + SafeDebug.AssumeNotNullOrEmpty(name, "name"); + + return TypeDefinitionName.FromName( + AssemblyName, + -1, + false, + RootNamespace, + name + "Attribute").SelfInstantiation; + } + + private static TypeName TypeName(string name) + { + SafeDebug.AssumeNotNullOrEmpty(name, "name"); + return TypeDefinitionName.FromName( + AssemblyName, + -1, + false, + RootNamespace, + name).SelfInstantiation; + } + } +} diff --git a/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkPackage.cs b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkPackage.cs new file mode 100644 index 0000000..c24bffa --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkPackage.cs @@ -0,0 +1,14 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using Microsoft.Pex.Framework.Packages; +using MSTestv2IntelliTestExtension; + +[assembly: PexPackageType(typeof(MSTestv2TestFrameworkPackage))] +namespace MSTestv2IntelliTestExtension +{ + [MSTestv2TestFrameworkPackage] + internal static class MSTestv2TestFrameworkPackage + { + } +} diff --git a/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkPackageAttribute.cs b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkPackageAttribute.cs new file mode 100644 index 0000000..a0a2bc4 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtension/MSTestv2TestFrameworkPackageAttribute.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using Microsoft.Pex.Framework.Packages; +using MSTestv2IntelliTestExtension; + +[assembly: PexPackageType(typeof(MSTestv2TestFrameworkPackage))] +namespace MSTestv2IntelliTestExtension +{ + using Microsoft.ExtendedReflection.ComponentModel; + using Microsoft.Pex.Engine.ComponentModel; + using Microsoft.Pex.Engine.TestFrameworks; + + /// + /// Extensions package for MSTestv2. + /// + public class MSTestv2TestFrameworkPackageAttribute : PexPackageAttributeBase + { + public override string Name => nameof(MSTestv2TestFrameworkPackage); + + protected override void Initialize(IEngine engine) + { + base.Initialize(engine); + + var testFrameworkService = engine.GetService(); + var host = testFrameworkService as IPexComponent; + + testFrameworkService.AddTestFramework(new MSTestv2TestFramework(host)); + } + } +} diff --git a/WizardExtensions/MSTestv2IntelliTestExtension/Properties/AssemblyInfo.cs b/WizardExtensions/MSTestv2IntelliTestExtension/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..95f3ca3 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtension/Properties/AssemblyInfo.cs @@ -0,0 +1,38 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MSTestv2IntelliTestExtension")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MSTestv2IntelliTestExtension")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("aab9f3cf-72d5-419b-b31e-209388bf3e7c")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +// [assembly: AssemblyVersion("1.0.0.0")] +// [assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/WizardExtensions/MSTestv2IntelliTestExtension/packages.config b/WizardExtensions/MSTestv2IntelliTestExtension/packages.config new file mode 100644 index 0000000..d7f1580 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtension/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/GlobalAssemblyInfo.cs b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/GlobalAssemblyInfo.cs new file mode 100644 index 0000000..cd7fa32 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/GlobalAssemblyInfo.cs @@ -0,0 +1,19 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyVersionAttribute("14.0.0.0")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("14.0.0.1")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("14.0.0.1")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/IntelliTestExtensionLicense.rtf b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/IntelliTestExtensionLicense.rtf new file mode 100644 index 0000000..10456af --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/IntelliTestExtensionLicense.rtf @@ -0,0 +1,658 @@ +{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff43\deff0\stshfdbch0\stshfloch31506\stshfhich31506\stshfbi31506\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};} +{\f2\fbidi \fmodern\fcharset0\fprq1{\*\panose 00000000000000000000}Courier New{\*\falt Arial};}{\f3\fbidi \froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol{\*\falt Bookshelf Symbol 3};} +{\f10\fbidi \fnil\fcharset2\fprq2{\*\panose 00000000000000000000}Wingdings{\*\falt Symbol};}{\f11\fbidi \fmodern\fcharset128\fprq1{\*\panose 00000000000000000000}MS Mincho{\*\falt ?l?r ??\'81\'66c};} +{\f13\fbidi \fnil\fcharset134\fprq2{\*\panose 00000000000000000000}SimSun{\*\falt ????\'a8\'ac??};}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math{\*\falt Calisto MT};} +{\f37\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri{\*\falt Times New Roman};}{\f43\fbidi \fswiss\fcharset0\fprq2{\*\panose 00000000000000000000}Tahoma{\*\falt ?l?r ???};} +{\f44\fbidi \fswiss\fcharset0\fprq2{\*\panose 00000000000000000000}Trebuchet MS{\*\falt Arial};}{\f47\fbidi \fswiss\fcharset0\fprq2{\*\panose 00000000000000000000}Segoe UI{\*\falt Segoe UI};} +{\f48\fbidi \fmodern\fcharset128\fprq1{\*\panose 00000000000000000000}@MS Mincho{\*\falt @MS Gothic};}{\f49\fbidi \fnil\fcharset134\fprq2{\*\panose 02010600030101010101}@SimSun{\*\falt @Arial Unicode MS};} +{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};}{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};} +{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 00000000000000000000}Cambria;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};} +{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};} +{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri{\*\falt Times New Roman};}{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};} +{\f431\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};}{\f432\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};}{\f434\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};} +{\f435\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};}{\f436\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};}{\f437\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};} +{\f438\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};}{\f439\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}{\f451\fbidi \fmodern\fcharset238\fprq1 Courier New CE{\*\falt Arial};} +{\f452\fbidi \fmodern\fcharset204\fprq1 Courier New Cyr{\*\falt Arial};}{\f454\fbidi \fmodern\fcharset161\fprq1 Courier New Greek{\*\falt Arial};}{\f455\fbidi \fmodern\fcharset162\fprq1 Courier New Tur{\*\falt Arial};} +{\f456\fbidi \fmodern\fcharset177\fprq1 Courier New (Hebrew){\*\falt Arial};}{\f457\fbidi \fmodern\fcharset178\fprq1 Courier New (Arabic){\*\falt Arial};}{\f458\fbidi \fmodern\fcharset186\fprq1 Courier New Baltic{\*\falt Arial};} +{\f459\fbidi \fmodern\fcharset163\fprq1 Courier New (Vietnamese){\*\falt Arial};}{\f543\fbidi \fmodern\fcharset0\fprq1 MS Mincho Western{\*\falt ?l?r ??\'81\'66c};}{\f541\fbidi \fmodern\fcharset238\fprq1 MS Mincho CE{\*\falt ?l?r ??\'81\'66c};} +{\f542\fbidi \fmodern\fcharset204\fprq1 MS Mincho Cyr{\*\falt ?l?r ??\'81\'66c};}{\f544\fbidi \fmodern\fcharset161\fprq1 MS Mincho Greek{\*\falt ?l?r ??\'81\'66c};}{\f545\fbidi \fmodern\fcharset162\fprq1 MS Mincho Tur{\*\falt ?l?r ??\'81\'66c};} +{\f548\fbidi \fmodern\fcharset186\fprq1 MS Mincho Baltic{\*\falt ?l?r ??\'81\'66c};}{\f563\fbidi \fnil\fcharset0\fprq2 SimSun Western{\*\falt ????\'a8\'ac??};}{\f771\fbidi \froman\fcharset238\fprq2 Cambria Math CE{\*\falt Calisto MT};} +{\f772\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr{\*\falt Calisto MT};}{\f774\fbidi \froman\fcharset161\fprq2 Cambria Math Greek{\*\falt Calisto MT};}{\f775\fbidi \froman\fcharset162\fprq2 Cambria Math Tur{\*\falt Calisto MT};} +{\f778\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic{\*\falt Calisto MT};}{\f779\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese){\*\falt Calisto MT};}{\f801\fbidi \fswiss\fcharset238\fprq2 Calibri CE{\*\falt Times New Roman};} +{\f802\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr{\*\falt Times New Roman};}{\f804\fbidi \fswiss\fcharset161\fprq2 Calibri Greek{\*\falt Times New Roman};}{\f805\fbidi \fswiss\fcharset162\fprq2 Calibri Tur{\*\falt Times New Roman};} +{\f806\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew){\*\falt Times New Roman};}{\f807\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic){\*\falt Times New Roman};}{\f808\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic{\*\falt Times New Roman};} +{\f809\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese){\*\falt Times New Roman};}{\f861\fbidi \fswiss\fcharset238\fprq2 Tahoma CE{\*\falt ?l?r ???};}{\f862\fbidi \fswiss\fcharset204\fprq2 Tahoma Cyr{\*\falt ?l?r ???};} +{\f864\fbidi \fswiss\fcharset161\fprq2 Tahoma Greek{\*\falt ?l?r ???};}{\f865\fbidi \fswiss\fcharset162\fprq2 Tahoma Tur{\*\falt ?l?r ???};}{\f866\fbidi \fswiss\fcharset177\fprq2 Tahoma (Hebrew){\*\falt ?l?r ???};} +{\f867\fbidi \fswiss\fcharset178\fprq2 Tahoma (Arabic){\*\falt ?l?r ???};}{\f868\fbidi \fswiss\fcharset186\fprq2 Tahoma Baltic{\*\falt ?l?r ???};}{\f869\fbidi \fswiss\fcharset163\fprq2 Tahoma (Vietnamese){\*\falt ?l?r ???};} +{\f870\fbidi \fswiss\fcharset222\fprq2 Tahoma (Thai){\*\falt ?l?r ???};}{\f871\fbidi \fswiss\fcharset238\fprq2 Trebuchet MS CE{\*\falt Arial};}{\f872\fbidi \fswiss\fcharset204\fprq2 Trebuchet MS Cyr{\*\falt Arial};} +{\f874\fbidi \fswiss\fcharset161\fprq2 Trebuchet MS Greek{\*\falt Arial};}{\f875\fbidi \fswiss\fcharset162\fprq2 Trebuchet MS Tur{\*\falt Arial};}{\f878\fbidi \fswiss\fcharset186\fprq2 Trebuchet MS Baltic{\*\falt Arial};} +{\f901\fbidi \fswiss\fcharset238\fprq2 Segoe UI CE{\*\falt Segoe UI};}{\f902\fbidi \fswiss\fcharset204\fprq2 Segoe UI Cyr{\*\falt Segoe UI};}{\f904\fbidi \fswiss\fcharset161\fprq2 Segoe UI Greek{\*\falt Segoe UI};} +{\f905\fbidi \fswiss\fcharset162\fprq2 Segoe UI Tur{\*\falt Segoe UI};}{\f906\fbidi \fswiss\fcharset177\fprq2 Segoe UI (Hebrew){\*\falt Segoe UI};}{\f907\fbidi \fswiss\fcharset178\fprq2 Segoe UI (Arabic){\*\falt Segoe UI};} +{\f908\fbidi \fswiss\fcharset186\fprq2 Segoe UI Baltic{\*\falt Segoe UI};}{\f909\fbidi \fswiss\fcharset163\fprq2 Segoe UI (Vietnamese){\*\falt Segoe UI};}{\f913\fbidi \fmodern\fcharset0\fprq1 @MS Mincho Western{\*\falt @MS Gothic};} +{\f911\fbidi \fmodern\fcharset238\fprq1 @MS Mincho CE{\*\falt @MS Gothic};}{\f912\fbidi \fmodern\fcharset204\fprq1 @MS Mincho Cyr{\*\falt @MS Gothic};}{\f914\fbidi \fmodern\fcharset161\fprq1 @MS Mincho Greek{\*\falt @MS Gothic};} +{\f915\fbidi \fmodern\fcharset162\fprq1 @MS Mincho Tur{\*\falt @MS Gothic};}{\f918\fbidi \fmodern\fcharset186\fprq1 @MS Mincho Baltic{\*\falt @MS Gothic};}{\f923\fbidi \fnil\fcharset0\fprq2 @SimSun Western{\*\falt @Arial Unicode MS};} +{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};} +{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};} +{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};} +{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};} +{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};} +{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};} +{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};} +{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;} +{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;}{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;} +{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;}{\fhimajor\f31536\fbidi \froman\fcharset163\fprq2 Cambria (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};} +{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};} +{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};} +{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};} +{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};} +{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};} +{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};} +{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};} +{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};} +{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};} +{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};} +{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};} +{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE{\*\falt Times New Roman};} +{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr{\*\falt Times New Roman};}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek{\*\falt Times New Roman};} +{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur{\*\falt Times New Roman};}{\fhiminor\f31573\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew){\*\falt Times New Roman};} +{\fhiminor\f31574\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic){\*\falt Times New Roman};}{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic{\*\falt Times New Roman};} +{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese){\*\falt Times New Roman};}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};} +{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};} +{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};} +{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};} +{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0; +\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192; +\cfollowedhyperlink\ctint255\cshade255\red128\green0\blue128;}{\*\defchp \f31506\fs22 }{\*\defpap \ql \fi-360\li360\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0 }\noqfpromote {\stylesheet{ +\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\snext0 \sautoupd \sqformat \spriority0 \styrsid4934124 Normal;}{\s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 +\ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext1 \slink15 \sqformat \styrsid4934124 heading 1;}{\s2\ql \fi-363\li720\ri0\sb120\sa120\widctlpar +\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext2 \slink16 \sunhideused \sqformat \styrsid4934124 heading 2;}{\s3\ql \fi-357\li1077\ri0\sb120\sa120\widctlpar\tx1077\jclisttab\tx1440\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl2\outlinelevel2\adjustright\rin0\lin1077\itap0 \rtlch\fcs1 +\af43\afs19\alang1025 \ltrch\fcs0 \f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext3 \slink17 \sunhideused \sqformat \styrsid4934124 heading 3;}{\s4\ql \fi-358\li1435\ri0\sb120\sa120\widctlpar +\jclisttab\tx1437\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl3\outlinelevel3\adjustright\rin0\lin1435\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext4 \slink18 \sunhideused \sqformat \styrsid4934124 heading 4;}{\s5\ql \fi-357\li1792\ri0\sb120\sa120\widctlpar\tx1792\jclisttab\tx2155\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl4\outlinelevel4\adjustright\rin0\lin1792\itap0 \rtlch\fcs1 +\af43\afs19\alang1025 \ltrch\fcs0 \f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext5 \slink19 \sunhideused \sqformat \styrsid4934124 heading 5;}{\s6\ql \fi-357\li2149\ri0\sb120\sa120\widctlpar +\jclisttab\tx2152\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl5\outlinelevel5\adjustright\rin0\lin2149\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext6 \slink20 \sunhideused \sqformat \styrsid4934124 heading 6;}{\s7\ql \fi-357\li2506\ri0\sb120\sa120\widctlpar\jclisttab\tx2509\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl6\outlinelevel6\adjustright\rin0\lin2506\itap0 \rtlch\fcs1 +\af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext7 \slink21 \sunhideused \sqformat \styrsid4934124 heading 7;}{\s8\ql \fi-357\li2863\ri0\sb120\sa120\widctlpar +\jclisttab\tx2866\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl7\outlinelevel7\adjustright\rin0\lin2863\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext8 \slink22 \sunhideused \sqformat \styrsid4934124 heading 8;}{\s9\ql \fi-358\li3221\ri0\sb120\sa120\widctlpar\jclisttab\tx3223\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl8\outlinelevel8\adjustright\rin0\lin3221\itap0 \rtlch\fcs1 +\af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext9 \slink23 \sunhideused \sqformat \styrsid4934124 heading 9;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 +Default Paragraph Font;}{\*\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv +\ql \fi-360\li360\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0 \rtlch\fcs1 \af31506\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused +Normal Table;}{\*\cs15 \additive \rtlch\fcs1 \ab\af43\afs19 \ltrch\fcs0 \b\f43\fs19 \sbasedon10 \slink1 \slocked \styrsid4934124 Heading 1 Char;}{\*\cs16 \additive \rtlch\fcs1 \ab\af43\afs19 \ltrch\fcs0 \b\f43\fs19 +\sbasedon10 \slink2 \slocked \ssemihidden \styrsid4934124 Heading 2 Char;}{\*\cs17 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \f43\fs19 \sbasedon10 \slink3 \slocked \ssemihidden \styrsid4934124 Heading 3 Char;}{\*\cs18 \additive \rtlch\fcs1 +\af43\afs19 \ltrch\fcs0 \f43\fs19 \sbasedon10 \slink4 \slocked \ssemihidden \styrsid4934124 Heading 4 Char;}{\*\cs19 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \f43\fs19 \sbasedon10 \slink5 \slocked \ssemihidden \styrsid4934124 Heading 5 Char;}{\* +\cs20 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \f43\fs19 \sbasedon10 \slink6 \slocked \ssemihidden \styrsid4934124 Heading 6 Char;}{\*\cs21 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 +\sbasedon10 \slink7 \slocked \ssemihidden \styrsid4934124 Heading 7 Char;}{\*\cs22 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 \sbasedon10 \slink8 \slocked \ssemihidden \styrsid4934124 Heading 8 Char;}{\*\cs23 +\additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 \sbasedon10 \slink9 \slocked \ssemihidden \styrsid4934124 Heading 9 Char;}{\*\cs24 \additive \rtlch\fcs1 \af0 \ltrch\fcs0 \f0\ul\cf2 \sbasedon10 \sunhideused \styrsid4934124 +Hyperlink;}{\s25\ql \li357\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin357\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext25 \styrsid4934124 Body 1;}{\s26\ql \fi-363\li720\ri0\sb120\sa120\widctlpar\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin720\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext26 \styrsid4934124 Bullet 2;}{\s27\ql \fi-357\li1077\ri0\sb120\sa120\widctlpar +\jclisttab\tx1080\wrapdefault\aspalpha\aspnum\faauto\ls3\adjustright\rin0\lin1077\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext27 \slink48 \styrsid4934124 Bullet 3;}{\s28\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs28\alang1025 \ltrch\fcs0 +\b\fs28\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \styrsid4934124 Heading EULA;}{\s29\ql \li0\ri0\sb120\sa120\widctlpar\brdrb\brdrs\brdrw10\brsp20 +\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs28\alang1025 \ltrch\fcs0 \b\fs28\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \styrsid4934124 +Heading Software Title;}{\s30\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext30 \styrsid4934124 Preamble;}{\s31\ql \li0\ri0\sb120\sa120\widctlpar\brdrt\brdrs\brdrw10\brsp20 +\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon30 \snext31 \styrsid4934124 +Preamble Border Above;}{\s32\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\snext0 \styrsid4934124 Body 0 Bold;}{\s33\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \snext0 \styrsid4934124 Body 0;}{\s34\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs16\alang1025 \ltrch\fcs0 +\fs16\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext34 \slink35 \ssemihidden \sunhideused \styrsid11950712 Balloon Text;}{\*\cs35 \additive \rtlch\fcs1 \af43\afs16 \ltrch\fcs0 +\fs16\loch\f43\hich\af43\dbch\af11 \sbasedon10 \slink34 \slocked \ssemihidden \styrsid11950712 Balloon Text Char;}{\s36\ql \fi-357\li357\ri0\sb120\sa120\widctlpar\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls4\adjustright\rin0\lin357\itap0 +\rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext36 \styrsid11950712 Bullet 1;}{\s37\ql \fi-358\li1435\ri0\sb120\sa120\widctlpar +\jclisttab\tx1437\wrapdefault\aspalpha\aspnum\faauto\ls5\adjustright\rin0\lin1435\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext37 \styrsid11950712 Bullet 4;}{\s38\ql \fi-357\li1792\ri0\sb120\sa120\widctlpar\jclisttab\tx1795\wrapdefault\aspalpha\aspnum\faauto\ls6\adjustright\rin0\lin1792\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext38 \styrsid11950712 Bullet 5;}{\s39\ql \fi-357\li1077\ri0\sb120\sa120\widctlpar +\tx1077\jclisttab\tx1440\wrapdefault\aspalpha\aspnum\faauto\ls7\ilvl2\outlinelevel2\adjustright\rin0\lin1077\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\sbasedon3 \snext39 \slink50 \styrsid11950712 Heading 3 Bold;}{\s40\ql \fi-358\li1435\ri0\sb120\sa120\widctlpar\jclisttab\tx1437\wrapdefault\aspalpha\aspnum\faauto\ls5\adjustright\rin0\lin1435\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\ul\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon37 \snext40 \styrsid11950712 Bullet 4 Underline;}{\*\cs41 \additive \rtlch\fcs1 \af43 \ltrch\fcs0 \f43\lang1033\langfe1033\langnp1033\langfenp1033 +\sbasedon10 \styrsid11950712 Body 2 Char;}{\*\cs42 \additive \rtlch\fcs1 \af43 \ltrch\fcs0 \f43\lang1033\langfe1033\langnp1033\langfenp1033 \sbasedon10 \styrsid11950712 Body 3 Char;}{\*\cs43 \additive \rtlch\fcs1 \af0\afs16 \ltrch\fcs0 \fs16 +\sbasedon10 \ssemihidden \sunhideused \styrsid8850722 annotation reference;}{\s44\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs20\alang1025 \ltrch\fcs0 +\fs20\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext44 \slink45 \sunhideused \styrsid8850722 annotation text;}{\*\cs45 \additive \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\f43\hich\af43\dbch\af11 +\sbasedon10 \slink44 \slocked \styrsid8850722 Comment Text Char;}{\s46\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs20\alang1025 \ltrch\fcs0 +\b\fs20\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon44 \snext44 \slink47 \ssemihidden \sunhideused \styrsid8850722 annotation subject;}{\*\cs47 \additive \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 +\b\fs20\loch\f43\hich\af43\dbch\af11 \sbasedon45 \slink46 \slocked \ssemihidden \styrsid8850722 Comment Subject Char;}{\*\cs48 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 \sbasedon10 \slink27 \slocked \styrsid2434661 +Bullet 3 Char1;}{\s49\ql \fi-357\li357\ri0\sb120\sa120\widctlpar\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin357\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\ul\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon37 \snext49 \spriority0 \styrsid3941498 Bullet 4 Underlined;}{\*\cs50 \additive \rtlch\fcs1 \ab\af43\afs19 \ltrch\fcs0 \b\fs19\loch\f43\hich\af43\dbch\af11 +\sbasedon10 \slink39 \slocked \styrsid3941498 Heading 3 Bold Char;}{\s51\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs21\alang1025 \ltrch\fcs0 +\f37\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext51 \slink52 \ssemihidden \sunhideused \styrsid3941498 Plain Text;}{\*\cs52 \additive \rtlch\fcs1 \af0\afs21 \ltrch\fcs0 \f37\fs21 +\sbasedon10 \slink51 \slocked \ssemihidden \styrsid3941498 Plain Text Char;}{\s53\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext53 \slink54 \sunhideused \styrsid11152386 header;}{\*\cs54 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 +\sbasedon10 \slink53 \slocked \styrsid11152386 Header Char;}{\s55\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext55 \slink56 \sunhideused \styrsid11152386 footer;}{\*\cs56 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 +\sbasedon10 \slink55 \slocked \styrsid11152386 Footer Char;}{\*\cs57 \additive \rtlch\fcs1 \af0 \ltrch\fcs0 \ul\cf17 \sbasedon10 \ssemihidden \sunhideused \styrsid2061565 FollowedHyperlink;}}{\*\listtable{\list\listtemplateid-899113366{\listlevel +\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af0\afs20 \ltrch\fcs0 \b\i0\fs20\cf0\fbias0\hres0\chhres0 \fi-357\li357\jclisttab\tx360\lin357 } +{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af43\afs20 \ltrch\fcs0 \b\i0\f43\fs20\fbias0\hres0\chhres0 \fi-363\li720 +\jclisttab\tx720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af0\afs20 \ltrch\fcs0 \b\i0\fs20\fbias0\hres0\chhres0 +\fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 +\b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 +\ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid113718381} +{\list\listtemplateid1122370636\listhybrid{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 +\fbias0\hres0\chhres0 \fi-357\li720\jclisttab\tx723\lin720 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li1083 +\jclisttab\tx1083\lin1083 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li1803 +\jclisttab\tx1803\lin1803 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2523 +\jclisttab\tx2523\lin2523 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li3243\jclisttab\tx3243\lin3243 } +{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li3963\jclisttab\tx3963\lin3963 }{\listlevel\levelnfc23 +\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li4683\jclisttab\tx4683\lin4683 }{\listlevel\levelnfc23\levelnfcn23\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5403\jclisttab\tx5403\lin5403 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6123\jclisttab\tx6123\lin6123 }{\listname ;}\listid152650329}{\list\listtemplateid-355573436{\listlevel\levelnfc0 +\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af44\afs20 \ltrch\fcs0 \b\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li357\jclisttab\tx360\lin357 }{\listlevel +\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat2\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af44\afs20 \ltrch\fcs0 \b\i0\f44\fs20\fbias0\hres0\chhres0 \fi-363\li720\jclisttab\tx720\lin720 } +{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af0\afs20 \ltrch\fcs0 \b\i0\fs20\fbias0\hres0\chhres0 \fi-357\li2247 +\jclisttab\tx2610\lin2247 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 +\b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 +\ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid398096909} +{\list\listtemplateid1928476992{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af44\afs20 \ltrch\fcs0 \b\i0\f44\fs20\fbias0\hres0\chhres0 +\fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af44\afs20 \ltrch\fcs0 +\b\i0\f44\fs20\fbias0\hres0\chhres0 \fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af43\afs20 +\ltrch\fcs0 \b\i0\f43\fs20\fbias0\hres0\chhres0 \s39\fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 +\ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255 +\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname +;}\listid398796681}{\list\listtemplateid789093748\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid-317712510\'01\u-3913 ?;}{\levelnumbers;} +\f3\fbias0\hres0\chhres0 \s26\fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 +\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li2160 +\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2880 +\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li3600\jclisttab\tx3600\lin3600 } +{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23 +\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid477573462}{\list\listtemplateid830884688\listhybrid{\listlevel +\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698703\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li1077\lin1077 }{\listlevel\levelnfc4\levelnfcn4 +\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li1797\lin1797 }{\listlevel\levelnfc2\levelnfcn2\leveljc2 +\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li2517\lin2517 }{\listlevel\levelnfc0\levelnfcn0\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698703\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li3237\lin3237 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li3957\lin3957 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li4677\lin4677 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698703\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li5397\lin5397 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li6117\lin6117 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li6837\lin6837 }{\listname ;}\listid545946042} +{\list\listtemplateid-1705225006{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af43\afs20 \ltrch\fcs0 +\b\i0\f43\fs20\cf0\fbias0\hres0\chhres0 \s1\fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 +\ab\ai0\af43\afs20 \ltrch\fcs0 \b\i0\f43\fs20\fbias0\hres0\chhres0 \s2\fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;} +\rtlch\fcs1 \ab\ai0\af43\afs20 \ltrch\fcs0 \b\i0\f43\fs20\fbias0\hres0\chhres0 \s3\fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\animtext0\striked0\fbias0\hres0\chhres0 \s4\fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\animtext0\striked0\fbias0\hres0\chhres0 \s5\fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel +\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \s6\fi-357\li2149 +\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 +\s7\fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 +\b0\i0\f44\fs20\fbias0\hres0\chhres0 \s8\fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 +\ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \s9\fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid752163927}{\list\listtemplateid1725578678{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af43\afs20 \ltrch\fcs0 \b\i0\f43\fs20\cf0\fbias0\hres0\chhres0 \fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af43\afs20 \ltrch\fcs0 \b\i0\f43\fs20\fbias0\hres0\chhres0 \fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af0\afs20 \ltrch\fcs0 \b\i0\fs20\fbias0\hres0\chhres0 \fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1 +\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-357\li1792 +\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 +\fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 +\b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 +\ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 +\ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid1107626792}{\list\listtemplateid-41362566\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \s37\fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3929 ?;}{\levelnumbers;} +\f10\fbias0\hres0\chhres0 \li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2880 +\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23 +\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3929 ?;}{\levelnumbers;} +\f10\fbias0\hres0\chhres0 \li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid1559511898}{\list\listtemplateid-743794326\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\leveltemplateid2033377338\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \s27\fi-357\li1077\jclisttab\tx1080\lin1077 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693 +\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689 +\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;} +\f2\fbias0\hres0\chhres0 \li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;} +\f10\fbias0\hres0\chhres0 \li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;} +\f3\fbias0\hres0\chhres0 \li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5760 +\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1567649130}{\list\listtemplateid419070574\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689 +\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li1080\lin1080 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;} +\f2\fbias0\hres0\chhres0 \li1800\lin1800 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 +\li2520\lin2520 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li3240\lin3240 }{\listlevel +\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li3960\lin3960 }{\listlevel\levelnfc23\levelnfcn23\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li4680\lin4680 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li5400\lin5400 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative +\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li6120\lin6120 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext +\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6840\lin6840 }{\listname ;}\listid1589268858}{\list\listtemplateid1363474438\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace0\levelindent0{\leveltext\leveltemplateid-1175557160\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \s38\fi-357\li1792\jclisttab\tx1795\lin1792 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691 +\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;} +\f10\fbias0\hres0\chhres0 \li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;} +\f3\fbias0\hres0\chhres0 \li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5760 +\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1848404271}{\list\listtemplateid-761117952\listhybrid{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698713 +\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li717\lin717 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713 +\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li1437\lin1437 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715 +\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li2157\lin2157 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698703 +\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li2877\lin2877 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713 +\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li3597\lin3597 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715 +\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li4317\lin4317 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698703 +\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li5037\lin5037 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713 +\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li5757\lin5757 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715 +\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li6477\lin6477 }{\listname ;}\listid1870291363}{\list\listtemplateid1186249844\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace0\levelindent0{\leveltext\leveltemplateid1637229796\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \s36\fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689 +\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;} +\f2\fbias0\hres0\chhres0 \li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;} +\f10\fbias0\hres0\chhres0 \li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;} +\f3\fbias0\hres0\chhres0 \li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5760 +\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid2054619191}{\list\listtemplateid-1344757370{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 +\ab\ai0\af44\afs20 \ltrch\fcs0 \b\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;} +\rtlch\fcs1 \ab\ai0\af44\afs20 \ltrch\fcs0 \b\i0\f44\fs20\fbias0\hres0\chhres0 \fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af0\afs20 \ltrch\fcs0 \b\i0\fs20\fbias0\hres0\chhres0 \fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0 +\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel +\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2506\jclisttab\tx2509\lin2506 +}{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2863 +\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 +\fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid2057971432}{\list\listtemplateid-569628034{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;} +\rtlch\fcs1 \af0 \ltrch\fcs0 \b\fbias0\hres0\chhres0 \li717\lin717 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01);}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 +\hres0\chhres0 \li1077\lin1077 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02);}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li1437\lin1437 }{\listlevel +\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03(\'03);}{\levelnumbers\'02;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li1797\lin1797 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03(\'04);}{\levelnumbers\'02;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li2157\lin2157 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'03(\'05);}{\levelnumbers\'02;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li2517\lin2517 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li2877\lin2877 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 +\ltrch\fcs0 \hres0\chhres0 \li3237\lin3237 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li3597\lin3597 } +{\listname ;}\listid2106000387}}{\*\listoverridetable{\listoverride\listid752163927\listoverridecount9{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel +\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat +\levelstartat1}\ls1}{\listoverride\listid477573462\listoverridecount0\ls2}{\listoverride\listid1567649130\listoverridecount0\ls3}{\listoverride\listid2054619191\listoverridecount0\ls4}{\listoverride\listid1559511898\listoverridecount0\ls5} +{\listoverride\listid1848404271\listoverridecount0\ls6}{\listoverride\listid398796681\listoverridecount0\ls7}{\listoverride\listid545946042\listoverridecount0\ls8}{\listoverride\listid752163927\listoverridecount9{\lfolevel\listoverridestartat +\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel +\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}\ls9}{\listoverride\listid1870291363\listoverridecount0\ls10}{\listoverride\listid152650329\listoverridecount0\ls11} +{\listoverride\listid1589268858\listoverridecount0\ls12}{\listoverride\listid2057971432\listoverridecount0\ls13}{\listoverride\listid398096909\listoverridecount0\ls14}{\listoverride\listid752163927\listoverridecount0\ls15}{\listoverride\listid1107626792 +\listoverridecount0\ls16}{\listoverride\listid113718381\listoverridecount0\ls17}{\listoverride\listid2106000387\listoverridecount0\ls18}{\listoverride\listid398796681\listoverridecount0\ls19}{\listoverride\listid752163927\listoverridecount9{\lfolevel +\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat +\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}\ls20}}{\*\pgptbl {\pgp\ipgp0\itap0\li0\ri0\sb0\sa0}{\pgp\ipgp0\itap0\li0\ri0\sb0\sa0}} +{\*\rsidtbl \rsid79668\rsid150779\rsid211660\rsid263352\rsid483838\rsid489647\rsid528777\rsid554910\rsid686391\rsid792304\rsid922358\rsid1145719\rsid1335391\rsid1527700\rsid1641514\rsid1714580\rsid2040850\rsid2061565\rsid2434661\rsid2633486\rsid2635842 +\rsid2695079\rsid2902063\rsid2965976\rsid2971138\rsid3041209\rsid3285590\rsid3355994\rsid3418540\rsid3634687\rsid3814592\rsid3831999\rsid3875660\rsid3882158\rsid3882522\rsid3941498\rsid4149814\rsid4398083\rsid4537652\rsid4611858\rsid4742223\rsid4748609 +\rsid4801980\rsid4805534\rsid4805706\rsid4868258\rsid4929965\rsid4934124\rsid5113462\rsid5262441\rsid5309509\rsid5467606\rsid5471954\rsid5720387\rsid5784309\rsid6124814\rsid6171721\rsid6227660\rsid6292707\rsid6364904\rsid6424248\rsid6496414\rsid6561381 +\rsid6584761\rsid6620178\rsid6643866\rsid6706534\rsid6755756\rsid6828031\rsid6833860\rsid7040710\rsid7080991\rsid7091446\rsid7099326\rsid7167079\rsid7344474\rsid7420369\rsid7503579\rsid7698999\rsid7756319\rsid7869795\rsid7879410\rsid7891370\rsid8007569 +\rsid8069377\rsid8205106\rsid8334492\rsid8455816\rsid8460809\rsid8528894\rsid8586851\rsid8662808\rsid8850722\rsid8921755\rsid9004944\rsid9066668\rsid9072635\rsid9135771\rsid9176743\rsid9270181\rsid9306427\rsid9380011\rsid9399500\rsid9448986\rsid9465849 +\rsid9518548\rsid9577151\rsid9584906\rsid9722926\rsid9728818\rsid9835407\rsid9860928\rsid9902756\rsid9906198\rsid9990859\rsid10428435\rsid10956334\rsid11152386\rsid11303230\rsid11303858\rsid11408012\rsid11423848\rsid11496807\rsid11677882\rsid11690930 +\rsid11950712\rsid12088244\rsid12409886\rsid12545879\rsid12584315\rsid12868782\rsid12868905\rsid13004280\rsid13056010\rsid13066823\rsid13378691\rsid13456345\rsid13513072\rsid13594873\rsid13776901\rsid13967657\rsid14293912\rsid14423705\rsid14435085 +\rsid14500380\rsid14507627\rsid14644610\rsid14684443\rsid14685080\rsid14707821\rsid14712272\rsid14958727\rsid15033700\rsid15278441\rsid15287965\rsid15364209\rsid15405862\rsid15494051\rsid15539022\rsid15602361\rsid15602734\rsid15749471\rsid15804309 +\rsid15809401\rsid15870741\rsid15949319\rsid16065250\rsid16073823\rsid16084478\rsid16148105\rsid16328790\rsid16334972\rsid16388644\rsid16405449\rsid16537650\rsid16653828\rsid16715114}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1 +\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\creatim\yr2018\mo5\dy10\hr15\min1}{\revtim\yr2018\mo5\dy10\hr15\min1}{\version1}{\edmins0}{\nofpages3}{\nofwords1530}{\nofchars8725}{\nofcharsws10235}{\vern57}}{\*\xmlnstbl {\xmlns1 h +ttp://schemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect +\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen +\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1440\dgvorigin1440\dghshow1\dgvshow1 +\jexpand\viewkind1\viewscale164\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\rempersonalinfo\allowfieldendsel +\wrppunct\asianbrkrule\rsidroot4934124\newtblstyruls\nogrowautofit\remdttm\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal +\nouicompat \fet0{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0{\*\ftnsep \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11152386 \rtlch\fcs1 \af43\afs19\alang1025 +\ltrch\fcs0 \fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid14423705 \chftnsep +\par }}{\*\ftnsepc \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11152386 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid14423705 \chftnsepc +\par }}{\*\aftnsep \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11152386 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid14423705 \chftnsep +\par }}{\*\aftnsepc \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11152386 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid14423705 \chftnsepc +\par }}\ltrpar \sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid9860928\sftnbj {\headerl \ltrpar \pard\plain \ltrpar\s53\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 +\rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\headerr \ltrpar \pard\plain \ltrpar\s53\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\footerl \ltrpar \pard\plain \ltrpar\s55\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\footerr \ltrpar \pard\plain \ltrpar\s55\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\headerf \ltrpar \pard\plain \ltrpar\s53\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\footerf \ltrpar \pard\plain \ltrpar\s55\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}} +{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8 +\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar +\s28\ql \li0\ri0\sb120\sa120\nowidctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4934124 \rtlch\fcs1 \ab\af43\afs28\alang1025 \ltrch\fcs0 +\b\fs28\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS +\par }\pard\plain \ltrpar\s29\ql \li0\ri0\sb120\sa120\nowidctlpar\brdrb\brdrs\brdrw10\brsp20 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4934124 \rtlch\fcs1 \ab\af43\afs28\alang1025 \ltrch\fcs0 +\b\fs28\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid8069377 \hich\af43\dbch\af13\loch\f43 MSTEST }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid12409886 \hich\af43\dbch\af13\loch\f43 V2 INTELLITEST EXTENSION}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par }\pard\plain \ltrpar\s30\ql \li0\ri0\sb120\sa120\nowidctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4934124 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 +pre-release }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 software named above. The terms also apply to any Microsoft}{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid2434661\charrsid15278441 \hich\af43\dbch\af13\loch\f43 services or updates for the software, \hich\af43\dbch\af13\loch\f43 except to the extent those have }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 additional}{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid2434661\charrsid15278441 \hich\af43\dbch\af13\loch\f43 terms.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par }\pard\plain \ltrpar\s31\ql \li0\ri0\sb120\sa120\nowidctlpar\brdrt\brdrs\brdrw10\brsp20 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4934124 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +If you comply with these license terms, you have the rights below. +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 1.\tab}}\pard\plain \ltrpar\s1\ql \fi-360\li360\ri0\sb120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin360\itap0\pararsid15287965 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 INSTALLATION AND USE RIGHTS. +\par }\pard\plain \ltrpar\s27\ql \fi-360\li720\ri0\sa120\nowidctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid15287965 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +You may install and use any number of copies of the software to develop and test your }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid6292707\charrsid15278441 \hich\af43\dbch\af13\loch\f43 applications}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 . }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2434661\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid15405862\charrsid9066668 \hich\af43\dbch\af0\loch\f43 2.\tab}}\pard\plain \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid8528894 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \fs20\insrsid15405862\charrsid9066668 TERMS FOR SPECIFIC COMPONENTS. +\par {\listtext\pard\plain\ltrpar \s39 \rtlch\fcs1 \ab\af44\afs20 \ltrch\fcs0 \b\fs20\loch\af44\hich\af44\dbch\af13\insrsid15405862\charrsid9066668 \hich\af44\dbch\af13\loch\f44 a.\tab}}\pard\plain \ltrpar\s39\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx720\jclisttab\tx2610\wrapdefault\aspalpha\aspnum\faauto\ls13\ilvl1\outlinelevel2\adjustright\rin0\lin720\itap0\pararsid15405862 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid15405862\charrsid9066668 \hich\af43\dbch\af13\loch\f43 Third Party components. }{\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \b0\fs20\dbch\af13\insrsid15405862\charrsid9066668 \hich\af43\dbch\af13\loch\f43 The software may include third party components with separate legal notices or governed by other agreements, as}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid2061565 \hich\af43\dbch\af13\loch\f43 may be}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid2061565 \hich\af43\dbch\af13\loch\f43 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid15405862\charrsid9066668 \hich\af43\dbch\af13\loch\f43 described in the ThirdPartyNotices file accompanying the software. +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid9066668\charrsid12868782 \hich\af43\dbch\af0\loch\f43 3.\tab}}\pard\plain \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls15\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid9066668 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \fs20\insrsid9066668\charrsid12868782 DATA. }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 +\par {\listtext\pard\plain\ltrpar \s2 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid2061565\charrsid2061565 \hich\af43\dbch\af0\loch\f43 a.\tab}}\pard\plain \ltrpar\s2\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl1\outlinelevel1\prauth1\adjustright\rin0\lin720\itap0\pararsid2061565 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\*\oldpprops +\pard \ltrpar\s2\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0\pararsid2061565 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\insrsid2061565\charrsid2061565 Data Collection.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668\charrsid2061565 +The software may collect information about you and your use of the software, and sen +d that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. }{\rtlch\fcs1 \af43 \ltrch\fcs0 +\b0\insrsid9066668\charrsid2061565 There are also s}{\rtlch\fcs1 \af43 \ltrch\fcs0 \b0\cf1\insrsid9066668\charrsid2061565 ome features in the software that may enable you }{\rtlch\fcs1 \af43 \ltrch\fcs0 \b0\cf1\insrsid2061565\charrsid2061565 +and Microsoft }{\rtlch\fcs1 \af43 \ltrch\fcs0 \b0\cf1\insrsid9066668\charrsid2061565 to collect data from users of your applications.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668\charrsid2061565 If you use these features +, you must comply with applicable law, including providing appropriate notices to users of your applications}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 together with a copy of Microsoft\rquote s privacy statement}{ +\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668\charrsid2061565 . }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 Our privacy statement is located }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b0\fs20\insrsid9066668\charrsid2061565 at }{\field\fldedit{\*\fldinst {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid9990859 HYPERLINK "http://go.microsoft.com/fwlink/?LinkID=528096" }{\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid4398083 {\*\datafield +00d0c9ea79f9bace118c8200aa004ba90b0200000003000000e0c9ea79f9bace118c8200aa004ba90b7400000068007400740070003a002f002f0067006f002e006d006900630072006f0073006f00660074002e0063006f006d002f00660077006c0069006e006b002f003f004c0069006e006b00490044003d0035003200 +38003000390036000000795881f43b1d7f48af2c825dc485276300000000a5ab0003000000}}}{\fldrslt {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \cs24\b0\fs20\ul\cf2\insrsid9066668\charrsid2061565 http://go.microsoft.com/fwlink/?LinkID=528096}}}\sectd \ltrsect +\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid9860928\sftnbj {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668\charrsid2061565 . }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 +You can learn more about data collection and use in the help documentation and the privacy statement. }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668\charrsid2061565 Your use of the software operates as your consent to these practices.}{ +\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668 +\par {\listtext\pard\plain\ltrpar \s2 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid2061565 \hich\af43\dbch\af0\loch\f43 b.\tab}}\pard \ltrpar\s2\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0\pararsid2061565 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid2061565 Processing of Personal Data.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b0\fs20\insrsid2061565 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid3831999 To the extent Microsoft is a processo +r or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, }{\rtlch\fcs1 +\af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 at }{\field\fldedit{\*\fldinst {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid2061565\charrsid2061565 HYPERLINK "http://go.microsoft.com/?linkid=9840733" }{\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \fs20\insrsid7869795\charrsid2061565 {\*\datafield +00d0c9ea79f9bace118c8200aa004ba90b0200000003000000e0c9ea79f9bace118c8200aa004ba90b6800000068007400740070003a002f002f0067006f002e006d006900630072006f0073006f00660074002e0063006f006d002f003f006c0069006e006b00690064003d00390038003400300037003300330000007958 +81f43b1d7f48af2c825dc485276300000000a5ab000300}}}{\fldrslt {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \cs24\b0\fs20\ul\cf2\insrsid2061565\charrsid2061565 http://go.microsoft.com/?linkid=9840733}}}\sectd \ltrsect +\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid9860928\sftnbj {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \cs24\b0\fs20\ul\cf2\insrsid2061565 .}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 }{\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\loch\af43\hich\af43\dbch\af13\insrsid9066668\charrsid15278441 \hich\af43\dbch\af13\loch\f43 4.\tab}}\pard\plain \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid9066668 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \fs20\dbch\af13\insrsid9066668\charrsid15278441 \hich\af43\dbch\af13\loch\f43 PRE-RELEASE SOFTWARE. }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid9066668\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +This software is a pre-release version. It may not work the way a final version of the software will. We may change it for the final, commercial version. We also may not release a commercial version.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid9066668\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\loch\af43\hich\af43\dbch\af13\insrsid9066668\charrsid15278441 \hich\af43\dbch\af13\loch\f43 5.\tab}\hich\af43\dbch\af13\loch\f43 FEEDBACK. }{\rtlch\fcs1 \ab0\af43\afs20 +\ltrch\fcs0 \b0\fs20\dbch\af13\insrsid9066668\charrsid15278441 \hich\af43\dbch\af13\loch\f43 If you give feedback about the software to \hich\af43\dbch\af13\loch\f43 +Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentat +\hich\af43\dbch\af13\loch\f43 i\hich\af43\dbch\af13\loch\f43 on to third parties because we include your feedback in them. These rights survive this agreement.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid9066668\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 6.\tab}}\pard \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid15804309 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 Scope of License}{ +\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 .}{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 + The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. \hich\af43\dbch\af13\loch\f43 +Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certa +\hich\af43\dbch\af13\loch\f43 i\hich\af43\dbch\af13\loch\f43 n ways. }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 For more information, see }{\field\fldedit{\*\fldinst {\rtlch\fcs1 \af43 +\ltrch\fcs0 \insrsid9990859 HYPERLINK "http://www.microsoft.com/licensing/userights" }{\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid4398083 {\*\datafield +00d0c9ea79f9bace118c8200aa004ba90b0200000003000000e0c9ea79f9bace118c8200aa004ba90b7200000068007400740070003a002f002f007700770077002e006d006900630072006f0073006f00660074002e0063006f006d002f006c006900630065006e00730069006e0067002f00750073006500720069006700 +6800740073000000795881f43b1d7f48af2c825dc485276300000000a5ab0003100000}}}{\fldrslt {\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \cs24\b0\fs20\ul\cf2\dbch\af13\insrsid554910\charrsid7167079 \hich\af43\dbch\af13\loch\f43 www.microsoft.com/licensing/userights}}} +\sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid9860928\sftnbj {\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 . }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 You ma\hich\af43\dbch\af13\loch\f43 y not}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s26 \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\af3\hich\af3\dbch\af13\insrsid4934124\charrsid15278441 \loch\af3\dbch\af13\hich\f3 \'b7\tab}}\pard\plain \ltrpar\s26\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin720\itap0\pararsid4934124 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 +\af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 work around any technical limitations in the software}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid4934124\charrsid15278441 +\hich\af43\dbch\af11\loch\f43 ;}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s26 \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\af3\hich\af3\dbch\af13\insrsid4934124\charrsid15278441 \loch\af3\dbch\af13\hich\f3 \'b7\tab}\hich\af43\dbch\af13\loch\f43 +reverse engineer, decompile or disassemble the software, }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 or attempt to }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2061565 +\hich\af43\dbch\af13\loch\f43 derive the source code for the software, }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 except and only to the extent }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 required by third party licensing terms \hich\af43\dbch\af13\loch\f43 governing use of certain open-source components that may be included with the software}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\insrsid4934124\charrsid15278441 \hich\af43\dbch\af11\loch\f43 ;}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s26 \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\af3\hich\af3\dbch\af13\insrsid2434661\charrsid15278441 \loch\af3\dbch\af13\hich\f3 \'b7\tab}}\pard \ltrpar\s26\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin720\itap0\pararsid2434661 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2434661\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; +\par {\listtext\pard\plain\ltrpar \s26 \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\af3\hich\af3\dbch\af13\insrsid2434661\charrsid15278441 \loch\af3\dbch\af13\hich\f3 \'b7\tab}\hich\af43\dbch\af13\loch\f43 +use the software in any way that is against the law; or +\par {\listtext\pard\plain\ltrpar \s26 \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\af3\hich\af3\dbch\af13\insrsid2434661\charrsid15278441 \loch\af3\dbch\af13\hich\f3 \'b7\tab}\hich\af43\dbch\af13\loch\f43 share, publi\hich\af43\dbch\af13\loch\f43 sh}{ +\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 , rent, or lease}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2434661\charrsid15278441 \hich\af43\dbch\af13\loch\f43 + the software, or provide the software as a stand-alone }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2061565 \hich\af43\dbch\af13\loch\f43 offering}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2434661\charrsid15278441 +\hich\af43\dbch\af13\loch\f43 for others to use. +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 7.\tab}}\pard\plain \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid13594873 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 Export Restrictions}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid10956334 .}{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid554910\charrsid10956334 \hich\af43\dbch\af13\loch\f43 +You must comply with all domestic and international export laws and regulations that apply to the software, whi\hich\af43\dbch\af13\loch\f43 +ch include restrictions on destinations, end users and end use. For further information on export restrictions, visit (aka.ms/exporting).}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid10956334\charrsid10956334 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 8.\tab}}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\caps\fs20\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 SUPPORT SERVICES.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 }{\rtlch\fcs1 \ab0\af43\afs20 +\ltrch\fcs0 \b0\fs20\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 \hich\f43 Because this software is \'93\loch\f43 \hich\f43 as is,\'94\loch\f43 we may not provide support services for it.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid4934124\charrsid10956334 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 9.\tab}}\pard \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid4934124 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 Entire Agreemen +\hich\af43\dbch\af13\loch\f43 t.}{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 + This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 10.\tab}}\pard \ltrpar\s1\ql \fi-360\li360\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin360\itap0\pararsid528777 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 Applicable Law}{ +\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 .}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid528777\charrsid15278441 \hich\af43\dbch\af13\loch\f43 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b0\fs20\insrsid528777\charrsid15278441 If you acquired the software in the United States, Wa +shington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid528777\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af0\loch\f43 11.\tab}}\pard \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid14644610 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 CONSUMER RIGHTS; REGIONAL VARIATIONS. }{\rtlch\fcs1 +\af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid10956334\charrsid16328790 +This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party f +rom which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, + then the following provisions apply to you: +\par {\listtext\pard\plain\ltrpar \s2 \rtlch\fcs1 \ab\af0\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af0\loch\f43 a.\tab}}\pard\plain \ltrpar +\s2\ql \fi-360\li717\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ls18\outlinelevel1\adjustright\rin0\lin717\itap0\pararsid10956334 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 Australia. }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid10956334\charrsid16328790 +You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. +\par {\listtext\pard\plain\ltrpar \s2 \rtlch\fcs1 \ab\af0\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af0\loch\f43 b.\tab}}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 Canada. }{\rtlch\fcs1 +\af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid10956334\charrsid16328790 If you acquired this software in Canada, you may stop rec +eiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The +product documentation, if any, may also specify how to turn off updates for your specific device or software. +\par {\listtext\pard\plain\ltrpar \s2 \rtlch\fcs1 \ab\af0\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af0\loch\f43 c.\tab}}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 Germany and Austria}{ +\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid10956334\charrsid16328790 . +\par }\pard\plain \ltrpar\ql \li717\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin717\itap0\pararsid10956334 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af11\loch\f43 (i)}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\insrsid10956334\charrsid16328790 \tab }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af11\loch\f43 Warranty}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 +\hich\af43\dbch\af11\loch\f43 . The properly licensed software will perform substantially as described in any Microsoft materials that accomp\hich\af43\dbch\af11\loch\f43 +any the software. However, Microsoft gives no contractual guarantee in relation to the licensed software. +\par }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af11\loch\f43 (ii)}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 \tab }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af11\loch\f43 Limitation of Liability}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af11\loch\f43 . In case of intentional conduct, gross negligence, c +\hich\af43\dbch\af11\loch\f43 laims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law. +\par }\pard\plain \ltrpar\s1\ql \li717\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin717\itap0\pararsid10956334 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid10956334\charrsid16328790 Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsof +t is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust + in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence. +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 12.\tab}}\pard \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid4934124 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +Disclaimer of Warranty.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 +\hich\af43\dbch\af13\loch\f43 \hich\f43 THE SOFTWARE IS LICENSED \'93\loch\f43 \hich\f43 AS-IS.\'94\loch\f43 YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTI\hich\af43\dbch\af13\loch\f43 +ES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 13.\tab}}\pard \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid12584315 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +Limitation on and Exclusion of Damages. }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid12584315\charrsid15278441 YOU CAN RECOVER F +ROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. +\par }\pard\plain \ltrpar\s25\ql \li357\ri0\sb120\sa120\nowidctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin357\itap0\pararsid12584315 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +This limitation applies to (a) anything related to the software, ser\hich\af43\dbch\af13\loch\f43 +vices, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicabl +\hich\af43\dbch\af13\loch\f43 e\hich\af43\dbch\af13\loch\f43 law. +\par }\pard\plain \ltrpar\ql \li360\ri0\sb120\sa120\nowidctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid12584315 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or ot +\hich\af43\dbch\af13\loch\f43 her damages. +\par }\pard \ltrpar\ql \li0\ri0\sb40\sa40\widctlpar\wrapdefault\faauto\adjustright\rin0\lin0\itap0\pararsid12584315 {\rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. +\par \hich\af43\dbch\af13\loch\f43 \hich\f43 Remarque : Ce logiciel \'e9\loch\f43 \hich\f43 tant distribu\'e9\loch\f43 \hich\f43 au Qu\'e9\loch\f43 bec, Canada, certaines des clauses dans ce contrat sont fournies c\hich\af43\dbch\af13\loch\f43 \hich\f43 +i-dessous en fran\'e7\loch\f43 ais. +\par \hich\af43\dbch\af13\loch\f43 \hich\f43 EXON\'c9\loch\f43 RATION DE GARANTIE.}{\rtlch\fcs1 \af47\afs20 \ltrch\fcs0 \f47\fs20\cf1\lang1036\langfe1033\langnp1036\insrsid12584315\charrsid15278441 \~}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 \hich\f43 Le logiciel vis\'e9\loch\f43 \hich\f43 par une licence est offert \'ab\loch\f43 \hich\f43 tel quel \'bb\loch\f43 \hich\f43 . Toute utilisation de ce logiciel est +\'e0\loch\f43 \hich\f43 votre seule risque et p\'e9\loch\f43 ril. Microsoft n\hich\f43 \rquote \loch\f43 \hich\f43 accorde aucune autre garantie expresse. Vous pouvez b\'e9\loch\f43 \hich\f43 n\'e9\loch\f43 ficier de droi\hich\af43\dbch\af13\loch\f43 +\hich\f43 ts additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\'e9\loch\f43 marchande, d\hich\f43 \rquote +\loch\f43 \hich\f43 ad\'e9\loch\f43 \hich\f43 quation \'e0\loch\f43 un usage particulier et d\hich\f43 \rquote \loch\f43 absence de\hich\af43\dbch\af13\loch\f43 \hich\af43\dbch\af13\loch\f43 \hich\f43 contrefa\'e7\loch\f43 on sont exclues. +\par }{\rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 \hich\f43 LIMITATION DES DOMMAGES-INT\'c9\loch\f43 \hich\f43 R\'ca\loch\f43 \hich\f43 TS ET EXCLUSION DE RESPONSABILIT\'c9\loch\f43 + POUR LES DOMMAGES.}{\rtlch\fcs1 \af47\afs20 \ltrch\fcs0 \f47\fs20\cf1\lang1036\langfe1033\langnp1036\insrsid12584315\charrsid15278441 \~}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +Vous pouvez}{\rtlch\fcs1 \af47\afs20 \ltrch\fcs0 \f47\fs20\cf1\lang1036\langfe1033\langnp1036\insrsid12584315\charrsid15278441 \hich\af47\dbch\af11\loch\f47 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 +\hich\af43\dbch\af13\loch\f43 \hich\f43 obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \'e0\loch\f43 hauteur de 5,00 $ US. Vous ne pou\hich\af43\dbch\af13\loch\f43 \hich\f43 vez pr\'e9\loch\f43 +\hich\f43 tendre \'e0\loch\f43 \hich\f43 aucune indemnisation pour les autres dommages, y compris les dommages sp\'e9\loch\f43 \hich\f43 ciaux, indirects ou accessoires et pertes de b\'e9\loch\f43 \hich\f43 n\'e9\loch\f43 fices. +\par \hich\af43\dbch\af13\loch\f43 Cette limitation concerne: +\par }\pard \ltrpar\ql \fi-363\li363\ri0\sb40\sa40\widctlpar\wrapdefault\faauto\adjustright\rin0\lin363\itap0\pararsid12584315 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \loch\af43\dbch\af13\hich\f43 \'b7\~\~\~\~\tab +\loch\f43 \hich\f43 tout ce qui est reli\'e9\hich\af43\dbch\af13\loch\f43 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et +\par \loch\af43\dbch\af13\hich\f43 \'b7\~\~\~\~\~\loch\f43 \hich\f43 les r\'e9\loch\f43 \hich\f43 clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\'e9\loch\f43 \hich\f43 stricte, de n\'e9\loch\f43 gligenc +\hich\af43\dbch\af13\loch\f43 e ou d\hich\f43 \rquote \loch\f43 \hich\f43 une autre faute dans la limite autoris\'e9\loch\f43 e par la loi en vigueur. +\par }\pard \ltrpar\ql \li0\ri0\sb40\sa40\widctlpar\wrapdefault\faauto\adjustright\rin0\lin0\itap0\pararsid12584315 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 Elle s\hich\f43 \rquote +\loch\f43 \hich\f43 applique \'e9\loch\f43 \hich\f43 galement, m\'ea\loch\f43 \hich\f43 me si Microsoft connaissait ou devrait conna\'ee\loch\f43 tre l\hich\f43 \rquote \'e9\loch\f43 \hich\f43 ventualit\'e9\loch\f43 d\hich\f43 \rquote \loch\f43 +un tel dommage. Si votre pays n\hich\f43 \rquote \loch\f43 autorise pas l\hich\f43 \rquote \loch\f43 \hich\f43 exclusion ou la limitation de responsabilit\'e9\hich\af43\dbch\af13\loch\f43 + pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\hich\f43 \rquote \loch\f43 exclusion ci-dessus ne s\hich\f43 \rquote \loch\f43 \hich\f43 appliquera pas \'e0\loch\f43 \hich\f43 votre \'e9 +\loch\f43 gard. +\par }{\rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 EFFET JURIDIQUE.}{\rtlch\fcs1 \af47\afs20 \ltrch\fcs0 \f47\fs20\cf1\lang1036\langfe1033\langnp1036\insrsid12584315\charrsid15278441 +\~}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 \hich\f43 Le pr\'e9\loch\f43 \hich\f43 sent contrat d\'e9\loch\f43 crit certains droits juridiques. Vous pourriez avoir +\hich\af43\dbch\af13\loch\f43 d\hich\f43 \rquote \loch\f43 \hich\f43 autres droits pr\'e9\loch\f43 \hich\f43 vus par les lois de votre pays. Le pr\'e9\loch\f43 \hich\f43 sent contrat ne modifie pas les droits que vous conf\'e8\loch\f43 +rent les lois de votre pays si celles-ci ne le permettent pas. +\par }\pard \ltrpar\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid9860928\charrsid15278441 +\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a +9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad +5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 +b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 +0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 +a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f +c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 +0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 +a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 +6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b +4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b +4757e8d3f729e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f +7468656d65312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87 +615b8116d8a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad +79482a9c0498f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b +5d8a314d3c94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab +999fb7b4717509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9 +699640f6719e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd586 +8b37a088d1e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d6 +0cf03ac1a5193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f +9e7ef3f2d117d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be +15c308d3f28acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a9979 +3849c26ae66252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d +32a423279a668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2a +f074481847bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86 +e877f0034e16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb +44f95d843b5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a +6409fb44d08741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c +3d9058edf2c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db0256 +5e85f3b9660d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276 +b9f7dec44b7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8 +c33585b5fb9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e +51440ca2e0088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95 +b21be5ceaf8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff +6dce591a26ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec6 +9ffb9e65d028d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239 +b75a5bb1e6345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a449 +59d366ad93b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e8 +2db8df9f30254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468 +656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4 +350d363f2451eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d2624 +52282e3198720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe5141 +73d9850528a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c020000130000000000000000 +0000000000000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b00000000000000 +000000000000300100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c0000000000000000000000000019 +0200007468656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210096b5ade296060000501b00001600000000 +000000000000000000d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b01000027 +00000000000000000000000000a00900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d0100009b0a00000000} +{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d +617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 +6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 +656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} +{\*\latentstyles\lsdstimax375\lsdlockeddef0\lsdsemihiddendef0\lsdunhideuseddef0\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal;\lsdqformat1 \lsdlocked0 heading 1; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 2;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 3;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 4; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 5;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 6;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 7; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 8;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 6; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 9;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 1; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 2;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 3;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 4; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 5;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 6;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 7; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 8;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote text; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 header;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footer;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index heading; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of figures;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope address; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope return;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 line number; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 page number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of authorities; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 macro;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 toa heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 4; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 4; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 4; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 5;\lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Closing;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Signature; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority1 \lsdlocked0 Default Paragraph Font;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 5; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Message Header;\lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Salutation;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Date; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Note Heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Block Text; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 FollowedHyperlink;\lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Document Map;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Plain Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 E-mail Signature;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Top of Form; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Bottom of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal (Web);\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Acronym;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Address; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Cite;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Code;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Definition;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Keyboard; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Preformatted;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Sample;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Typewriter;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority59 \lsdlocked0 Table Grid;\lsdsemihidden1 \lsdlocked0 Placeholder Text;\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; +\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid;\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdpriority65 \lsdlocked0 Medium List 1; +\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2;\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List;\lsdpriority71 \lsdlocked0 Colorful Shading; +\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1;\lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdpriority62 \lsdlocked0 Light Grid Accent 1; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdsemihidden1 \lsdlocked0 Revision;\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph; +\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; +\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1;\lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1; +\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2; +\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; +\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdpriority60 \lsdlocked0 Light Shading Accent 3; +\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3; +\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdpriority70 \lsdlocked0 Dark List Accent 3; +\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdpriority61 \lsdlocked0 Light List Accent 4; +\lsdpriority62 \lsdlocked0 Light Grid Accent 4;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; +\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdpriority62 \lsdlocked0 Light Grid Accent 5; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5; +\lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdpriority70 \lsdlocked0 Dark List Accent 6;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 6; +\lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 6;\lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; +\lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference;\lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority37 \lsdlocked0 Bibliography; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;\lsdpriority41 \lsdlocked0 Plain Table 1;\lsdpriority42 \lsdlocked0 Plain Table 2;\lsdpriority43 \lsdlocked0 Plain Table 3;\lsdpriority44 \lsdlocked0 Plain Table 4; +\lsdpriority45 \lsdlocked0 Plain Table 5;\lsdpriority40 \lsdlocked0 Grid Table Light;\lsdpriority46 \lsdlocked0 Grid Table 1 Light;\lsdpriority47 \lsdlocked0 Grid Table 2;\lsdpriority48 \lsdlocked0 Grid Table 3;\lsdpriority49 \lsdlocked0 Grid Table 4; +\lsdpriority50 \lsdlocked0 Grid Table 5 Dark;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 1; +\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 1;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 1;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 1; +\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 1;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 2;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 2; +\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 2;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 2; +\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 3;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 3;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 3;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 3; +\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 3;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 4; +\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 4;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 4;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 4;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 4; +\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 4;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 5; +\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 5;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 5;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 5; +\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 5;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 6;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 6; +\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 6;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 6; +\lsdpriority46 \lsdlocked0 List Table 1 Light;\lsdpriority47 \lsdlocked0 List Table 2;\lsdpriority48 \lsdlocked0 List Table 3;\lsdpriority49 \lsdlocked0 List Table 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark; +\lsdpriority51 \lsdlocked0 List Table 6 Colorful;\lsdpriority52 \lsdlocked0 List Table 7 Colorful;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 List Table 2 Accent 1;\lsdpriority48 \lsdlocked0 List Table 3 Accent 1; +\lsdpriority49 \lsdlocked0 List Table 4 Accent 1;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 1;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 1; +\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 List Table 2 Accent 2;\lsdpriority48 \lsdlocked0 List Table 3 Accent 2;\lsdpriority49 \lsdlocked0 List Table 4 Accent 2; +\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 2;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 3; +\lsdpriority47 \lsdlocked0 List Table 2 Accent 3;\lsdpriority48 \lsdlocked0 List Table 3 Accent 3;\lsdpriority49 \lsdlocked0 List Table 4 Accent 3;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 3; +\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 4;\lsdpriority47 \lsdlocked0 List Table 2 Accent 4; +\lsdpriority48 \lsdlocked0 List Table 3 Accent 4;\lsdpriority49 \lsdlocked0 List Table 4 Accent 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 4;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 4; +\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 List Table 2 Accent 5;\lsdpriority48 \lsdlocked0 List Table 3 Accent 5; +\lsdpriority49 \lsdlocked0 List Table 4 Accent 5;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 5;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 5; +\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 List Table 2 Accent 6;\lsdpriority48 \lsdlocked0 List Table 3 Accent 6;\lsdpriority49 \lsdlocked0 List Table 4 Accent 6; +\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Mention; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hashtag;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Unresolved Mention;}}{\*\datastore 010500000200000018000000 +4d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 +d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000307e +737aaae8d301feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/MSTestv2IntelliTestExtensionPackage.csproj b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/MSTestv2IntelliTestExtensionPackage.csproj new file mode 100644 index 0000000..3f3e1ea --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/MSTestv2IntelliTestExtensionPackage.csproj @@ -0,0 +1,76 @@ + + + + ..\..\ + + + + 15.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + true + v3 + + + Debug + AnyCPU + 2.0 + {82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {88308F8C-9B6A-4FC1-BA78-F7106987CE56} + Library + Properties + MSTestv2IntelliTestExtensionPackage + MSTestv2IntelliTestExtensionPackage + v4.6 + false + false + false + false + false + false + true + False + + + true + full + false + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + TRACE + prompt + 4 + + + + + + + PreserveNewest + true + + + + Designer + + + PreserveNewest + true + + + + + {aab9f3cf-72d5-419b-b31e-209388bf3e7c} + MSTestv2IntelliTestExtension + BuiltProjectOutputGroup + + + + + false + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Properties/AssemblyInfo.cs b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..a38e045 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MSTestv2IntelliTestExtensionPackage")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MSTestv2IntelliTestExtensionPackage")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +// [assembly: AssemblyVersion("1.0.0.0")] +// [assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/cs/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/cs/extension.vsixlangpack new file mode 100644 index 0000000..955965e --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/cs/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Rozšíření rozhraní MSTest V2 pro IntelliTest + Umožňuje vývojářům generovat IntelliTest pomocí rozhraní MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/de/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/de/extension.vsixlangpack new file mode 100644 index 0000000..e37d03e --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/de/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2: IntelliTest-Erweiterung + Ermöglicht Entwicklern das Generieren eines IntelliTest unter Verwendung von MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/es/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/es/extension.vsixlangpack new file mode 100644 index 0000000..639420e --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/es/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Extensión IntelliTest de MSTest V2 + Permite que los desarrolladores generen IntelliTest con MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/fr/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/fr/extension.vsixlangpack new file mode 100644 index 0000000..40e43c0 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/fr/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Extension IntelliTest pour MSTest V2 + Permet aux développeurs de générer IntelliTest à l'aide de MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/it/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/it/extension.vsixlangpack new file mode 100644 index 0000000..b5e8299 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/it/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Estensione per IntelliTest MSTest V2 + Consente agli sviluppatori di generare IntelliTest con MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ja/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ja/extension.vsixlangpack new file mode 100644 index 0000000..d105c5c --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ja/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2 IntelliTest の拡張 + 開発者が MSTest V2 を使用して IntelliTest を生成できるようにします。 + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ko/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ko/extension.vsixlangpack new file mode 100644 index 0000000..2b70e61 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ko/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2 IntelliTest 확장 + 개발자가 MSTest V2를 사용하여 IntelliTest를 생성할 수 있습니다. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/pl/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/pl/extension.vsixlangpack new file mode 100644 index 0000000..f0d2372 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/pl/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Rozszerzenie IntelliTest programu MSTest 2 + Umożliwia deweloperem generowanie testów IntelliTest przy użyciu programu MSTest 2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/pt-BR/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/pt-BR/extension.vsixlangpack new file mode 100644 index 0000000..056924c --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/pt-BR/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Extensão do MSTest V2 IntelliTest + Permitir que desenvolvedores gerem o IntelliTest usando MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ru/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ru/extension.vsixlangpack new file mode 100644 index 0000000..5427ae8 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/ru/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Расширение MSTest V2 IntelliTest + Позволяет разработчикам создавать тесты IntelliTest с помощью MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/tr/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/tr/extension.vsixlangpack new file mode 100644 index 0000000..8238576 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/tr/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2 IntelliTest Uzantısı + Geliştiricilerin MSTest V2'yi kullanarak IntelliTest oluşturmasına izin verir. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/zh-Hans/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/zh-Hans/extension.vsixlangpack new file mode 100644 index 0000000..f9473df --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/zh-Hans/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2 IntelliTest 扩展 + 允许开发人员使用 MSTest V2 生成 IntelliTest。 + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/zh-Hant/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/zh-Hant/extension.vsixlangpack new file mode 100644 index 0000000..7cfe36c --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/Resources/zh-Hant/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2 IntelliTest 延伸模組 + 允許開發人員使用 MSTest V2 產生 IntelliTest。 + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/extension.vsixlangpack b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/extension.vsixlangpack new file mode 100644 index 0000000..7c24977 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/extension.vsixlangpack @@ -0,0 +1,6 @@ + + + MSTest V2 IntelliTest Extension + Allows developers to generate IntelliTest using MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/packages.config b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/packages.config new file mode 100644 index 0000000..0f0cc0d --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2IntelliTestExtensionPackage/source.extension.vsixmanifest b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/source.extension.vsixmanifest new file mode 100644 index 0000000..cb6b1a0 --- /dev/null +++ b/WizardExtensions/MSTestv2IntelliTestExtensionPackage/source.extension.vsixmanifest @@ -0,0 +1,27 @@ + + + + + MSTest V2 IntelliTest Extension + Allows developers to generate IntelliTest using MSTest V2. + IntelliTestExtensionLicense.rtf + Microsoft.VisualStudio.TestTools.MSTestV2.WizardExtension.IntelliTest + + + + + + + + + + + + + + + + + + + diff --git a/WizardExtensions/MSTestv2UnitTestExtension/GlobalAssemblyInfo.cs b/WizardExtensions/MSTestv2UnitTestExtension/GlobalAssemblyInfo.cs new file mode 100644 index 0000000..cd7fa32 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtension/GlobalAssemblyInfo.cs @@ -0,0 +1,19 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyVersionAttribute("14.0.0.0")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("14.0.0.1")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("14.0.0.1")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2FrameworkProvider.cs b/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2FrameworkProvider.cs new file mode 100644 index 0000000..7017b7d --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2FrameworkProvider.cs @@ -0,0 +1,118 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace MSTestv2UnitTestExtension +{ + using System; + using System.ComponentModel.Composition; + using System.Linq; + using EnvDTE; + using Microsoft.VisualStudio.TestPlatform.TestGeneration.Data; + using Microsoft.VisualStudio.TestPlatform.TestGeneration.Model; + using VSLangProj; + + /// + /// The provider for the MSTest unit test framework. + /// + [Export(typeof(IFrameworkProvider))] + public class MSTestv2FrameworkProvider : FrameworkProviderBase + { + /// + /// Unsupported testable project type guids. + /// + private readonly Guid[] unsupportedProjects = + { + Guid.Parse("BC8A1FFA-BEE3-4634-8014-F334798102B3"), // Windows Store + Guid.Parse("C089C8C0-30E0-4E22-80C0-CE093F111A43"), // Phone Silverlight + Guid.Parse("76F1466A-8B6D-4E39-A767-685A06062A39"), // Phone Appx + Guid.Parse("786C830F-07A1-408B-BD7F-6EE04809D6DB"), // Portable app + Guid.Parse("A1591282-1198-4647-A2B1-27E5FF5F6F3B"), // Silverlight + }; + + /// + /// Service provider reference. + /// + private readonly IServiceProvider serviceProvider; + + /// + /// Initializes a new instance of the class. + /// + /// The service provider to use to get the interfaces required. + /// The configuration settings object to be used to determine how the test method is generated. + /// The naming object used to decide how projects, classes and methods are named and created. + /// The directory object to use for directory operations. + [ImportingConstructor] + public MSTestv2FrameworkProvider(IServiceProvider serviceProvider, IConfigurationSettings configurationSettings, INaming naming, IDirectory directory) + : base(new MSTestv2SolutionManager(serviceProvider, naming, directory), new MSTestv2UnitTestProjectManager(serviceProvider, naming), new MSTestv2UnitTestClassManager(configurationSettings, naming)) + { + this.serviceProvider = serviceProvider; + } + + /// + /// Gets the name of the provider. + /// + public override string Name + { + get { return "MSTestv2"; } + } + + public override string AssemblyName + { + get { return "Microsoft.VisualStudio.TestPlatform.TestFramework"; } + } + + /// + /// Returns a value indicating whether a is a test project for the unit test framework. + /// + /// + /// In addition to the standard implementation, this checks for a reference to the MSTestv2Framework assembly used to test Windows Store Apps. + /// + /// The to check. + /// True if is a unit test project, false otherwise. + public override bool IsTestProject(Project project) + { + bool result = false; + + if (project == null) + { + throw new ArgumentNullException("project"); + } + + result = base.IsTestProject(project); + if (!result) + { + if (project.Kind == PrjKind.prjKindCSharpProject || project.Kind == PrjKind.prjKindVBProject) + { + result = FrameworkProviderBase.ProjectHasReference(project, "MSTestv2Framework"); + } + } + + return result; + } + + /// + /// Check if the current project is a testable project; i.e. tests can be generated for this project. + /// + /// The project. + /// True if project if tests can be generated for this project. + public override bool IsTestableProject(Project project) + { + // Base IsTestableProject filters C# and VB projects. + if (!base.IsTestableProject(project)) + { + return false; + } + + // Further restrict projects to C# desktop + foreach (var projectGuid in project.ProjectTypeGuids(this.serviceProvider)) + { + if (this.unsupportedProjects.Contains(projectGuid)) + { + return false; + } + } + + return true; + } + } +} diff --git a/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2SolutionManager.cs b/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2SolutionManager.cs new file mode 100644 index 0000000..8018cf7 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2SolutionManager.cs @@ -0,0 +1,69 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace MSTestv2UnitTestExtension +{ + using System; + using EnvDTE; + using EnvDTE80; + using Microsoft.VisualStudio.TestPlatform.TestGeneration; + using Microsoft.VisualStudio.TestPlatform.TestGeneration.Data; + using Microsoft.VisualStudio.TestPlatform.TestGeneration.Logging; + using Microsoft.VisualStudio.TestPlatform.TestGeneration.Model; + using VSLangProj; + using VSLangProj80; + + /// + /// A solution manager for MSTestv2 unit tests. + /// + public class MSTestv2SolutionManager : SolutionManagerBase + { + /// + /// The service provider to use to get the interfaces required. + /// + private IServiceProvider serviceProvider; + + /// + /// Initializes a new instance of the class. + /// + /// The service provider to use to get the interfaces required. + /// The naming object used to decide how projects, classes and methods are named and created. + /// The directory object to use for directory operations. + public MSTestv2SolutionManager(IServiceProvider serviceProvider, INaming naming, IDirectory directory) + : base(serviceProvider, naming, directory) + { + this.serviceProvider = serviceProvider; + } + + /// + /// Performs any preparatory tasks that have to be done after a new unit test project has been created. + /// + /// The of the unit test project that has just been created. + /// The of the source method that is to be unit tested. + protected override void OnUnitTestProjectCreated(Project unitTestProject, CodeFunction2 sourceMethod) + { + if (unitTestProject == null) + { + throw new ArgumentNullException("unitTestProject"); + } + + TraceLogger.LogInfo("MSTestv2SolutionManager.OnUnitTestProjectCreated: Adding reference to MSTestv2 assemblies through nuget."); + + base.OnUnitTestProjectCreated(unitTestProject, sourceMethod); + + this.EnsureNuGetReference(unitTestProject, "MSTest.TestAdapter", "1.3.2"); + this.EnsureNuGetReference(unitTestProject, "MSTest.TestFramework", "1.3.2"); + + VSProject2 vsp = unitTestProject.Object as VSProject2; + if (vsp != null) + { + Reference reference = vsp.References.Find(GlobalConstants.MSTestAssemblyName); + if (reference != null) + { + TraceLogger.LogInfo("MSTestv2SolutionManager.OnUnitTestProjectCreated: Removing reference to {0}", reference.Name); + reference.Remove(); + } + } + } + } +} diff --git a/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestClassManager.cs b/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestClassManager.cs new file mode 100644 index 0000000..78353f9 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestClassManager.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace MSTestv2UnitTestExtension +{ + using Microsoft.VisualStudio.TestPlatform.TestGeneration.Data; + using Microsoft.VisualStudio.TestPlatform.TestGeneration.Model; + + /// + /// A unit test class for MSTest unit tests. + /// + public class MSTestv2UnitTestClassManager : UnitTestClassManagerBase + { + /// + /// Initializes a new instance of the class. + /// + /// The configuration settings object to be used to determine how the test method is generated. + /// The object to be used to give names to test projects. + public MSTestv2UnitTestClassManager(IConfigurationSettings configurationSettings, INaming naming) + : base(configurationSettings, naming) + { + } + + /// + /// Gets the attribute name for marking a class as a test class. + /// + public override string TestClassAttribute + { + get { return "TestClass"; } + } + + /// + /// Gets the attribute name for marking a method as a test. + /// + public override string TestMethodAttribute + { + get { return "TestMethod"; } + } + + /// + /// Gets the code to force a test failure. + /// + public override string AssertionFailure + { + get { return "Assert.Fail()"; } + } + } +} diff --git a/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestExtension.csproj b/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestExtension.csproj new file mode 100644 index 0000000..9a329f1 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestExtension.csproj @@ -0,0 +1,91 @@ + + + + ..\..\ + + + + Debug + AnyCPU + {25BFACE8-5009-498E-9B18-3E417C312F26} + Library + Properties + MSTestv2UnitTestExtension + MSTestv2UnitTestExtension + v4.6 + 512 + + + + + + true + full + false + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + TRACE + prompt + 4 + + + + False + False + True + + + False + False + True + + + False + True + + + $(TestTemplatesRoot)packages\Microsoft.Internal.CreateUnitTest.15.0.0\lib\net46\Microsoft.VisualStudio.TestPlatform.TestGeneration.dll + True + + + $(TestTemplatesRoot)packages\NuGet.VisualStudio.3.5.0\lib\net45\NuGet.VisualStudio.dll + True + True + + + + + + + + + + + + False + False + True + + + False + False + True + + + + + + + + + + + + + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestProjectManager.cs b/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestProjectManager.cs new file mode 100644 index 0000000..a44a011 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtension/MSTestv2UnitTestProjectManager.cs @@ -0,0 +1,41 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +namespace MSTestv2UnitTestExtension +{ + using System; + using EnvDTE; + using Microsoft.VisualStudio.TestPlatform.TestGeneration.Model; + + /// + /// A unit test project for MSTest unit tests. + /// + public class MSTestv2UnitTestProjectManager : UnitTestProjectManagerBase + { + /// + /// The service provider to use to get the interfaces required. + /// + private IServiceProvider serviceProvider; + + /// + /// Initializes a new instance of the class. + /// + /// The service provider to use to get the interfaces required. + /// The naming object used to decide how projects, classes and methods are named and created. + public MSTestv2UnitTestProjectManager(IServiceProvider serviceProvider, INaming naming) + : base(serviceProvider, naming) + { + this.serviceProvider = serviceProvider; + } + + /// + /// Returns the full namespace that contains the test framework code elements for a given source project. + /// + /// The source project. + /// The full namespace that contains the test framework code elements. + public override string FrameworkNamespace(Project sourceProject) + { + return "Microsoft.VisualStudio.TestTools.UnitTesting"; + } + } +} diff --git a/WizardExtensions/MSTestv2UnitTestExtension/Properties/AssemblyInfo.cs b/WizardExtensions/MSTestv2UnitTestExtension/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..25caccc --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtension/Properties/AssemblyInfo.cs @@ -0,0 +1,38 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Extensions")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Extensions")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("25bface8-5009-498e-9b18-3e417c312f26")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +// [assembly: AssemblyVersion("1.0.0.0")] +// [assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/WizardExtensions/MSTestv2UnitTestExtension/packages.config b/WizardExtensions/MSTestv2UnitTestExtension/packages.config new file mode 100644 index 0000000..d661bf8 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtension/packages.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/CreateUnitTestExtensionLicense.rtf b/WizardExtensions/MSTestv2UnitTestExtensionPackage/CreateUnitTestExtensionLicense.rtf new file mode 100644 index 0000000..02d4a2f --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/CreateUnitTestExtensionLicense.rtf @@ -0,0 +1,658 @@ +{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff43\deff0\stshfdbch0\stshfloch31506\stshfhich31506\stshfbi31506\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};} +{\f2\fbidi \fmodern\fcharset0\fprq1{\*\panose 00000000000000000000}Courier New{\*\falt Arial};}{\f3\fbidi \froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol{\*\falt Bookshelf Symbol 3};} +{\f10\fbidi \fnil\fcharset2\fprq2{\*\panose 00000000000000000000}Wingdings{\*\falt Symbol};}{\f11\fbidi \fmodern\fcharset128\fprq1{\*\panose 00000000000000000000}MS Mincho{\*\falt ?l?r ??\'81\'66c};} +{\f13\fbidi \fnil\fcharset134\fprq2{\*\panose 00000000000000000000}SimSun{\*\falt ????\'a8\'ac??};}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math{\*\falt Calisto MT};} +{\f37\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri{\*\falt Times New Roman};}{\f43\fbidi \fswiss\fcharset0\fprq2{\*\panose 00000000000000000000}Tahoma{\*\falt ?l?r ???};} +{\f44\fbidi \fswiss\fcharset0\fprq2{\*\panose 00000000000000000000}Trebuchet MS{\*\falt Arial};}{\f47\fbidi \fswiss\fcharset0\fprq2{\*\panose 00000000000000000000}Segoe UI{\*\falt Segoe UI};} +{\f48\fbidi \fmodern\fcharset128\fprq1{\*\panose 00000000000000000000}@MS Mincho{\*\falt @MS Gothic};}{\f49\fbidi \fnil\fcharset134\fprq2{\*\panose 02010600030101010101}@SimSun{\*\falt @Arial Unicode MS};} +{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};}{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};} +{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 00000000000000000000}Cambria;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};} +{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};} +{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri{\*\falt Times New Roman};}{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};} +{\f431\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};}{\f432\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};}{\f434\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};} +{\f435\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};}{\f436\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};}{\f437\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};} +{\f438\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};}{\f439\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}{\f451\fbidi \fmodern\fcharset238\fprq1 Courier New CE{\*\falt Arial};} +{\f452\fbidi \fmodern\fcharset204\fprq1 Courier New Cyr{\*\falt Arial};}{\f454\fbidi \fmodern\fcharset161\fprq1 Courier New Greek{\*\falt Arial};}{\f455\fbidi \fmodern\fcharset162\fprq1 Courier New Tur{\*\falt Arial};} +{\f456\fbidi \fmodern\fcharset177\fprq1 Courier New (Hebrew){\*\falt Arial};}{\f457\fbidi \fmodern\fcharset178\fprq1 Courier New (Arabic){\*\falt Arial};}{\f458\fbidi \fmodern\fcharset186\fprq1 Courier New Baltic{\*\falt Arial};} +{\f459\fbidi \fmodern\fcharset163\fprq1 Courier New (Vietnamese){\*\falt Arial};}{\f543\fbidi \fmodern\fcharset0\fprq1 MS Mincho Western{\*\falt ?l?r ??\'81\'66c};}{\f541\fbidi \fmodern\fcharset238\fprq1 MS Mincho CE{\*\falt ?l?r ??\'81\'66c};} +{\f542\fbidi \fmodern\fcharset204\fprq1 MS Mincho Cyr{\*\falt ?l?r ??\'81\'66c};}{\f544\fbidi \fmodern\fcharset161\fprq1 MS Mincho Greek{\*\falt ?l?r ??\'81\'66c};}{\f545\fbidi \fmodern\fcharset162\fprq1 MS Mincho Tur{\*\falt ?l?r ??\'81\'66c};} +{\f548\fbidi \fmodern\fcharset186\fprq1 MS Mincho Baltic{\*\falt ?l?r ??\'81\'66c};}{\f563\fbidi \fnil\fcharset0\fprq2 SimSun Western{\*\falt ????\'a8\'ac??};}{\f771\fbidi \froman\fcharset238\fprq2 Cambria Math CE{\*\falt Calisto MT};} +{\f772\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr{\*\falt Calisto MT};}{\f774\fbidi \froman\fcharset161\fprq2 Cambria Math Greek{\*\falt Calisto MT};}{\f775\fbidi \froman\fcharset162\fprq2 Cambria Math Tur{\*\falt Calisto MT};} +{\f778\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic{\*\falt Calisto MT};}{\f779\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese){\*\falt Calisto MT};}{\f801\fbidi \fswiss\fcharset238\fprq2 Calibri CE{\*\falt Times New Roman};} +{\f802\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr{\*\falt Times New Roman};}{\f804\fbidi \fswiss\fcharset161\fprq2 Calibri Greek{\*\falt Times New Roman};}{\f805\fbidi \fswiss\fcharset162\fprq2 Calibri Tur{\*\falt Times New Roman};} +{\f806\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew){\*\falt Times New Roman};}{\f807\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic){\*\falt Times New Roman};}{\f808\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic{\*\falt Times New Roman};} +{\f809\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese){\*\falt Times New Roman};}{\f861\fbidi \fswiss\fcharset238\fprq2 Tahoma CE{\*\falt ?l?r ???};}{\f862\fbidi \fswiss\fcharset204\fprq2 Tahoma Cyr{\*\falt ?l?r ???};} +{\f864\fbidi \fswiss\fcharset161\fprq2 Tahoma Greek{\*\falt ?l?r ???};}{\f865\fbidi \fswiss\fcharset162\fprq2 Tahoma Tur{\*\falt ?l?r ???};}{\f866\fbidi \fswiss\fcharset177\fprq2 Tahoma (Hebrew){\*\falt ?l?r ???};} +{\f867\fbidi \fswiss\fcharset178\fprq2 Tahoma (Arabic){\*\falt ?l?r ???};}{\f868\fbidi \fswiss\fcharset186\fprq2 Tahoma Baltic{\*\falt ?l?r ???};}{\f869\fbidi \fswiss\fcharset163\fprq2 Tahoma (Vietnamese){\*\falt ?l?r ???};} +{\f870\fbidi \fswiss\fcharset222\fprq2 Tahoma (Thai){\*\falt ?l?r ???};}{\f871\fbidi \fswiss\fcharset238\fprq2 Trebuchet MS CE{\*\falt Arial};}{\f872\fbidi \fswiss\fcharset204\fprq2 Trebuchet MS Cyr{\*\falt Arial};} +{\f874\fbidi \fswiss\fcharset161\fprq2 Trebuchet MS Greek{\*\falt Arial};}{\f875\fbidi \fswiss\fcharset162\fprq2 Trebuchet MS Tur{\*\falt Arial};}{\f878\fbidi \fswiss\fcharset186\fprq2 Trebuchet MS Baltic{\*\falt Arial};} +{\f901\fbidi \fswiss\fcharset238\fprq2 Segoe UI CE{\*\falt Segoe UI};}{\f902\fbidi \fswiss\fcharset204\fprq2 Segoe UI Cyr{\*\falt Segoe UI};}{\f904\fbidi \fswiss\fcharset161\fprq2 Segoe UI Greek{\*\falt Segoe UI};} +{\f905\fbidi \fswiss\fcharset162\fprq2 Segoe UI Tur{\*\falt Segoe UI};}{\f906\fbidi \fswiss\fcharset177\fprq2 Segoe UI (Hebrew){\*\falt Segoe UI};}{\f907\fbidi \fswiss\fcharset178\fprq2 Segoe UI (Arabic){\*\falt Segoe UI};} +{\f908\fbidi \fswiss\fcharset186\fprq2 Segoe UI Baltic{\*\falt Segoe UI};}{\f909\fbidi \fswiss\fcharset163\fprq2 Segoe UI (Vietnamese){\*\falt Segoe UI};}{\f913\fbidi \fmodern\fcharset0\fprq1 @MS Mincho Western{\*\falt @MS Gothic};} +{\f911\fbidi \fmodern\fcharset238\fprq1 @MS Mincho CE{\*\falt @MS Gothic};}{\f912\fbidi \fmodern\fcharset204\fprq1 @MS Mincho Cyr{\*\falt @MS Gothic};}{\f914\fbidi \fmodern\fcharset161\fprq1 @MS Mincho Greek{\*\falt @MS Gothic};} +{\f915\fbidi \fmodern\fcharset162\fprq1 @MS Mincho Tur{\*\falt @MS Gothic};}{\f918\fbidi \fmodern\fcharset186\fprq1 @MS Mincho Baltic{\*\falt @MS Gothic};}{\f923\fbidi \fnil\fcharset0\fprq2 @SimSun Western{\*\falt @Arial Unicode MS};} +{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};} +{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};} +{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};} +{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};} +{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};} +{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};} +{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};} +{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;} +{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;}{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;} +{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;}{\fhimajor\f31536\fbidi \froman\fcharset163\fprq2 Cambria (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};} +{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};} +{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};} +{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};} +{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};} +{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};} +{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};} +{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};} +{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};} +{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};} +{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};} +{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};} +{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE{\*\falt Times New Roman};} +{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr{\*\falt Times New Roman};}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek{\*\falt Times New Roman};} +{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur{\*\falt Times New Roman};}{\fhiminor\f31573\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew){\*\falt Times New Roman};} +{\fhiminor\f31574\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic){\*\falt Times New Roman};}{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic{\*\falt Times New Roman};} +{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese){\*\falt Times New Roman};}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};} +{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};} +{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};} +{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};} +{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0; +\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192; +\cfollowedhyperlink\ctint255\cshade255\red128\green0\blue128;}{\*\defchp \f31506\fs22 }{\*\defpap \ql \fi-360\li360\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0 }\noqfpromote {\stylesheet{ +\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\snext0 \sautoupd \sqformat \spriority0 \styrsid4934124 Normal;}{\s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 +\ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext1 \slink15 \sqformat \styrsid4934124 heading 1;}{\s2\ql \fi-363\li720\ri0\sb120\sa120\widctlpar +\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext2 \slink16 \sunhideused \sqformat \styrsid4934124 heading 2;}{\s3\ql \fi-357\li1077\ri0\sb120\sa120\widctlpar\tx1077\jclisttab\tx1440\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl2\outlinelevel2\adjustright\rin0\lin1077\itap0 \rtlch\fcs1 +\af43\afs19\alang1025 \ltrch\fcs0 \f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext3 \slink17 \sunhideused \sqformat \styrsid4934124 heading 3;}{\s4\ql \fi-358\li1435\ri0\sb120\sa120\widctlpar +\jclisttab\tx1437\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl3\outlinelevel3\adjustright\rin0\lin1435\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext4 \slink18 \sunhideused \sqformat \styrsid4934124 heading 4;}{\s5\ql \fi-357\li1792\ri0\sb120\sa120\widctlpar\tx1792\jclisttab\tx2155\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl4\outlinelevel4\adjustright\rin0\lin1792\itap0 \rtlch\fcs1 +\af43\afs19\alang1025 \ltrch\fcs0 \f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext5 \slink19 \sunhideused \sqformat \styrsid4934124 heading 5;}{\s6\ql \fi-357\li2149\ri0\sb120\sa120\widctlpar +\jclisttab\tx2152\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl5\outlinelevel5\adjustright\rin0\lin2149\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext6 \slink20 \sunhideused \sqformat \styrsid4934124 heading 6;}{\s7\ql \fi-357\li2506\ri0\sb120\sa120\widctlpar\jclisttab\tx2509\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl6\outlinelevel6\adjustright\rin0\lin2506\itap0 \rtlch\fcs1 +\af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext7 \slink21 \sunhideused \sqformat \styrsid4934124 heading 7;}{\s8\ql \fi-357\li2863\ri0\sb120\sa120\widctlpar +\jclisttab\tx2866\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl7\outlinelevel7\adjustright\rin0\lin2863\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext8 \slink22 \sunhideused \sqformat \styrsid4934124 heading 8;}{\s9\ql \fi-358\li3221\ri0\sb120\sa120\widctlpar\jclisttab\tx3223\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl8\outlinelevel8\adjustright\rin0\lin3221\itap0 \rtlch\fcs1 +\af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext9 \slink23 \sunhideused \sqformat \styrsid4934124 heading 9;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 +Default Paragraph Font;}{\*\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv +\ql \fi-360\li360\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0 \rtlch\fcs1 \af31506\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused +Normal Table;}{\*\cs15 \additive \rtlch\fcs1 \ab\af43\afs19 \ltrch\fcs0 \b\f43\fs19 \sbasedon10 \slink1 \slocked \styrsid4934124 Heading 1 Char;}{\*\cs16 \additive \rtlch\fcs1 \ab\af43\afs19 \ltrch\fcs0 \b\f43\fs19 +\sbasedon10 \slink2 \slocked \ssemihidden \styrsid4934124 Heading 2 Char;}{\*\cs17 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \f43\fs19 \sbasedon10 \slink3 \slocked \ssemihidden \styrsid4934124 Heading 3 Char;}{\*\cs18 \additive \rtlch\fcs1 +\af43\afs19 \ltrch\fcs0 \f43\fs19 \sbasedon10 \slink4 \slocked \ssemihidden \styrsid4934124 Heading 4 Char;}{\*\cs19 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \f43\fs19 \sbasedon10 \slink5 \slocked \ssemihidden \styrsid4934124 Heading 5 Char;}{\* +\cs20 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \f43\fs19 \sbasedon10 \slink6 \slocked \ssemihidden \styrsid4934124 Heading 6 Char;}{\*\cs21 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 +\sbasedon10 \slink7 \slocked \ssemihidden \styrsid4934124 Heading 7 Char;}{\*\cs22 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 \sbasedon10 \slink8 \slocked \ssemihidden \styrsid4934124 Heading 8 Char;}{\*\cs23 +\additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 \sbasedon10 \slink9 \slocked \ssemihidden \styrsid4934124 Heading 9 Char;}{\*\cs24 \additive \rtlch\fcs1 \af0 \ltrch\fcs0 \f0\ul\cf2 \sbasedon10 \sunhideused \styrsid4934124 +Hyperlink;}{\s25\ql \li357\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin357\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext25 \styrsid4934124 Body 1;}{\s26\ql \fi-363\li720\ri0\sb120\sa120\widctlpar\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin720\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext26 \styrsid4934124 Bullet 2;}{\s27\ql \fi-357\li1077\ri0\sb120\sa120\widctlpar +\jclisttab\tx1080\wrapdefault\aspalpha\aspnum\faauto\ls3\adjustright\rin0\lin1077\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext27 \slink48 \styrsid4934124 Bullet 3;}{\s28\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs28\alang1025 \ltrch\fcs0 +\b\fs28\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \styrsid4934124 Heading EULA;}{\s29\ql \li0\ri0\sb120\sa120\widctlpar\brdrb\brdrs\brdrw10\brsp20 +\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs28\alang1025 \ltrch\fcs0 \b\fs28\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \styrsid4934124 +Heading Software Title;}{\s30\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext30 \styrsid4934124 Preamble;}{\s31\ql \li0\ri0\sb120\sa120\widctlpar\brdrt\brdrs\brdrw10\brsp20 +\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon30 \snext31 \styrsid4934124 +Preamble Border Above;}{\s32\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\snext0 \styrsid4934124 Body 0 Bold;}{\s33\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \snext0 \styrsid4934124 Body 0;}{\s34\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs16\alang1025 \ltrch\fcs0 +\fs16\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext34 \slink35 \ssemihidden \sunhideused \styrsid11950712 Balloon Text;}{\*\cs35 \additive \rtlch\fcs1 \af43\afs16 \ltrch\fcs0 +\fs16\loch\f43\hich\af43\dbch\af11 \sbasedon10 \slink34 \slocked \ssemihidden \styrsid11950712 Balloon Text Char;}{\s36\ql \fi-357\li357\ri0\sb120\sa120\widctlpar\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls4\adjustright\rin0\lin357\itap0 +\rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext36 \styrsid11950712 Bullet 1;}{\s37\ql \fi-358\li1435\ri0\sb120\sa120\widctlpar +\jclisttab\tx1437\wrapdefault\aspalpha\aspnum\faauto\ls5\adjustright\rin0\lin1435\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext37 \styrsid11950712 Bullet 4;}{\s38\ql \fi-357\li1792\ri0\sb120\sa120\widctlpar\jclisttab\tx1795\wrapdefault\aspalpha\aspnum\faauto\ls6\adjustright\rin0\lin1792\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext38 \styrsid11950712 Bullet 5;}{\s39\ql \fi-357\li1077\ri0\sb120\sa120\widctlpar +\tx1077\jclisttab\tx1440\wrapdefault\aspalpha\aspnum\faauto\ls7\ilvl2\outlinelevel2\adjustright\rin0\lin1077\itap0 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 +\sbasedon3 \snext39 \slink50 \styrsid11950712 Heading 3 Bold;}{\s40\ql \fi-358\li1435\ri0\sb120\sa120\widctlpar\jclisttab\tx1437\wrapdefault\aspalpha\aspnum\faauto\ls5\adjustright\rin0\lin1435\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\ul\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon37 \snext40 \styrsid11950712 Bullet 4 Underline;}{\*\cs41 \additive \rtlch\fcs1 \af43 \ltrch\fcs0 \f43\lang1033\langfe1033\langnp1033\langfenp1033 +\sbasedon10 \styrsid11950712 Body 2 Char;}{\*\cs42 \additive \rtlch\fcs1 \af43 \ltrch\fcs0 \f43\lang1033\langfe1033\langnp1033\langfenp1033 \sbasedon10 \styrsid11950712 Body 3 Char;}{\*\cs43 \additive \rtlch\fcs1 \af0\afs16 \ltrch\fcs0 \fs16 +\sbasedon10 \ssemihidden \sunhideused \styrsid8850722 annotation reference;}{\s44\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs20\alang1025 \ltrch\fcs0 +\fs20\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext44 \slink45 \sunhideused \styrsid8850722 annotation text;}{\*\cs45 \additive \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\f43\hich\af43\dbch\af11 +\sbasedon10 \slink44 \slocked \styrsid8850722 Comment Text Char;}{\s46\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af43\afs20\alang1025 \ltrch\fcs0 +\b\fs20\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon44 \snext44 \slink47 \ssemihidden \sunhideused \styrsid8850722 annotation subject;}{\*\cs47 \additive \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 +\b\fs20\loch\f43\hich\af43\dbch\af11 \sbasedon45 \slink46 \slocked \ssemihidden \styrsid8850722 Comment Subject Char;}{\*\cs48 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 \sbasedon10 \slink27 \slocked \styrsid2434661 +Bullet 3 Char1;}{\s49\ql \fi-357\li357\ri0\sb120\sa120\widctlpar\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin357\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\ul\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon37 \snext49 \spriority0 \styrsid3941498 Bullet 4 Underlined;}{\*\cs50 \additive \rtlch\fcs1 \ab\af43\afs19 \ltrch\fcs0 \b\fs19\loch\f43\hich\af43\dbch\af11 +\sbasedon10 \slink39 \slocked \styrsid3941498 Heading 3 Bold Char;}{\s51\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs21\alang1025 \ltrch\fcs0 +\f37\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext51 \slink52 \ssemihidden \sunhideused \styrsid3941498 Plain Text;}{\*\cs52 \additive \rtlch\fcs1 \af0\afs21 \ltrch\fcs0 \f37\fs21 +\sbasedon10 \slink51 \slocked \ssemihidden \styrsid3941498 Plain Text Char;}{\s53\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext53 \slink54 \sunhideused \styrsid11152386 header;}{\*\cs54 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 +\sbasedon10 \slink53 \slocked \styrsid11152386 Header Char;}{\s55\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\f43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext55 \slink56 \sunhideused \styrsid11152386 footer;}{\*\cs56 \additive \rtlch\fcs1 \af43\afs19 \ltrch\fcs0 \fs19\loch\f43\hich\af43\dbch\af11 +\sbasedon10 \slink55 \slocked \styrsid11152386 Footer Char;}{\*\cs57 \additive \rtlch\fcs1 \af0 \ltrch\fcs0 \ul\cf17 \sbasedon10 \ssemihidden \sunhideused \styrsid2061565 FollowedHyperlink;}}{\*\listtable{\list\listtemplateid-899113366{\listlevel +\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af0\afs20 \ltrch\fcs0 \b\i0\fs20\cf0\fbias0\hres0\chhres0 \fi-357\li357\jclisttab\tx360\lin357 } +{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af43\afs20 \ltrch\fcs0 \b\i0\f43\fs20\fbias0\hres0\chhres0 \fi-363\li720 +\jclisttab\tx720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af0\afs20 \ltrch\fcs0 \b\i0\fs20\fbias0\hres0\chhres0 +\fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 +\b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 +\ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid113718381} +{\list\listtemplateid1122370636\listhybrid{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 +\fbias0\hres0\chhres0 \fi-357\li720\jclisttab\tx723\lin720 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li1083 +\jclisttab\tx1083\lin1083 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li1803 +\jclisttab\tx1803\lin1803 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2523 +\jclisttab\tx2523\lin2523 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li3243\jclisttab\tx3243\lin3243 } +{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li3963\jclisttab\tx3963\lin3963 }{\listlevel\levelnfc23 +\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li4683\jclisttab\tx4683\lin4683 }{\listlevel\levelnfc23\levelnfcn23\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5403\jclisttab\tx5403\lin5403 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6123\jclisttab\tx6123\lin6123 }{\listname ;}\listid152650329}{\list\listtemplateid-355573436{\listlevel\levelnfc0 +\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af44\afs20 \ltrch\fcs0 \b\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li357\jclisttab\tx360\lin357 }{\listlevel +\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat2\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af44\afs20 \ltrch\fcs0 \b\i0\f44\fs20\fbias0\hres0\chhres0 \fi-363\li720\jclisttab\tx720\lin720 } +{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af0\afs20 \ltrch\fcs0 \b\i0\fs20\fbias0\hres0\chhres0 \fi-357\li2247 +\jclisttab\tx2610\lin2247 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 +\b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 +\ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid398096909} +{\list\listtemplateid1928476992{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af44\afs20 \ltrch\fcs0 \b\i0\f44\fs20\fbias0\hres0\chhres0 +\fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af44\afs20 \ltrch\fcs0 +\b\i0\f44\fs20\fbias0\hres0\chhres0 \fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af43\afs20 +\ltrch\fcs0 \b\i0\f43\fs20\fbias0\hres0\chhres0 \s39\fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 +\ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255 +\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname +;}\listid398796681}{\list\listtemplateid789093748\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid-317712510\'01\u-3913 ?;}{\levelnumbers;} +\f3\fbias0\hres0\chhres0 \s26\fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 +\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li2160 +\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2880 +\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li3600\jclisttab\tx3600\lin3600 } +{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23 +\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid477573462}{\list\listtemplateid830884688\listhybrid{\listlevel +\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698703\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li1077\lin1077 }{\listlevel\levelnfc4\levelnfcn4 +\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li1797\lin1797 }{\listlevel\levelnfc2\levelnfcn2\leveljc2 +\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li2517\lin2517 }{\listlevel\levelnfc0\levelnfcn0\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698703\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li3237\lin3237 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li3957\lin3957 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li4677\lin4677 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698703\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li5397\lin5397 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li6117\lin6117 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li6837\lin6837 }{\listname ;}\listid545946042} +{\list\listtemplateid-1705225006{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af43\afs20 \ltrch\fcs0 +\b\i0\f43\fs20\cf0\fbias0\hres0\chhres0 \s1\fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 +\ab\ai0\af43\afs20 \ltrch\fcs0 \b\i0\f43\fs20\fbias0\hres0\chhres0 \s2\fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;} +\rtlch\fcs1 \ab\ai0\af43\afs20 \ltrch\fcs0 \b\i0\f43\fs20\fbias0\hres0\chhres0 \s3\fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\animtext0\striked0\fbias0\hres0\chhres0 \s4\fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\animtext0\striked0\fbias0\hres0\chhres0 \s5\fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel +\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \s6\fi-357\li2149 +\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 +\s7\fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 +\b0\i0\f44\fs20\fbias0\hres0\chhres0 \s8\fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 +\ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \s9\fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid752163927}{\list\listtemplateid1725578678{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af43\afs20 \ltrch\fcs0 \b\i0\f43\fs20\cf0\fbias0\hres0\chhres0 \fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af43\afs20 \ltrch\fcs0 \b\i0\f43\fs20\fbias0\hres0\chhres0 \fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af0\afs20 \ltrch\fcs0 \b\i0\fs20\fbias0\hres0\chhres0 \fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1 +\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-357\li1792 +\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 +\fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 +\b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 +\ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 +\ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid1107626792}{\list\listtemplateid-41362566\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \s37\fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3929 ?;}{\levelnumbers;} +\f10\fbias0\hres0\chhres0 \li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2880 +\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23 +\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3929 ?;}{\levelnumbers;} +\f10\fbias0\hres0\chhres0 \li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid1559511898}{\list\listtemplateid-743794326\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\leveltemplateid2033377338\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \s27\fi-357\li1077\jclisttab\tx1080\lin1077 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693 +\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689 +\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;} +\f2\fbias0\hres0\chhres0 \li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;} +\f10\fbias0\hres0\chhres0 \li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;} +\f3\fbias0\hres0\chhres0 \li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5760 +\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1567649130}{\list\listtemplateid419070574\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689 +\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li1080\lin1080 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;} +\f2\fbias0\hres0\chhres0 \li1800\lin1800 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 +\li2520\lin2520 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li3240\lin3240 }{\listlevel +\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li3960\lin3960 }{\listlevel\levelnfc23\levelnfcn23\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li4680\lin4680 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li5400\lin5400 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative +\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li6120\lin6120 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext +\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6840\lin6840 }{\listname ;}\listid1589268858}{\list\listtemplateid1363474438\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace0\levelindent0{\leveltext\leveltemplateid-1175557160\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \s38\fi-357\li1792\jclisttab\tx1795\lin1792 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691 +\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;} +\f10\fbias0\hres0\chhres0 \li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;} +\f3\fbias0\hres0\chhres0 \li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5760 +\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1848404271}{\list\listtemplateid-761117952\listhybrid{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698713 +\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li717\lin717 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713 +\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li1437\lin1437 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715 +\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li2157\lin2157 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698703 +\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li2877\lin2877 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713 +\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li3597\lin3597 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715 +\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li4317\lin4317 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698703 +\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li5037\lin5037 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698713 +\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li5757\lin5757 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext\leveltemplateid67698715 +\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \fi-180\li6477\lin6477 }{\listname ;}\listid1870291363}{\list\listtemplateid1186249844\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace0\levelindent0{\leveltext\leveltemplateid1637229796\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \s36\fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689 +\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0\hres0\chhres0 \li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;} +\f2\fbias0\hres0\chhres0 \li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;} +\f10\fbias0\hres0\chhres0 \li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;} +\f3\fbias0\hres0\chhres0 \li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0\hres0\chhres0 \li5760 +\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0\hres0\chhres0 \li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid2054619191}{\list\listtemplateid-1344757370{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 +\ab\ai0\af44\afs20 \ltrch\fcs0 \b\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;} +\rtlch\fcs1 \ab\ai0\af44\afs20 \ltrch\fcs0 \b\i0\f44\fs20\fbias0\hres0\chhres0 \fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab\ai0\af0\afs20 \ltrch\fcs0 \b\i0\fs20\fbias0\hres0\chhres0 \fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\strike0\f44\fs20\ulnone\fbias0\hres0\chhres0 \fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0 +\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel +\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2506\jclisttab\tx2509\lin2506 +}{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 \fi-357\li2863 +\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\rtlch\fcs1 \ab0\ai0\af44\afs20 \ltrch\fcs0 \b0\i0\f44\fs20\fbias0\hres0\chhres0 +\fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid2057971432}{\list\listtemplateid-569628034{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;} +\rtlch\fcs1 \af0 \ltrch\fcs0 \b\fbias0\hres0\chhres0 \li717\lin717 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01);}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 +\hres0\chhres0 \li1077\lin1077 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02);}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li1437\lin1437 }{\listlevel +\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03(\'03);}{\levelnumbers\'02;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li1797\lin1797 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03(\'04);}{\levelnumbers\'02;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li2157\lin2157 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'03(\'05);}{\levelnumbers\'02;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li2517\lin2517 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li2877\lin2877 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 +\ltrch\fcs0 \hres0\chhres0 \li3237\lin3237 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \hres0\chhres0 \li3597\lin3597 } +{\listname ;}\listid2106000387}}{\*\listoverridetable{\listoverride\listid752163927\listoverridecount9{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel +\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat +\levelstartat1}\ls1}{\listoverride\listid477573462\listoverridecount0\ls2}{\listoverride\listid1567649130\listoverridecount0\ls3}{\listoverride\listid2054619191\listoverridecount0\ls4}{\listoverride\listid1559511898\listoverridecount0\ls5} +{\listoverride\listid1848404271\listoverridecount0\ls6}{\listoverride\listid398796681\listoverridecount0\ls7}{\listoverride\listid545946042\listoverridecount0\ls8}{\listoverride\listid752163927\listoverridecount9{\lfolevel\listoverridestartat +\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel +\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}\ls9}{\listoverride\listid1870291363\listoverridecount0\ls10}{\listoverride\listid152650329\listoverridecount0\ls11} +{\listoverride\listid1589268858\listoverridecount0\ls12}{\listoverride\listid2057971432\listoverridecount0\ls13}{\listoverride\listid398096909\listoverridecount0\ls14}{\listoverride\listid752163927\listoverridecount0\ls15}{\listoverride\listid1107626792 +\listoverridecount0\ls16}{\listoverride\listid113718381\listoverridecount0\ls17}{\listoverride\listid2106000387\listoverridecount0\ls18}{\listoverride\listid398796681\listoverridecount0\ls19}{\listoverride\listid752163927\listoverridecount9{\lfolevel +\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat +\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}{\lfolevel\listoverridestartat\levelstartat1}\ls20}}{\*\pgptbl {\pgp\ipgp0\itap0\li0\ri0\sb0\sa0}{\pgp\ipgp0\itap0\li0\ri0\sb0\sa0}} +{\*\rsidtbl \rsid7261\rsid79668\rsid150779\rsid211660\rsid263352\rsid483838\rsid489647\rsid528777\rsid554910\rsid686391\rsid792304\rsid922358\rsid1145719\rsid1335391\rsid1527700\rsid1641514\rsid1714580\rsid2040850\rsid2061565\rsid2434661\rsid2633486 +\rsid2635842\rsid2695079\rsid2902063\rsid2965976\rsid2971138\rsid3041209\rsid3285590\rsid3355994\rsid3418540\rsid3634687\rsid3831999\rsid3875660\rsid3882158\rsid3882522\rsid3941498\rsid4149814\rsid4398083\rsid4537652\rsid4611858\rsid4742223\rsid4748609 +\rsid4801980\rsid4805534\rsid4805706\rsid4868258\rsid4929965\rsid4934124\rsid5113462\rsid5262441\rsid5309509\rsid5467606\rsid5471954\rsid5720387\rsid6124814\rsid6171721\rsid6227660\rsid6292707\rsid6364904\rsid6424248\rsid6496414\rsid6561381\rsid6584761 +\rsid6620178\rsid6643866\rsid6706534\rsid6755756\rsid6828031\rsid6833860\rsid7040710\rsid7080991\rsid7091446\rsid7099326\rsid7167079\rsid7344474\rsid7420369\rsid7503579\rsid7698999\rsid7756319\rsid7869795\rsid7879410\rsid7891370\rsid7996453\rsid8007569 +\rsid8069377\rsid8205106\rsid8280923\rsid8334492\rsid8455816\rsid8460809\rsid8528894\rsid8586851\rsid8662808\rsid8850722\rsid8921755\rsid9004944\rsid9066668\rsid9072635\rsid9135771\rsid9176743\rsid9270181\rsid9306427\rsid9380011\rsid9399500\rsid9448986 +\rsid9465849\rsid9518548\rsid9577151\rsid9584906\rsid9722926\rsid9728818\rsid9835407\rsid9860928\rsid9902756\rsid9906198\rsid9990859\rsid10428435\rsid10956334\rsid11152386\rsid11303230\rsid11303858\rsid11408012\rsid11423848\rsid11496807\rsid11677882 +\rsid11690930\rsid11950712\rsid12058855\rsid12545879\rsid12584315\rsid12868782\rsid12868905\rsid13004280\rsid13056010\rsid13066823\rsid13378691\rsid13456345\rsid13513072\rsid13594873\rsid13776901\rsid13967657\rsid14293912\rsid14435085\rsid14500380 +\rsid14507627\rsid14644610\rsid14684443\rsid14685080\rsid14707821\rsid14712272\rsid14958727\rsid15033700\rsid15278441\rsid15287965\rsid15364209\rsid15405862\rsid15494051\rsid15539022\rsid15602361\rsid15602734\rsid15749471\rsid15804309\rsid15809401 +\rsid15870741\rsid15949319\rsid16065250\rsid16073823\rsid16084478\rsid16148105\rsid16328790\rsid16334972\rsid16388644\rsid16405449\rsid16537650\rsid16653828\rsid16715114}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0 +\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\creatim\yr2018\mo5\dy10\hr15\min2}{\revtim\yr2018\mo5\dy10\hr15\min2}{\version1}{\edmins0}{\nofpages3}{\nofwords1531}{\nofchars8729}{\nofcharsws10240}{\vern57}}{\*\xmlnstbl {\xmlns1 http://schemas.micros +oft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect +\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen +\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1440\dgvorigin1440\dghshow1\dgvshow1 +\jexpand\viewkind1\viewscale164\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\rempersonalinfo\allowfieldendsel +\wrppunct\asianbrkrule\rsidroot4934124\newtblstyruls\nogrowautofit\remdttm\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal +\nouicompat \fet0{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0{\*\ftnsep \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11152386 \rtlch\fcs1 \af43\afs19\alang1025 +\ltrch\fcs0 \fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid12058855 \chftnsep +\par }}{\*\ftnsepc \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11152386 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid12058855 \chftnsepc +\par }}{\*\aftnsep \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11152386 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid12058855 \chftnsep +\par }}{\*\aftnsepc \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11152386 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid12058855 \chftnsepc +\par }}\ltrpar \sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid9860928\sftnbj {\headerl \ltrpar \pard\plain \ltrpar\s53\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 +\rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\headerr \ltrpar \pard\plain \ltrpar\s53\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\footerl \ltrpar \pard\plain \ltrpar\s55\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\footerr \ltrpar \pard\plain \ltrpar\s55\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\headerf \ltrpar \pard\plain \ltrpar\s53\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\footerf \ltrpar \pard\plain \ltrpar\s55\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid11152386 +\par }}{\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}} +{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8 +\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar +\s28\ql \li0\ri0\sb120\sa120\nowidctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4934124 \rtlch\fcs1 \ab\af43\afs28\alang1025 \ltrch\fcs0 +\b\fs28\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS +\par }\pard\plain \ltrpar\s29\ql \li0\ri0\sb120\sa120\nowidctlpar\brdrb\brdrs\brdrw10\brsp20 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4934124 \rtlch\fcs1 \ab\af43\afs28\alang1025 \ltrch\fcs0 +\b\fs28\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid8069377 \hich\af43\dbch\af13\loch\f43 MSTEST V2 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid6227660 \hich\af43\dbch\af13\loch\f43 CREATE UNIT TEST EXTENSION}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par }\pard\plain \ltrpar\s30\ql \li0\ri0\sb120\sa120\nowidctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4934124 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 +pre-release }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 software named above. The terms also apply to any Microsoft}{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid2434661\charrsid15278441 \hich\af43\dbch\af13\loch\f43 services or updates for the software, \hich\af43\dbch\af13\loch\f43 except to the extent those have }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 additional}{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid2434661\charrsid15278441 \hich\af43\dbch\af13\loch\f43 terms.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par }\pard\plain \ltrpar\s31\ql \li0\ri0\sb120\sa120\nowidctlpar\brdrt\brdrs\brdrw10\brsp20 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4934124 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +If you comply with these license terms, you have the rights below. +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 1.\tab}}\pard\plain \ltrpar\s1\ql \fi-360\li360\ri0\sb120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin360\itap0\pararsid15287965 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 INSTALLATION AND USE RIGHTS. +\par }\pard\plain \ltrpar\s27\ql \fi-360\li720\ri0\sa120\nowidctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid15287965 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +You may install and use any number of copies of the software to develop and test your }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid6292707\charrsid15278441 \hich\af43\dbch\af13\loch\f43 applications}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 . }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2434661\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid15405862\charrsid9066668 \hich\af43\dbch\af0\loch\f43 2.\tab}}\pard\plain \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid8528894 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \fs20\insrsid15405862\charrsid9066668 TERMS FOR SPECIFIC COMPONENTS. +\par {\listtext\pard\plain\ltrpar \s39 \rtlch\fcs1 \ab\af44\afs20 \ltrch\fcs0 \b\fs20\loch\af44\hich\af44\dbch\af13\insrsid15405862\charrsid9066668 \hich\af44\dbch\af13\loch\f44 a.\tab}}\pard\plain \ltrpar\s39\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx720\jclisttab\tx2610\wrapdefault\aspalpha\aspnum\faauto\ls13\ilvl1\outlinelevel2\adjustright\rin0\lin720\itap0\pararsid15405862 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid15405862\charrsid9066668 \hich\af43\dbch\af13\loch\f43 Third Party components. }{\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \b0\fs20\dbch\af13\insrsid15405862\charrsid9066668 \hich\af43\dbch\af13\loch\f43 The software may include third party components with separate legal notices or governed by other agreements, as}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid2061565 \hich\af43\dbch\af13\loch\f43 may be}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid2061565 \hich\af43\dbch\af13\loch\f43 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid15405862\charrsid9066668 \hich\af43\dbch\af13\loch\f43 described in the ThirdPartyNotices file accompanying the software. +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid9066668\charrsid12868782 \hich\af43\dbch\af0\loch\f43 3.\tab}}\pard\plain \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls15\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid9066668 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \fs20\insrsid9066668\charrsid12868782 DATA. }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 +\par {\listtext\pard\plain\ltrpar \s2 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid2061565\charrsid2061565 \hich\af43\dbch\af0\loch\f43 a.\tab}}\pard\plain \ltrpar\s2\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl1\outlinelevel1\prauth1\adjustright\rin0\lin720\itap0\pararsid2061565 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\*\oldpprops +\pard \ltrpar\s2\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0\pararsid2061565 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\insrsid2061565\charrsid2061565 Data Collection.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668\charrsid2061565 +The software may collect information about you and your use of the software, and sen +d that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. }{\rtlch\fcs1 \af43 \ltrch\fcs0 +\b0\insrsid9066668\charrsid2061565 There are also s}{\rtlch\fcs1 \af43 \ltrch\fcs0 \b0\cf1\insrsid9066668\charrsid2061565 ome features in the software that may enable you }{\rtlch\fcs1 \af43 \ltrch\fcs0 \b0\cf1\insrsid2061565\charrsid2061565 +and Microsoft }{\rtlch\fcs1 \af43 \ltrch\fcs0 \b0\cf1\insrsid9066668\charrsid2061565 to collect data from users of your applications.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668\charrsid2061565 If you use these features +, you must comply with applicable law, including providing appropriate notices to users of your applications}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 together with a copy of Microsoft\rquote s privacy statement}{ +\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668\charrsid2061565 . }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 Our privacy statement is located }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b0\fs20\insrsid9066668\charrsid2061565 at }{\field\fldedit{\*\fldinst {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid9990859 HYPERLINK "http://go.microsoft.com/fwlink/?LinkID=528096" }{\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid4398083 {\*\datafield +00d0c9ea79f9bace118c8200aa004ba90b0200000003000000e0c9ea79f9bace118c8200aa004ba90b7400000068007400740070003a002f002f0067006f002e006d006900630072006f0073006f00660074002e0063006f006d002f00660077006c0069006e006b002f003f004c0069006e006b00490044003d0035003200 +38003000390036000000795881f43b1d7f48af2c825dc485276300000000a5ab0003000029}}}{\fldrslt {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \cs24\b0\fs20\ul\cf2\insrsid9066668\charrsid2061565 http://go.microsoft.com/fwlink/?LinkID=528096}}}\sectd \ltrsect +\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid9860928\sftnbj {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668\charrsid2061565 . }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 +You can learn more about data collection and use in the help documentation and the privacy statement. }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668\charrsid2061565 Your use of the software operates as your consent to these practices.}{ +\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid9066668 +\par {\listtext\pard\plain\ltrpar \s2 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid2061565 \hich\af43\dbch\af0\loch\f43 b.\tab}}\pard \ltrpar\s2\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0\pararsid2061565 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid2061565 Processing of Personal Data.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b0\fs20\insrsid2061565 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid3831999 To the extent Microsoft is a processo +r or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, }{\rtlch\fcs1 +\af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 at }{\field\fldedit{\*\fldinst {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid2061565\charrsid2061565 HYPERLINK "http://go.microsoft.com/?linkid=9840733" }{\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \fs20\insrsid7869795\charrsid2061565 {\*\datafield +00d0c9ea79f9bace118c8200aa004ba90b0200000003000000e0c9ea79f9bace118c8200aa004ba90b6800000068007400740070003a002f002f0067006f002e006d006900630072006f0073006f00660074002e0063006f006d002f003f006c0069006e006b00690064003d00390038003400300037003300330000007958 +81f43b1d7f48af2c825dc485276300000000a5ab000383}}}{\fldrslt {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \cs24\b0\fs20\ul\cf2\insrsid2061565\charrsid2061565 http://go.microsoft.com/?linkid=9840733}}}\sectd \ltrsect +\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid9860928\sftnbj {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \cs24\b0\fs20\ul\cf2\insrsid2061565 .}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 }{\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \b0\fs20\insrsid2061565\charrsid2061565 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\loch\af43\hich\af43\dbch\af13\insrsid9066668\charrsid15278441 \hich\af43\dbch\af13\loch\f43 4.\tab}}\pard\plain \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid9066668 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \fs20\dbch\af13\insrsid9066668\charrsid15278441 \hich\af43\dbch\af13\loch\f43 PRE-RELEASE SOFTWARE. }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid9066668\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +This software is a pre-release v\hich\af43\dbch\af13\loch\f43 ersion. It may not work the way a final version of the software will. We may change it for the final, commercial version. We also may not release a commercial version.}{\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \fs20\dbch\af13\insrsid9066668\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\loch\af43\hich\af43\dbch\af13\insrsid9066668\charrsid15278441 \hich\af43\dbch\af13\loch\f43 5.\tab}\hich\af43\dbch\af13\loch\f43 FEEDBACK. }{\rtlch\fcs1 \ab0\af43\afs20 +\ltrch\fcs0 \b0\fs20\dbch\af13\insrsid9066668\charrsid15278441 \hich\af43\dbch\af13\loch\f43 If you give feedback about the software to Microsoft, you give to Microsoft\hich\af43\dbch\af13\loch\f43 +, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentation to third parties because we +\hich\af43\dbch\af13\loch\f43 i\hich\af43\dbch\af13\loch\f43 nclude your feedback in them. These rights survive this agreement.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid9066668\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 6.\tab}}\pard \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid15804309 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 Scope of License}{ +\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 .}{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 + The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you \hich\af43\dbch\af13\loch\f43 +more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. }{\rtlch\fcs1 +\ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 For more information, se\hich\af43\dbch\af13\loch\f43 e }{\field\fldedit{\*\fldinst {\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid9990859 + HYPERLINK "http://www.microsoft.com/licensing/userights" }{\rtlch\fcs1 \af43 \ltrch\fcs0 \insrsid4398083 {\*\datafield +00d0c9ea79f9bace118c8200aa004ba90b0200000003000000e0c9ea79f9bace118c8200aa004ba90b7200000068007400740070003a002f002f007700770077002e006d006900630072006f0073006f00660074002e0063006f006d002f006c006900630065006e00730069006e0067002f00750073006500720069006700 +6800740073000000795881f43b1d7f48af2c825dc485276300000000a5ab0003100097}}}{\fldrslt {\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \cs24\b0\fs20\ul\cf2\dbch\af13\insrsid554910\charrsid7167079 \hich\af43\dbch\af13\loch\f43 www.microsoft.com/licensing/userights}}} +\sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid9860928\sftnbj {\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 . }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 You may not}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s26 \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\af3\hich\af3\dbch\af13\insrsid4934124\charrsid15278441 \loch\af3\dbch\af13\hich\f3 \'b7\tab}}\pard\plain \ltrpar\s26\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin720\itap0\pararsid4934124 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 \fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 +\af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 work around any technical limitations in the software}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid4934124\charrsid15278441 +\hich\af43\dbch\af11\loch\f43 ;}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s26 \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\af3\hich\af3\dbch\af13\insrsid4934124\charrsid15278441 \loch\af3\dbch\af13\hich\f3 \'b7\tab}\hich\af43\dbch\af13\loch\f43 +reverse engineer, decompile or disassemble the software, }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 or attempt to }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2061565 +\hich\af43\dbch\af13\loch\f43 derive the source code for the software, }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 except and only to the extent }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 required by third party licensing terms governing \hich\af43\dbch\af13\loch\f43 use of certain open-source components that may be included with the software}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\insrsid4934124\charrsid15278441 \hich\af43\dbch\af11\loch\f43 ;}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s26 \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\af3\hich\af3\dbch\af13\insrsid2434661\charrsid15278441 \loch\af3\dbch\af13\hich\f3 \'b7\tab}}\pard \ltrpar\s26\ql \fi-363\li720\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx720\wrapdefault\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin720\itap0\pararsid2434661 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2434661\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; +\par {\listtext\pard\plain\ltrpar \s26 \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\af3\hich\af3\dbch\af13\insrsid2434661\charrsid15278441 \loch\af3\dbch\af13\hich\f3 \'b7\tab}\hich\af43\dbch\af13\loch\f43 +use the software in any way that is against the law; or +\par {\listtext\pard\plain\ltrpar \s26 \rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\loch\af3\hich\af3\dbch\af13\insrsid2434661\charrsid15278441 \loch\af3\dbch\af13\hich\f3 \'b7\tab}\hich\af43\dbch\af13\loch\f43 share, publish}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid554910 \hich\af43\dbch\af13\loch\f43 , rent, \hich\af43\dbch\af13\loch\f43 or lease}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2434661\charrsid15278441 \hich\af43\dbch\af13\loch\f43 + the software, or provide the software as a stand-alone }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2061565 \hich\af43\dbch\af13\loch\f43 offering}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid2434661\charrsid15278441 +\hich\af43\dbch\af13\loch\f43 for others to use. +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 7.\tab}}\pard\plain \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid13594873 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 \b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 +\ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 Export Restrictions}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid10956334 .}{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 +\b0\fs20\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 }{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid554910\charrsid10956334 \hich\af43\dbch\af13\loch\f43 +You must comply with all domestic and international export laws and regulations that apply to the software, whi\hich\af43\dbch\af13\loch\f43 +ch include restrictions on destinations, end users and end use. For further information on export restrictions, visit (aka.ms/exporting).}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid10956334\charrsid10956334 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 8.\tab}}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\caps\fs20\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 SUPPORT SERVICES.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 }{\rtlch\fcs1 \ab0\af43\afs20 +\ltrch\fcs0 \b0\fs20\dbch\af13\insrsid4934124\charrsid10956334 \hich\af43\dbch\af13\loch\f43 \hich\f43 Because this software is \'93\loch\f43 \hich\f43 as is,\'94\loch\f43 we may not provide support services for it.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid4934124\charrsid10956334 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 9.\tab}}\pard \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid4934124 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 Entire Agreemen +\hich\af43\dbch\af13\loch\f43 t.}{\rtlch\fcs1 \ab0\af43\afs20 \ltrch\fcs0 \b0\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 + This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 10.\tab}}\pard \ltrpar\s1\ql \fi-360\li360\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin360\itap0\pararsid528777 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 Applicable Law}{ +\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 .}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid528777\charrsid15278441 \hich\af43\dbch\af13\loch\f43 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b0\fs20\insrsid528777\charrsid15278441 If you acquired the software in the United States, Wa +shington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid528777\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af0\loch\f43 11.\tab}}\pard \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid14644610 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 CONSUMER RIGHTS; REGIONAL VARIATIONS. }{\rtlch\fcs1 +\af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid10956334\charrsid16328790 +This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party f +rom which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, + then the following provisions apply to you: +\par {\listtext\pard\plain\ltrpar \s2 \rtlch\fcs1 \ab\af0\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af0\loch\f43 a.\tab}}\pard\plain \ltrpar +\s2\ql \fi-360\li717\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ls18\outlinelevel1\adjustright\rin0\lin717\itap0\pararsid10956334 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 Australia. }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid10956334\charrsid16328790 +You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. +\par {\listtext\pard\plain\ltrpar \s2 \rtlch\fcs1 \ab\af0\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af0\loch\f43 b.\tab}}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 Canada. }{\rtlch\fcs1 +\af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid10956334\charrsid16328790 If you acquired this software in Canada, you may stop rec +eiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The +product documentation, if any, may also specify how to turn off updates for your specific device or software. +\par {\listtext\pard\plain\ltrpar \s2 \rtlch\fcs1 \ab\af0\afs20 \ltrch\fcs0 \b\f43\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af0\loch\f43 c.\tab}}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 Germany and Austria}{ +\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid10956334\charrsid16328790 . +\par }\pard\plain \ltrpar\ql \li717\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin717\itap0\pararsid10956334 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af11\loch\f43 (i)}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\insrsid10956334\charrsid16328790 \tab }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af11\loch\f43 Warranty}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 +\hich\af43\dbch\af11\loch\f43 . The properly licensed software will perform substantially as described in any Microsoft materials that accomp\hich\af43\dbch\af11\loch\f43 +any the software. However, Microsoft gives no contractual guarantee in relation to the licensed software. +\par }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af11\loch\f43 (ii)}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 \tab }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\b\fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af11\loch\f43 Limitation of Liability}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid10956334\charrsid16328790 \hich\af43\dbch\af11\loch\f43 . In case of intentional conduct, gross negligence, c +\hich\af43\dbch\af11\loch\f43 laims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law. +\par }\pard\plain \ltrpar\s1\ql \li717\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin717\itap0\pararsid10956334 \rtlch\fcs1 \ab\af43\afs19\alang1025 \ltrch\fcs0 +\b\f43\fs19\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \b0\fs20\insrsid10956334\charrsid16328790 Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsof +t is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust + in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence. +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 12.\tab}}\pard \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\nowidctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid4934124 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +Disclaimer of Warranty.}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 +\hich\af43\dbch\af13\loch\f43 \hich\f43 THE SOFTWARE IS LICENSED \'93\loch\f43 \hich\f43 AS-IS.\'94\loch\f43 YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTI\hich\af43\dbch\af13\loch\f43 +ES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 +\par {\listtext\pard\plain\ltrpar \s1 \rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\caps\fs20\loch\af43\hich\af43\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 13.\tab}}\pard \ltrpar\s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar +\jclisttab\tx360\wrapdefault\aspalpha\aspnum\faauto\ls1\outlinelevel0\adjustright\rin0\lin357\itap0\pararsid12584315 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \caps\fs20\dbch\af13\insrsid4934124\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +Limitation on and Exclusion of Damages. }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid12584315\charrsid15278441 YOU CAN RECOVER F +ROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. +\par }\pard\plain \ltrpar\s25\ql \li357\ri0\sb120\sa120\nowidctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin357\itap0\pararsid12584315 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +This limitation applies to (a) anything related to the software, ser\hich\af43\dbch\af13\loch\f43 +vices, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicabl +\hich\af43\dbch\af13\loch\f43 e\hich\af43\dbch\af13\loch\f43 law. +\par }\pard\plain \ltrpar\ql \li360\ri0\sb120\sa120\nowidctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid12584315 \rtlch\fcs1 \af43\afs19\alang1025 \ltrch\fcs0 +\fs19\lang1033\langfe1033\loch\af43\hich\af43\dbch\af11\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or ot +\hich\af43\dbch\af13\loch\f43 her damages. +\par }\pard \ltrpar\ql \li0\ri0\sb40\sa40\widctlpar\wrapdefault\faauto\adjustright\rin0\lin0\itap0\pararsid12584315 {\rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. +\par \hich\af43\dbch\af13\loch\f43 \hich\f43 Remarque : Ce logiciel \'e9\loch\f43 \hich\f43 tant distribu\'e9\loch\f43 \hich\f43 au Qu\'e9\loch\f43 bec, Canada, certaines des clauses dans ce contrat sont fournies c\hich\af43\dbch\af13\loch\f43 \hich\f43 +i-dessous en fran\'e7\loch\f43 ais. +\par \hich\af43\dbch\af13\loch\f43 \hich\f43 EXON\'c9\loch\f43 RATION DE GARANTIE.}{\rtlch\fcs1 \af47\afs20 \ltrch\fcs0 \f47\fs20\cf1\lang1036\langfe1033\langnp1036\insrsid12584315\charrsid15278441 \~}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 +\fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 \hich\f43 Le logiciel vis\'e9\loch\f43 \hich\f43 par une licence est offert \'ab\loch\f43 \hich\f43 tel quel \'bb\loch\f43 \hich\f43 . Toute utilisation de ce logiciel est +\'e0\loch\f43 \hich\f43 votre seule risque et p\'e9\loch\f43 ril. Microsoft n\hich\f43 \rquote \loch\f43 \hich\f43 accorde aucune autre garantie expresse. Vous pouvez b\'e9\loch\f43 \hich\f43 n\'e9\loch\f43 ficier de droi\hich\af43\dbch\af13\loch\f43 +\hich\f43 ts additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\'e9\loch\f43 marchande, d\hich\f43 \rquote +\loch\f43 \hich\f43 ad\'e9\loch\f43 \hich\f43 quation \'e0\loch\f43 un usage particulier et d\hich\f43 \rquote \loch\f43 absence de\hich\af43\dbch\af13\loch\f43 \hich\af43\dbch\af13\loch\f43 \hich\f43 contrefa\'e7\loch\f43 on sont exclues. +\par }{\rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 \hich\f43 LIMITATION DES DOMMAGES-INT\'c9\loch\f43 \hich\f43 R\'ca\loch\f43 \hich\f43 TS ET EXCLUSION DE RESPONSABILIT\'c9\loch\f43 + POUR LES DOMMAGES.}{\rtlch\fcs1 \af47\afs20 \ltrch\fcs0 \f47\fs20\cf1\lang1036\langfe1033\langnp1036\insrsid12584315\charrsid15278441 \~}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 +Vous pouvez}{\rtlch\fcs1 \af47\afs20 \ltrch\fcs0 \f47\fs20\cf1\lang1036\langfe1033\langnp1036\insrsid12584315\charrsid15278441 \hich\af47\dbch\af11\loch\f47 }{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 +\hich\af43\dbch\af13\loch\f43 \hich\f43 obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \'e0\loch\f43 hauteur de 5,00 $ US. Vous ne pou\hich\af43\dbch\af13\loch\f43 \hich\f43 vez pr\'e9\loch\f43 +\hich\f43 tendre \'e0\loch\f43 \hich\f43 aucune indemnisation pour les autres dommages, y compris les dommages sp\'e9\loch\f43 \hich\f43 ciaux, indirects ou accessoires et pertes de b\'e9\loch\f43 \hich\f43 n\'e9\loch\f43 fices. +\par \hich\af43\dbch\af13\loch\f43 Cette limitation concerne: +\par }\pard \ltrpar\ql \fi-363\li363\ri0\sb40\sa40\widctlpar\wrapdefault\faauto\adjustright\rin0\lin363\itap0\pararsid12584315 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \loch\af43\dbch\af13\hich\f43 \'b7\~\~\~\~\tab +\loch\f43 \hich\f43 tout ce qui est reli\'e9\hich\af43\dbch\af13\loch\f43 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et +\par \loch\af43\dbch\af13\hich\f43 \'b7\~\~\~\~\~\loch\f43 \hich\f43 les r\'e9\loch\f43 \hich\f43 clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\'e9\loch\f43 \hich\f43 stricte, de n\'e9\loch\f43 gligenc +\hich\af43\dbch\af13\loch\f43 e ou d\hich\f43 \rquote \loch\f43 \hich\f43 une autre faute dans la limite autoris\'e9\loch\f43 e par la loi en vigueur. +\par }\pard \ltrpar\ql \li0\ri0\sb40\sa40\widctlpar\wrapdefault\faauto\adjustright\rin0\lin0\itap0\pararsid12584315 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 Elle s\hich\f43 \rquote +\loch\f43 \hich\f43 applique \'e9\loch\f43 \hich\f43 galement, m\'ea\loch\f43 \hich\f43 me si Microsoft connaissait ou devrait conna\'ee\loch\f43 tre l\hich\f43 \rquote \'e9\loch\f43 \hich\f43 ventualit\'e9\loch\f43 d\hich\f43 \rquote \loch\f43 +un tel dommage. Si votre pays n\hich\f43 \rquote \loch\f43 autorise pas l\hich\f43 \rquote \loch\f43 \hich\f43 exclusion ou la limitation de responsabilit\'e9\hich\af43\dbch\af13\loch\f43 + pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\hich\f43 \rquote \loch\f43 exclusion ci-dessus ne s\hich\f43 \rquote \loch\f43 \hich\f43 appliquera pas \'e0\loch\f43 \hich\f43 votre \'e9 +\loch\f43 gard. +\par }{\rtlch\fcs1 \ab\af43\afs20 \ltrch\fcs0 \b\fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 EFFET JURIDIQUE.}{\rtlch\fcs1 \af47\afs20 \ltrch\fcs0 \f47\fs20\cf1\lang1036\langfe1033\langnp1036\insrsid12584315\charrsid15278441 +\~}{\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\dbch\af13\insrsid12584315\charrsid15278441 \hich\af43\dbch\af13\loch\f43 \hich\f43 Le pr\'e9\loch\f43 \hich\f43 sent contrat d\'e9\loch\f43 crit certains droits juridiques. Vous pourriez avoir +\hich\af43\dbch\af13\loch\f43 d\hich\f43 \rquote \loch\f43 \hich\f43 autres droits pr\'e9\loch\f43 \hich\f43 vus par les lois de votre pays. Le pr\'e9\loch\f43 \hich\f43 sent contrat ne modifie pas les droits que vous conf\'e8\loch\f43 +rent les lois de votre pays si celles-ci ne le permettent pas. +\par }\pard \ltrpar\ql \li0\ri0\sb120\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 {\rtlch\fcs1 \af43\afs20 \ltrch\fcs0 \fs20\insrsid9860928\charrsid15278441 +\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a +9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad +5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 +b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 +0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 +a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f +c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 +0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 +a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 +6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b +4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b +4757e8d3f729e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f +7468656d65312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87 +615b8116d8a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad +79482a9c0498f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b +5d8a314d3c94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab +999fb7b4717509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9 +699640f6719e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd586 +8b37a088d1e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d6 +0cf03ac1a5193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f +9e7ef3f2d117d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be +15c308d3f28acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a9979 +3849c26ae66252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d +32a423279a668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2a +f074481847bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86 +e877f0034e16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb +44f95d843b5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a +6409fb44d08741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c +3d9058edf2c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db0256 +5e85f3b9660d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276 +b9f7dec44b7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8 +c33585b5fb9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e +51440ca2e0088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95 +b21be5ceaf8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff +6dce591a26ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec6 +9ffb9e65d028d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239 +b75a5bb1e6345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a449 +59d366ad93b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e8 +2db8df9f30254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468 +656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4 +350d363f2451eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d2624 +52282e3198720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe5141 +73d9850528a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c020000130000000000000000 +0000000000000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b00000000000000 +000000000000300100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c0000000000000000000000000019 +0200007468656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210096b5ade296060000501b00001600000000 +000000000000000000d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b01000027 +00000000000000000000000000a00900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d0100009b0a00000000} +{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d +617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 +6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 +656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} +{\*\latentstyles\lsdstimax375\lsdlockeddef0\lsdsemihiddendef0\lsdunhideuseddef0\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal;\lsdqformat1 \lsdlocked0 heading 1; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 2;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 3;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 4; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 5;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 6;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 7; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 8;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdlocked0 heading 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 6; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 9;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 1; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 2;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 3;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 4; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 5;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 6;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 7; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 8;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote text; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 header;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footer;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index heading; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of figures;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope address; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope return;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 line number; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 page number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of authorities; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 macro;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 toa heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 4; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 4; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 4; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 5;\lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Closing;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Signature; +\lsdsemihidden1 \lsdunhideused1 \lsdpriority1 \lsdlocked0 Default Paragraph Font;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 5; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Message Header;\lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Salutation;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Date; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Note Heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Block Text; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 FollowedHyperlink;\lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Document Map;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Plain Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 E-mail Signature;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Top of Form; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Bottom of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal (Web);\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Acronym;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Address; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Cite;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Code;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Definition;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Keyboard; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Preformatted;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Sample;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Typewriter;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority59 \lsdlocked0 Table Grid;\lsdsemihidden1 \lsdlocked0 Placeholder Text;\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; +\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid;\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdpriority65 \lsdlocked0 Medium List 1; +\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2;\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List;\lsdpriority71 \lsdlocked0 Colorful Shading; +\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1;\lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdpriority62 \lsdlocked0 Light Grid Accent 1; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdsemihidden1 \lsdlocked0 Revision;\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph; +\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; +\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1;\lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1; +\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2; +\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; +\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdpriority60 \lsdlocked0 Light Shading Accent 3; +\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3; +\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdpriority70 \lsdlocked0 Dark List Accent 3; +\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdpriority61 \lsdlocked0 Light List Accent 4; +\lsdpriority62 \lsdlocked0 Light Grid Accent 4;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; +\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdpriority62 \lsdlocked0 Light Grid Accent 5; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5; +\lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6; +\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6; +\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdpriority70 \lsdlocked0 Dark List Accent 6;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 6; +\lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 6;\lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; +\lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference;\lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority37 \lsdlocked0 Bibliography; +\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;\lsdpriority41 \lsdlocked0 Plain Table 1;\lsdpriority42 \lsdlocked0 Plain Table 2;\lsdpriority43 \lsdlocked0 Plain Table 3;\lsdpriority44 \lsdlocked0 Plain Table 4; +\lsdpriority45 \lsdlocked0 Plain Table 5;\lsdpriority40 \lsdlocked0 Grid Table Light;\lsdpriority46 \lsdlocked0 Grid Table 1 Light;\lsdpriority47 \lsdlocked0 Grid Table 2;\lsdpriority48 \lsdlocked0 Grid Table 3;\lsdpriority49 \lsdlocked0 Grid Table 4; +\lsdpriority50 \lsdlocked0 Grid Table 5 Dark;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 1; +\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 1;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 1;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 1; +\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 1;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 2;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 2; +\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 2;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 2; +\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 3;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 3;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 3;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 3; +\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 3;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 4; +\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 4;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 4;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 4;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 4; +\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 4;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 5; +\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 5;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 5;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 5; +\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 5;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 6;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 6; +\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 6;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 6; +\lsdpriority46 \lsdlocked0 List Table 1 Light;\lsdpriority47 \lsdlocked0 List Table 2;\lsdpriority48 \lsdlocked0 List Table 3;\lsdpriority49 \lsdlocked0 List Table 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark; +\lsdpriority51 \lsdlocked0 List Table 6 Colorful;\lsdpriority52 \lsdlocked0 List Table 7 Colorful;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 List Table 2 Accent 1;\lsdpriority48 \lsdlocked0 List Table 3 Accent 1; +\lsdpriority49 \lsdlocked0 List Table 4 Accent 1;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 1;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 1; +\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 List Table 2 Accent 2;\lsdpriority48 \lsdlocked0 List Table 3 Accent 2;\lsdpriority49 \lsdlocked0 List Table 4 Accent 2; +\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 2;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 3; +\lsdpriority47 \lsdlocked0 List Table 2 Accent 3;\lsdpriority48 \lsdlocked0 List Table 3 Accent 3;\lsdpriority49 \lsdlocked0 List Table 4 Accent 3;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 3; +\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 4;\lsdpriority47 \lsdlocked0 List Table 2 Accent 4; +\lsdpriority48 \lsdlocked0 List Table 3 Accent 4;\lsdpriority49 \lsdlocked0 List Table 4 Accent 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 4;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 4; +\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 List Table 2 Accent 5;\lsdpriority48 \lsdlocked0 List Table 3 Accent 5; +\lsdpriority49 \lsdlocked0 List Table 4 Accent 5;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 5;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 5; +\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 List Table 2 Accent 6;\lsdpriority48 \lsdlocked0 List Table 3 Accent 6;\lsdpriority49 \lsdlocked0 List Table 4 Accent 6; +\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Mention; +\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hashtag;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Unresolved Mention;}}{\*\datastore 010500000200000018000000 +4d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 +d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000a025 +e48daae8d301feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/GlobalAssemblyInfo.cs b/WizardExtensions/MSTestv2UnitTestExtensionPackage/GlobalAssemblyInfo.cs new file mode 100644 index 0000000..cd7fa32 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/GlobalAssemblyInfo.cs @@ -0,0 +1,19 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyVersionAttribute("14.0.0.0")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("14.0.0.1")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("14.0.0.1")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/MSTestv2UnitTestExtensionPackage.csproj b/WizardExtensions/MSTestv2UnitTestExtensionPackage/MSTestv2UnitTestExtensionPackage.csproj new file mode 100644 index 0000000..35beabc --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/MSTestv2UnitTestExtensionPackage.csproj @@ -0,0 +1,76 @@ + + + + ..\..\ + + + + 15.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + true + v3 + + + Debug + AnyCPU + 2.0 + {82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {4348D191-1028-4031-8FCB-B0EF7329271D} + Library + Properties + MSTestv2UnitTestExtensionPackage + MSTestv2UnitTestExtensionPackage + v4.6 + false + false + false + false + false + false + true + False + + + true + full + false + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + TRACE + prompt + 4 + + + + + + + PreserveNewest + true + + + + Designer + + + PreserveNewest + true + + + + + {25bface8-5009-498e-9b18-3e417c312f26} + MSTestv2UnitTestExtension + BuiltProjectOutputGroup + + + + + false + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Properties/AssemblyInfo.cs b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..cd5f5fe --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MSTestv2UnitTestExtensionPackage")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MSTestv2UnitTestExtensionPackage")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +//[assembly: AssemblyVersion("1.0.0.0")] +//[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/cs/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/cs/extension.vsixlangpack new file mode 100644 index 0000000..a1045c0 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/cs/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Rozšíření rozhraní MSTest V2 pro vytvoření testu jednotek + Umožňuje vývojářům vytvořit test jednotek pomocí rozhraní MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/de/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/de/extension.vsixlangpack new file mode 100644 index 0000000..26b9a74 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/de/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2: Erweiterung für Komponententest erstellen + Ermöglicht Entwicklern das Erstellen eines Komponententests unter Verwendung von MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/es/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/es/extension.vsixlangpack new file mode 100644 index 0000000..5b34a3e --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/es/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Extensión de creación de prueba unitaria de MSTest V2 + Permite que los desarrolladores creen una prueba unitaria con MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/fr/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/fr/extension.vsixlangpack new file mode 100644 index 0000000..cb3f3ed --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/fr/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Extension Création de test unitaire pour MSTest V2 + Permet aux développeurs de créer un test unitaire à l'aide de MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/it/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/it/extension.vsixlangpack new file mode 100644 index 0000000..a1d8ac1 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/it/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Estensione per creazione unit test MSTest V2 + Consente agli sviluppatori di creare unit test con MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ja/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ja/extension.vsixlangpack new file mode 100644 index 0000000..2f40cb2 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ja/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2 単体テスト作成の拡張機能 + 開発者が MSTest V2 を使用して単体テストを作成できるようにします。 + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ko/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ko/extension.vsixlangpack new file mode 100644 index 0000000..f962ccd --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ko/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2 단위 테스트 확장 만들기 + 개발자가 MSTest V2를 사용하여 단위 테스트를 만들 수 있습니다. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/pl/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/pl/extension.vsixlangpack new file mode 100644 index 0000000..35eaefd --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/pl/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Rozszerzenie tworzenia testów jednostkowych programu MSTest V2 + Umożliwia deweloperem tworzenie testów jednostkowych przy użyciu programu MSTest 2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/pt-BR/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/pt-BR/extension.vsixlangpack new file mode 100644 index 0000000..e9e8460 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/pt-BR/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Extensão de Teste de Unidades de Criação do MSTest V2 + Permite que desenvolvedores criem um teste de unidade usando o MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ru/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ru/extension.vsixlangpack new file mode 100644 index 0000000..021bbb6 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/ru/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + Расширение для создания модульных тестов MSTest V2 + Позволяет разработчикам создавать модульные тесты с помощью MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/tr/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/tr/extension.vsixlangpack new file mode 100644 index 0000000..4ba1bf6 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/tr/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2 Birim Testi Oluşturma Uzantısı + Geliştiricilerin MSTest V2'yi kullanarak birim testi oluşturmasına izin verir. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/zh-Hans/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/zh-Hans/extension.vsixlangpack new file mode 100644 index 0000000..f702b7f --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/zh-Hans/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2 创建单元测试扩展 + 允许开发人员使用 MSTest V2 创建单元测试。 + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/zh-Hant/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/zh-Hant/extension.vsixlangpack new file mode 100644 index 0000000..29f4c8f --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/Resources/zh-Hant/extension.vsixlangpack @@ -0,0 +1,7 @@ + + + + MSTest V2 建立單元測試延伸模組 + 允許開發人員使用 MSTest V2 建立單元測試。 + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/extension.vsixlangpack b/WizardExtensions/MSTestv2UnitTestExtensionPackage/extension.vsixlangpack new file mode 100644 index 0000000..2a3fcb4 --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/extension.vsixlangpack @@ -0,0 +1,6 @@ + + + MSTest V2 Create Unit Test Extension + Allows developers to create unit test using MSTest V2. + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/packages.config b/WizardExtensions/MSTestv2UnitTestExtensionPackage/packages.config new file mode 100644 index 0000000..0f0cc0d --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/WizardExtensions/MSTestv2UnitTestExtensionPackage/source.extension.vsixmanifest b/WizardExtensions/MSTestv2UnitTestExtensionPackage/source.extension.vsixmanifest new file mode 100644 index 0000000..00e80be --- /dev/null +++ b/WizardExtensions/MSTestv2UnitTestExtensionPackage/source.extension.vsixmanifest @@ -0,0 +1,27 @@ + + + + + MSTest V2 Create Unit Test Extension + Allows developers to create unit test using MSTest V2. + CreateUnitTestExtensionLicense.rtf + Microsoft.VisualStudio.TestTools.MSTestV2.WizardExtension.UnitTest + + + + + + + + + + + + + + + + + + + diff --git a/WizardExtensions/WizardExtensions.sln b/WizardExtensions/WizardExtensions.sln new file mode 100644 index 0000000..18c6e9e --- /dev/null +++ b/WizardExtensions/WizardExtensions.sln @@ -0,0 +1,40 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26106.7 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSTestv2UnitTestExtension", "MSTestv2UnitTestExtension\MSTestv2UnitTestExtension.csproj", "{25BFACE8-5009-498E-9B18-3E417C312F26}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSTestv2IntelliTestExtension", "MSTestv2IntelliTestExtension\MSTestv2IntelliTestExtension.csproj", "{AAB9F3CF-72D5-419B-B31E-209388BF3E7C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSTestv2IntelliTestExtensionPackage", "MSTestv2IntelliTestExtensionPackage\MSTestv2IntelliTestExtensionPackage.csproj", "{88308F8C-9B6A-4FC1-BA78-F7106987CE56}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSTestv2UnitTestExtensionPackage", "MSTestv2UnitTestExtensionPackage\MSTestv2UnitTestExtensionPackage.csproj", "{4348D191-1028-4031-8FCB-B0EF7329271D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {25BFACE8-5009-498E-9B18-3E417C312F26}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {25BFACE8-5009-498E-9B18-3E417C312F26}.Debug|Any CPU.Build.0 = Debug|Any CPU + {25BFACE8-5009-498E-9B18-3E417C312F26}.Release|Any CPU.ActiveCfg = Release|Any CPU + {25BFACE8-5009-498E-9B18-3E417C312F26}.Release|Any CPU.Build.0 = Release|Any CPU + {AAB9F3CF-72D5-419B-B31E-209388BF3E7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AAB9F3CF-72D5-419B-B31E-209388BF3E7C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AAB9F3CF-72D5-419B-B31E-209388BF3E7C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AAB9F3CF-72D5-419B-B31E-209388BF3E7C}.Release|Any CPU.Build.0 = Release|Any CPU + {88308F8C-9B6A-4FC1-BA78-F7106987CE56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {88308F8C-9B6A-4FC1-BA78-F7106987CE56}.Debug|Any CPU.Build.0 = Debug|Any CPU + {88308F8C-9B6A-4FC1-BA78-F7106987CE56}.Release|Any CPU.ActiveCfg = Release|Any CPU + {88308F8C-9B6A-4FC1-BA78-F7106987CE56}.Release|Any CPU.Build.0 = Release|Any CPU + {4348D191-1028-4031-8FCB-B0EF7329271D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4348D191-1028-4031-8FCB-B0EF7329271D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4348D191-1028-4031-8FCB-B0EF7329271D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4348D191-1028-4031-8FCB-B0EF7329271D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal